/* Campeche Living LP — design tokens + editorial premium styles v3
   Foco: alto padrão, refino, respiro. Sem cara de IA. */

:root {
  /* Color tokens — OKLCH semantic */
  --ink:        oklch(0.16 0.018 240);
  --ink-2:      oklch(0.22 0.018 240);
  --ink-soft:   oklch(0.40 0.018 240);
  --ink-faint:  oklch(0.58 0.014 240);
  --line:       oklch(0.88 0.008 240);
  --line-soft:  oklch(0.93 0.006 240);
  --bone:       oklch(0.985 0.004 80);
  --bone-deep:  oklch(0.96 0.008 80);
  --sand:       oklch(0.94 0.014 75);
  --sand-deep:  oklch(0.89 0.018 70);
  --sea:        oklch(0.42 0.07 220);
  --sea-soft:   oklch(0.93 0.022 220);
  --moss:       oklch(0.52 0.05 145);
  --moss-soft:  oklch(0.93 0.018 145);
  --gold:       oklch(0.74 0.115 75);
  --gold-deep:  oklch(0.55 0.13 65);
  --gold-soft:  oklch(0.95 0.035 80);
  --success:    oklch(0.55 0.16 145);
  --error:      oklch(0.55 0.20 25);
  --shadow-sm:  0 1px 2px rgba(20, 25, 40, 0.06);
  --shadow-md:  0 8px 28px rgba(20, 25, 40, 0.08);
  --shadow-lg:  0 18px 48px rgba(20, 25, 40, 0.14);
  --shadow-photo: 0 30px 80px rgba(20, 25, 40, 0.20);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--bone); color: var(--ink); }
html { scroll-behavior: smooth; }

body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
@media (max-width: 640px) { body { font-size: 16px; } }

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---- Reveal (always visible — entrance is opt-in via JS in real-browser) ---- */
.reveal { opacity: 1; transform: none; }

/* ---- Layout primitives ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}
.container-narrow { max-width: 920px; }

.section { padding-top: clamp(72px, 11vh, 144px); padding-bottom: clamp(72px, 11vh, 144px); }
.section-tight { padding-top: clamp(56px, 8vh, 96px); padding-bottom: clamp(56px, 8vh, 96px); }

/* ---- Type system ---- */
.h-display {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

.h1 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}

.h2 {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
}

.h3 {
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0;
}

.eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.eyebrow.gold { color: var(--gold-deep); }

.lede {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
  margin: 0;
}

/* utility shorthand for technical numbers */
.mono { font-family: "Geist", sans-serif; letter-spacing: 0.02em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
              background-color 220ms, color 220ms, border-color 220ms;
  text-decoration: none;
  min-height: 50px;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.7; cursor: progress; transform: none; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  background: oklch(0.78 0.125 75);
}

.btn-whatsapp {
  background: oklch(0.55 0.18 145);
  color: white;
  border-color: oklch(0.55 0.18 145);
}
.btn-whatsapp:hover {
  background: oklch(0.48 0.18 145);
  border-color: oklch(0.48 0.18 145);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
  opacity: 0.95;
}
.btn-ghost:hover {
  background: currentColor;
  opacity: 1;
}
.btn-ghost-dark {
  background: transparent;
  color: var(--bone);
  border-color: oklch(0.85 0.01 80 / 0.4);
}
.btn-ghost-dark:hover {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}

.btn-block { width: 100%; }
.btn-lg { padding: 17px 32px; font-size: 16px; min-height: 56px; }
.btn-sm { padding: 10px 18px; font-size: 13px; min-height: 40px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding: 8px 0;
  border-bottom: 1.2px solid var(--ink);
  transition: gap 250ms, color 220ms, border-color 220ms;
  text-decoration: none;
}
.link-arrow:hover { gap: 14px; color: var(--gold-deep); border-color: var(--gold-deep); }

/* ---- Form ---- */
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Geist", sans-serif;
}
.field-label .req { color: var(--gold-deep); margin-left: 2px; }

.input, .select {
  height: 52px;
  border: 1.5px solid oklch(0.42 0.02 240 / 0.22);
  background: var(--bone);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 16px;
  width: 100%;
  transition: border-color 150ms, box-shadow 150ms, background-color 150ms;
  color: var(--ink);
  appearance: none;
}
.input::placeholder { color: var(--ink-faint); }
.input:hover, .select:hover { border-color: oklch(0.42 0.02 240 / 0.45); }
.input:focus, .select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px oklch(0.16 0.018 240 / 0.10);
  background: white;
}
.input.has-error, .select.has-error { border-color: var(--error); }
.input.has-error:focus, .select.has-error:focus {
  box-shadow: 0 0 0 3px oklch(0.55 0.20 25 / 0.16);
}

.field-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--ink-soft);
  border-bottom: 1.5px solid var(--ink-soft);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-row label {
  flex: 1;
  min-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 14px;
  border: 1.5px solid oklch(0.42 0.02 240 / 0.22);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 180ms;
  user-select: none;
  background: var(--bone);
}
.radio-row label:hover { border-color: oklch(0.42 0.02 240 / 0.5); }
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row label.is-checked {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}

/* ---- Tabs ---- */
.tabs {
  position: relative;
  display: inline-flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 5px;
  gap: 2px;
}
.tab {
  position: relative;
  padding: 11px 22px;
  font-weight: 500;
  font-size: 13px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 220ms;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tab.is-active { color: var(--bone); }
.tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
              width 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Photo wrappers ---- */
.photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--sand);
}
.photo-wrap.with-shadow { box-shadow: var(--shadow-photo); }

/* ---- Site header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.985 0.004 80 / 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--bone);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background-color 200ms, transform 200ms, box-shadow 200ms;
  min-height: 40px;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.header-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 480px) {
  .header-cta { padding: 10px 16px; font-size: 12px; }
}

/* (legacy header-link / header-whatsapp left in tree but unused) */

/* ---- Logo (real ROVE wordmark) ---- */
.logo-rove {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.logo-img {
  height: 28px;
  width: auto;
  display: block;
  /* Logo oficial Rove · azul-marinho preservado · book rebranding 2025 */
}
.logo-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  font-family: "Geist", sans-serif;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .logo-sub { display: none; }
  .logo-img { height: 24px; }
}

/* ---- HERO — cinematic full-bleed ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.02);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.10) translateY(-1.5%); }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.10 0.018 240 / 0.58) 0%, oklch(0.10 0.018 240 / 0.32) 30%, oklch(0.10 0.018 240 / 0.92) 100%),
    linear-gradient(90deg, oklch(0.10 0.018 240 / 0.78) 0%, oklch(0.10 0.018 240 / 0.30) 55%, transparent 100%);
  z-index: 1;
}

/* Hero wordmark — Campeche Living by ROVE typographic overlay */
.hero-wordmark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  text-align: center;
  width: min(96%, 1600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
  mix-blend-mode: screen;
  opacity: 0.18;
}
.hero-wordmark-line1 {
  font-family: "Geist", sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 13vw, 13rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(0.97 0.005 80);
  line-height: 0.95;
  white-space: nowrap;
}
.hero-wordmark-line2 {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.4vw, 2.2rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: oklch(0.97 0.005 80);
  padding-left: 0.42em;
  margin-top: 0.4em;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.hero-wordmark-by {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.65;
  text-transform: lowercase;
  font-family: "Geist", sans-serif;
  padding-right: 0.4em;
}
@media (max-width: 768px) {
  .hero-wordmark { opacity: 0.12; }
  .hero-wordmark-line1 { font-size: clamp(2.5rem, 16vw, 5rem); }
  .hero-wordmark-line2 { font-size: clamp(0.75rem, 3vw, 1.1rem); letter-spacing: 0.32em; }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  padding-top: clamp(40px, 8vh, 80px);
  padding-bottom: clamp(40px, 6vh, 80px);
  flex: 1;
  min-height: calc(100dvh - 72px);
}
.hero-content .hero-narrative {
  width: 100%;
  max-width: 64ch;
}
@media (min-width: 920px) {
  .hero-content .hero-narrative {
    max-width: 70ch;
  }
}
.hero-narrative .eyebrow {
  color: var(--gold);
  display: block;
  margin-bottom: clamp(20px, 3vw, 32px);
  text-shadow: 0 1px 12px oklch(0.10 0.018 240 / 0.80), 0 0 2px oklch(0.10 0.018 240 / 0.60);
  font-weight: 600;
  letter-spacing: 0.10em;
}
.hero-narrative .h-display { color: var(--bone); }
.hero-narrative .h-display em {
  font-style: italic;
  font-weight: 300;
  font-family: "Geist", sans-serif;
  position: relative;
  white-space: nowrap;
}
.hero-narrative .h-display em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.15em;
  background: var(--gold);
  opacity: 0.5;
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  margin-top: clamp(20px, 3vw, 32px);
  font-size: clamp(16px, 1.2vw, 19px);
  color: oklch(0.92 0.008 80);
  line-height: 1.55;
  max-width: 50ch;
  text-wrap: pretty;
}
.micro-proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: clamp(28px, 4vw, 40px);
  align-items: center;
}
.micro-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: oklch(0.95 0.008 80);
  padding: 8px 14px;
  background: oklch(0.95 0.008 80 / 0.10);
  border-radius: 999px;
  border: 1px solid oklch(0.95 0.008 80 / 0.20);
  backdrop-filter: blur(8px);
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.micro-proof svg { width: 14px; height: 14px; color: var(--gold); }
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 44px);
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}
.hero .btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.hero .btn-primary:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }
.hero .btn-ghost { color: var(--bone); border-color: oklch(0.95 0.008 80 / 0.4); }
.hero .btn-ghost:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* Glass form card */
.hero-form-wrap { width: 100%; }
.lead-form-card {
  background: oklch(0.985 0.004 80 / 0.97);
  backdrop-filter: saturate(160%) blur(12px);
  border: 1px solid oklch(0.985 0.004 80 / 0.4);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-photo);
  position: relative;
  color: var(--ink);
}
.lead-form-card.is-final {
  background: var(--bone);
  box-shadow: var(--shadow-lg);
}
.lf-header { margin-bottom: 24px; }
.lf-title {
  font-family: "Geist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 6px;
  color: var(--ink);
  text-wrap: balance;
}
.lf-sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.lf-footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  letter-spacing: 0.01em;
}
.lf-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-locale {
  position: relative;
  z-index: 2;
  border-top: 1px solid oklch(0.95 0.008 80 / 0.12);
  padding: 18px 0;
  font-size: 11px;
  font-family: "Geist", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: oklch(0.80 0.008 80);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---- Trust bar — quiet hairline ---- */
.trust-bar {
  background: var(--bone);
  color: var(--ink);
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.trust-bar-inner {
  display: flex;
  gap: 18px 44px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.trust-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
}
.trust-item strong { color: var(--ink); font-weight: 500; }
.trust-suffix { color: var(--ink-soft); }

/* ---- Manifesto ---- */
.manifesto {
  background: var(--bone);
  text-align: center;
}
.manifesto .eyebrow { display: inline-block; margin-bottom: clamp(24px, 4vw, 40px); }
.manifesto-headline {
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  text-wrap: balance;
}
.manifesto-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-soft);
}
.manifesto-body {
  margin: clamp(32px, 4vw, 48px) auto 0;
  max-width: 52ch;
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Manifesto with form (D5) — 2-col layout */
.manifesto.with-form {
  text-align: left;
}
.manifesto.with-form .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.manifesto.with-form .manifesto-text {
  display: flex;
  flex-direction: column;
}
.manifesto.with-form .manifesto-headline,
.manifesto.with-form .manifesto-body {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.manifesto.with-form .manifesto-body {
  max-width: 46ch;
}
.manifesto.with-form .manifesto-form-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .manifesto.with-form .container {
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: 64px;
  }
}
@media (min-width: 1200px) {
  .manifesto.with-form .container {
    gap: 80px;
  }
}

/* ---- Benefits ---- */
.bn-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 880px) {
  .bn-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.bn-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.bn-headline { max-width: 22ch; }
.bn-lede { max-width: 40ch; }

.bn-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 768px) {
  .bn-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bn-grid > * + * { border-left: 1px solid var(--line); }
}
.bn-card {
  padding: clamp(32px, 3.5vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 767px) {
  .bn-card { border-bottom: 1px solid var(--line); }
  .bn-card:last-child { border-bottom: none; }
}
.bn-num {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 12px;
  display: inline-block;
}
.bn-rule {
  border: 0;
  height: 1px;
  background: var(--ink);
  width: 32px;
  margin: 0 0 28px;
}
.bn-card-title {
  font-size: clamp(1.35rem, 1.8vw, 1.625rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  text-wrap: balance;
}
.bn-card-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.bn-cta {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex;
  justify-content: center;
}

/* ---- Gallery ---- */
.g-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}
@media (min-width: 880px) {
  .g-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.g-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.g-headline { max-width: 22ch; }
.g-lede { max-width: 44ch; }

.gallery-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-editorial {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: clamp(260px, 28vh, 360px) clamp(260px, 28vh, 360px);
    gap: 16px;
  }
  .gallery-editorial .g-item:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }
  .gallery-editorial .g-item:nth-child(5) {
    grid-column: 2 / 4;
  }
}
@media (min-width: 1400px) {
  .gallery-editorial {
    grid-template-rows: clamp(300px, 30vh, 420px) clamp(300px, 30vh, 420px);
  }
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--sand);
  min-height: 240px;
  border: none;
  padding: 0;
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.g-item:hover img { transform: scale(1.04); }
.g-item .g-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: oklch(0.16 0.018 240 / 0.78);
  color: var(--bone);
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 250ms, transform 250ms;
}
.g-item:hover .g-caption { opacity: 1; transform: translateY(0); }
.g-item .g-expand {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: oklch(0.985 0.004 80 / 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0;
  transition: opacity 220ms;
}
.g-item:hover .g-expand { opacity: 1; }

/* deprecated D15 · GallerySection legacy — substituído por .amenities-gallery + .ag-stage/.ag-thumbs */
/* Gallery sticky scroll-sync (D6) */
.gallery-sticky-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: clamp(32px, 4vw, 48px);
}
@media (min-width: 920px) {
  .gallery-sticky-wrap {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 5vw, 80px);
    align-items: flex-start;
  }
}
.gallery-sticky-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sand);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
}
@media (min-width: 920px) {
  .gallery-sticky-image {
    position: sticky;
    top: 96px;
    aspect-ratio: 5/6;
    max-height: calc(100dvh - 140px);
  }
}
.gallery-sticky-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 320ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: zoom-in;
}
.gallery-sticky-img.is-active {
  opacity: 1;
  transform: scale(1);
}
.g-expand-sticky {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: oklch(0.985 0.004 80 / 0.95);
  border: 1px solid oklch(0.985 0.004 80 / 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: transform 200ms, background 200ms;
}
.g-expand-sticky:hover { transform: scale(1.05); background: var(--bone); }

.gallery-scroll-list {
  display: flex;
  flex-direction: column;
}
.gallery-scroll-block {
  min-height: 60vh;
  padding: clamp(24px, 4vh, 56px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line-soft);
  opacity: 0.55;
  transition: opacity 350ms ease;
}
.gallery-scroll-block:first-child { border-top: none; }
.gallery-scroll-block.is-active { opacity: 1; }
@media (min-width: 920px) {
  .gallery-scroll-block { min-height: 75vh; }
}
.g-block-num {
  font-family: "Geist", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
  font-weight: 500;
}
.g-block-title {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 12px;
  text-wrap: balance;
  max-width: 22ch;
}
.g-block-caption {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}

.gallery-thumbs-strip {
  display: flex;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 32px);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-thumbs-strip::-webkit-scrollbar { display: none; }
.g-thumb {
  flex-shrink: 0;
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--sand);
  cursor: pointer;
  padding: 0;
  transition: border-color 200ms, transform 200ms;
}
.g-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.g-thumb:hover { transform: translateY(-2px); }
.g-thumb.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px oklch(0.78 0.13 80 / 0.25);
}

.gallery-mobile {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 12px;
  scrollbar-width: none;
  margin: 0 calc(-1 * clamp(20px, 5vw, 64px));
  padding-left: clamp(20px, 5vw, 64px);
  padding-right: clamp(20px, 5vw, 64px);
}
.gallery-mobile::-webkit-scrollbar { display: none; }
.gallery-mobile .g-item-m {
  flex-shrink: 0;
  width: clamp(280px, 80vw, 340px);
  aspect-ratio: 4/3;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  border: none;
  padding: 0;
}
.gallery-mobile .g-item-m img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Beach Concept (D7) ---- */
.beach-concept {
  background: var(--bone);
}
.beach-concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 880px) {
  .beach-concept-grid {
    grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
    gap: clamp(40px, 5vw, 80px);
  }
}
.bc-col-large { width: 100%; }
.bc-col-stacked {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}
@media (min-width: 880px) {
  .bc-col-stacked {
    padding-top: 80px;
  }
}
.bc-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-photo);
}
.bc-figure-large {
  aspect-ratio: 4/5;
}
.bc-figure-small {
  aspect-ratio: 3/4;
  max-width: 100%;
}
.bc-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}
.bc-figure:hover img { transform: scale(1.03); }
.bc-text { display: flex; flex-direction: column; }
.bc-text .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold-deep);
}
.bc-headline {
  font-size: clamp(1.625rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: balance;
  max-width: 22ch;
}
.bc-sub {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 40ch;
}

/* ---- DualPath ---- */
.dualpath {
  background: var(--bone-deep);
  padding-bottom: 0;
}
.dp-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.dp-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.dp-headline {
  max-width: 22ch;
  margin: 0 auto 20px;
}
.dp-lede {
  max-width: 56ch;
  margin: 0 auto;
}

.dp-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.dp-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}
.dp-intro .card-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.dp-tab-headline { max-width: 24ch; margin: 0 auto 16px; }
.dp-tab-lede { max-width: 52ch; margin: 0 auto; }

.dp-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .dp-cards { grid-template-columns: repeat(3, 1fr); }
}
.dp-cards-4 {
  max-width: 1100px;
}
@media (min-width: 768px) {
  .dp-cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .dp-cards-4 { grid-template-columns: repeat(4, 1fr); }
}

.dp-card {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(20, 25, 40, 0.04);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms;
}
.dp-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-soft);
}
.card-eyebrow {
  font-family: "Geist", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
}
.dp-card-title {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  line-height: 1.2;
  text-wrap: balance;
}
.dp-card-body {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.dp-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.dp-card-icon.moss { background: var(--moss-soft); color: var(--moss); }

.dp-quote {
  font-family: "Geist", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  max-width: 28ch;
  margin: clamp(56px, 6vw, 80px) auto 0;
  text-align: center;
  position: relative;
  padding: 0 32px;
}
.dp-quote::before {
  content: "“";
  color: var(--gold);
  position: absolute;
  left: 0;
  top: -0.2em;
  font-size: 1.5em;
  line-height: 1;
}
.dp-quote::after {
  content: "”";
  color: var(--gold);
  position: absolute;
  right: 0;
  bottom: -0.4em;
  font-size: 1.5em;
  line-height: 1;
}

.dp-cta-row {
  display: flex;
  justify-content: center;
  margin: clamp(40px, 5vw, 56px) 0 clamp(48px, 6vw, 64px);
}

/* Housi block — dark sub-section */
.housi-block {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(72px, 10vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.housi-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, oklch(0.74 0.115 75 / 0.10), transparent 50%),
    radial-gradient(ellipse at bottom left, oklch(0.42 0.07 220 / 0.15), transparent 55%);
  pointer-events: none;
}
.housi-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
  position: relative;
  z-index: 1;
}
.housi-header .eyebrow { display: inline-block; margin-bottom: 16px; }
.housi-title {
  color: var(--bone);
  max-width: 22ch;
  margin: 0 auto;
}
.housi-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .housi-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.housi-step {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.housi-step-num {
  font-family: "Geist", sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
}
.housi-step-title {
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin: 0 0 12px;
  line-height: 1.2;
}
.housi-step-body {
  font-size: 14.5px;
  color: oklch(0.78 0.01 80);
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}
.housi-disclaimer {
  margin-top: clamp(48px, 5vw, 64px);
  font-size: 12px;
  color: oklch(0.62 0.01 80);
  font-style: italic;
  max-width: 70ch;
  line-height: 1.55;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Unit Types (no photos, editorial tri-column) ---- */
.unit-types { background: var(--bone); }
.ut-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 7vw, 80px);
}
.ut-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.ut-headline { max-width: 22ch; margin: 0 auto 24px; }
.ut-lede { max-width: 56ch; margin: 0 auto; }

.ut-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 880px) {
  .ut-grid { grid-template-columns: repeat(3, 1fr); }
  .ut-grid > * + * { border-left: 1px solid var(--line); }
}

.ut-card {
  padding: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  background: var(--bone);
  position: relative;
  cursor: pointer;
  transition: background-color 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 879px) {
  .ut-card + .ut-card { border-top: 1px solid var(--line); }
}
.ut-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.ut-card.is-active::before,
.ut-card:hover::before { transform: scaleX(1); }
.ut-card.is-active { background: var(--bone-deep); }

.ut-num {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}
.ut-card .card-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ink-faint);
}
.ut-label {
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
}
.ut-card-headline {
  font-family: "Geist", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--ink-soft);
  margin: 0 0 28px;
  text-wrap: balance;
  max-width: 22ch;
}

.ut-diffs {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line-soft);
}
.ut-diffs li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.ut-diffs li:last-child { border-bottom: none; }
.ut-mark {
  width: 5px;
  height: 5px;
  background: var(--gold-deep);
  border-radius: 50%;
  margin-top: 8px;
  display: inline-block;
}

.ut-foot {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.ut-foot-note {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
  max-width: 60ch;
}
  background: var(--bone);
}
.fp-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 56px);
}
.fp-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.fp-headline { max-width: 22ch; margin: 0 auto 20px; }
.fp-lede { max-width: 56ch; margin: 0 auto; }

.fp-tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.fp-tabs {
  display: inline-flex;
  background: var(--sand);
  border-radius: 999px;
  padding: 5px;
  gap: 2px;
  flex-wrap: wrap;
}
.fp-tab {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13.5px;
  color: var(--ink-soft);
  transition: all 220ms;
  letter-spacing: -0.005em;
}
.fp-tab.is-active {
  background: var(--ink);
  color: var(--bone);
  box-shadow: var(--shadow-sm);
}

.fp-spec {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--ink);
  padding-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 880px) {
  .fp-spec { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.fp-spec-display {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fp-spec-num {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 24px;
  font-weight: 500;
}
.fp-spec-label {
  font-family: "Geist", sans-serif;
  font-weight: 200;
  font-size: clamp(3.5rem, 7.5vw, 6.5rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink);
  text-wrap: balance;
  margin: 0 0 32px;
}
.fp-spec-area {
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-soft);
  line-height: 1.35;
  max-width: 22ch;
  margin: 0 0 40px;
}
.fp-spec-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.fp-spec-meta .eyebrow { display: inline-block; margin-bottom: 8px; }
.fp-spec-meta-val {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

.fp-spec-details {
  display: flex;
  flex-direction: column;
}
.fp-spec-details .card-eyebrow {
  display: inline-block;
  margin-bottom: 24px;
}

.fp-diffs {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fp-diffs li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: baseline;
  color: var(--ink);
  font-size: clamp(15px, 1.1vw, 16.5px);
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.5;
}
.fp-diff-num {
  font-size: 11px;
  color: var(--gold-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.fp-detail-foot {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.fp-foot-note {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin: 0;
}

/* ---- Plantas técnicas (D16+D19 · 6 plantas lateral · card planta-técnica esquerda + foto ambiente direita) ---- */
.plantas-section {
  background: var(--bone);
  padding-top: clamp(80px, 9vw, 120px);
  padding-bottom: clamp(80px, 9vw, 120px);
}
.plantas-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.plantas-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.plantas-headline { max-width: 22ch; margin: 0 auto 20px; }
.plantas-lede { max-width: 56ch; margin: 0 auto; }

/* ---- D19 · Plantas lateral (card planta à esquerda + foto ambiente à direita) ---- */
.plantas-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.5vw, 40px);
  max-width: 1080px;
  margin: 0 auto;
}

.planta-card-row {
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: clamp(20px, 2.5vw, 32px);
  align-items: center;
  cursor: pointer;
}

.planta-card-inset {
  background: #fff;
  border-radius: 6px;
  padding: 18px 18px 20px;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  font-feature-settings: "tnum";
}
.planta-inset-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: var(--bone);
  border-radius: 4px;
  display: block;
}
.planta-inset-tip {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink);
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
}
.planta-inset-sub {
  font-size: 11px;
  color: var(--ink-faint);
  font-style: italic;
  letter-spacing: 0.02em;
}
.planta-inset-area {
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* D21 · row bundled (planta-cobertura-detalhe.png já traz tipologia+m² embutidos · só renderiza a imagem) */
.planta-card-inset.is-bundled {
  padding: 14px;
  background: #fff;
}
.planta-card-inset.is-bundled .planta-inset-img {
  height: auto;
  max-height: 320px;
  background: #fff;
}

/* ---- D23 · Plantas v2 · composição planta+foto do book Canva (cada imagem já é o par) ---- */
.planta-frame {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}
.planta-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10), 0 2px 6px rgba(0, 0, 0, 0.06);
}
.planta-frame-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: #fff;
}
.planta-item {
  display: block;
}
.planta-frame-caption {
  display: block;
  margin-top: 12px;
  padding: 0 4px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .planta-frame-caption { font-size: 10px; margin-top: 10px; padding: 0 2px; }
}

.planta-card-photo {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-sm);
}
.planta-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.planta-card-row:hover .planta-card-photo img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .planta-card-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .planta-card-inset { padding: 14px 14px 16px; }
  .planta-inset-img { height: 140px; }
  .planta-inset-area { font-size: 17px; }
  .planta-inset-tip { font-size: 10px; }
  .planta-inset-sub { font-size: 10px; }
}

.plantas-foot {
  margin-top: clamp(40px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.plantas-foot-note {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
  max-width: 60ch;
}

/* ---- Construction (refined: photo + info column, no fake minimap) ---- */
.construction {
  background: var(--bone-deep);
}
.cs-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (min-width: 880px) {
  .cs-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.cs-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.cs-headline { max-width: 22ch; }
.cs-lede { max-width: 44ch; }

.cs-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 880px) {
  .cs-frame { grid-template-columns: 1.4fr 1fr; gap: 0; }
}

.cs-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  aspect-ratio: 4/3;
  min-height: 380px;
  box-shadow: var(--shadow-photo);
}
@media (min-width: 880px) {
  .cs-photo {
    border-radius: 18px 0 0 18px;
    aspect-ratio: auto;
  }
}
.cs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cs-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(24px, 3vw, 36px);
  background: linear-gradient(180deg, transparent 0%, oklch(0.10 0.018 240 / 0.85) 60%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cs-photo-overlay .status-chip {
  align-self: flex-start;
  background: oklch(0.985 0.004 80 / 0.18);
  color: var(--bone);
  border-color: oklch(0.985 0.004 80 / 0.3);
  backdrop-filter: blur(8px);
}
.cs-photo-overlay .status-chip .status-dot { background: var(--gold); }
.cs-progress-block {
  width: 100%;
  max-width: 480px;
}
.cs-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.cs-progress-label {
  font-size: 13px;
  color: oklch(0.92 0.008 80);
  letter-spacing: -0.005em;
}
.cs-progress-pct {
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cs-photo-overlay .progress-track {
  background: oklch(0.985 0.004 80 / 0.18);
}

.cs-info {
  background: var(--ink);
  color: var(--bone);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 880px) {
  .cs-info {
    border-radius: 0 18px 18px 0;
  }
}
.cs-info .eyebrow {
  color: oklch(0.75 0.01 80);
  display: inline-block;
  margin-bottom: 10px;
}
.cs-info-block {
  display: flex;
  flex-direction: column;
}
.cs-info-value {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin: 0;
  line-height: 1.1;
}
.cs-info-sub {
  font-size: 13px;
  color: oklch(0.78 0.008 80);
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 32ch;
}
.cs-info-value-text {
  font-size: 14px;
  color: oklch(0.88 0.008 80);
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}
.cs-info-divider {
  border: 0;
  height: 1px;
  background: oklch(0.30 0.018 240);
  margin: clamp(24px, 3vw, 32px) 0;
}
.cs-poi-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cs-poi-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid oklch(0.30 0.018 240);
  font-size: 14px;
}
.cs-poi-list li:last-child { border-bottom: none; }
.cs-poi-label {
  color: oklch(0.92 0.008 80);
  letter-spacing: -0.005em;
}
.cs-poi-dist {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.cs-info-actions {
  margin-top: clamp(28px, 3vw, 36px);
}
.cs-info-actions .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cs-info-actions .btn-primary:hover {
  background: var(--bone);
  border-color: var(--bone);
}

/* ---- Press (refined: vertical editorial list, no template cards) ---- */
.ps-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(56px, 6vw, 80px);
}
@media (min-width: 880px) {
  .ps-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.ps-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.ps-headline { max-width: 22ch; }
.ps-lede { max-width: 44ch; }

.ps-list {
  border-top: 1px solid var(--ink);
}
.ps-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-areas:
    "num   kicker"
    "num   title"
    "num   source";
  gap: 8px 24px;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: padding-left 280ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
@media (min-width: 880px) {
  .ps-row {
    grid-template-columns: 80px 200px 1fr 240px;
    grid-template-areas: "num kicker title source";
    gap: 32px;
    align-items: baseline;
  }
}
.ps-row:hover {
  padding-left: 16px;
}
.ps-row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold-deep);
  transition: width 280ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(-50%);
}
.ps-row:hover::before {
  width: 8px;
}
.ps-row-num {
  grid-area: num;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  font-weight: 500;
}
.ps-row-kicker {
  grid-area: kicker;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.ps-row-title {
  grid-area: title;
  font-family: "Geist", sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  max-width: 36ch;
}
.ps-row-source {
  grid-area: source;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  line-height: 1.45;
}
@media (min-width: 880px) {
  .ps-row-source { text-align: right; }
}

/* ---- FAQ (split layout: aside + accordion) ---- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 880px) {
  .faq-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
  }
}
.faq-aside { max-width: 380px; }
@media (min-width: 880px) {
  .faq-aside { position: sticky; top: 104px; }
}
.faq-aside .eyebrow { display: inline-block; margin-bottom: 18px; }
.faq-headline { max-width: 18ch; margin: 0 0 24px; }
.faq-lede { max-width: 38ch; margin: 0 0 32px; }
.faq-cta {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
}
.faq-cta:hover {
  background: oklch(0.55 0.18 145);
  border-color: oklch(0.55 0.18 145);
  color: white;
}

.faq-list {
  border-top: 1px solid var(--ink);
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 40px 1fr 22px;
  align-items: start;
  gap: 16px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 200ms;
}
.accordion-trigger:hover { color: var(--gold-deep); }
.accordion-num {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  padding-top: 6px;
  font-weight: 500;
}
.accordion-trigger:hover .accordion-num { color: var(--gold-deep); }
.accordion-question {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.4;
  text-wrap: balance;
}

/* (icon and accordion-content styles unchanged below) */
.accordion-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
  margin-top: 4px;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-icon::before {
  top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%);
}
.accordion-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%);
}
.accordion-item.is-open .accordion-icon::after { transform: translateX(-50%) rotate(90deg); }
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.accordion-item.is-open .accordion-content { grid-template-rows: 1fr; }
.accordion-content > div { overflow: hidden; }
.accordion-body {
  padding: 0 0 32px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 64ch;
}

/* ---- Final CTA ---- */
.final-cta {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, oklch(0.42 0.07 220 / 0.30), transparent 50%),
    radial-gradient(ellipse at bottom left, oklch(0.74 0.115 75 / 0.18), transparent 55%);
  pointer-events: none;
}
.final-cta .eyebrow { color: var(--gold); display: inline-block; margin-bottom: 20px; }
.fc-headline {
  color: var(--bone);
  max-width: 18ch;
  margin: 0 0 20px;
}
.fc-lede {
  color: oklch(0.88 0.008 80);
  max-width: 48ch;
}
.fc-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 14px;
}
.fc-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: oklch(0.88 0.008 80);
}
.fc-list li svg { color: var(--gold); flex-shrink: 0; }
.fc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .fc-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--ink);
  color: oklch(0.85 0.01 80);
  padding: 80px 0 32px;
  font-size: 13.5px;
  position: relative;
  z-index: 1;
}
.site-footer a { color: oklch(0.92 0.01 80); text-decoration: none; transition: color 200ms; }
.site-footer a:hover { color: var(--gold); }
.site-footer .logo-rove { color: var(--bone); }
.site-footer .logo-name { color: var(--bone); }
.site-footer .logo-img { filter: brightness(0) invert(1); }
.site-footer .logo-sub { color: oklch(0.70 0.01 80); border-left-color: oklch(0.32 0.018 240); }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; }
}
.footer-tag {
  margin: 24px 0 0;
  max-width: 38ch;
  color: oklch(0.78 0.01 80);
  line-height: 1.55;
}
.footer-eyebrow { color: oklch(0.70 0.01 80) !important; }
.footer-address {
  margin: 16px 0 0;
  line-height: 1.6;
  max-width: 32ch;
  color: oklch(0.85 0.01 80);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
}
.footer-link-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-link-row a {
  font-size: 13px;
  padding-bottom: 2px;
  border-bottom: 1px solid oklch(0.32 0.018 240);
  transition: border-color 200ms, color 200ms;
}
.footer-link-row a:hover { border-color: var(--gold); }
.footer-compliance {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: oklch(0.78 0.01 80);
}
.site-footer .footer-bottom {
  margin-top: clamp(20px, 3.5vw, 36px);
  padding-top: 20px;
  border-top: 1px solid oklch(0.28 0.018 240);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: oklch(0.62 0.014 80);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-dot { margin: 0 8px; opacity: 0.4; }

/* ---- Sticky mobile bar (single CTA) ---- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bone);
  border-top: 1px solid var(--line);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  display: none;
  z-index: 40;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.10);
}
.sticky-bar .btn {
  width: 100%;
  padding: 14px 12px;
  font-size: 14px;
  min-height: 50px;
  border-radius: 12px;
}
@media (max-width: 767px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ---- Dialog / Lightbox ---- */
.dialog-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.10 0.018 240 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: clamp(16px, 4vw, 56px);
  animation: fadeIn 220ms ease-out;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.dialog-close, .dialog-nav {
  background: oklch(0.985 0.004 80 / 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 200ms, background-color 200ms;
  cursor: pointer;
  border: none;
}
.dialog-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; }
.dialog-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; }
.dialog-nav:hover { transform: translateY(-50%) scale(1.05); }
.dialog-close:hover { transform: scale(1.05); }
.dialog-nav.prev { left: 20px; }
.dialog-nav.next { right: 20px; }
.dialog-content { max-width: 1200px; width: 100%; }
.dialog-content img {
  max-height: 80vh; width: 100%; object-fit: contain;
  border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.dialog-caption {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  color: oklch(0.85 0.01 80);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---- Consent banner ---- */
.consent-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 32px));
  background: var(--ink);
  color: var(--bone);
  padding: 22px 26px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: var(--shadow-lg);
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  animation: bannerIn 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bannerIn {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@media (min-width: 640px) {
  .consent-banner { grid-template-columns: 1fr auto; align-items: center; }
}
.consent-banner p { margin: 0; color: oklch(0.88 0.01 80); }
.consent-banner a { color: var(--gold); text-decoration: underline; }
.consent-banner .consent-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.consent-banner .btn { padding: 10px 18px; font-size: 13px; min-height: 40px; }
@media (max-width: 767px) {
  .consent-banner { bottom: 92px; }
}

/* ---- Utility ---- */
/* Amenities */
.amenities { background: var(--bone); }
.am-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 880px) {
  .am-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.am-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.am-headline { max-width: 22ch; }
.am-lede { max-width: 44ch; }

.am-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .am-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .am-grid { grid-template-columns: repeat(3, 1fr); } }

.am-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bone);
  border: 1px solid var(--line-soft);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1),
              border-color 280ms;
}
.am-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-soft);
}
.am-photo {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sand);
}
.am-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.am-card:hover .am-photo img { transform: scale(1.04); }
.am-body {
  padding: clamp(20px, 2.2vw, 28px);
  position: relative;
}
.am-num {
  position: absolute;
  top: clamp(20px, 2.2vw, 28px);
  right: clamp(20px, 2.2vw, 28px);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  font-weight: 500;
}
.am-title {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.15;
}
.am-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* Location */
.location { background: var(--bone-deep); }
.loc-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (min-width: 880px) {
  .loc-header { grid-template-columns: 1.5fr 1fr; gap: 56px; }
}
.loc-header .eyebrow { display: inline-block; margin-bottom: 20px; }
.loc-headline { max-width: 22ch; }
.loc-lede { max-width: 44ch; }

.loc-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 880px) {
  .loc-frame { grid-template-columns: 1.6fr 1fr; gap: 0; }
}
.loc-frame-single {
  grid-template-columns: 1fr !important;
  max-width: 720px;
  margin: 0 auto;
}
.loc-frame-single .loc-distances {
  border-radius: 18px;
}
.loc-photo {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-photo);
}
@media (min-width: 880px) {
  .loc-photo {
    border-radius: 18px 0 0 18px;
    aspect-ratio: auto;
    min-height: 540px;
  }
}
.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-distances {
  background: var(--ink);
  color: var(--bone);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 880px) {
  .loc-distances { border-radius: 0 18px 18px 0; }
}
.loc-distances .eyebrow { display: inline-block; margin-bottom: 20px; }
.loc-distances .eyebrow.gold { color: var(--gold); }
.loc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.loc-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid oklch(0.30 0.018 240);
  font-size: 14.5px;
}
.loc-list li:last-child { border-bottom: none; }
.loc-label { color: oklch(0.92 0.008 80); letter-spacing: -0.005em; }
.loc-dist {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.loc-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.loc-cta:hover { background: var(--bone); border-color: var(--bone); }

/* Exit Intent Modal */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: oklch(0.10 0.018 240 / 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: clamp(16px, 4vw, 48px);
  animation: fadeIn 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.exit-modal {
  background: var(--bone);
  border-radius: 18px;
  overflow: hidden;
  max-width: 960px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: exitIn 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 880px) {
  .exit-modal { grid-template-columns: 1.1fr 1fr; max-height: 88vh; }
}
@keyframes exitIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: oklch(0.985 0.004 80 / 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 200ms, background-color 200ms;
}
.exit-close:hover {
  transform: scale(1.05);
  background: var(--bone);
}
.exit-image {
  position: relative;
  background: var(--ink);
  min-height: 200px;
  overflow: hidden;
}
@media (min-width: 880px) {
  .exit-image { min-height: auto; }
}
.exit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exit-image-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: oklch(0.16 0.018 240 / 0.85);
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  font-weight: 500;
}
.exit-content {
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.exit-content .eyebrow {
  display: inline-block;
  align-self: flex-start;
}
.exit-headline {
  font-family: "Geist", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
  max-width: 20ch;
  color: var(--ink);
}
.exit-lede {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
}
.exit-bullets {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: grid;
  gap: 8px;
}
.exit-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
}
.exit-bullets li svg { color: var(--gold-deep); flex-shrink: 0; }

/* ---- Utility ---- */
.flex { display: flex; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.text-soft { color: var(--ink-soft); }
.text-faint { color: var(--ink-faint); }
.text-sm { font-size: 14px; }
.text-xs { font-size: 12px; }
.hidden-mobile { display: block; }
.only-mobile { display: none; }
@media (max-width: 767px) {
  .hidden-mobile { display: none; }
  .only-mobile { display: block; }
}

/* ============ D14/D15 · Áreas comuns + Galeria fundidas ============ */
.amenities-gallery {
  background: var(--bone);
}
.amenities-gallery .ag-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (min-width: 980px) {
  .amenities-gallery .ag-container {
    /* D18 · galeria à esquerda (62%) · cards à direita (38%) — inverte ordem visual via JSX */
    grid-template-columns: minmax(0, 62%) 1fr;
    gap: 56px;
    align-items: stretch;
  }
}

.ag-amenities-header {
  margin-bottom: 24px;
}
.ag-amenities-header .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}
.ag-amenities-header .am-headline {
  margin: 0 0 12px;
  text-wrap: balance;
}
.ag-amenities-header .am-lede {
  margin: 0;
  max-width: 42ch;
}
.ag-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .ag-amenities-grid {
    grid-template-columns: 1fr;
  }
}
.ag-amenities-grid .am-card-compact .am-photo {
  aspect-ratio: 4 / 3;
}
.ag-amenities-grid .am-card-compact .am-body {
  padding: 14px 16px 18px;
}
.ag-amenities-grid .am-card-compact .am-title {
  font-size: 15px;
  letter-spacing: -0.005em;
}
.ag-amenities-grid .am-card-compact .am-sub {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Galeria refatorada — stage + thumbs (D18+D20 · esticada na altura da coluna de cards · grid p/ evitar flex collapse) */
.ag-gallery {
  display: grid;
  grid-template-rows: auto;
  gap: 16px;
}
@media (min-width: 980px) {
  .ag-gallery {
    height: 100%;
    min-height: 720px;
    grid-template-rows: 1fr auto;
  }
}
.ag-stage {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #1a1d22;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
@media (min-width: 980px) {
  .ag-stage {
    aspect-ratio: auto;
    min-height: 0;
    height: 100%;
  }
}
.ag-stage-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.ag-stage-img.is-active {
  opacity: 1;
}
.ag-caption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: #fff;
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.45);
  padding: 6px 12px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ag-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 8px;
  scrollbar-width: thin;
}
.ag-thumbs::-webkit-scrollbar { height: 6px; }
.ag-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }
.ag-thumb {
  flex: 0 0 96px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  scroll-snap-align: start;
  transition: border-color 200ms ease, transform 200ms ease;
  background: none;
  padding: 0;
}
.ag-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ag-thumb.is-active {
  border-color: var(--color-gold, var(--gold, #c9a662));
}
.ag-thumb:hover:not(.is-active) {
  transform: translateY(-2px);
}
.ag-thumb:focus-visible {
  outline: 2px solid var(--color-gold, var(--gold, #c9a662));
  outline-offset: 2px;
}

@media (max-width: 979px) {
  .ag-gallery { min-height: 0; }
  .ag-stage { aspect-ratio: 16 / 11; }
}

/* ============ D21 · Scroll-PIN AmenitiesGallery (desktop only) ============
   Section vira mais alta (N+1 vh) · inner wrapper fica sticky em 100vh ·
   useEffect do componente sincroniza idx ao scroll (cada vh = 1 step). */
.ag-pin-wrap {
  /* mobile default: passthrough (sem pin) */
  display: contents;
}
@media (min-width: 980px) {
  .amenities-gallery.section {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    /* (--ag-steps) vem do React (images.length) — fallback 6 · +1 vh de buffer pra última foto ficar visível antes de soltar */
    min-height: calc((var(--ag-steps, 6) + 1) * 100vh);
  }
  .amenities-gallery .ag-pin-wrap {
    display: block;
    position: sticky;
    /* site-header sticky top:0 h=73px — pin fica logo abaixo pra não colidir */
    top: 73px;
    height: calc(100vh - 73px);
    overflow: hidden;
    padding-top: clamp(32px, 5vh, 64px);
    padding-bottom: clamp(32px, 5vh, 64px);
    box-sizing: border-box;
  }
  .amenities-gallery .ag-pin-wrap .ag-container {
    width: 100%;
    height: 100%;
    max-height: 100%;
    align-items: stretch;
  }
  .amenities-gallery .ag-pin-wrap .ag-gallery {
    min-height: 0;
    height: 100%;
    grid-template-rows: 1fr auto;
  }
  .amenities-gallery .ag-pin-wrap .ag-stage {
    aspect-ratio: auto;
    height: 100%;
    min-height: 0;
  }
  /* coluna direita pode ser mais alta que 100vh — permite scroll interno suave sem quebrar o pin */
  .amenities-gallery .ag-pin-wrap .ag-amenities {
    max-height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    padding-right: 4px;
  }
  .amenities-gallery .ag-pin-wrap .ag-amenities::-webkit-scrollbar { width: 6px; }
  .amenities-gallery .ag-pin-wrap .ag-amenities::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 3px;
  }
}

/* Respeita usuários com prefers-reduced-motion: cross-fade instantâneo no pin */
@media (prefers-reduced-motion: reduce) {
  .ag-stage-img { transition: opacity 0ms; }
}
