:root {
  --bg: #08090a;
  --bg-soft: #111315;
  --paper: #f2efe7;
  --paper-soft: #e9e4da;
  --surface: #fbfaf6;
  --ink: #111214;
  --muted: #a8abad;
  --muted-dark: #686c70;
  --line: rgba(255,255,255,.11);
  --line-dark: rgba(17,18,20,.12);
  --gold: #f3aa2d;
  --gold-bright: #ffb83d;
  --max: 1240px;
  --headline: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; background: var(--bg); }
section[id] { scroll-margin-top: 72px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: #111; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.shell { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.section-dark { background: var(--bg); color: #f8f6f0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,9,10,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  backdrop-filter: blur(16px);
}
.header__inner { min-height: 66px; display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; z-index: 102; display: inline-flex; align-items: center; gap: 10px; }
.brand > img { width: 40px; height: 40px; object-fit: cover; background: #000; border: 1px solid rgba(255,255,255,.1); }
.brand > span { display: grid; gap: 3px; line-height: 1; }
.brand strong { font-size: 18px; letter-spacing: .055em; font-weight: 900; }
.brand small { color: var(--gold); font-size: 7px; letter-spacing: .13em; font-weight: 900; }

.menu-toggle { position: relative; z-index: 102; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; padding: 0; background: transparent; border: 0; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: #fff; transition: transform .22s ease, width .22s ease; }
.menu-toggle span:first-child { width: 24px; }
.menu-toggle span:last-child { width: 17px; justify-self: end; }
.menu-open .menu-toggle span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { width: 24px; transform: translateY(-4.5px) rotate(-45deg); }

.primary-nav {
  position: fixed;
  inset: 66px 0 0;
  z-index: 101;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: #08090a;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .24s ease, visibility 0s linear .24s;
}
.menu-open .primary-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
.primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: clamp(28px, 8vw, 42px); font-weight: 850; line-height: 1; letter-spacing: -.035em; text-transform: uppercase; }
.primary-nav .nav-cta { color: var(--gold); }
.primary-nav .nav-cta span { font-size: .48em; vertical-align: top; }

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 850;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--gold); color: #111; }
.button--primary:hover { background: var(--gold-bright); }
.button--ghost, .button--outline { border-color: rgba(255,255,255,.24); color: #fff; }
.button--ghost:hover, .button--outline:hover { border-color: var(--gold); color: var(--gold); }
.button--dark { background: #111; color: #fff; }
.button--dark:hover { background: #242629; }
.button--large { min-height: 52px; padding-inline: 22px; }

/* Shared headings */
.eyebrow, .section-kicker { margin: 0 0 14px; font-size: 9px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: #d0d2d3; }
.eyebrow > span { width: 26px; height: 2px; background: var(--gold); }
.section-kicker { color: #707477; }
.section-kicker--light { color: #9da1a4; }
.section-head { display: grid; gap: 18px; align-items: end; margin-bottom: 28px; }
.section-head h2, .social h2, .cta-band h2 {
  margin: 0;
  font-family: var(--headline);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: -.055em;
  line-height: .93;
}
.section-head h2, .social h2 { font-size: clamp(42px, 11.5vw, 62px); }
.section-head h2 span, .social h2 span { color: var(--gold); }
.section-intro { max-width: 540px; margin: 0; color: var(--muted-dark); font-size: 14px; line-height: 1.58; }
.section-head--dark .section-intro { color: #a7aaad; }

/* Hero */
.hero { position: relative; overflow: clip; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 6%, rgba(243,170,45,.10), transparent 25%),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: auto, 112px 100%;
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr); gap: 22px; align-items: start; padding: 30px 0 42px; }
.hero__intro { order: 1; min-width: 0; }
.hero__media { order: 2; width: 100%; margin: 0; }
.hero__content { order: 3; min-width: 0; }
.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(45px, 12.8vw, 58px);
  font-weight: 850;
  line-height: .91;
  letter-spacing: -.064em;
  text-transform: uppercase;
}
.hero h1 > span { display: block; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__lead { max-width: 610px; margin: 18px 0 0; color: #bfc2c4; font-size: 15px; line-height: 1.55; }
.hero-photo { position: relative; margin: 0; overflow: hidden; aspect-ratio: 16 / 10; background: #1c1e20; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 24px 58px rgba(0,0,0,.34); }
.hero-photo > img { width: 100%; height: 100%; object-fit: cover; object-position: center 54%; filter: saturate(.86) contrast(1.06) brightness(.93); transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.hero-photo:hover > img { transform: scale(1.018); }
.hero-photo__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 35%, rgba(0,0,0,.72) 100%); }
.hero-photo figcaption { position: absolute; z-index: 2; left: 14px; right: 80px; bottom: 13px; display: grid; }
.hero-photo figcaption small { color: var(--gold); font-size: 7px; letter-spacing: .17em; font-weight: 900; }
.hero-photo figcaption strong { font-family: var(--headline); font-size: clamp(26px, 7.8vw, 34px); line-height: .98; letter-spacing: -.04em; }
.hero-photo__corner { position: absolute; z-index: 2; top: 12px; right: 12px; padding: 7px 9px 6px; border: 1px solid rgba(255,255,255,.17); background: rgba(8,9,10,.78); color: #fff; font-size: 8px; font-weight: 900; letter-spacing: .14em; }
.hero__actions { display: flex; flex-direction: column; gap: 9px; margin: 0; }
.hero__facts { margin: 14px 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero__facts div { min-width: 0; padding: 12px 10px; border-right: 1px solid var(--line); }
.hero__facts div:first-child { padding-left: 0; }
.hero__facts div:last-child { padding-right: 0; border-right: 0; }
.hero__facts dt { margin: 0 0 4px; color: #777c80; font-size: 7.5px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.hero__facts dd { margin: 0; color: #fff; font-size: 10px; font-weight: 800; line-height: 1.25; overflow-wrap: anywhere; }

/* Proposal */
.proposal { padding: 58px 0; background: var(--paper); }
.feature-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; padding: 0 18px 12px 0; scrollbar-width: none; }
.feature-grid::-webkit-scrollbar { display: none; }
.feature-card { position: relative; min-height: 178px; padding: 22px; overflow: hidden; background: rgba(255,255,255,.48); border: 1px solid var(--line-dark); scroll-snap-align: start; transition: transform .22s ease, background .22s ease; }
.feature-card::before { content: ""; position: absolute; top: 0; left: 0; width: 54px; height: 3px; background: var(--gold); }
.feature-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.78); }
.feature-card__num { display: inline-block; margin-bottom: 25px; color: var(--gold); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.feature-card h3 { margin: 0 0 8px; font-size: 22px; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: var(--muted-dark); font-size: 13px; }

/* Space */
.space { padding: 58px 0; }
.space-grid { display: grid; grid-auto-flow: column; grid-auto-columns: 84%; gap: 12px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; padding: 0 18px 12px 0; scrollbar-width: none; }
.space-grid::-webkit-scrollbar { display: none; }
.photo-card { position: relative; margin: 0; padding: 0; overflow: hidden; aspect-ratio: 4 / 5; background: #16181a; border: 1px solid rgba(255,255,255,.12); color: #fff; cursor: zoom-in; scroll-snap-align: start; }
.photo-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.05); transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .35s ease; }
.photo-card:hover img { transform: scale(1.025); filter: saturate(.94) contrast(1.05); }
.photo-card__veil { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.75)); }
.photo-card__meta { position: absolute; left: 15px; right: 15px; bottom: 14px; display: flex; align-items: center; gap: 9px; color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.photo-card__meta b { color: var(--gold); }
.photo-card__meta i { margin-left: auto; font-style: normal; font-size: 14px; }
.space-card { min-height: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 23px; aspect-ratio: 4 / 5; background: linear-gradient(150deg, #151719, #0d0f10); border: 1px solid rgba(255,255,255,.12); scroll-snap-align: start; }
.space-card > img { width: 48px; height: 48px; margin-bottom: 20px; object-fit: cover; }
.space-card__eyebrow { margin: 0 0 8px; color: var(--gold); font-size: 8px; font-weight: 900; letter-spacing: .15em; }
.space-card h3 { margin: 0; font-family: var(--headline); font-size: clamp(36px, 9.5vw, 48px); font-weight: 850; line-height: .94; letter-spacing: -.055em; }
.space-card dl { margin: 24px 0 0; padding-top: 15px; border-top: 1px solid var(--line); }
.space-card dl div { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; }
.space-card dt { color: #7f8386; font-size: 9px; }
.space-card dd { margin: 0; text-align: right; font-size: 9px; font-weight: 800; }

/* Visit */
.visit { padding: 58px 0; background: #ebe6dc; }
.visit__head { margin-bottom: 26px; }
.visit__head .section-intro { max-width: 455px; }
.visit-board { overflow: hidden; display: grid; grid-template-columns: 1fr; background: #0a0b0c; color: #fff; border: 1px solid rgba(17,18,20,.22); box-shadow: 0 22px 54px rgba(20,19,16,.09); }
.visit-item { position: relative; min-width: 0; display: grid; grid-template-columns: 44px minmax(0,1fr); grid-template-rows: auto auto auto; column-gap: 15px; padding: 20px; border-bottom: 1px solid rgba(255,255,255,.11); }
.visit-item:last-child { border-bottom: 0; }
.visit-item__top { grid-column: 1 / -1; min-height: 18px; margin-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.visit-item__top span, .visit-item__top small { font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.visit-item__top span { color: var(--gold); }
.visit-item__top small { color: #777c80; }
.visit-item__icon { grid-column: 1; grid-row: 2; width: 42px; height: 42px; display: grid; place-items: center; background: var(--gold); color: #111; }
.visit-item__icon svg { width: 21px; fill: none; stroke: #111; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.visit-item__icon--brand img { width: 21px; height: 21px; }
.visit-item__body { grid-column: 2; grid-row: 2; min-width: 0; align-self: center; }
.visit-item__label { margin: 0 0 6px; color: #858a8e; font-size: 8.5px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.visit-item__time { margin: 0; display: flex; align-items: baseline; gap: 5px; white-space: nowrap; }
.visit-item__time strong { font-family: var(--headline); font-size: 34px; font-weight: 850; line-height: .95; letter-spacing: -.055em; }
.visit-item__time span { color: var(--gold); font-size: 18px; font-weight: 800; }
.visit-item__title { display: block; margin: 0; color: #fff; font-family: var(--headline); font-size: clamp(28px, 8vw, 35px); font-weight: 850; line-height: .96; letter-spacing: -.055em; font-style: normal; text-transform: none; }
.visit-item--contact .visit-item__title { text-transform: uppercase; }
.visit-item__note { display: block; margin: 7px 0 0; color: #929699; font-size: 9.5px; line-height: 1.42; font-weight: 650; font-style: normal; }
.visit-item address { margin: 0; font-style: normal; }
.visit-item__link { grid-column: 2; grid-row: 3; width: fit-content; margin-top: 13px; display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; border-bottom: 1px solid rgba(243,170,45,.75); color: var(--gold); font-size: 10.5px; font-weight: 850; transition: gap .16s ease, color .16s ease; }
.visit-item__link:hover { gap: 12px; color: #ffc55d; }
.visit-item--contact { background: linear-gradient(180deg, rgba(243,170,45,.055), rgba(243,170,45,0)); }

/* Instagram */
.social { padding: 62px 0; overflow: hidden; }
.social__layout { display: grid; gap: 36px; align-items: center; }
.social__copy > p:not(.section-kicker) { max-width: 430px; margin: 17px 0 0; color: #a9adaf; font-size: 14px; }
.social__copy strong { color: #fff; }
.social__copy .button { margin-top: 22px; }
.social-track { display: grid; grid-auto-flow: column; grid-auto-columns: 76%; gap: 11px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; padding: 2px 18px 14px 0; scrollbar-width: none; }
.social-track::-webkit-scrollbar { display: none; }
.social-card { margin: 0; aspect-ratio: 4 / 5; overflow: hidden; background: #1a1c1e; border: 1px solid rgba(255,255,255,.11); scroll-snap-align: start; }
.social-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.social-card:hover img { transform: scale(1.018); }

/* CTA + footer */
.cta-band { padding: 42px 0; background: var(--gold); color: #111; }
.cta-band__inner { display: grid; gap: 24px; align-items: center; }
.cta-band .section-kicker { color: rgba(17,17,17,.58); }
.cta-band h2 { font-size: clamp(38px, 10.5vw, 54px); }
.cta-band__inner p:not(.section-kicker) { margin: 9px 0 0; font-size: 13px; }
.cta-band .button { justify-self: start; }
.footer { padding: 30px 0 82px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 18px; }
.footer__brand { display: inline-flex; align-items: center; gap: 10px; }
.footer__brand img { width: 42px; height: 42px; object-fit: cover; }
.footer__brand span { display: grid; gap: 3px; }
.footer__brand strong { font-size: 13px; letter-spacing: .04em; }
.footer__brand small { color: var(--gold); font-size: 7px; letter-spacing: .12em; font-weight: 900; }
.footer__data { color: #8f9395; font-size: 11px; }
.footer__data p { margin: 2px 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 20px; color: #d4d6d7; font-size: 11px; font-weight: 800; }
.footer__links a:hover { color: var(--gold); }
.footer__legal { margin: 0; color: #6e7275; font-size: 10px; }

/* Terra-styled WhatsApp action. */
.whatsapp-float { position: fixed; z-index: 90; right: 14px; bottom: 14px; width: 54px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.26); border-radius: 11px; background: var(--gold); color: #0a0b0c; box-shadow: 0 12px 28px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.25); transition: transform .18s ease, background .18s ease, box-shadow .18s ease; }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--gold-bright); box-shadow: 0 16px 34px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.3); }
.whatsapp-float img { width: 25px; height: 25px; }

/* Lightbox */
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 28px; background: rgba(4,5,6,.94); }
.lightbox__image { max-width: min(92vw, 1100px); max-height: 88vh; object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 18px; right: 20px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.25); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .58s ease, transform .58s cubic-bezier(.2,.75,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }


/* V07 mobile hero refinement: full first viewport, tighter type and Terra-first CTAs. */
.button__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 619px) {
  .header__inner { min-height: 64px; }
  .brand > img { width: 36px; height: 36px; }
  .brand strong { font-size: 17px; }
  .brand small { font-size: 6.5px; letter-spacing: .125em; }
  .primary-nav { inset: 64px 0 0; }

  .hero {
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
  }
  .hero::before {
    background:
      radial-gradient(circle at 7% 5%, rgba(243,170,45,.12), transparent 26%),
      radial-gradient(circle at 92% 72%, rgba(243,170,45,.045), transparent 24%),
      linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
    background-size: auto, auto, 92px 100%;
  }
  .hero__grid {
    min-height: calc(100vh - 64px);
    min-height: calc(100svh - 64px);
    grid-template-columns: minmax(0,1fr);
    grid-template-rows: auto auto auto;
    align-content: space-between;
    gap: 14px;
    padding: 20px 0 22px;
  }
  .hero__intro { align-self: start; }
  .eyebrow { margin-bottom: 10px; gap: 8px; font-size: 7.8px; letter-spacing: .145em; }
  .eyebrow > span { width: 22px; }
  .hero h1 {
    max-width: none;
    font-size: clamp(40px, 11.5vw, 46px);
    font-weight: 830;
    line-height: .925;
    letter-spacing: -.05em;
  }
  .hero h1 > span:nth-child(2) em { display: block; }
  .hero__lead {
    max-width: 34em;
    margin-top: 12px;
    color: #bec1c3;
    font-size: 13.25px;
    line-height: 1.45;
  }
  .hero__media { width: 100%; margin: 0; align-self: center; }
  .hero-photo {
    height: clamp(190px, 31svh, 270px);
    aspect-ratio: auto;
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 20px 42px rgba(0,0,0,.3);
  }
  .hero-photo > img { object-position: center 48%; }
  .hero-photo__shade { background: linear-gradient(180deg, rgba(0,0,0,.01) 34%, rgba(0,0,0,.76) 100%); }
  .hero-photo figcaption { left: 12px; right: 70px; bottom: 10px; }
  .hero-photo figcaption small { font-size: 6.5px; }
  .hero-photo figcaption strong { font-size: clamp(23px, 6.8vw, 29px); letter-spacing: -.035em; }
  .hero-photo__corner { top: 10px; right: 10px; padding: 6px 8px 5px; font-size: 7px; }

  .hero__content { align-self: end; }
  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0,1.18fr) minmax(0,.82fr);
    gap: 8px;
  }
  .hero__actions .button {
    min-height: 48px;
    padding: 10px 11px;
    font-size: 10.5px;
    line-height: 1.05;
    letter-spacing: -.012em;
    white-space: nowrap;
  }
  .hero__actions .button--primary {
    gap: 8px;
    border-color: var(--gold);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,.16);
  }
  .hero__actions .button--primary:active { transform: translateY(1px); box-shadow: inset 0 -1px 0 rgba(0,0,0,.18); }
  .hero__actions .button--ghost {
    background: rgba(255,255,255,.025);
    border-color: rgba(255,255,255,.28);
  }
  .hero__actions .button--ghost:active { background: rgba(255,255,255,.07); }
  .hero__actions .button__icon { width: 15px; height: 15px; }

  .hero__facts {
    margin-top: 10px;
    border-top-color: rgba(255,255,255,.13);
    border-bottom-color: rgba(255,255,255,.13);
  }
  .hero__facts div { padding: 9px 8px; border-right-color: rgba(255,255,255,.13); }
  .hero__facts div:first-child { padding-left: 0; }
  .hero__facts div:last-child { padding-right: 0; }
  .hero__facts dt { margin-bottom: 3px; font-size: 6.7px; letter-spacing: .115em; }
  .hero__facts dd { font-size: 9.5px; line-height: 1.18; overflow-wrap: normal; }

  .proposal { padding-top: 54px; }

  .whatsapp-float {
    width: 49px;
    height: 45px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    border-radius: 9px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }
  .whatsapp-float.is-visible { opacity: 1; pointer-events: auto; transform: none; }
  .whatsapp-float img { width: 22px; height: 22px; }
}

@media (max-width: 420px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .brand strong { font-size: 16px; }
  .brand small { display: block; font-size: 6px; }
  .hero__grid { padding-top: 17px; padding-bottom: 19px; }
  .hero h1 { font-size: clamp(39px, 11.25vw, 43px); }
  .hero__lead { margin-top: 10px; font-size: 12.8px; }
  .hero-photo { height: clamp(182px, 30svh, 252px); }
  .hero__actions .button { min-height: 46px; font-size: 10px; }
  .hero__facts dd { font-size: 9px; }
  .section-head h2, .social h2 { font-size: 40px; }
}

@media (max-width: 619px) and (max-height: 720px) {
  .hero__grid { gap: 10px; padding-top: 14px; padding-bottom: 15px; }
  .eyebrow { margin-bottom: 7px; font-size: 7.2px; }
  .hero h1 { font-size: clamp(37px, 10.7vw, 41px); line-height: .92; }
  .hero__lead { margin-top: 8px; font-size: 12.1px; line-height: 1.38; }
  .hero-photo { height: clamp(168px, 29svh, 205px); }
  .hero-photo figcaption strong { font-size: 23px; }
  .hero__actions .button { min-height: 44px; padding-block: 9px; font-size: 9.8px; }
  .hero__facts { margin-top: 8px; }
  .hero__facts div { padding-top: 7px; padding-bottom: 7px; }
  .hero__facts dt { font-size: 6.3px; }
  .hero__facts dd { font-size: 8.8px; }
}

@media (max-width: 350px) {
  .hero__actions { grid-template-columns: 1fr; }
  .hero-photo { height: 170px; }
  .hero__facts dd { font-size: 8.2px; }
}

@media (min-width: 620px) {
  .shell { width: min(calc(100% - 56px), var(--max)); }
  .hero__actions { flex-direction: row; }
  .hero__facts dd { font-size: 10.5px; }
  .feature-grid { grid-auto-flow: initial; grid-auto-columns: auto; grid-template-columns: repeat(3, minmax(0,1fr)); overflow: visible; padding: 0; }
  .space-grid { grid-auto-flow: initial; grid-auto-columns: auto; grid-template-columns: repeat(2, minmax(0,1fr)); overflow: visible; padding: 0; }
  .space-card { grid-column: 1 / -1; min-height: 230px; aspect-ratio: auto; }
  .space-card dl { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
  .space-card dl div { display: grid; gap: 2px; }
  .space-card dd { text-align: left; }
  .social-track { grid-auto-columns: 44%; }
}

@media (min-width: 960px) {
  .header__inner { min-height: 68px; }
  .menu-toggle { display: none; }
  .primary-nav { position: static; inset: auto; z-index: auto; flex-direction: row; align-items: center; gap: 24px; padding: 0; background: transparent; opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition: none; }
  .primary-nav a { position: relative; padding: 9px 0; border: 0; font-size: 10px; font-weight: 800; letter-spacing: 0; text-transform: none; color: #b8bbbd; }
  .primary-nav a::after { content: ""; position: absolute; left: 0; bottom: 2px; width: 0; height: 1px; background: var(--gold); transition: width .18s ease; }
  .primary-nav a:hover, .primary-nav a.is-active { color: #fff; }
  .primary-nav a.is-active::after { width: 100%; }
  .primary-nav .nav-cta { padding: 10px 14px; background: var(--gold); color: #111; }
  .primary-nav .nav-cta:hover { background: var(--gold-bright); color: #111; }
  .primary-nav .nav-cta::after { display: none; }

  .hero__grid {
    grid-template-columns: minmax(0,1.2fr) minmax(365px,.66fr);
    grid-template-areas:
      "intro media"
      "content media";
    grid-template-rows: minmax(0,1fr) auto;
    column-gap: 82px;
    row-gap: 18px;
    min-height: calc(100svh - 68px);
    padding: 30px 0 24px;
    align-items: stretch;
  }
  .hero__intro { grid-area: intro; align-self: center; padding: 8px 0 20px; }
  .hero__content { grid-area: content; align-self: end; padding-top: 15px; border-top: 1px solid rgba(255,255,255,.10); }
  .hero__media { grid-area: media; width: min(100%, 422px); justify-self: end; align-self: center; }
  .hero h1 { max-width: 900px; font-size: clamp(70px, 6.05vw, 94px); line-height: .89; letter-spacing: -.072em; }
  .hero h1 > span:nth-child(2) { white-space: nowrap; font-size: .9em; }
  .hero-photo { aspect-ratio: 4 / 5.05; }
  .hero-photo > img { object-position: center 50%; }
  .hero-photo figcaption { left: 18px; bottom: 17px; }
  .hero-photo figcaption strong { font-size: 36px; }
  .hero-photo__corner { top: 15px; right: 15px; }
  .hero__lead { max-width: 610px; margin-top: 24px; font-size: 16.5px; }
  .hero__actions { flex-direction: row; gap: 9px; }
  .hero__facts { max-width: 760px; margin-top: 14px; }
  .hero__facts div { padding: 11px 13px; }
  .hero__facts div:first-child { padding-left: 0; }
  .hero__facts div:last-child { padding-right: 0; }
  .hero__facts dt { font-size: 8px; }
  .hero__facts dd { font-size: 10.5px; }

  .proposal, .space, .visit { padding-block: 62px; }
  .section-head { grid-template-columns: minmax(0,.95fr) minmax(320px,.55fr); gap: 58px; margin-bottom: 27px; }
  .section-head h2, .social h2 { font-size: clamp(48px, 4.4vw, 62px); }
  .section-intro { justify-self: end; font-size: 13.5px; }
  .feature-card { min-height: 176px; padding: 22px; }

  .space-grid { grid-template-columns: 1fr 1fr .9fr; gap: 12px; }
  .photo-card { aspect-ratio: 4 / 5; max-height: 430px; }
  .space-card { grid-column: auto; min-height: 0; max-height: 430px; aspect-ratio: auto; }
  .space-card h3 { font-size: clamp(38px,3.5vw,50px); }
  .space-card dl { display: block; }
  .space-card dl div { display: flex; }
  .space-card dd { text-align: right; }

  .visit-board { grid-template-columns: .9fr 1.08fr 1fr; }
  .visit-item { min-height: 250px; display: flex; flex-direction: column; padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.11); border-bottom: 0; }
  .visit-item:last-child { border-right: 0; }
  .visit-item__top { margin-bottom: 0; }
  .visit-item__icon { margin: 28px 0 17px; }
  .visit-item__time strong { font-size: clamp(38px,3vw,44px); }
  .visit-item__title { font-size: clamp(31px,2.55vw,38px); }
  .visit-item__note { max-width: 330px; font-size: 10px; }
  .visit-item__link { margin-top: auto; padding-top: 18px; }

  .social { padding: 64px 0; }
  .social__layout { grid-template-columns: .72fr 1.28fr; gap: 68px; }
  .social-track { grid-auto-flow: initial; grid-auto-columns: auto; grid-template-columns: 1.02fr .72fr .72fr; gap: 12px; overflow: visible; padding: 0; }
  .social-card { aspect-ratio: 4 / 5; }
  .social-card:nth-child(2), .social-card:nth-child(3) { aspect-ratio: 9 / 16; }

  .cta-band { padding: 40px 0; }
  .cta-band__inner { grid-template-columns: 1fr auto; gap: 50px; }
  .cta-band h2 { font-size: clamp(42px,3.9vw,54px); }
  .cta-band .button { justify-self: end; }
  .footer { padding-bottom: 30px; }
  .footer__grid { grid-template-columns: 1.2fr 1fr auto; align-items: center; }
  .footer__legal { grid-column: 1 / -1; }
  .whatsapp-float { width: 60px; height: 54px; right: 20px; bottom: 20px; border-radius: 12px; }
  .whatsapp-float img { width: 27px; height: 27px; }
}

@media (min-width: 1280px) {
  .hero__grid { column-gap: 92px; }
  .hero__media { width: 438px; }
  .hero h1 { font-size: clamp(76px, 6.15vw, 96px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
