/* ============================================================
   BENE IMÓVEIS — Design System
   ============================================================ */

:root {
  /* Palette (tweakable via JS) */
  --bg: #FAF7F2;
  --bg-soft: #F1ECE3;
  --ink: #14181D;
  --ink-soft: #2A3340;
  --navy: #1E3A5F;
  --slate: #5A7A9A;
  --gold: #C4A57B;
  --gold-deep: #A6864F;
  --line: rgba(20, 24, 29, 0.12);
  --line-soft: rgba(20, 24, 29, 0.06);

  /* Type */
  --f-display: "Cormorant Garamond", "Cormorant", "Times New Roman", serif;
  --f-sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Spacing */
  --pad: clamp(20px, 4vw, 80px);
  --gap: clamp(16px, 2.5vw, 32px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   Typography
   ============================================================ */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.display-italic {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-soft);
}
.mono {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.bn-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.bn-header.scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--line-soft);
}
.bn-header.on-dark {
  color: var(--bg);
}
.bn-header.on-dark.scrolled {
  background: rgba(20, 24, 29, 0.7);
  border-bottom-color: rgba(255,255,255,0.08);
}

.bn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bn-logo-img {
  height: 92px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease), filter 0.3s var(--ease);
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.4))
    drop-shadow(0 0 8px rgba(255,255,255,0.25))
    drop-shadow(0 6px 18px rgba(0,0,0,0.35));
}
.bn-header.scrolled .bn-logo-img {
  height: 64px;
  filter:
    drop-shadow(0 1px 0 rgba(255,255,255,0.5))
    drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
.bn-header:not(.scrolled):not(.on-dark) .bn-logo-img {
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
@media (max-width: 900px) {
  .bn-logo-img { height: 72px; }
  .bn-header.scrolled .bn-logo-img { height: 56px; }
}
@media (max-width: 600px) {
  .bn-logo-img { height: 56px; }
  .bn-header.scrolled .bn-logo-img { height: 46px; }
}

/* slightly larger header padding to accommodate bigger logo */
.bn-header {
  padding-top: 14px;
  padding-bottom: 14px;
}
.bn-logo-mark {
  width: 32px; height: 32px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-style: italic;
}
.bn-logo small {
  font-family: var(--f-sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-top: 1px;
}

.bn-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.bn-nav-link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.bn-nav-link:hover, .bn-nav-link.active {
  opacity: 1;
}
.bn-nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0;
  width: 18px; height: 1px;
  background: var(--gold);
}

.bn-nav-cta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.bn-nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.bn-header.on-dark .bn-nav-cta:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--navy); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--gold-deep); color: var(--bg); }
.btn-ghost {
  border-color: currentColor;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1px solid currentColor;
}
.btn-arrow .arr {
  display: inline-block;
  width: 22px;
  transition: transform 0.4s var(--ease);
}
.btn-arrow:hover .arr { transform: translateX(8px); }

/* ============================================================
   WhatsApp floating
   ============================================================ */
.wa-fab {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1E1E1E;
  color: var(--bg);
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), background 0.3s;
}
.wa-fab:hover {
  transform: translateY(-2px);
  background: #25D366;
}
.wa-fab .wa-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  transition: background 0.3s;
}
.wa-fab:hover .wa-icon { background: var(--bg); color: #25D366; }
.wa-fab svg { width: 18px; height: 18px; }
.wa-fab span {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   Page container
   ============================================================ */
.bn-page {
  min-height: 100vh;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bg);
  overflow: visible;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,29,0.55) 0%, rgba(20,24,29,0.25) 25%, rgba(20,24,29,0.85) 100%),
    linear-gradient(90deg, rgba(20,24,29,0.65) 0%, rgba(20,24,29,0.1) 60%);
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.05);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 720px;
  padding: 0 clamp(20px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-meta {
  position: absolute;
  top: 100px; left: clamp(20px, 5vw, 80px);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.95;
  margin-bottom: 32px;
  max-width: 1400px;
}
.hero-title em {
  color: var(--gold);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-tag {
  max-width: 420px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
}
.hero-scroll .line {
  width: 50px; height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 50%; height: 100%;
  background: var(--gold);
  animation: scroll-pulse 2.5s var(--ease) infinite;
}
@keyframes scroll-pulse {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Search bar overlay on hero */
.hero-search {
  position: absolute;
  bottom: -36px;
  left: clamp(20px, 5vw, 80px);
  right: clamp(20px, 5vw, 80px);
  z-index: 10;
  background: var(--bg);
  color: var(--ink);
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: stretch;
  overflow: visible;
}
.hero-search-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.2s;
  min-width: 0;
  min-height: 76px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.hero-search-cell:hover { background: var(--bg-soft); }
.hero-search-cell:last-of-type { border-right: none; }
.hero-search-cell .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0;
}
.hero-search-cell .val {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  min-width: 0;
}
.hero-search-cell .val svg {
  width: 11px; height: 11px;
  opacity: 0.5;
  flex-shrink: 0;
}
.hero-search-cell .val .v-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-search-go {
  background: var(--ink);
  color: var(--bg);
  padding: 0 36px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.3s;
}
.hero-search-go:hover { background: var(--navy); }

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: clamp(80px, 12vh, 160px) clamp(20px, 5vw, 80px);
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr;
  gap: clamp(24px, 5vw, 80px);
  margin-bottom: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; }
}
.section-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.section-title em { color: var(--gold-deep); font-weight: 400; }
.section-lead {
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ============================================================
   Stats strip (scroll-storytelling)
   ============================================================ */
.stats-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 80px clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
}
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1;
  margin-bottom: 8px;
}
.stat .num em { color: var(--gold); font-style: normal; }
.stat .lbl {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  max-width: 200px;
}

/* ============================================================
   Featured / Cards
   ============================================================ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.feat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
}
.feat-card .feat-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.feat-card .feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feat-card:hover .feat-img img { transform: scale(1.04); }
.feat-card .feat-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,24,29,0.6) 100%);
}
.feat-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.feat-tag.gold { background: var(--gold); }
.feat-tag.navy { background: var(--navy); color: var(--bg); }
.feat-info {
  padding: 24px 4px 8px;
}
.feat-info .loc {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.feat-info .ttl {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.feat-info .meta {
  display: flex;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 12px;
}
.feat-info .price {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 6px;
}
.feat-info .price small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-left: 0;
  font-weight: 400;
}

/* Span variants */
.feat-card.span-4 { grid-column: span 4; }
.feat-card.span-5 { grid-column: span 5; }
.feat-card.span-6 { grid-column: span 6; }
.feat-card.span-7 { grid-column: span 7; }
.feat-card.span-8 { grid-column: span 8; }
@media (max-width: 900px) {
  .feat-card[class*="span-"] { grid-column: 1 / -1; }
}

/* ============================================================
   Marquee / Strip
   ============================================================ */
.marquee {
  overflow: hidden;
  padding: 36px 0;
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: 56px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-item em { color: var(--gold-deep); font-style: italic; }
.marquee-item::after {
  content: "✦";
  font-size: 18px;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Two-column editorial
   ============================================================ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 900px) {
  .editorial { grid-template-columns: 1fr; }
}
.editorial-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.editorial-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-media .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--bg);
  color: var(--ink);
  padding: 16px 20px;
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.1;
}
.editorial-media .badge small {
  font-family: var(--f-sans);
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}
.editorial-body h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  margin-bottom: 28px;
}
.editorial-body h2 em {
  color: var(--gold-deep);
}
.editorial-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 480px;
}
.editorial-list {
  list-style: none;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.editorial-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.04em;
  gap: 24px;
}
.editorial-list li span:first-child {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
  font-weight: 500;
}
.editorial-list li span:last-child {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ============================================================
   Lifestyle / Tiles
   ============================================================ */
.lifestyle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .lifestyle { grid-template-columns: repeat(2, 1fr); }
}
.life-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.life-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.life-tile:hover img { transform: scale(1.06); }
.life-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(20,24,29,0.95) 100%);
}
.life-tile .info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  color: var(--bg);
  z-index: 2;
}
.life-tile .info h3 {
  font-family: var(--f-display);
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.life-tile .info p {
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 18px;
  max-width: 280px;
}
.life-tile .info .cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.life-tile .info .cta-row .arr {
  transition: transform 0.4s var(--ease);
}
.life-tile:hover .info .cta-row .arr { transform: translateX(6px); color: var(--gold); }

/* ============================================================
   CTA Block
   ============================================================ */
.cta-block {
  background: var(--navy);
  color: var(--bg);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .cta-block { grid-template-columns: 1fr; } }
.cta-block::before {
  content: "B";
  position: absolute;
  font-family: var(--f-display);
  font-size: 720px;
  bottom: -180px; right: -80px;
  line-height: 0.8;
  color: rgba(255,255,255,0.04);
  font-style: italic;
  pointer-events: none;
}
.cta-block h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.cta-block h2 em { color: var(--gold); }
.cta-block .cta-side {
  position: relative;
  z-index: 1;
}
.cta-block .cta-side p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.85;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px clamp(20px, 5vw, 80px) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand .display {
  font-size: 48px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 7px 0;
  font-size: 14px;
  opacity: 0.75;
  transition: opacity 0.2s;
  cursor: pointer;
}
.footer-col li:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
}

/* ============================================================
   LISTINGS PAGE
   ============================================================ */
.listings-page {
  padding-top: 100px;
}
.listings-hero {
  padding: 60px clamp(20px, 5vw, 80px) 40px;
  border-bottom: 1px solid var(--line);
}
.listings-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.95;
  margin-bottom: 24px;
}
.listings-hero h1 em { color: var(--gold-deep); }
.listings-hero p {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 540px;
}

/* Filter bar */
.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  padding: 16px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  background: var(--bg);
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.filter-chip svg { width: 10px; height: 10px; opacity: 0.5; }
.filter-divider { width: 1px; height: 24px; background: var(--line); margin: 0 8px; }
.filter-count {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.filter-count em { color: var(--gold-deep); font-style: normal; font-weight: 600; }
.filter-view {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
}
.filter-view button {
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  opacity: 0.6;
  font-weight: 600;
}
.filter-view button.active {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
}

/* Listings grid */
.listings-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 100vh;
}
.listings-container.full {
  grid-template-columns: 1fr;
}
.listings-map {
  position: sticky;
  top: 140px;
  height: calc(100vh - 140px);
  background: linear-gradient(135deg, #1F2D44 0%, #2A4159 50%, #1A2638 100%);
  position: relative;
  overflow: hidden;
}
.listings-map .map-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform 0.2s;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.map-pin:hover { transform: translate(-50%, -50%) scale(1.08); z-index: 10; }
.map-pin.gold { background: var(--gold); }
.map-pin.navy { background: var(--navy); color: var(--bg); }
.map-pin::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
}
.map-overlay {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(20,24,29,0.7);
  backdrop-filter: blur(20px);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.map-controls {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.map-controls button {
  width: 36px; height: 36px;
  background: var(--bg);
  display: grid; place-items: center;
  font-size: 16px;
}

/* Listing card */
.listings-grid {
  padding: 24px clamp(20px, 5vw, 80px) 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.listings-grid.with-map {
  grid-template-columns: repeat(2, 1fr);
  padding: 24px;
}
.list-card {
  cursor: pointer;
}
.list-card .img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
  margin-bottom: 16px;
}
.list-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.list-card:hover .img-wrap img { transform: scale(1.04); }
.list-card .img-wrap .badge-row {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
}
.list-card .img-wrap .badge-row span {
  background: var(--bg);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
}
.list-card .img-wrap .badge-row .gold { background: var(--gold); }
.list-card .img-wrap .badge-row .navy { background: var(--navy); color: var(--bg); }
.list-card .img-wrap .video-pip {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(20,24,29,0.7);
  backdrop-filter: blur(10px);
  color: var(--bg);
  padding: 6px 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.list-card .img-wrap .video-pip .dot {
  width: 6px; height: 6px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.list-card .img-wrap .gallery-count {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(20,24,29,0.7);
  backdrop-filter: blur(10px);
  color: var(--bg);
  padding: 6px 10px;
  font-size: 11px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.list-card .loc {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}
.list-card .ttl {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.list-card .meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 10px;
}
.list-card .meta span {
  display: flex; align-items: center; gap: 4px;
}
.list-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.list-card .price-row .price {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.list-card .price-row .ref {
  font-family: var(--f-mono);
  font-size: 10px;
  opacity: 0.5;
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.detail-page {
  padding-top: 72px;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
  padding: 4px;
  background: var(--ink);
}
.detail-gallery .g0 { grid-row: span 2; }
.detail-gallery .g {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.detail-gallery .g img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.detail-gallery .g:hover img { transform: scale(1.03); }
.detail-gallery .g.video-thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: grid; place-items: center;
  font-size: 36px;
  color: var(--bg);
}
.detail-gallery .more-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--bg);
  color: var(--ink);
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.detail-head {
  padding: 48px clamp(20px, 5vw, 80px) 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .detail-head { grid-template-columns: 1fr; } }
.detail-head .loc {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 14px;
}
.detail-head h1 {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 0.98;
  margin-bottom: 20px;
}
.detail-head h1 em { color: var(--gold-deep); }
.detail-head .quick {
  display: flex; gap: 32px;
  font-size: 13px;
  opacity: 0.75;
}
.detail-head .quick span { display: flex; align-items: center; gap: 8px; }
.detail-head .price-block {
  text-align: right;
}
@media (max-width: 900px) { .detail-head .price-block { text-align: left; } }
.detail-head .price-block .price {
  font-family: var(--f-display);
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
}
.detail-head .price-block small {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-top: 4px;
}

.detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  padding: 64px clamp(20px, 5vw, 80px);
}
@media (max-width: 900px) { .detail-body { grid-template-columns: 1fr; } }

.detail-section {
  margin-bottom: 64px;
}
.detail-section h3 {
  font-family: var(--f-display);
  font-size: 32px;
  margin-bottom: 24px;
}
.detail-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 640px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 48px;
}
@media (max-width: 700px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
.spec {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.spec .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
  margin-bottom: 10px;
  font-weight: 500;
}
.spec .val {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
}
@media (max-width: 700px) { .amenities { grid-template-columns: repeat(2, 1fr); } }
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.amenity .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Video player */
.video-player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.video-player img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.7;
}
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.video-play .circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
  transition: transform 0.3s;
  font-size: 22px;
  color: var(--ink);
  padding-left: 6px;
}
.video-player:hover .circle { transform: scale(1.1); background: var(--gold); }
.video-player .pip-label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.video-player .pip-label .ind {
  width: 8px; height: 8px;
  background: #ff4444; border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.video-player .pip-duration {
  position: absolute;
  bottom: 20px; right: 20px;
  background: rgba(0,0,0,0.5);
  color: var(--bg);
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 11px;
}

/* Sticky contact card */
.contact-card {
  position: sticky;
  top: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 28px;
}
.contact-card .agent {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}
.contact-card .agent .avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bg);
}
.contact-card .agent .name {
  font-family: var(--f-display);
  font-size: 20px;
  line-height: 1.1;
}
.contact-card .agent .role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}
.contact-card h4 {
  font-family: var(--f-display);
  font-size: 22px;
  margin-bottom: 16px;
}
.contact-card .field {
  margin-bottom: 12px;
}
.contact-card label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 6px;
}
.contact-card input, .contact-card textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.contact-card input:focus, .contact-card textarea:focus { border-bottom-color: var(--gold-deep); }
.contact-card textarea { resize: none; height: 60px; }
.contact-card .actions {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}
.contact-card .wa-btn {
  background: #25D366;
  color: white;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 2px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page { padding-top: 0; }
.about-hero {
  min-height: 80vh;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; min-height: auto; padding: 140px 0 0; } }
.about-hero .text {
  padding: 140px clamp(20px, 5vw, 80px);
  z-index: 2;
}
.about-hero .text .eyebrow { color: var(--gold); }
.about-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(54px, 7vw, 110px);
  line-height: 0.98;
  margin: 20px 0 32px;
}
.about-hero h1 em { color: var(--gold); }
.about-hero .text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 460px;
}
.about-hero .media {
  position: relative;
  height: 100%;
  min-height: 480px;
}
.about-hero .media img {
  width: 100%; height: 100%; object-fit: cover;
}

.about-story {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px);
}
.about-story .columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 96px);
}
@media (max-width: 900px) { .about-story .columns { grid-template-columns: 1fr; } }
.about-story h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
}
.about-story h2 em { color: var(--gold-deep); }
.about-story .body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-story .body p:first-letter {
  font-family: var(--f-display);
  font-size: 56px;
  float: left;
  line-height: 0.8;
  padding: 6px 12px 0 0;
  color: var(--gold-deep);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value:last-child { border-right: none; }
.value .num {
  display: none;
}
.value h3 {
  font-family: var(--f-display);
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.05;
}
.value p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-member .photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-soft), #DCD5C9);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.team-member .photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.team-member .photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(20,24,29,0.3) 100%);
}
.team-member .name {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.1;
}
.team-member .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 6px;
}
.team-member .creci {
  font-family: var(--f-mono);
  font-size: 10px;
  opacity: 0.5;
  margin-top: 4px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding-top: 100px; min-height: 100vh; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 100px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-left {
  padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px);
  background: var(--bg);
}
.contact-left h1 {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
  margin-bottom: 24px;
}
.contact-left h1 em { color: var(--gold-deep); }
.contact-left .lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 460px;
}
.contact-info {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}
.contact-info-item .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
}
.contact-info-item .val {
  font-family: var(--f-display);
  font-size: 26px;
  line-height: 1.2;
}
.contact-info-item .sub {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-channel {
  padding: 20px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
  cursor: pointer;
}
.contact-channel:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}
.contact-channel .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-soft);
  flex-shrink: 0;
  transition: background 0.3s;
}
.contact-channel:hover .ico { background: var(--gold); color: var(--ink); }
.contact-channel.wa .ico { background: #25D366; color: white; }
.contact-channel .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
}
.contact-channel .val {
  font-family: var(--f-display);
  font-size: 18px;
  margin-top: 2px;
}

.contact-right {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 10vh, 120px) clamp(20px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.contact-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 100% 28px;
}
.contact-form {
  position: relative;
  z-index: 1;
}
.contact-form h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 8px;
}
.contact-form h2 em { color: var(--gold); }
.contact-form .sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 40px;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form .fld {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 6px;
  position: relative;
}
.contact-form .fld label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 6px;
}
.contact-form .fld input, .contact-form .fld textarea, .contact-form .fld select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--bg);
  font-family: var(--f-sans);
  font-size: 15px;
  outline: none;
  padding: 4px 0;
}
.contact-form .fld select option { color: var(--ink); }
.contact-form .fld textarea { resize: none; height: 80px; }
.contact-form .chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.contact-form .chip-row .chip {
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.contact-form .chip-row .chip:hover { border-color: var(--gold); }
.contact-form .chip-row .chip.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.contact-form .submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-form .submit-row .privacy {
  font-size: 11px;
  opacity: 0.55;
  max-width: 260px;
  line-height: 1.4;
}

/* ============================================================
   Animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Scroll-driven big text */
.parallax-text {
  font-family: var(--f-display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--gold-deep);
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
}

/* Density modes */
body.density-compact .section { padding-block: clamp(60px, 9vh, 120px); }
body.density-compact .feat-grid { gap: 16px; }
body.density-compact .hero-title { font-size: clamp(44px, 7vw, 120px); }

body.density-spacious .section { padding-block: clamp(100px, 16vh, 200px); }
body.density-spacious .feat-grid { gap: 32px; }


/* ============================================================
   Hero carousel (multi-image)
   ============================================================ */
.hero-media .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease-out);
}
.hero-media .hero-slide.active { opacity: 1; }
.hero-media .hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 12s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}
.hero-indicators {
  position: absolute;
  bottom: 110px;
  right: clamp(20px, 5vw, 80px);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-indicators .ind {
  width: 32px; height: 2px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hero-indicators .ind.active { background: rgba(255,255,255,0.4); }
.hero-indicators .ind.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: indProgress 6s linear forwards;
  transform-origin: left;
}
@keyframes indProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* readability scrim under title */
.hero-content::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at 30% 80%, rgba(20,24,29,0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   Video player aspect handling
   ============================================================ */
.video-player.ar-16-9 { aspect-ratio: 16/9; }
.video-player.ar-9-16 { aspect-ratio: 9/16; max-width: 360px; margin: 0 auto; }

.video-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 20px;
  gap: 4px;
}
.video-toggle button {
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.55;
  border-radius: 999px;
  font-family: var(--f-mono);
}
.video-toggle button.active {
  background: var(--ink);
  color: var(--bg);
  opacity: 1;
}

/* ============================================================
   Section header — wider title variant
   ============================================================ */
.section-head.wide-title {
  grid-template-columns: 1.6fr 1fr;
}
.section-head.wide-title .section-title {
  font-size: clamp(40px, 5.5vw, 84px);
}

/* ============================================================
   Carousel (about / general)
   ============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.8s var(--ease-out);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.carousel-slide .caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--bg);
  color: var(--ink);
  padding: 14px 18px;
  font-family: var(--f-display);
  font-size: 20px;
}
.carousel-slide .caption small {
  font-family: var(--f-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  display: block;
  margin-bottom: 4px;
}
.carousel-nav {
  position: absolute;
  bottom: 24px; right: 24px;
  display: flex;
  gap: 4px;
  background: rgba(20,24,29,0.6);
  backdrop-filter: blur(20px);
  padding: 6px;
  border-radius: 999px;
  z-index: 2;
}
.carousel-nav button {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--bg);
  font-size: 16px;
  transition: background 0.2s;
}
.carousel-nav button:hover { background: rgba(255,255,255,0.15); }
.carousel-dots {
  position: absolute;
  top: 24px; left: 24px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel-dots .d {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.carousel-dots .d.active { background: var(--gold); }

/* ============================================================
   LAUNCHES (Lançamentos) page
   ============================================================ */
.launches-page { padding-top: 0; }

.launches-hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.launches-hero .bg {
  position: absolute;
  inset: 0;
}
.launches-hero .bg .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out);
}
.launches-hero .bg .slide.active { opacity: 1; }
.launches-hero .bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 14s ease-in-out infinite alternate;
}
.launches-hero .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,24,29,0.4) 0%, rgba(20,24,29,0.2) 40%, rgba(20,24,29,0.95) 100%),
    linear-gradient(90deg, rgba(20,24,29,0.6) 0%, transparent 50%);
}
.launches-hero .content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 140px clamp(20px, 5vw, 80px) 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.launches-hero .meta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.launches-hero .meta-top .eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.launches-hero .meta-top .live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.launches-hero .meta-top .live-indicator .dot {
  width: 8px; height: 8px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.launches-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 1300px;
}
.launches-hero h1 em { color: var(--gold); font-style: italic; }
.launches-hero .bottom-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
@media (max-width: 900px) { .launches-hero .bottom-row { grid-template-columns: 1fr; } }
.launches-hero .tagline {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 520px;
}
.launches-hero .now-playing {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.launches-hero .now-playing .label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}
.launches-hero .now-playing .name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
}
.launches-hero .now-playing .loc {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

/* Launch cards grid */
.launches-grid {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 900px) { .launches-grid { grid-template-columns: 1fr; } }
.launch-card {
  position: relative;
  cursor: pointer;
  display: grid;
  gap: 24px;
}
.launch-card .img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-soft);
}
.launch-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.launch-card:hover .img-wrap img { transform: scale(1.04); }
.launch-card .img-wrap .video-pip {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(20,24,29,0.7);
  backdrop-filter: blur(10px);
  color: var(--bg);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.launch-card .img-wrap .video-pip .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.launch-card .img-wrap .stage {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--ink);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.launch-card .info .typology {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.launch-card .info h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.98;
  margin-bottom: 14px;
}
.launch-card .info .loc {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  opacity: 0.85;
  margin-bottom: 22px;
}
.launch-card .info .specs {
  display: flex;
  gap: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.launch-card .info .specs > div .lbl {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.85;
  margin-bottom: 8px;
  font-weight: 500;
}
.launch-card .info .specs > div .val {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.launch-card .info .cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.launch-card .info .cta .price {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
}
.launch-card .info .cta .price small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}
.launch-card .info .cta .btn-arrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* Launch detail page */
.launch-detail { padding-top: 0; }

.launch-cover {
  position: relative;
  height: 100vh;
  min-height: 720px;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
}
.launch-cover .bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.launch-cover .bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,24,29,0.4) 0%, rgba(20,24,29,0.2) 50%, rgba(20,24,29,0.95) 100%);
}
.launch-cover .content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 720px;
  padding: 140px clamp(20px, 5vw, 80px) 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.launch-cover .top-tags {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.launch-cover .top-tags .tag {
  background: var(--gold);
  color: var(--ink);
  padding: 6px 12px;
  font-weight: 600;
}
.launch-cover h1 {
  font-family: var(--f-display);
  font-size: clamp(64px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.launch-cover h1 em { color: var(--gold); font-style: italic; }
.launch-cover .sub-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 900px) { .launch-cover .sub-info { grid-template-columns: repeat(2, 1fr); } }
.launch-cover .sub-info > div .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.launch-cover .sub-info > div .val {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.1;
}
.launch-cover .sub-info > div .val em { color: var(--gold); }

/* Story / history */
.launch-story {
  padding: clamp(80px, 14vh, 160px) clamp(20px, 5vw, 80px);
}
.launch-story .columns {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .launch-story .columns { grid-template-columns: 1fr; } }
.launch-story h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
}
.launch-story h2 em { color: var(--gold-deep); font-style: italic; }
.launch-story .body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.launch-story .body p:first-letter {
  font-family: var(--f-display);
  font-size: 64px;
  float: left;
  line-height: 0.85;
  padding: 6px 14px 0 0;
  color: var(--gold-deep);
}

/* Plant viewer */
.plant-section {
  background: var(--bg-soft);
  padding: clamp(80px, 12vh, 140px) clamp(20px, 5vw, 80px);
}
.plant-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .plant-grid { grid-template-columns: 1fr; } }
.plant-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plant-tab {
  text-align: left;
  padding: 18px 20px;
  background: transparent;
  border: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.plant-tab .sub {
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 4px;
}
.plant-tab.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.plant-tab.active .sub { color: var(--gold); opacity: 1; }
.plant-canvas {
  background: var(--bg);
  aspect-ratio: 16/10;
  padding: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  position: relative;
}
.plant-canvas svg {
  width: 100%; height: 100%;
}

/* Differentials list with imagery */
.diff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 900px) { .diff-list { grid-template-columns: 1fr; } }
.diff-item {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.diff-item:last-child { border-right: none; }
.diff-item .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.diff-item h4 {
  font-family: var(--f-display);
  font-size: 24px;
  margin-bottom: 12px;
  line-height: 1.1;
}
.diff-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Reserve CTA */
.reserve-cta {
  background: var(--navy);
  color: var(--bg);
  padding: clamp(60px, 10vw, 120px) clamp(20px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .reserve-cta { grid-template-columns: 1fr; } }
.reserve-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.5vw, 84px);
  line-height: 0.98;
}
.reserve-cta h2 em { color: var(--gold); font-style: italic; }
.reserve-cta .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
.reserve-cta .meta-grid > div .lbl {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0.6; margin-bottom: 6px;
}
.reserve-cta .meta-grid > div .val {
  font-family: var(--f-display); font-size: 22px;
}


/* ============================================================
   Single-person team (Denise)
   ============================================================ */
.solo-team {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) { .solo-team { grid-template-columns: 1fr; } }
.solo-team .photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.solo-team .photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
}
.solo-team .photo-wrap::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20,24,29,0.5) 100%);
}
.solo-team .photo-wrap .stamp {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: var(--f-mono);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.solo-team .body .name {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.solo-team .body .name em { color: var(--gold); font-style: italic; }
.solo-team .body .role-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.solo-team .body .role-line .creci {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.solo-team .body .role-line .role {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.solo-team .body .role-line .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}
.solo-team .body .bio {
  font-size: 17px;
  line-height: 1.75;
  opacity: 0.88;
  margin-bottom: 16px;
  max-width: 500px;
}
.solo-team .body .signature {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  margin: 32px 0 8px;
  letter-spacing: -0.005em;
}
.solo-team .body .signature-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 32px;
}
.solo-team .body .quick-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 32px;
  padding-top: 24px;
}
.solo-team .body .quick-contact > div {
  padding: 4px 16px 4px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.solo-team .body .quick-contact > div:last-child { border-right: none; padding-right: 0; padding-left: 16px; }
.solo-team .body .quick-contact .lbl {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 6px;
}
.solo-team .body .quick-contact .val {
  font-family: var(--f-display);
  font-size: 16px;
}

/* ============================================================
   Interactive Hero Search dropdowns
   ============================================================ */
.hero-search-cell {
  position: relative;
}
.hero-search-cell .val svg { transition: transform 0.3s var(--ease); opacity: 0.6; }
.hero-search-cell.open .val svg { transform: rotate(180deg); }
.hero-search-cell.open { background: var(--bg-soft); }
.hero-search-cell .dropdown {
  position: absolute;
  top: 100%; left: 0; right: -1px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-top: none;
  z-index: 50;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.2);
  max-height: 320px;
  overflow-y: auto;
}
.hero-search-cell .dropdown .opt {
  padding: 14px 22px;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-search-cell .dropdown .opt:hover {
  background: var(--bg-soft);
}
.hero-search-cell .dropdown .opt.selected {
  background: var(--ink);
  color: var(--bg);
}
.hero-search-cell .dropdown .opt small {
  font-family: var(--f-mono);
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.08em;
}
