/* ============================================================
   Beaut Master — public site
   Luxury beauty-editorial: deep near-black canvas, gold-foil display
   type, thin gold hairlines, shine-sweep gold buttons. Black + gold.
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face { font-family:'Playfair Display'; src:url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/playfair-display-v40-latin-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:'Playfair Display'; src:url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2'); font-weight:400; font-style:italic; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-v20-latin-500.woff2') format('woff2'); font-weight:500; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-v20-latin-600.woff2') format('woff2'); font-weight:600; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('../fonts/inter-v20-latin-700.woff2') format('woff2'); font-weight:700; font-style:normal; font-display:swap; }

/* ---------- Tokens ---------- */
:root {
  --bg:         #0B0B0C;   /* warm near-black canvas */
  --bg-2:       #0F0F11;   /* alternating section */
  --surface:    #141417;   /* card */
  --surface-2:  #1A1A1E;   /* raised card */
  --ink:        #FFFFFF;
  --text:       #F4F1EA;
  --muted:      #A6A29B;
  --muted-2:    rgba(244,241,234,.62);
  --gold:       #F0C77D;
  --gold-light: #F6D28B;
  --gold-deep:  #B57A2C;
  --line:       rgba(255,255,255,.10);
  --line-2:     rgba(240,199,125,.24);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Inter', -apple-system, 'Segoe UI', sans-serif;
  --gold-grad:  linear-gradient(90deg, #F6D28B 0%, #F0C77D 50%, #B57A2C 100%);
  --foil:       linear-gradient(105deg, #B57A2C 0%, #F0C77D 34%, #FBE9C4 50%, #F0C77D 66%, #9A6216 100%);
  --shadow-sm:  0 2px 14px rgba(0,0,0,.35);
  --shadow-md:  0 22px 60px rgba(0,0,0,.55);
  --shadow-gold:0 14px 40px rgba(181,122,44,.34);
  --radius:     16px;
  --header-h:   78px;
  --track:      .16em;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 16px/1.7 var(--sans);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Subtle grain + top gold aura */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.16; color: var(--ink); margin: 0 0 14px; }
p  { margin: 0 0 15px; }
a  { color: var(--gold); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 26px; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 19px; line-height: 1.72; color: var(--text); }
.lead em { color: var(--gold); font-style: italic; }

/* Signature type treatment */
.display-caps { font-family: var(--serif); text-transform: uppercase; letter-spacing: var(--track); font-weight: 600; line-height: 1.12; }
.foil {
  background: var(--foil); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold);
  animation: foilShift 6s linear infinite;
}
@keyframes foilShift { to { background-position: 200% center; } }

.eyebrow {
  font: 600 12px/1 var(--sans); letter-spacing: .28em; color: var(--gold);
  text-transform: uppercase; margin: 0 0 16px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before, .eyebrow.two-sided::after { content: ''; width: 26px; height: 1.5px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow.two-sided::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.8vw, 46px); margin-bottom: 20px; letter-spacing: .01em; }
.section-lead { max-width: 640px; margin: 0 auto 42px; color: var(--muted); font-size: 17px; }
.section { padding: 96px 0; position: relative; }
.alt-bg { background: var(--bg-2); }
.surface-bg { background: var(--surface); }

/* Dark editorial section = a warmer gold-tinged band */
.dark-section {
  background:
    radial-gradient(900px 440px at 78% 0%, rgba(240,199,125,.12), transparent 62%),
    linear-gradient(160deg, #101012 0%, #0A0A0B 70%, #101012 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dark-section .eyebrow { color: var(--gold-light); }

/* ---------- Buttons (with shine sweep) ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: 600 13px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .16s, box-shadow .22s, background .2s, color .2s, border-color .2s;
  text-align: center; min-height: 46px; color: #0B0B0C;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 17px 38px; font-size: 13.5px; }
.btn-gold { background: var(--gold-grad); color: #0B0B0C; box-shadow: var(--shadow-gold); }
.btn-gold:hover { color: #0B0B0C; transform: translateY(-2px); box-shadow: 0 18px 46px rgba(240,199,125,.4); }
/* Diagonal sheen that glides across on hover */
.btn-gold::after {
  content: ''; position: absolute; top: 0; left: -130%; width: 60%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.55) 50%, transparent 100%);
  transform: skewX(-18deg); transition: left .6s ease;
}
.btn-gold:hover::after { left: 130%; }
.btn-ghost { color: var(--text); border-color: transparent; }
.btn-ghost:hover { color: var(--gold); }
.btn-outline { border-color: var(--line-2); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: #0B0B0C; border-color: var(--gold); }
.btn-outline-light { border-color: rgba(244,241,234,.4); color: var(--text); background: rgba(255,255,255,.04); }
.btn-outline-light:hover { background: var(--text); color: #0B0B0C; }
/* Idle shimmer for the primary hero CTA */
.btn-shimmer::after { animation: idleShine 5.5s ease-in-out infinite; }
@keyframes idleShine { 0%, 72%, 100% { left: -130%; } 84% { left: 130%; } }

.btn-loading .btn-spinner {
  display: none; width: 18px; height: 18px;
  border: 2.5px solid rgba(11,11,12,.3); border-top-color: #0B0B0C;
  border-radius: 50%; animation: spin .8s linear infinite;
  position: absolute; left: 50%; top: 50%; margin: -9px 0 0 -9px;
}
.btn-loading.is-loading .btn-label { visibility: hidden; }
.btn-loading.is-loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,11,12,.72);
  backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 30px; height: var(--header-h); }
.brand { display: flex; align-items: center; }
.brand-full { height: 42px; width: auto; }
.brand-icon { display: none; height: 44px; width: auto; }
.main-nav { display: flex; gap: 26px; margin: 0 auto; }
.main-nav a {
  font: 600 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
  color: var(--text); padding: 10px 2px; border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.header-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 10px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform .2s, opacity .2s; }

/* ---------- Mobile menu overlay ---------- */
.mobile-menu { display: none; }
@media (max-width: 900px) { .mobile-menu { display: flex; } }
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(600px 320px at 100% 0%, rgba(240,199,125,.1), transparent 60%), #0B0B0C;
  display: flex; flex-direction: column;
  transform: translateY(-16px); opacity: 0; visibility: hidden;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .28s ease, visibility .38s;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
body.menu-open .mobile-menu { transform: none; opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
.mm-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid var(--line); flex-shrink: 0; }
.mm-logo { height: 40px; width: auto; }
.mm-close { background: none; border: 0; font: 300 40px/1 var(--sans); color: var(--text); cursor: pointer; padding: 0 6px; }
.mm-close:hover { color: var(--gold); }
.mm-nav { display: flex; flex-direction: column; padding: 18px 28px 48px; }
.mm-nav > a {
  font-family: var(--serif); letter-spacing: .02em; font-weight: 600; font-size: 22px; color: var(--text);
  padding: 17px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease;
}
.mm-nav > a.active { color: var(--gold); }
body.menu-open .mm-nav > a, body.menu-open .mm-actions { opacity: 1; transform: none; transition-delay: calc(var(--i) * .055s); }
.mm-actions { display: grid; gap: 12px; margin-top: 28px; opacity: 0; transform: translateY(14px); transition: opacity .4s ease, transform .4s ease; }
.mm-actions .btn { width: 100%; }

/* ---------- Branch (Rayya outlet) ---------- */
.branch-bar { background: linear-gradient(90deg, rgba(240,199,125,.16), rgba(181,122,44,.12)); border-bottom: 1px solid var(--line-2); font: 500 13px/1 var(--sans); }
.branch-bar .container { padding-top: 10px; padding-bottom: 10px; color: var(--text); }
.branch-bar strong { color: var(--gold); }
.branch-bar a { color: var(--gold); font-weight: 600; }

/* ---------- Flash ---------- */
.flash { padding: 14px 0; font-weight: 500; }
.flash-success { background: rgba(240,199,125,.12); color: var(--gold-light); border-bottom: 1px solid var(--line-2); }
.flash-error   { background: rgba(220,80,80,.14); color: #ffb3b3; border-bottom: 1px solid rgba(220,80,80,.3); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: min(94vh, 880px); display: flex; align-items: center; overflow: hidden; color: var(--text); }
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 200px; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(11,11,12,.6) 55%, var(--bg) 100%);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video, .hero-video-mobile, .hero-image, .hero-mobile-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-image, .hero-mobile-media { background-size: cover; background-position: center; }
.hero-video-mobile, .hero-mobile-media { display: none; }
.hero-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(1100px 560px at 72% 24%, rgba(240,199,125,.26), transparent 58%),
    radial-gradient(700px 420px at 18% 92%, rgba(181,122,44,.3), transparent 60%),
    linear-gradient(155deg, #17130C 0%, #0B0B0C 55%, #050505 100%);
}
.hero-watermark {
  position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  width: min(640px, 60vw); opacity: .08; pointer-events: none;
  animation: slowSpin 90s linear infinite;
}
@keyframes slowSpin { to { transform: translateY(-50%) rotate(360deg); } }
.hero-watermark.no-rotate { animation: none; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,7,.86) 0%, rgba(6,6,7,.4) 46%, rgba(6,6,7,.55) 100%); }
.hero-content { position: relative; z-index: 2; padding: 130px 26px 120px; max-width: 1180px; width: 100%; margin: 0 auto; }
.hero-inner { max-width: 740px; }
.hero-eyebrow { color: var(--gold-light); letter-spacing: .32em; }
.hero-headline {
  font-family: var(--serif); font-weight: 700; font-size: clamp(42px, 6.6vw, 88px); line-height: 1.02;
  margin: 6px 0 22px; color: #FFFDF6; text-shadow: 0 4px 46px rgba(0,0,0,.5);
}
.hero-headline .foil { text-shadow: none; }
.hero-subhead { color: rgba(244,241,234,.9); font-size: clamp(16px, 1.7vw, 19px); max-width: 580px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.course-finder { display: inline-flex; align-items: center; gap: 6px; background: rgba(20,20,23,.92); border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 8px 8px 24px; box-shadow: var(--shadow-md); }
.cf-label { font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-right: 6px; white-space: nowrap; }
.watch-story {
  position: absolute; right: 40px; bottom: 46px; z-index: 3;
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(240,199,125,.3); color: var(--text);
  padding: 13px 20px; border-radius: var(--radius); transition: background .2s, transform .2s;
}
.watch-story:hover { background: rgba(255,255,255,.12); color: var(--text); transform: translateY(-2px); }
.ws-play { width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: #0B0B0C; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(240,199,125,.5) } 70% { box-shadow: 0 0 0 15px rgba(240,199,125,0) } 100% { box-shadow: 0 0 0 0 rgba(240,199,125,0) } }
.ws-text { font: 400 12.5px/1.45 var(--sans); }
.ws-text strong { letter-spacing: .04em; color: var(--gold-light); }
.hero-play { position: absolute; left: 50%; top: 48%; transform: translate(-50%,-50%); background: rgba(0,0,0,.5); color: #fff; border: 1.5px solid rgba(255,255,255,.6); font: 600 13px var(--sans); letter-spacing: .08em; text-transform: uppercase; padding: 15px 26px; border-radius: 999px; cursor: pointer; z-index: 3; }

/* ---------- Themed dropdown ---------- */
.tselect { position: relative; }
.tselect-native { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.tselect-btn { display: flex; align-items: center; gap: 10px; width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; cursor: pointer; font: 500 15px/1.2 var(--sans); color: var(--text); text-align: left; transition: border-color .16s, box-shadow .16s; }
.tselect-btn:focus-visible { outline: 2px solid var(--gold); }
.tselect.open .tselect-btn { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(240,199,125,.18); }
.tselect-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tselect-btn .chev { width: 16px; height: 16px; color: var(--gold); transition: transform .2s ease; flex-shrink: 0; }
.tselect.open .tselect-btn .chev { transform: rotate(180deg); }
.tselect-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 100%; background: var(--surface-2); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 7px; z-index: 45; opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98); transform-origin: top; transition: opacity .16s ease, transform .16s ease, visibility .16s; }
.tselect.open .tselect-menu { opacity: 1; visibility: visible; transform: none; }
.tselect-option { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 9px; cursor: pointer; font: 500 14.5px/1.2 var(--sans); color: var(--text); white-space: nowrap; }
.tselect-option::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--line); flex-shrink: 0; transition: background .16s; }
.tselect-option:hover, .tselect-option.active { background: rgba(240,199,125,.1); color: var(--gold); }
.tselect-option[aria-selected="true"] { color: var(--gold); font-weight: 600; }
.tselect-option[aria-selected="true"]::before, .tselect-option:hover::before, .tselect-option.active::before { background: var(--gold-grad); }
.course-finder .tselect { flex: 1; min-width: 0; }
.course-finder .tselect-btn { border: 0; background: transparent; padding: 11px 6px; font-weight: 600; box-shadow: none; }
.course-finder .tselect.open .tselect-btn { box-shadow: none; }
.course-finder .tselect-menu { min-width: 240px; }
.app-form .tselect-btn { background: var(--surface); border-radius: 10px; font-size: 14.5px; }

/* ---------- Motif + hairline divider ---------- */
.motif-mark { display: inline-block; line-height: 0; }
.motif-mark svg { display: block; }
.motif-spark { animation: sparkPulse 3s ease-in-out infinite; transform-origin: center; }
@keyframes sparkPulse { 0%,100% { opacity: .7; } 50% { opacity: 1; } }

.brand-divider { line-height: 0; position: relative; display: flex; align-items: center; justify-content: center; padding: 8px 0; }
.brand-divider::before, .brand-divider::after { content: ''; height: 1px; flex: 1; max-width: 300px; background: linear-gradient(90deg, transparent, var(--line-2)); }
.brand-divider::after { background: linear-gradient(90deg, var(--line-2), transparent); }
.brand-divider .center-mark { margin: 0 20px; color: var(--gold); animation: spin 14s linear infinite; }
.brand-divider.static .center-mark { animation: none; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin: 26px 0 48px; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 44px 30px 34px; box-shadow: var(--shadow-sm); overflow: hidden; }
.step::after { content: ''; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; background: radial-gradient(circle at center, rgba(240,199,125,.12), transparent 70%); }
.step-num { font: 700 60px/1 var(--serif); color: transparent; -webkit-text-stroke: 1.2px var(--gold); background: var(--foil); -webkit-background-clip: text; background-clip: text; display: block; margin-bottom: 10px; opacity: .95; }
.step-icon { width: 58px; height: 58px; margin-bottom: 16px; display: grid; place-items: center; color: var(--gold); }
.step h3 { font-size: 19px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Course cards ---------- */
.course-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 980px; margin: 0 auto; }
.course-cards.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: none; }
.course-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; overflow: hidden; }
.course-card::before { content: ''; position: absolute; left: 0; top: 0; right: 0; height: 3px; background: var(--gold-grad); opacity: .9; }
.course-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.cc-corner { position: absolute; right: 18px; top: 20px; width: 42px; opacity: .16; pointer-events: none; }
.cc-duration { font: 700 11px/1 var(--sans); letter-spacing: .22em; color: var(--gold); text-transform: uppercase; }
.cc-head h3 { font-size: 26px; margin: 12px 0 8px; }
.cc-tagline { color: var(--muted); font-size: 15px; }
.cc-facts { list-style: none; padding: 20px 0; margin: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: 10px; font-size: 14.5px; color: var(--text); }
.cc-facts strong { text-transform: uppercase; letter-spacing: .06em; font-size: 12px; color: var(--gold); }
.cc-price { margin: 8px 0 20px; }
.cc-price-main { font: 700 32px var(--serif); color: var(--ink); display: block; }
.cc-price-sub { color: var(--muted); font-size: 13.5px; }
.cc-btn { margin-top: auto; }
.modules-note { max-width: 680px; margin: 40px auto 0; color: var(--muted); }
.modules-note strong { color: var(--gold); }

/* ---------- Modules / feature dish cards ---------- */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.modules-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.module-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s; display: flex; flex-direction: column; }
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.mc-photo { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--surface-2); }
.mc-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.module-card:hover .mc-photo img { transform: scale(1.06); }
.mc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,7,.5), transparent 46%); pointer-events: none; }
.mc-body { padding: 22px 24px; flex: 1; }
.module-card h3 { font-size: 18px; margin-bottom: 6px; }
.mc-dish { color: var(--gold); font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.module-card p:last-child { color: var(--muted); font-size: 14px; margin: 0; }
.mc-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(11,11,12,.8); padding: 7px 11px; border-radius: 999px; margin: 0; box-shadow: var(--shadow-sm); }
.addon-badge { display: inline-block; font: 700 10.5px/1 var(--sans); letter-spacing: .2em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }

/* ---------- Team (staff/artists) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; max-width: 1000px; margin: 0 auto; }
.team-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { width: 128px; height: 128px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 2px solid var(--gold); }
.team-photo-ph { display: inline-flex; align-items: center; justify-content: center; width: 128px; height: 128px; border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2); margin-bottom: 16px; }
.team-card h3 { font-size: 19px; }
.team-title { color: var(--gold); font-weight: 600; font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { color: var(--muted); font-size: 14.5px; }

/* ---------- Services catalog ---------- */
.svc-cat-title { font-family: var(--serif); font-size: clamp(22px, 3vw, 30px); margin: 52px 0 22px; padding-bottom: 12px; border-bottom: 1px solid var(--line-2); display: flex; align-items: baseline; gap: 12px; }
.svc-cat-title:first-child { margin-top: 0; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.svc-card { display: flex; gap: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; transition: transform .18s, border-color .18s; }
.svc-card:hover { transform: translateY(-3px); border-color: var(--line-2); }
.svc-thumb { width: 66px; height: 66px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.svc-body h4 { font: 600 16px/1.3 var(--sans); margin: 0 0 4px; color: var(--ink); }
.svc-body p { color: var(--muted); font-size: 13.5px; margin: 0 0 6px; }
.svc-price { font: 700 12px/1 var(--sans); letter-spacing: .04em; color: var(--gold); }

/* ---------- Reviews marquee ---------- */
.reviews-marquee { display: grid; gap: 22px; width: 100%; }
.rm-row { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.rm-track { display: flex; gap: 22px; width: max-content; will-change: transform; animation: rmScroll 52s linear infinite; }
.rm-row--2 .rm-track { animation-duration: 64s; animation-direction: reverse; }
.rm-row:hover .rm-track { animation-play-state: paused; }
@keyframes rmScroll { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.rm-card { flex: 0 0 auto; width: 350px; text-align: left; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); }
.rm-stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 12px; }
.rm-body { font: 400 15px/1.62 var(--sans); color: var(--text); margin: 0 0 18px; }
.rm-meta { display: flex; align-items: center; gap: 12px; }
.rm-avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #0B0B0C; font: 700 16px var(--serif); background: var(--gold-grad); }
.rm-author { display: block; font-weight: 600; font-size: 14.5px; color: var(--ink); }
.rm-role { display: block; font-size: 12.5px; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .rm-track { animation: none !important; transform: translateX(0) !important; } .rm-row { overflow-x: auto; } }
@media (max-width: 640px) { .rm-card { width: 280px; padding: 22px; } }

/* ---------- Process rows ---------- */
.process-list { display: grid; gap: 44px; margin-top: 50px; }
.process-item { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.process-item--rev .process-text { order: 2; }
.process-item--rev .process-photo { order: 1; }
.process-num { display: inline-block; font: 700 12px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.process-text h3 { font-size: clamp(20px, 2.4vw, 27px); margin-bottom: 12px; }
.process-text p { color: var(--muted); font-size: 15.5px; margin: 0; max-width: 46ch; }
.process-photo { position: relative; }
.process-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.process-photo::after { content: ''; position: absolute; right: -14px; bottom: -14px; width: 84px; height: 84px; border-radius: 50%; background: radial-gradient(circle, rgba(240,199,125,.32), transparent 70%); z-index: -1; }

/* ---------- Dotless carousel ---------- */
.carousel-section { overflow: hidden; }
.img-carousel { position: relative; display: flex; align-items: center; margin-top: 40px; }
.ic-viewport { overflow-x: auto; overflow-y: hidden; width: 100%; scrollbar-width: none; -ms-overflow-style: none; scroll-behavior: smooth; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ic-viewport::-webkit-scrollbar { display: none; }
.ic-track { display: flex; gap: 22px; padding: 12px 30px; width: max-content; cursor: grab; }
.ic-track.ic-dragging { cursor: grabbing; }
.ic-slide { flex: 0 0 auto; width: clamp(240px, 30vw, 360px); aspect-ratio: 3 / 2; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); margin: 0; background: var(--surface-2); }
.ic-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; pointer-events: none; }
.ic-slide:hover img { transform: scale(1.05); }
.ic-btn { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); color: var(--gold); font: 400 26px/1 var(--serif); cursor: pointer; box-shadow: var(--shadow-md); transition: background .18s, color .18s, transform .12s; display: grid; place-items: center; }
.ic-btn:hover { background: var(--gold); color: #0B0B0C; }
.ic-btn:active { transform: translateY(-50%) scale(.94); }
.ic-prev { left: 10px; } .ic-next { right: 10px; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 46px; }
.feature-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-card h3 { font-size: 18px; margin: 16px 0 8px; }
.feature-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 12px; }
.stat-fig { text-align: center; }
.stat-fig .num { font: 700 clamp(34px, 5vw, 52px) var(--serif); background: var(--foil); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-fig .lbl { color: var(--muted); font: 600 12px/1.4 var(--sans); letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; }

/* ---------- Location cards ---------- */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.loc-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.loc-card.is-main { border-color: var(--line-2); }
.loc-badge { font: 700 10.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.loc-card h3 { font-size: 22px; margin-bottom: 8px; }
.loc-card p { color: var(--muted); font-size: 14.5px; }
.loc-card .btn { margin-top: auto; align-self: flex-start; }
.loc-map { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); margin-top: 16px; }
.loc-map iframe { display: block; width: 100%; min-height: 200px; border: 0; filter: none; }

@media (max-width: 900px) {
  .process-item, .process-item--rev { grid-template-columns: 1fr; gap: 22px; }
  .process-item--rev .process-text, .process-item--rev .process-photo { order: 0; }
  .process-text p { max-width: none; }
  .feature-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

/* ---------- Page hero (inner) ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center; padding: 96px 0 78px; color: var(--text);
  background: radial-gradient(760px 340px at 50% 0%, rgba(240,199,125,.16), transparent 60%),
    linear-gradient(160deg, #131313 0%, #0A0A0B 70%, #131313 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #FFFDF6; font-weight: 700; font-size: clamp(34px, 5vw, 58px); }
.page-hero-sub { color: rgba(244,241,234,.82); max-width: 600px; margin: 0 auto; font-size: 17px; }
.page-hero.has-image { background-size: cover; background-position: center; }
.page-hero-scrim { position: absolute; inset: 0; z-index: 0; background: linear-gradient(160deg, rgba(6,6,7,.86) 0%, rgba(6,6,7,.6) 55%, rgba(6,6,7,.82) 100%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero .hero-watermark { opacity: .06; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; }
.compare-table thead th { background: var(--surface-2); font: 600 12px var(--sans); letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.compare-table tbody td:first-child { font-weight: 600; width: 190px; color: var(--ink); }

/* ---------- Facts / materials / price ---------- */
.fact-list { list-style: none; padding: 0; display: grid; gap: 11px; }
.fact-list li { padding-left: 24px; position: relative; }
.fact-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-grad); }
.fact-list strong { color: var(--gold); }
.materials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.material-card { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); background: var(--surface); }
.material-card h3 { font-size: 18px; }
.material-card.provided { border-left: 3px solid var(--gold); }
.price-box { margin-top: 48px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: var(--shadow-sm); }
.price-main { font: 700 42px var(--serif); margin: 6px 0; color: var(--ink); }
.price-main span { font: 400 15px var(--sans); color: var(--muted); }
.price-sub { color: var(--muted); margin: 0; }

/* ---------- About ---------- */
.about-story { position: relative; }
.about-watermark { position: absolute; right: -40px; top: -30px; width: 280px; opacity: .05; pointer-events: none; user-select: none; }

/* ---------- Dome gallery ---------- */
.dome-section { padding: 40px 0 72px; }
.dome-wrap { position: relative; height: min(80vh, 760px); border-radius: var(--radius); overflow: hidden; background: radial-gradient(700px 340px at 50% 0%, rgba(240,199,125,.1), transparent 60%), linear-gradient(160deg, #141414 0%, #0A0A0B 70%, #141414 100%); border: 1px solid var(--line); box-shadow: var(--shadow-md); touch-action: none; }
.dome-hint { text-align: center; margin-top: 22px; font: 600 12px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 840px) { .dome-wrap { height: min(64vh, 520px); } }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 300px; column-gap: 22px; }
.gallery-item { break-inside: avoid; margin: 0 0 22px; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-item img { display: block; width: 100%; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { padding: 12px 18px; font-size: 13.5px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; padding: 22px 26px; font: 600 16px var(--sans); list-style: none; position: relative; padding-right: 56px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font: 400 26px var(--serif); color: var(--gold); transition: transform .2s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 26px 22px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 46px; align-items: start; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 6px; font: 600 12px var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.contact-form input, .contact-form select, .contact-form textarea { font: 400 15px var(--sans); padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--surface); width: 100%; color: var(--text); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--muted); text-transform: none; letter-spacing: 0; }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; opacity: 0; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: 18px; }
.contact-card .btn { width: 100%; margin-top: 6px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-wrap iframe { display: block; width: 100%; min-height: 280px; border: 0; filter: none; }

/* ---------- Verify ---------- */
.verify-form { max-width: 580px; margin: 0 auto 42px; }
.verify-bar { display: flex; gap: 8px; background: var(--surface); padding: 9px; border-radius: 999px; border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); }
.verify-bar input { flex: 1; border: 0; background: transparent; font: 600 16px var(--sans); padding: 11px 18px; outline: none; letter-spacing: .06em; min-width: 0; color: var(--text); }
.verify-bar input::placeholder { color: var(--muted); letter-spacing: .02em; }
.verify-result { background: var(--surface); border-radius: var(--radius); padding: 40px; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.verify-ok { border-top: 3px solid var(--gold); }
.verify-fail { border-top: 3px solid #c0392b; }
.verify-result h2 { font-size: 26px; }
.vr-badge { display: inline-block; font: 700 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: #0B0B0C; background: var(--gold-grad); padding: 9px 20px; border-radius: 999px; margin-bottom: 20px; }
.vr-badge-fail { color: #ffb3b3; background: rgba(220,80,80,.16); }
.verify-result .fact-list { max-width: 360px; margin: 0 auto 22px; text-align: left; }
.vr-cert { border: 1px solid var(--line); border-radius: 10px; margin: 12px 0 18px; box-shadow: var(--shadow-md); }

/* ---------- Privacy / prose ---------- */
.prose { max-width: 780px; margin: 0 auto; color: var(--text); }
.prose p { margin: 0 0 18px; color: var(--muted); }
.prose h2, .prose h3 { color: var(--ink); margin: 34px 0 12px; }

/* ---------- Footer ---------- */
.site-footer { background: #08080A; color: var(--text); position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.site-footer::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(700px 300px at 85% 0%, rgba(240,199,125,.08), transparent 60%); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.3fr; gap: 46px; padding: 72px 26px 54px; position: relative; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 18px; }
.site-footer h4 { font: 600 12px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 4px 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 14.5px; }
.site-footer ul a { color: var(--text); }
.site-footer ul a:hover { color: var(--gold); }
.footer-contact { color: var(--muted); }
.footer-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.footer-social a { font: 600 11px/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--line); padding: 9px 15px; border-radius: 999px; color: var(--text); }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 0; position: relative; }
.footer-bottom .container { display: flex; align-items: center; gap: 16px; justify-content: space-between; flex-wrap: wrap; }
.footer-bottom img { height: 20px; width: auto; }
.footer-bottom span { color: var(--muted); font-size: 13px; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 6px 22px rgba(0,0,0,.4); transition: transform .15s; }
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }

/* ---------- Preloader ---------- */
#preloader { position: fixed; inset: 0; z-index: 100; background: var(--bg); display: grid; place-items: center; transition: opacity .5s ease, visibility .5s; }
#preloader.done { opacity: 0; visibility: hidden; }
body.no-preload #preloader { display: none; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .foil, .hero-watermark, .brand-divider .center-mark, .ws-play, .motif-spark { animation: none !important; }
  .btn-gold::after { display: none; }
}

/* ============================================================ Responsive ============================================================ */
@media (max-width: 980px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .course-cards, .course-cards.cols-3 { grid-template-columns: 1fr; max-width: 540px; }
  .modules-grid, .modules-grid.cols-2 { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding: 52px 26px; }
}
@media (max-width: 900px) {
  .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .main-nav { display: none; }
  .brand-full { display: none; }
  .brand-icon { display: block; }
  .hero { min-height: 90vh; }
  .hero-media.has-mobile .hero-video { display: none; }
  .hero-video-mobile, .hero-mobile-media { display: block; }
  .hero-content { padding: 100px 26px 130px; }

  /* Versatile mobile hero — "fit": show the whole 16:9 landscape video in a
     cinematic card, then the headline + CTAs stacked below on the dark canvas.
     A single landscape video now works beautifully on phones (no crop). */
  .hero-mfit { min-height: 0; display: block; }
  .hero-mfit .hero-media { position: relative; inset: auto; height: auto; aspect-ratio: 16 / 9; width: 100%; }
  .hero-mfit .hero-media.has-mobile .hero-video,
  .hero-mfit .hero-video { display: block !important; }
  /* Prefer the 16:9 video; the portrait mobile cut is skipped in fit mode.
     The poster / image / fallback stays visible to fill the 16:9 card. */
  .hero-mfit .hero-video-mobile { display: none !important; }
  .hero-mfit .hero-mobile-media { display: block !important; position: absolute; inset: 0; }
  .hero-mfit .hero-fallback, .hero-mfit .hero-image { display: block; position: absolute; inset: 0; }
  .hero-mfit .hero-overlay { background: linear-gradient(to top, rgba(6,6,7,.35), transparent 55%); }
  .hero-mfit .hero-watermark { display: none; }
  .hero-mfit::after { display: none; }
  .hero-mfit .hero-content { position: relative; z-index: 2; padding: 30px 26px 44px; background: var(--bg); max-width: none; }
  .hero-mfit .hero-headline { text-shadow: none; }
  .hero-mfit .hero-play { top: 42%; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .course-finder { display: flex; width: 100%; }
  .cf-label { display: none; }
  .watch-story { right: 16px; bottom: 16px; padding: 11px 15px; }
  .ws-text { font-size: 11.5px; }
  .section { padding: 66px 0; }
  .gallery-grid { columns: 2 160px; }
  .svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .verify-bar { flex-direction: column; border-radius: var(--radius); }
  .verify-bar .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1 auto; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
