:root {
  color-scheme: light;
  --color-ink: #202020;
  --color-muted: #5f625b;
  --color-line: #d8d6cc;
  --color-paper: #f8f6ef;
  --color-surface: #ffffff;
  --color-olive: #3e3f2a;
  --color-olive-2: #67684f;
  --color-olive-dark: #242719;
  --color-brass: #c39463;
  --color-whatsapp: #1f8f5f;
  --shadow-soft: 0 18px 50px rgba(32, 32, 32, 0.14);
  --shadow-subtle: 0 10px 28px rgba(32, 32, 32, 0.08);
  --radius: 8px;
  --container: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--color-brass);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 16px;
  left: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  clip: auto;
  color: #fff;
  background: var(--color-olive-dark);
}

.section-shell {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-band {
  padding: 88px 0;
  background: var(--color-paper);
}

.section-band-light {
  background: #fffdf8;
}

.section-band-olive {
  color: #fff;
  background: var(--color-olive);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px 24px;
  color: #fff;
  transition: background-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(36, 39, 25, 0.95);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand img {
  width: 154px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--color-olive-dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.02) 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 126px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-brass);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--color-olive-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  font-weight: 500;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 4.4rem;
}

h2 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: 2.7rem;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.delivery-pill {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  max-width: 100%;
  min-height: 44px;
  margin-bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  background: rgba(36, 39, 25, 0.58);
  backdrop-filter: blur(8px);
}

.delivery-pill span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.delivery-pill strong {
  color: #fff;
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--color-whatsapp);
}

.button-primary:hover {
  background: #18764d;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-light {
  color: var(--color-olive-dark);
  background: #fff;
}

.button-light:hover {
  background: var(--color-paper);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 820px);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-facts div {
  min-height: 104px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.22);
}

.hero-facts dt {
  margin-bottom: 6px;
  font-size: clamp(1.08rem, 1.8vw, 1.5rem);
  font-weight: 700;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.split-layout-reversed {
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
}

.section-copy p,
.section-heading p,
.contact-band p {
  max-width: 660px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-band-olive .section-copy p,
.section-band-olive .contact-band p,
.section-band-olive .contact-layout p {
  color: rgba(255, 255, 255, 0.82);
}

.delivery-note {
  max-width: 640px;
  margin-top: 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--color-brass);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #f1eee5;
}

.delivery-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-olive-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.delivery-note strong {
  display: block;
  color: var(--color-olive-dark);
  font-size: 1.06rem;
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-line);
  box-shadow: var(--shadow-subtle);
}

.metric-panel div {
  min-height: 150px;
  padding: 28px;
  background: var(--color-surface);
}

.metric-panel strong {
  display: block;
  color: var(--color-olive);
  font-size: 3.2rem;
  line-height: 1;
}

.metric-panel span {
  color: var(--color-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.image-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-olive-dark);
  box-shadow: var(--shadow-soft);
}

.image-card-large {
  grid-row: span 2;
  min-height: 740px;
}

.image-card img,
.amenity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-card:hover img,
.amenity-card:hover img {
  transform: scale(1.03);
}

.image-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.image-card div {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #fff;
}

.image-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  font-weight: 700;
}

.image-card p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.floorplan-frame {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.floorplan-frame img {
  width: 100%;
  aspect-ratio: 1920 / 1012;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.features {
  border-top: 1px solid rgba(62, 63, 42, 0.1);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-subtle);
}

.feature-card img,
.feature-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
}

.feature-card img {
  object-fit: contain;
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  color: var(--color-olive);
  font-weight: 800;
}

.feature-card h3 {
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.amenity-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-olive-dark);
  box-shadow: var(--shadow-subtle);
}

.amenity-card-wide {
  grid-column: span 2;
}

.amenity-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.amenity-card h3 {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

address {
  margin: 24px 0 0;
  color: var(--color-olive-dark);
  font-style: normal;
  font-weight: 700;
}

.location-layout .section-copy {
  max-width: 820px;
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-list {
  display: grid;
  gap: 12px;
  min-width: min(100%, 360px);
}

.contact-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item strong {
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.site-footer {
  padding: 36px 0;
  background: #fffdf8;
}

.footer-layout {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: var(--color-olive);
}

.footer-meta span {
  display: block;
  margin-top: 4px;
  word-break: break-word;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .feature-grid,
  .amenity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(36, 39, 25, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 48px;
    padding: 0 12px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
  }

  .hero-content {
    padding: 92px 0 30px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-facts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-facts div {
    min-height: 88px;
    padding: 14px;
  }

  .hero-facts dt {
    font-size: 1.22rem;
  }

  .hero-facts dd {
    font-size: 0.84rem;
  }

  .intro.section-band {
    padding-top: 40px;
  }

  .split-layout,
  .split-layout-reversed {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-band {
    padding: 64px 0;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .image-card,
  .image-card-large {
    min-height: 390px;
  }

  .contact-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    z-index: 110;
    right: 16px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 4px;
    color: #fff;
    background: var(--color-whatsapp);
    box-shadow: 0 12px 30px rgba(31, 143, 95, 0.32);
    font-weight: 800;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  .section-shell {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-list {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .hero-facts div {
    min-height: 88px;
    padding: 16px;
  }

  .hero-facts dt {
    font-size: 1.25rem;
  }

  .metric-panel,
  .feature-grid,
  .amenity-grid {
    grid-template-columns: 1fr;
  }

  .metric-panel div {
    min-height: 118px;
  }

  .image-card,
  .image-card-large,
  .amenity-card {
    min-height: 320px;
  }

  .amenity-card-wide {
    grid-column: auto;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
