/* ============================================================
   SECRET APARTMENTS — dark sensual premium
   Design system + components. Authored hand-crafted (no framework).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* base / ink */
  --ink: #0b0809;
  --ink-2: #100b0d;
  --surface: #15100f;
  --surface-2: #1c1517;
  --surface-3: #241a1d;

  /* accents */
  --wine: #8a1330;
  --wine-deep: #570c1d;
  --wine-bright: #b51840;
  --gold: #c9a45c;
  --gold-soft: #d8bd86;
  --gold-bright: #ecd6a0;

  /* text */
  --text: #f4ece7;
  --text-dim: #c2b4ab;
  --text-faint: #8c7d75;

  /* lines */
  --line: rgba(201, 164, 92, 0.16);
  --line-strong: rgba(201, 164, 92, 0.34);
  --line-soft: rgba(255, 255, 255, 0.07);

  /* type */
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* layout */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* subtle cinematic vignette + grain on the whole page */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, transparent 55%, rgba(0,0,0,0.55) 100%);
  mix-blend-mode: multiply;
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text); font-weight: 500; line-height: 1.06; letter-spacing: 0.005em; }
.h-display { font-size: clamp(2.7rem, 6.6vw, 5.6rem); font-weight: 500; }
.h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
em, .it { font-style: italic; }
.accent { color: var(--gold-soft); }
.serif { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7;
}
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--text-dim); line-height: 1.7; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 3; }
.section { padding-block: var(--section-y); position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head .lead { margin-top: 1.3rem; }
.bg-surface { background: var(--surface); }
.bg-ink2 { background: var(--ink-2); }
.divider-line { height: 1px; background: var(--line); border: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 1.05rem 2rem; border-radius: var(--radius); transition: all 0.4s var(--ease); position: relative; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--wine) 0%, var(--wine-bright) 100%); color: #fff; box-shadow: 0 10px 30px -12px rgba(181, 24, 64, 0.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(181, 24, 64, 0.85), 0 0 0 1px var(--gold) inset; }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--gold-soft); background: rgba(255,255,255,0.01); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(201,164,92,0.06); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 0.8rem 1.4rem; font-size: 0.72rem; }

/* ---------- Header ---------- */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.4s var(--ease), backdrop-filter 0.4s, border-color 0.4s, padding 0.4s; border-bottom: 1px solid transparent; padding-block: 0.4rem; }
.header.scrolled { background: rgba(11, 8, 9, 0.86); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; flex-direction: row; align-items: center; gap: 0.6rem; line-height: 1; }
.brand-emblem { height: 38px; width: auto; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.18em; color: var(--text); }
.brand .brand-sub { font-size: 0.56rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--gold); margin-top: 5px; padding-left: 3px; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.9rem; }
.nav-links a { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); font-weight: 500; transition: color 0.3s; position: relative; padding-block: 4px; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.35s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1.2rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--text); }
.header-phone svg { width: 16px; height: 16px; stroke: var(--gold); }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.nav-toggle span { width: 24px; height: 1.5px; background: var(--text); transition: 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,8,9,0.72) 0%, rgba(11,8,9,0.4) 35%, rgba(11,8,9,0.55) 70%, rgba(11,8,9,0.96) 100%),
    radial-gradient(90% 70% at 25% 50%, rgba(87,12,29,0.35), transparent 70%);
}
.hero-inner { position: relative; z-index: 4; padding-top: 90px; max-width: 800px; }
.hero .eyebrow { margin-bottom: 1.8rem; }
.hero h1 { margin-bottom: 1.6rem; }
.hero h1 .accent { font-style: italic; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-dim); max-width: 560px; margin-bottom: 2.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem 2.2rem; }
.hero-trust .ht-item { display: flex; align-items: baseline; gap: 0.55rem; }
.hero-trust .ht-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.hero-trust .ht-label { font-size: 0.78rem; color: var(--text-dim); letter-spacing: 0.02em; }
.hero-trust .ht-sep { width: 1px; height: 28px; background: var(--line); }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--text-faint); font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue .mouse { width: 22px; height: 36px; border: 1px solid var(--line-strong); border-radius: 12px; position: relative; }
.scroll-cue .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0);} 30%{opacity:1;} 70%{opacity:1;} 100%{opacity:0;transform:translate(-50%,10px);} }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--line); background: var(--ink-2); }
.trustbar-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { display: flex; align-items: center; gap: 0.9rem; padding: 1.7rem 1.4rem; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-item svg { width: 26px; height: 26px; stroke: var(--gold); flex-shrink: 0; }
.trust-item span { font-size: 0.82rem; color: var(--text-dim); line-height: 1.35; letter-spacing: 0.01em; }

/* ---------- Intro / editorial ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.split.reverse .split-media { order: -1; }
.intro-body { align-self: center; }
.split-media { position: relative; display: flex; }
.split-media img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; border-radius: var(--radius-lg); min-height: 360px; max-height: 600px; }
.split-media .frame-tag { position: absolute; bottom: 18px; left: 18px; background: rgba(11,8,9,0.7); backdrop-filter: blur(6px); border: 1px solid var(--line); padding: 0.6rem 1rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.intro-body p { margin-top: 1.3rem; }
.intro-stats { display: flex; gap: 2.4rem; margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.intro-stats .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--gold-bright); line-height: 1; }
.intro-stats .lbl { font-size: 0.8rem; color: var(--text-faint); margin-top: 0.4rem; }

/* ---------- Apartments grid ---------- */
.apt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.8vw, 1.7rem); }
.apt-grid-top { grid-template-columns: repeat(3, 1fr); }
.apt-grid-bottom { grid-template-columns: repeat(4, 1fr); margin-top: clamp(1rem, 1.8vw, 1.7rem); }
.apt-grid-bottom .apt-media { aspect-ratio: 5/6; }
.apt-grid-bottom .apt-info { padding: 1.2rem 1.2rem 1.3rem; }
.apt-grid-bottom .apt-info h3 { font-size: 1.3rem; }
.apt-grid-bottom .apt-vibe { font-size: 0.79rem; min-height: 0; margin-bottom: 0.85rem; }
.apt-grid-bottom .apt-foot { padding-top: 0.85rem; }
.apt-grid-bottom .apt-price b { font-size: 1.25rem; }
.apt-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; background: var(--surface); border: 1px solid var(--line-soft); transition: border-color 0.4s, transform 0.4s var(--ease); isolation: isolate; }
.apt-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.apt-media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.apt-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter 0.5s; }
.apt-card:hover .apt-media img { transform: scale(1.06); }
.apt-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,9,0) 35%, rgba(11,8,9,0.55) 70%, rgba(11,8,9,0.95) 100%); transition: opacity 0.4s; }
.apt-badges { position: absolute; top: 14px; left: 14px; right: 14px; z-index: 3; display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.badge { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.42rem 0.7rem; border-radius: 2px; backdrop-filter: blur(6px); }
.badge-city { background: rgba(11,8,9,0.6); border: 1px solid var(--line); color: var(--gold-soft); }
.badge-rating { background: rgba(138,19,48,0.82); color: #fff; display: inline-flex; align-items: center; gap: 0.32rem; border: 1px solid rgba(236,214,160,0.3); }
.badge-rating svg { width: 11px; height: 11px; fill: var(--gold-bright); }
.apt-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.5rem 1.5rem 1.6rem; }
.apt-info h3 { font-size: 1.65rem; font-weight: 600; margin-bottom: 0.4rem; }
.apt-vibe { font-size: 0.86rem; color: var(--text-dim); line-height: 1.4; margin-bottom: 1rem; min-height: 2.4em; }
.apt-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.15rem; }
.apt-tags span { font-size: 0.68rem; letter-spacing: 0.04em; color: var(--text-dim); border: 1px solid var(--line); border-radius: 100px; padding: 0.28rem 0.7rem; }
.apt-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.05rem; border-top: 1px solid var(--line-soft); }
.apt-price { font-size: 0.82rem; color: var(--text-faint); }
.apt-price b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--text); display: block; margin-top: 1px; }
.apt-open { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; transition: gap 0.3s; }
.apt-card:hover .apt-open { gap: 0.75rem; }
.apt-open svg { width: 15px; height: 15px; stroke: var(--gold); }
.apt-note { margin-top: 2.4rem; text-align: center; font-size: 0.86rem; color: var(--text-faint); }

/* ---------- Amenities band ---------- */
.amenities { position: relative; overflow: hidden; }
.amenities-bg { position: absolute; inset: 0; z-index: 0; }
.amenities-bg img { width: 100%; height: 100%; object-fit: cover; }
.amenities-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,9,0.93), rgba(11,8,9,0.86)); }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 3rem; }
.amen-item { background: var(--ink-2); padding: 2.2rem 1.8rem; display: flex; flex-direction: column; gap: 0.85rem; transition: background 0.4s; }
.amen-item:hover { background: var(--surface-2); }
.amen-item svg { width: 32px; height: 32px; stroke: var(--gold); }
.amen-item h4 { font-size: 1.3rem; font-weight: 600; }
.amen-item p { font-size: 0.86rem; color: var(--text-faint); }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.7rem); }
.pkg { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem 2rem; display: flex; flex-direction: column; position: relative; transition: transform 0.4s var(--ease), border-color 0.4s; }
.pkg:hover { transform: translateY(-5px); border-color: var(--line-strong); }
.pkg.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(138,19,48,0.14), var(--surface)); }
.pkg-flag { position: absolute; top: -1px; right: 22px; background: var(--gold); color: var(--ink); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 0 0 3px 3px; }
.pkg h3 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.pkg .pkg-for { font-size: 0.82rem; color: var(--gold-soft); letter-spacing: 0.04em; margin-bottom: 1.6rem; }
.pkg .pkg-price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--text); line-height: 1; margin-bottom: 0.3rem; }
.pkg .pkg-price small { font-size: 0.9rem; color: var(--text-faint); font-family: var(--font-body); }
.pkg-list { margin: 1.7rem 0 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.pkg-list li { display: flex; gap: 0.7rem; font-size: 0.9rem; color: var(--text-dim); line-height: 1.4; }
.pkg-list svg { width: 17px; height: 17px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }
.pkg .btn { margin-top: auto; }
.pkg-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-inline: auto; }

/* ---------- Social proof ---------- */
.ratings-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.rating-cell { background: var(--ink-2); padding: 2rem 1.4rem; text-align: center; }
.rating-cell .rv { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 600; color: var(--gold-bright); line-height: 1; }
.rating-cell .rl { font-size: 0.82rem; color: var(--text); margin-top: 0.55rem; font-weight: 500; }
.rating-cell .rs { font-size: 0.72rem; color: var(--text-faint); margin-top: 0.2rem; }
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.tcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.9rem; position: relative; }
.tcard .quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.7; color: var(--wine-bright); opacity: 0.55; height: 26px; }
.tcard p { font-family: var(--font-display); font-style: italic; font-size: 1.32rem; line-height: 1.4; color: var(--text); margin: 0.7rem 0 1.3rem; }
.tcard .tmeta { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; font-size: 0.78rem; color: var(--text-faint); padding-top: 1.1rem; border-top: 1px solid var(--line-soft); }
.tcard .stars { display: inline-flex; gap: 2px; }
.tcard .stars svg { width: 14px; height: 14px; fill: var(--gold); }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.loc-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; border: 1px solid var(--line-soft); }
.loc-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.loc-card:hover img { transform: scale(1.05); }
.loc-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,9,0.1) 30%, rgba(11,8,9,0.9) 100%); }
.loc-info { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 1.7rem; }
.loc-info h3 { font-size: 1.8rem; }
.loc-info .loc-count { font-size: 0.8rem; color: var(--gold-soft); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.3rem; }
.loc-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
.loc-disclaimer { margin-top: 2.2rem; display: flex; align-items: center; gap: 0.7rem; justify-content: center; font-size: 0.86rem; color: var(--text-faint); }
.loc-disclaimer svg { width: 18px; height: 18px; stroke: var(--gold); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.6rem 0; text-align: left; font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 500; color: var(--text); transition: color 0.3s; }
.faq-q:hover { color: var(--gold-soft); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.4s var(--ease); }
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 1.7rem; color: var(--text-dim); font-size: 0.96rem; line-height: 1.7; max-width: 680px; }

/* ---------- Final CTA ---------- */
.finalcta { position: relative; overflow: hidden; text-align: center; }
.finalcta-bg { position: absolute; inset: 0; z-index: 0; }
.finalcta-bg video, .finalcta-bg img { width: 100%; height: 100%; object-fit: cover; }
.finalcta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,8,9,0.86), rgba(11,8,9,0.8)), radial-gradient(70% 60% at 50% 50%, rgba(87,12,29,0.4), transparent 75%); }
.finalcta .container { z-index: 3; }
.finalcta h2 { margin-bottom: 1.4rem; }
.finalcta .lead { margin-inline: auto; max-width: 560px; margin-bottom: 2.4rem; }
.cta-alt { margin-top: 1.6rem; font-size: 0.86rem; color: var(--text-faint); }
.cta-alt a { color: var(--gold-soft); border-bottom: 1px solid var(--line); }
.cta-alt a:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); }
.footer .brand-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; letter-spacing: 0.18em; color: var(--text); }
.footer .brand-sub { font-size: 0.58rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.footer-logo { width: 172px; height: auto; display: block; }
.footer-about { font-size: 0.88rem; color: var(--text-faint); margin-top: 1.3rem; max-width: 300px; line-height: 1.6; }
.footer-col h5 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.88rem; color: var(--text-dim); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all 0.3s; }
.footer-social a:hover { border-color: var(--gold); background: rgba(201,164,92,0.08); }
.footer-social svg { width: 17px; height: 17px; fill: var(--gold-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 2rem; font-size: 0.78rem; color: var(--text-faint); }
.footer-bottom a:hover { color: var(--gold-soft); }
.placeholder { color: var(--wine-bright); border-bottom: 1px dotted var(--wine-bright); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(7, 5, 6, 0.97); backdrop-filter: blur(10px); display: none; opacity: 0; transition: opacity 0.4s; }
.lightbox.active { display: block; opacity: 1; }
.lb-inner { height: 100%; display: grid; grid-template-rows: auto 1fr auto; }
.lb-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; padding: clamp(1.2rem, 3vw, 2.2rem) var(--gutter); }
.lb-title h3 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.lb-title .lb-sub { font-size: 0.84rem; color: var(--gold-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.4rem; }
.lb-close { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s; }
.lb-close:hover { border-color: var(--gold); transform: rotate(90deg); }
.lb-close svg { width: 20px; height: 20px; stroke: var(--text); }
.lb-stage { position: relative; display: flex; align-items: center; justify-content: center; padding: 0 var(--gutter); min-height: 0; }
.lb-img { max-width: min(1100px, 100%); max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: rgba(11,8,9,0.5); transition: all 0.3s; z-index: 3; }
.lb-nav:hover { border-color: var(--gold); background: rgba(138,19,48,0.4); }
.lb-nav svg { width: 22px; height: 22px; stroke: var(--text); }
.lb-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lb-next { right: clamp(0.5rem, 2vw, 1.5rem); }
.lb-bottom { padding: clamp(1.2rem, 3vw, 2rem) var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.lb-desc { max-width: 620px; font-size: 0.92rem; color: var(--text-dim); line-height: 1.6; }
.lb-desc .lb-tags { margin-top: 0.7rem; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.lb-desc .lb-tags span { font-size: 0.7rem; color: var(--gold-soft); border: 1px solid var(--line); border-radius: 100px; padding: 0.25rem 0.7rem; }
.lb-actions { display: flex; align-items: center; gap: 1.2rem; }
.lb-counter { font-size: 0.84rem; color: var(--text-faint); letter-spacing: 0.1em; }

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; display: none; gap: 0.7rem; padding: 0.7rem; background: rgba(11,8,9,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); }
.mobile-cta .btn { flex: 1; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .scroll-cue .mouse::after { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .apt-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 980px) {
  .nav-links, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav { position: fixed; inset: 0; top: 0; background: rgba(11,8,9,0.98); backdrop-filter: blur(16px); flex-direction: column; justify-content: center; gap: 0; transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 60; }
  .nav.open { transform: none; }
  .nav .nav-links { display: flex; flex-direction: column; align-items: center; gap: 0; }
  .nav .nav-links a { font-size: 1.4rem; font-family: var(--font-display); text-transform: none; letter-spacing: 0.02em; padding: 1rem; }
  .nav .header-cta { flex-direction: column; margin-top: 2rem; }
  .nav .header-phone { display: inline-flex; font-size: 1.1rem; }
  .nav-toggle { z-index: 70; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media { display: block; }
  .split-media img { height: auto; aspect-ratio: 16/11; min-height: 0; max-height: none; }
  .trustbar-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .amen-grid, .pkg-grid, .tcards, .loc-grid { grid-template-columns: 1fr 1fr; }
  .ratings-strip { grid-template-columns: 1fr 1fr; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .header.scrolled + main { } /* noop */
}
@media (max-width: 640px) {
  .apt-grid, .amen-grid, .pkg-grid, .tcards, .loc-grid, .ratings-strip, .trustbar-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-trust .ht-sep { display: none; }
  .intro-stats { flex-wrap: wrap; gap: 1.5rem; }
  .lb-bottom .lb-desc { display: none; }
  .trust-item { border-left: 0; }
}
