/* =========================================================================
   Maison Éternelle — Bespoke Wedding Atelier
   Design system: Dramatic & Luxe (premium dark + gold)
   Type: Cormorant (display) / Montserrat (body)
   ========================================================================= */

:root {
  --ink:        #0C0A09;
  --charcoal:   #1C1917;
  --stone:      #292524;
  --stone-soft: #3A3531;
  --gold:       #1F4E9C;
  --gold-light: #7AA6E0;
  --champagne:  #AEC9EF;
  --cream:      #F7F2E9;
  --cream-dim:  #DED6C7;
  --muted:      #B6AEA2;

  --shadow-lg:  0 30px 60px -20px rgba(0,0,0,.7);
  --ease:       cubic-bezier(.16,.84,.44,1);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Cormorant", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: .005em;
}

.font-serif { font-family: "Cormorant", Georgia, serif; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 12vw, 150px) 0; position: relative; }
.center { text-align: center; }

.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow.dual::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.dual::after { background: linear-gradient(90deg, var(--gold), transparent); }

.display {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: -.01em;
}
.h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.12rem); max-width: 62ch; }

.gold-text { color: var(--gold-light); }
.italic-accent { font-style: italic; color: var(--champagne); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) 34px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color .4s var(--ease), background-color .4s var(--ease),
              border-color .4s var(--ease), transform .25s var(--ease);
  will-change: transform;
}
.btn:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-gold {
  background: linear-gradient(120deg, var(--gold), #2F5FB5);
  color: var(--cream);
}
.btn-gold::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55), transparent 80%);
  transform: translateX(-130%);
  transition: transform .8s var(--ease);
}
.btn-gold:hover::after { transform: translateX(130%); }
.btn-gold:hover { transform: translateY(-2px); }

.btn-ghost {
  border-color: rgba(122,166,224,.4);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.link-underline {
  position: relative;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.link-underline::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold-light);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }

/* ---------- Divider ornament ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin: 26px 0;
}
.ornament span { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold)); }
.ornament span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color .5s var(--ease), backdrop-filter .5s var(--ease),
              border-color .5s var(--ease), padding .4s var(--ease);
  padding: 26px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,10,9,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122,166,224,.14);
  padding: 16px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand b { font-family: "Cormorant", serif; font-size: 1.7rem; font-weight: 600; letter-spacing: .02em; }
.brand small { font-size: 9px; letter-spacing: .42em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  color: var(--cream-dim); position: relative; padding: 4px 0;
  transition: color .35s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%;
  background: var(--gold-light); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

.burger {
  display: none; width: 44px; height: 44px; border: none; background: transparent;
  cursor: pointer; flex-direction: column; gap: 6px; align-items: center; justify-content: center;
}
.burger span { width: 26px; height: 1.5px; background: var(--cream); transition: transform .4s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(12,10,9,.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: "Cormorant", serif; font-size: 2.2rem; color: var(--cream);
  padding: 10px 0; opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s;
}
.mobile-menu.open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu a:nth-child(1){transition-delay:.08s}
.mobile-menu a:nth-child(2){transition-delay:.14s}
.mobile-menu a:nth-child(3){transition-delay:.20s}
.mobile-menu a:nth-child(4){transition-delay:.26s}
.mobile-menu a:nth-child(5){transition-delay:.32s}

/* ---------- 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 .img-fill {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(12,10,9,.92) 0%, rgba(12,10,9,.6) 45%, rgba(12,10,9,.35) 100%),
    linear-gradient(to top, rgba(12,10,9,.95), rgba(12,10,9,.2) 60%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; }
.hero h1 { margin: 22px 0 8px; }
.hero .lead { margin: 22px 0 38px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted);
}
.scroll-cue i { width: 1px; height: 46px; background: linear-gradient(var(--gold-light), transparent); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--cream); animation: cue 2.4s var(--ease) infinite; }

@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
@keyframes cue { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* ---------- Image frame (luxe with gradient fallback) ---------- */
.frame {
  position: relative; overflow: hidden; border-radius: 3px;
  background: linear-gradient(135deg, #2a2520, #14110f 60%, #2a231a);
  isolation: isolate;
}
.frame::before { /* subtle gold sheen fallback texture */
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 80% at 30% 10%, rgba(122,166,224,.12), transparent 60%);
}
.frame img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease); }
.frame.hoverable:hover img { transform: scale(1.06); }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--charcoal), var(--ink));
  border: 1px solid rgba(122,166,224,.12);
  border-radius: 4px;
  padding: 40px 34px;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  transform: scaleX(0); transform-origin: left; transition: transform .55s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: rgba(122,166,224,.4); box-shadow: var(--shadow-lg); }
.card:hover::after { transform: scaleX(1); }
.card .icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(122,166,224,.3); color: var(--gold-light); margin-bottom: 22px;
}
.card h3 { font-size: 1.7rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
.card .num { position: absolute; right: 26px; top: 18px; font-family: "Cormorant", serif;
  font-size: 3.4rem; color: rgba(122,166,224,.1); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat { text-align: center; }
.stat .figure { font-family: "Cormorant", serif; font-size: clamp(2.6rem,5vw,4rem); color: var(--gold-light); line-height: 1; }
.stat .label { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 18px; }
.gallery .tile { cursor: pointer; }
.gallery .tile.tall { grid-row: span 2; }
.gallery .tile.wide { grid-column: span 2; }
.gallery .tile .frame { width: 100%; height: 100%; }
.gallery .tile .cap {
  position: absolute; z-index: 2; left: 18px; bottom: 16px; right: 18px;
  opacity: 0; transform: translateY(10px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery .tile .frame::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,10,9,.8), transparent 55%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery .tile:hover .frame::after { opacity: 1; }
.gallery .tile:hover .cap { opacity: 1; transform: none; }
.cap b { font-family: "Cormorant", serif; font-size: 1.5rem; font-weight: 500; display: block; }
.cap small { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 80; background: rgba(8,7,6,.94);
  display: flex; align-items: center; justify-content: center; padding: 30px;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 3px; box-shadow: var(--shadow-lg);
  transform: scale(.96); transition: transform .45s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox .close, .lightbox .arrow {
  position: absolute; background: rgba(255,255,255,.06); border: 1px solid rgba(122,166,224,.3);
  color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: background .3s, color .3s, border-color .3s;
}
.lightbox .close:hover, .lightbox .arrow:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lightbox .close { top: 26px; right: 26px; }
.lightbox .prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 26px; top: 50%; transform: translateY(-50%); }

/* ---------- Testimonials ---------- */
.quote-stage { position: relative; min-height: 260px; }
.quote {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease); pointer-events: none;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.quote.active { opacity: 1; transform: none; pointer-events: auto; }
.quote p { font-family: "Cormorant", serif; font-size: clamp(1.5rem,3vw,2.4rem); font-style: italic;
  color: var(--cream); line-height: 1.4; max-width: 26ch; margin: 0 0 26px; }
.quote .who { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-light); }
.quote .who span { display: block; color: var(--muted); letter-spacing: .14em; margin-top: 6px; font-size: 11px; }
.dots { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold);
  background: transparent; cursor: pointer; padding: 0; transition: background .3s, transform .3s; }
.dots button.active { background: var(--gold); transform: scale(1.2); }
.stars { color: var(--gold-light); letter-spacing: 4px; margin-bottom: 18px; }

/* ---------- Pricing ---------- */
.price-card {
  background: linear-gradient(165deg, var(--charcoal), var(--ink));
  border: 1px solid rgba(122,166,224,.14); border-radius: 5px; padding: 44px 36px;
  display: flex; flex-direction: column; transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
}
.price-card.featured { border-color: rgba(122,166,224,.55); box-shadow: var(--shadow-lg); transform: translateY(-10px); }
.price-card:hover { transform: translateY(-12px); border-color: rgba(122,166,224,.45); box-shadow: var(--shadow-lg); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg,var(--gold-light),var(--champagne)); color: var(--ink);
  font-size: 10px; letter-spacing: .24em; text-transform: uppercase; padding: 6px 18px; border-radius: 30px; font-weight: 600; }
.price-card h3 { font-size: 2rem; }
.price-card .amount { font-family: "Cormorant", serif; font-size: 3.2rem; color: var(--gold-light); margin: 14px 0 4px; }
.price-card .amount small { font-size: 1rem; color: var(--muted); font-family: "Montserrat"; }
.price-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.price-list li { display: flex; gap: 12px; color: var(--cream-dim); font-size: .92rem; align-items: flex-start; }
.price-list li svg { flex: 0 0 auto; color: var(--gold-light); margin-top: 3px; }

/* Guest-count tier cards */
.tier-card { text-align: center; padding: 40px 26px; }
.tier-card .tier-name { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); }
.tier-card .pax { font-family: "Cormorant", serif; font-size: 2.1rem; color: var(--cream); line-height: 1.05; margin: 14px 0 0; }
.tier-card .pax span { display: block; font-family: "Montserrat", sans-serif; font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.tier-card .amount-idr { font-family: "Cormorant", serif; font-size: 1.85rem; color: var(--gold-light); margin: 22px 0 4px; white-space: nowrap; }
.tier-card .amount-idr small { display: block; font-family: "Montserrat", sans-serif; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.tier-card .btn { margin-top: 28px; width: 100%; }
.tier-divider { width: 40px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 20px auto 0; }

.includes { margin-top: 56px; border: 1px solid rgba(122,166,224,.14); border-radius: 5px; padding: 44px clamp(28px,5vw,56px); background: linear-gradient(160deg, var(--charcoal), var(--ink)); }
.includes h4 { font-family: "Montserrat", sans-serif; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-light); text-align: center; margin: 0 0 30px; }
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 36px; max-width: 820px; margin: 0 auto; }
.includes-grid li { display: flex; gap: 12px; align-items: flex-start; color: var(--cream-dim); font-size: .95rem; }
.includes-grid li svg { flex: 0 0 auto; color: var(--gold-light); margin-top: 3px; }
@media (max-width: 760px) { .includes-grid { grid-template-columns: 1fr; gap: 14px; max-width: 360px; } }

/* ---------- Process timeline ---------- */
.timeline { position: relative; display: grid; gap: 8px; }
.step { display: grid; grid-template-columns: 90px 1fr; gap: 28px; padding: 30px 0; border-bottom: 1px solid rgba(122,166,224,.1); }
.step .no { font-family: "Cormorant", serif; font-size: 3rem; color: var(--gold-light); line-height: 1; }
.step h3 { font-size: 1.6rem; margin-bottom: 8px; }
.step p { color: var(--muted); margin: 0; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-light); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,.03); border: 1px solid rgba(122,166,224,.18);
  border-radius: 3px; padding: 14px 16px; color: var(--cream); font-family: "Montserrat", sans-serif;
  font-size: .95rem; font-weight: 300; transition: border-color .35s var(--ease), background-color .35s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #6b655d; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-light); background: rgba(255,255,255,.05);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select option { background: var(--charcoal); }
.field.error input, .field.error select, .field.error textarea { border-color: #c0664b; }
.field .msg { font-size: 11px; color: #d98a6f; min-height: 0; letter-spacing: .04em; text-transform: none; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.form-success {
  border: 1px solid rgba(122,166,224,.4); background: rgba(122,166,224,.06);
  padding: 30px; border-radius: 4px; text-align: center; display: none;
}
.form-success.show { display: block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Marquee (trusted by) ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 70px; width: max-content; animation: scroll 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: "Cormorant", serif; font-size: 1.5rem; color: var(--muted); letter-spacing: .08em; white-space: nowrap; font-style: italic; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid rgba(122,166,224,.14); padding: 80px 0 40px; background: var(--charcoal); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 50px; }
.site-footer h4 { font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; font-family: "Montserrat", sans-serif; font-weight: 500; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.site-footer a { color: var(--muted); font-size: .9rem; transition: color .3s; }
.site-footer a:hover { color: var(--gold-light); }
.foot-brand b { font-family: "Cormorant", serif; font-size: 1.9rem; }
.foot-brand p { color: var(--muted); font-size: .9rem; max-width: 34ch; }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a { width: 42px; height: 42px; border: 1px solid rgba(122,166,224,.2); border-radius: 50%; display: grid; place-items: center; color: var(--cream-dim); transition: all .35s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); transform: translateY(-3px); }
.foot-bottom { border-top: 1px solid rgba(122,166,224,.1); margin-top: 60px; padding-top: 30px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7a746b; font-size: .82rem; letter-spacing: .04em; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 200px 0 90px; overflow: hidden; }
.page-hero .hero-media::after { background: linear-gradient(to top, rgba(12,10,9,.96), rgba(12,10,9,.55)); }
.page-hero .crumb { color: var(--muted); font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.page-hero .crumb a:hover { color: var(--gold-light); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .frame { aspect-ratio: 4/5; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta.desktop { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .frame { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .gallery .tile.wide { grid-column: span 2; }
  .row-2 { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .cols-4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .tile.wide, .gallery .tile.tall { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 18px; }
  .hero-actions .btn { width: 100%; }
}

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

/* ---------- Ambient music toggle ---------- */
.music-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(12,10,9,.6); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(122,166,224,.4); color: var(--gold-light);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .5s var(--ease), visibility .5s, transform .5s var(--ease),
              background-color .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.music-toggle.ready { opacity: 1; visibility: visible; transform: none; }
.music-toggle:hover { background: var(--gold); border-color: var(--gold); color: var(--cream); transform: translateY(-2px); }
.music-toggle:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.music-toggle .note { display: block; line-height: 0; }
.music-toggle.playing .note { display: none; }
.music-toggle .bars { display: none; gap: 2.5px; align-items: flex-end; height: 16px; }
.music-toggle.playing .bars { display: flex; }
.music-toggle .bars i { width: 2.5px; height: 6px; background: currentColor; border-radius: 1px; animation: eq 1s ease-in-out infinite; }
.music-toggle .bars i:nth-child(2) { animation-delay: .2s; }
.music-toggle .bars i:nth-child(3) { animation-delay: .4s; }
.music-toggle .bars i:nth-child(4) { animation-delay: .15s; }
@keyframes eq { 0%,100% { height: 5px; } 50% { height: 16px; } }
@media (max-width: 520px) { .music-toggle { bottom: 16px; right: 16px; width: 46px; height: 46px; } }
