/* ============================================================
   MULALO — LUXURY LANDING PAGE
   Mobile-First · Black & Gold · Cinematic
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --black:      #000000;
  --dark:       #0f0f0f;
  --dark-2:     #111111;
  --gold:       #D4AF37;
  --gold-soft:  #F5D67B;
  --gold-dim:   rgba(212, 175, 55, 0.14);
  --gold-glow:  rgba(212, 175, 55, 0.25);
  --white:      #FFFFFF;
  --muted:      #BDBDBD;
  --muted-dim:  rgba(189, 189, 189, 0.5);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --trans:      0.4s var(--ease);

  --radius:     12px;
  --radius-lg:  20px;

  --glow-sm:    0 0 24px rgba(212, 175, 55, 0.22);
  --glow-md:    0 0 48px rgba(212, 175, 55, 0.30);
  --glow-lg:    0 0 80px rgba(212, 175, 55, 0.40);

  --section-py: 96px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 22px;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.br-mobile { display: inline; }

/* ── KEYFRAMES ─────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGold {
  0%,100% { box-shadow: 0 0 22px rgba(212,175,55,.3); }
  50%      { box-shadow: 0 0 60px rgba(212,175,55,.6); }
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.4); opacity: .4; }
}
@keyframes shiftGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

/* ── SCROLL-REVEAL ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 6px 0;
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
}
.nav.scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 4px 0;
  border-bottom: 1px solid rgba(212,175,55,.12);
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  z-index: 101;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* hamburger */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--trans);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* mobile slide-in menu */
.nav__menu {
  position: fixed;
  top: 0; right: -110%;
  width: 78%;
  max-width: 300px;
  height: 100dvh;
  background: rgba(4,4,4,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(212,175,55,.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transition: right .42s var(--ease);
  z-index: 99;
}
.nav__menu.open { right: 0; }
.nav__menu a {
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color var(--trans);
}
.nav__menu a:hover { color: var(--gold); }
.nav__cta-link {
  border: 1px solid rgba(212,175,55,.4) !important;
  padding: 9px 28px !important;
  border-radius: 4px;
  color: var(--gold) !important;
  background: rgba(212,175,55,.06) !important;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 110px 22px 80px;
  text-align: center;
}

/* particles canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* background image */
.hero__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
  filter: saturate(0.7);
}

/* cinematic overlays */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 10%, rgba(212,175,55,.14) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 100%, rgba(212,175,55,.07) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%);
}

/* film-grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* hero text */
.hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeInUp .8s var(--ease-out) .3s forwards;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 8vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero__headline span {
  display: block;
  opacity: 0;
}
.hero-anim-2 { animation: fadeInUp 1s var(--ease-out) .55s forwards; }
.hero-anim-3 { animation: fadeInUp 1s var(--ease-out) .82s forwards; }

.hero__sub {
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 42px;
  opacity: 0;
  animation: fadeInUp .9s var(--ease-out) 1.05s forwards;
}
.hero-anim-4 { animation: fadeInUp .9s var(--ease-out) 1.05s forwards; }
.hero-anim-5 { animation: fadeInUp .9s var(--ease-out) 1.28s forwards; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 48px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  opacity: 0;
}
.btn--hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: #000;
  animation: fadeInUp .9s var(--ease-out) 1.28s forwards, shiftGrad 3.5s linear infinite;
}
.btn--hero:hover  { transform: translateY(-3px); box-shadow: var(--glow-lg); }
.btn--cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #000;
  padding: 22px 68px;
  font-size: 1rem;
  opacity: 1;
  animation: none;
}
.btn--cta:hover   { transform: translateY(-4px); box-shadow: var(--glow-lg); }

.btn__glow {
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft), var(--gold));
  filter: blur(16px);
  opacity: 0.38;
  z-index: -1;
  animation: pulseGold 2.8s ease infinite;
  border-radius: inherit;
}
.btn__glow--lg { filter: blur(28px); opacity: 0.45; }

/* ── SCROLL INDICATOR ──────────────────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp .8s var(--ease-out) 2s forwards;
}
.hero__scroll-label {
  font-size: 0.58rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(212,175,55,.55);
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top;
  animation: scrollLine 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   STATS / RESULTS
   ═══════════════════════════════════════════════════════════ */
.stats {
  padding: var(--section-py) 0;
  background: var(--dark);
  text-align: center;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-card {
  position: relative;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius);
  padding: 32px 16px;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
}
.stat-card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.48); box-shadow: var(--glow-md); }
.stat-card:hover::before { opacity: 1; }

.stat-card__star {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.stat-card__num {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   STORY SECTION
   ═══════════════════════════════════════════════════════════ */
.story {
  padding: var(--section-py) 0 40px;
  background: var(--black);
}
.story > .container { text-align: center; margin-bottom: 60px; }
.story__intro {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -24px;
}

/* timeline wrapper */
.timeline { position: relative; }

/* chapter base */
.tl-chapter {
  position: relative;
  padding: 52px 22px;
}
.tl-num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-head);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(212,175,55,.07);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* inner layout (image + text) */
.tl-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

/* image frame */
.tl-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #111, #1c1c1c);
  border: 1px solid rgba(212,175,55,.18);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
}
.tl-img-wrap--gold { border-color: rgba(212,175,55,.35); }
.tl-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease);
  display: block;
}
.tl-img-wrap:hover .tl-img { transform: scale(1.05); }
.tl-img-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 14px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* text side */
.tl-text { display: flex; flex-direction: column; justify-content: center; }
.tl-year {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tl-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 18px;
}
.tl-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.tl-quote {
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  background: rgba(212,175,55,.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--white);
  line-height: 1.6;
}
.tl-wins { display: flex; flex-direction: column; gap: 10px; }
.tl-wins li { font-size: 0.95rem; color: var(--muted); }

/* Decision chapter */
.tl-chapter--decision {
  background: linear-gradient(to right, transparent, rgba(212,175,55,.025), transparent);
}
.tl-decision {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.tl-decision-img-wrap {
  position: relative;
  max-width: 500px;
  margin: 0 auto 36px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.22);
  aspect-ratio: 4 / 3;
}

.tl-decision-headline {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 18px 0 28px;
}
.tl-decision-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tl-decision-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 36px;
}
.tl-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.tl-divider::before, .tl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,.4), transparent);
}
.tl-divider span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dim);
  white-space: nowrap;
}
.tl-choice {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Today chapter */
.tl-chapter--today {
  background: linear-gradient(to right, transparent, rgba(212,175,55,.02), transparent);
}
.tl-today {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
.tl-today-headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 18px 0 40px;
}
.tl-today-headline em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tl-today-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.tl-today-card {
  background: rgba(212,175,55,.05);
  border: 1px solid rgba(212,175,55,.15);
  border-radius: var(--radius);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color var(--trans), background var(--trans);
}
.tl-today-card:hover {
  border-color: rgba(212,175,55,.38);
  background: rgba(212,175,55,.08);
}
.tl-today-icon { font-size: 1.85rem; }
.tl-today-card span:last-child {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}
.tl-today-close {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--white);
}

/* ── TIMELINE IMAGE CLICK HINT ────────────────────────────── */
.tl-img-wrap {
  cursor: zoom-in;
}
.tl-img-wrap::after {
  content: '⤢';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(212,175,55,.4);
  color: var(--gold);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  pointer-events: none;
  z-index: 2;
}
.tl-img-wrap:hover::after {
  opacity: 1;
}

/* ── LIGHTBOX ──────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img-wrap {
  max-width: 94vw;
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  transition: background var(--trans), border-color var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.lightbox__close {
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.lightbox__prev, .lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 80px;
  font-size: 1.9rem;
}
.lightbox__prev { left: 8px; border-radius: 0 var(--radius) var(--radius) 0; }
.lightbox__next { right: 8px; border-radius: var(--radius) 0 0 var(--radius); }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(212,175,55,.18);
  border-color: var(--gold);
}

/* ── MULTI-IMAGE TIMELINE LAYOUTS ─────────────────────────── */

/* Vertical stack: main image + secondary proof image(s) below */
.tl-img-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

/* Proof / screenshot image — shorter aspect ratio */
.tl-img-wrap--proof {
  aspect-ratio: 16 / 9;
}

/* Side-by-side pair of smaller proof images */
.tl-img-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tl-img-pair .tl-img-wrap--proof {
  aspect-ratio: 1;
}

/* Today section — 3-photo proof grid */
.tl-today-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px auto;
  max-width: 700px;
}
.tl-today-photos .tl-img-wrap {
  aspect-ratio: 1;
  border: 1px solid rgba(212,175,55,.18);
}
.tl-today-photos .tl-img-wrap:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 8;
}

/* ═══════════════════════════════════════════════════════════
   TRANSFORMATION
   ═══════════════════════════════════════════════════════════ */
.transformation {
  padding: var(--section-py) 0;
  background: var(--black);
  text-align: center;
}
.transform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.transform-card {
  position: relative;
  background: rgba(255,255,255,.022);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  overflow: hidden;
  transition: transform var(--trans), border-color var(--trans), box-shadow var(--trans);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.transform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--trans);
}
.transform-card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.48); box-shadow: var(--glow-md); }
.transform-card:hover::before { opacity: 1; }
.transform-card__icon { font-size: 2.6rem; margin-bottom: 18px; display: block; }
.transform-card__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.transform-card__text { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   FILTER — WHO IS IT FOR
   ═══════════════════════════════════════════════════════════ */
.filter {
  padding: var(--section-py) 0;
  background: var(--dark);
  text-align: center;
}
.filter__sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: -24px auto 56px;
  line-height: 1.7;
}
.filter__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
.filter__card {
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.filter__card--yes {
  background: rgba(212,175,55,.04);
  border: 1px solid rgba(212,175,55,.25);
}
.filter__card--no {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.08);
}
.filter__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}
.filter__header h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.filter__badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.filter__badge--yes { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #000; }
.filter__badge--no  { background: rgba(255,255,255,.08); color: var(--muted-dim); }
.filter__list { display: flex; flex-direction: column; gap: 15px; }
.filter__list li { font-size: 0.95rem; color: var(--muted); }
.filter__check { color: var(--gold); margin-right: 10px; font-weight: 700; }
.filter__cross  { color: rgba(255,255,255,.25); margin-right: 10px; }

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.cta-final {
  position: relative;
  padding: 120px 22px;
  text-align: center;
  overflow: hidden;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,.11) 0%, transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(212,175,55,.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(212,175,55,.05) 0%, transparent 45%),
    linear-gradient(160deg, #000 0%, #060606 100%);
  background-size: 200% 200%;
  animation: shiftGrad 7s ease infinite;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.cta-final__headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.cta-final__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.8;
}
.cta-final__note {
  margin-top: 22px;
  font-size: 0.78rem;
  color: rgba(189,189,189,.4);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 60px 0 48px;
}
.footer__gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.38;
  margin-bottom: 60px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
.footer__logo-img {
  height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 8px;
}
.footer__tagline { font-size: 0.85rem; color: var(--muted); }
.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  transition: color var(--trans);
}
.footer__links a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 14px; }
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--trans), color var(--trans), box-shadow var(--trans);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: var(--glow-sm);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
.footer__bottom p { font-size: 0.74rem; color: rgba(189,189,189,.38); }

/* ═══════════════════════════════════════════════════════════
   MOBILE STICKY CTA
   ═══════════════════════════════════════════════════════════ */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 80;
  padding: 10px 18px env(safe-area-inset-bottom, 10px);
  background: linear-gradient(to top, rgba(0,0,0,.97), rgba(0,0,0,.88));
  border-top: 1px solid rgba(212,175,55,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateY(110%);
  transition: transform .5s var(--ease);
}
.mobile-cta.show { transform: translateY(0); }
.mobile-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #000;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 52px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≥ 640px
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .transform-grid { grid-template-columns: repeat(2, 1fr); }
  .filter__grid { grid-template-columns: repeat(2, 1fr); }
  .tl-today-grid { grid-template-columns: repeat(4, 1fr); }
  /* today photos: 3 columns, first image no longer spans */
  .tl-today-photos { grid-template-columns: repeat(3, 1fr); }
  .tl-today-photos .tl-img-wrap:first-child { grid-column: span 1; aspect-ratio: 1; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — DESKTOP  ≥ 1024px
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  /* nav */
  .nav__toggle { display: none; }
  .nav__menu {
    position: static;
    width: auto; height: auto;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    background: none;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__menu a {
    white-space: nowrap;
    font-size: 0.88rem;
  }
  .nav__cta-link {
    padding: 8px 22px !important;
  }

  /* hero */
  .br-mobile { display: none; }

  /* stats */
  .stats__grid { grid-template-columns: repeat(4, 1fr); }

  /* timeline alternating layout */
  .tl-inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
  }
  .tl-chapter--flip .tl-inner { flex-direction: row-reverse; }
  /* single-image chapters: the wrap itself stretches */
  .tl-inner > .tl-img-wrap { flex: 1; aspect-ratio: 4/3; }
  /* multi-image chapters: the stack stretches, wraps inside keep auto sizing */
  .tl-inner > .tl-img-stack { flex: 1; }
  .tl-text { flex: 1; }

  /* transform grid */
  .transform-grid { grid-template-columns: repeat(3, 1fr); }

  /* footer */
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }

  /* hide mobile sticky CTA on desktop */
  .mobile-cta { display: none !important; }
}

/* safe area + mobile sticky bottom space */
@media (max-width: 1023px) {
  .footer { padding-bottom: 100px; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .fade-up { opacity: 1; transform: none; }
}
