/* ═══════════════════════════════════════════════════════════
   SHRISTI DESIGNERS — Luxury Couture Atelier
   Design system: cream · champagne gold · pearl · soft rose · rich black
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream: #FAF8F5;
  --cream-deep: #F3EEE5;
  --pearl: #FFFDF9;
  --gold: #D4AF37;
  --gold-deep: #A8842B;
  --gold-soft: #E8CE7E;
  --rose: #E9C8C4;
  --rose-deep: #C99A94;
  --black: #111111;
  --ink: #2B2620;
  --ink-soft: #6B6155;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --script: "Great Vibes", cursive;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 60px -20px rgba(43, 38, 32, 0.22);
  --shadow-card: 0 10px 40px -12px rgba(43, 38, 32, 0.14);
}

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

html { scroll-behavior: smooth; }
html.lenis { height: auto; scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--pearl); }

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

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

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* ── Loader ─────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--black);
  display: grid; place-items: center;
  transition: opacity 1s var(--ease-lux), visibility 1s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__inner { text-align: center; color: var(--gold); }
.loader__needle { width: 130px; margin-bottom: 22px; opacity: .9; }
.loader__thread {
  stroke-dasharray: 130; stroke-dashoffset: 130;
  animation: threadDraw 1.6s var(--ease-lux) forwards .2s;
}
@keyframes threadDraw { to { stroke-dashoffset: 0; } }
.loader__word {
  font-family: var(--serif); font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: .35em; color: var(--cream); text-transform: uppercase; font-weight: 400;
}
.loader__word span {
  display: inline-block; opacity: 0; transform: translateY(18px);
  animation: letterUp .9s var(--ease-lux) forwards;
}
.loader__word span:nth-child(n)  { animation-delay: calc(.35s + var(--i, 0) * 1s); }
@keyframes letterUp { to { opacity: 1; transform: none; } }
.loader__tag {
  margin-top: 14px; font-size: .72rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); opacity: 0; animation: fadeIn 1.2s ease forwards 1.4s;
}
@keyframes fadeIn { to { opacity: .85; } }

/* ── Cursor glow + particles ────────────────── */
.cursor-glow {
  position: fixed; z-index: 5; pointer-events: none;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.10) 0%, rgba(212,175,55,0) 62%);
  transform: translate(-50%, -50%);
  left: 50vw; top: 50vh;
}
#particles {
  position: fixed; inset: 0; z-index: 4; pointer-events: none; opacity: .8;
}
@media (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-glow { display: none; }
}

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-block; position: relative;
  font-family: var(--sans); font-weight: 400;
  font-size: .78rem; letter-spacing: .28em; text-transform: uppercase;
  padding: 1.05em 2.6em; border-radius: 100px;
  transition: all .5s var(--ease-lux);
  will-change: transform;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-soft) 75%, var(--gold));
  background-size: 200% 100%;
  color: var(--black);
  box-shadow: 0 12px 34px -10px rgba(212, 175, 55, .55);
}
.btn--gold:hover { background-position: 100% 0; box-shadow: 0 18px 44px -10px rgba(212,175,55,.7); }
.btn--ghost {
  color: var(--pearl); border: 1px solid rgba(250,248,245,.5);
  backdrop-filter: blur(8px); background: rgba(250,248,245,.06);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-soft); }
.btn--outline { color: var(--ink); border: 1px solid rgba(43,38,32,.35); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--big { font-size: .85rem; padding: 1.25em 3.2em; }
.btn--nav { font-size: .68rem; padding: .85em 1.9em; }

/* ── Navigation ─────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: all .6s var(--ease-lux);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; align-items: baseline; gap: 10px; color: var(--pearl); transition: color .5s; }
.nav__brand-script { font-family: var(--script); font-size: 1.7rem; color: var(--gold); line-height: 1; }
.nav__brand-word { font-family: var(--serif); letter-spacing: .34em; font-size: .8rem; font-weight: 500; }
.nav__links { display: flex; gap: clamp(16px, 2.4vw, 36px); }
.nav__links a {
  font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(250,248,245,.85); position: relative; padding: 4px 0; transition: color .4s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease-lux);
}
.nav__links a:hover { color: var(--gold-soft); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav.is-scrolled {
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(250, 248, 245, .82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(212,175,55,.25), 0 14px 44px -22px rgba(43,38,32,.3);
}
.nav.is-scrolled .nav__brand { color: var(--ink); }
.nav.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav.is-scrolled .nav__links a:hover { color: var(--gold-deep); }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 34px; position: relative; z-index: 130;
}
.nav__burger span {
  position: absolute; left: 7px; right: 7px; height: 1.6px; background: var(--pearl);
  transition: all .45s var(--ease-lux);
}
.nav__burger span:first-child { top: 13px; } .nav__burger span:last-child { top: 21px; }
.nav.is-scrolled .nav__burger span, .nav__burger.is-open span { background: var(--ink); }
.nav__burger.is-open span:first-child { top: 17px; transform: rotate(45deg); }
.nav__burger.is-open span:last-child { top: 17px; transform: rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(250,248,245,.96); backdrop-filter: blur(24px);
  display: grid; place-items: center; text-align: center;
  opacity: 0; visibility: hidden; transition: all .6s var(--ease-lux);
}
.mobilemenu.is-open { opacity: 1; visibility: visible; }
.mobilemenu nav { display: grid; gap: 26px; }
.mobilemenu a:not(.btn) {
  font-family: var(--serif); font-size: 1.7rem; color: var(--ink); letter-spacing: .06em;
}
.mobilemenu .btn { margin-top: 14px; }

/* ── Floating CTA ───────────────────────────── */
.float-cta {
  position: fixed; right: clamp(16px, 3vw, 34px); bottom: clamp(16px, 3vw, 34px); z-index: 90;
  display: flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--gold-soft);
  border: 1px solid rgba(212,175,55,.5);
  padding: .95em 1.6em; border-radius: 100px;
  font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  box-shadow: 0 16px 40px -12px rgba(17,17,17,.55);
  transition: all .5s var(--ease-lux);
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.float-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.float-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.float-cta svg { width: 17px; height: 17px; }

/* ── Hero ───────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  display: grid; place-items: center; overflow: hidden;
  background: var(--black);
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .92;
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(17,17,17,0) 30%, rgba(17,17,17,.5) 100%),
    linear-gradient(to top, rgba(17,17,17,.78) 0%, rgba(17,17,17,.12) 34%, rgba(17,17,17,.25) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 22px; max-width: 900px; }
.hero__eyebrow {
  font-size: .68rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 26px;
}
.hero__title { color: var(--pearl); line-height: 1.02; margin-bottom: 20px; }
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line > span { display: inline-block; }
.hero__title-line:first-child > span {
  font-family: var(--script); font-weight: 400;
  font-size: clamp(3.4rem, 10vw, 7.5rem); color: var(--gold);
  text-shadow: 0 8px 60px rgba(212,175,55,.35);
  line-height: 1.3;
  padding: .22em .25em .16em;
  margin: -.08em 0;
}
.hero__title-line--serif > span {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 4vw, 2.6rem); letter-spacing: .58em; margin-left: .58em;
}
.hero__sub {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  color: rgba(250,248,245,.9); margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: grid; justify-items: center; gap: 12px; color: var(--gold-soft);
}
.hero__scroll-text { font-size: .62rem; letter-spacing: .44em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 58px; background: rgba(212,175,55,.25); overflow: hidden; display: block; }
.hero__scroll-line span {
  display: block; width: 100%; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollDrip 2.2s var(--ease-lux) infinite;
}
@keyframes scrollDrip { 0% { transform: translateY(-110%); } 60%, 100% { transform: translateY(260%); } }

/* ── Marquee ────────────────────────────────── */
.marquee {
  background: var(--black); color: var(--gold-soft);
  padding: 18px 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(212,175,55,.3); border-bottom: 1px solid rgba(212,175,55,.3);
}
.marquee__track { display: inline-flex; animation: marquee 38s linear infinite; }
.marquee__track span {
  font-family: var(--serif); font-size: 1rem; letter-spacing: .3em; text-transform: uppercase;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Chapter shared ─────────────────────────── */
.chapter { padding: clamp(90px, 14vh, 160px) clamp(22px, 6vw, 80px); position: relative; }
.chapter__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px);
  align-items: center; max-width: 1240px; margin: 0 auto;
}
.chapter__grid--flip { grid-template-columns: .95fr 1.05fr; }
.chapter__no {
  font-size: .66rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.chapter__no--light { color: var(--gold-soft); }
.chapter__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.3rem, 5.2vw, 3.9rem); line-height: 1.08; color: var(--ink);
}
.chapter__title em { font-style: italic; color: var(--gold-deep); }
.chapter__title--light { color: var(--pearl); }
.chapter__title--light em { color: var(--gold-soft); }
.chapter__rule {
  width: 74px; height: 1px; margin: 28px 0;
  background: linear-gradient(to right, var(--gold), transparent);
}
.chapter__body { color: var(--ink-soft); max-width: 46ch; margin-bottom: 20px; font-size: 1.02rem; }
.chapter__text .btn { margin-top: 18px; }

.artframe {
  position: relative; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-deep);
}
.artframe::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(212,175,55,.45); border-radius: 10px; pointer-events: none;
}
.artframe img, .artframe__svg { width: 100%; height: auto; display: block; }
.artframe--tall .artframe__svg { aspect-ratio: 400/520; }
.artframe__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 26px 20px;
  background: linear-gradient(to top, rgba(17,17,17,.62), transparent);
  color: var(--cream); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  text-align: center;
}

.chapter--heritage { background: var(--cream); }
.chapter--atelier { background: var(--cream-deep); }

/* ── Process / stitched timeline ────────────── */
.process {
  background:
    radial-gradient(1000px 500px at 85% 0%, rgba(233,200,196,.25), transparent 60%),
    radial-gradient(900px 500px at 10% 100%, rgba(212,175,55,.12), transparent 60%),
    var(--pearl);
  padding: clamp(90px, 14vh, 160px) clamp(22px, 6vw, 80px);
}
.process__head { text-align: center; max-width: 760px; margin: 0 auto clamp(60px, 9vh, 110px); }
.process__intro { color: var(--ink-soft); margin-top: 20px; }
.process__split {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 4.5vw, 72px);
  max-width: 1240px; margin: 0 auto;
  align-items: start;
}
.process__media { position: sticky; top: 96px; }
.process__media-frame {
  position: relative; margin: 0;
  height: calc(100svh - 160px); min-height: 420px;
  border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--cream-deep);
}
.process__media-frame::after {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(250,248,245,.45); border-radius: 12px;
  pointer-events: none; z-index: 3;
}
.pmedia {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.05);
  transition: opacity .9s var(--ease-lux), transform 1.6s var(--ease-lux);
}
.pmedia.is-active { opacity: 1; transform: scale(1); }
.process__media-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 46px 26px 20px;
  background: linear-gradient(to top, rgba(17,17,17,.72), transparent);
  color: var(--pearl);
}
.process__media-no {
  flex: none; display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(17,17,17,.45);
  font-family: var(--serif); font-size: .9rem; color: var(--gold-soft);
}
.process__media-label {
  font-family: var(--serif); font-size: 1.3rem; letter-spacing: .04em;
}

.process__timeline { position: relative; padding-left: 64px; }
.process__thread {
  position: absolute; left: 21px; top: 0;
  width: 10px; height: 100%; overflow: visible;
}
.step { position: relative; padding: clamp(26px, 4.6vh, 52px) 0; }
.step__badge {
  position: absolute; left: -61px; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; z-index: 2;
  background: var(--cream); border: 1px solid var(--gold);
  font-family: var(--serif); font-size: .95rem; color: var(--gold-deep);
  box-shadow: 0 0 0 7px var(--pearl), 0 8px 26px -8px rgba(212,175,55,.55);
}
.step__card { padding: clamp(28px, 3.4vw, 44px); border-radius: 18px; }
.step__card h3 {
  font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 12px; color: var(--ink);
}
.step__card p { color: var(--ink-soft); }
.step__card p em { color: var(--gold-deep); font-style: italic; }

.glass {
  background: rgba(255, 253, 249, .6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, .28);
  box-shadow: var(--shadow-card);
}

/* ── Creations ──────────────────────────────── */
.creations {
  background:
    radial-gradient(1100px 600px at 15% 8%, rgba(212,175,55,.14), transparent 55%),
    radial-gradient(900px 600px at 90% 90%, rgba(233,200,196,.1), transparent 55%),
    var(--black);
  padding: clamp(100px, 15vh, 170px) clamp(22px, 6vw, 80px);
}
.creations__head { text-align: center; max-width: 720px; margin: 0 auto clamp(56px, 8vh, 90px); }
.creations__intro { color: rgba(250,248,245,.62); margin-top: 20px; }
.creations__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px);
  max-width: 1240px; margin: 0 auto;
}
.card {
  position: relative; padding: clamp(30px, 3vw, 42px); border-radius: 20px;
  background: linear-gradient(160deg, rgba(250,248,245,.07), rgba(250,248,245,.02));
  border: 1px solid rgba(212,175,55,.22);
  transition: all .6s var(--ease-lux);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at var(--mx, 50%) var(--my, 0%), rgba(212,175,55,.13), transparent 65%);
  opacity: 0; transition: opacity .5s;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-6px); border-color: rgba(212,175,55,.55); box-shadow: 0 30px 60px -30px rgba(212,175,55,.35); }
.card__art { width: 74px; height: 74px; margin-bottom: 26px; border-radius: 50%; display: grid; place-items: center; }
.card__art svg { width: 44px; height: 44px; }
.card__art[data-tone="gold"]  { background: rgba(212,175,55,.13); color: var(--gold-soft); }
.card__art[data-tone="rose"]  { background: rgba(233,200,196,.13); color: var(--rose); }
.card__art[data-tone="pearl"] { background: rgba(255,253,249,.1);  color: var(--pearl); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; color: var(--pearl); margin-bottom: 12px; }
.card p { color: rgba(250,248,245,.6); font-size: .95rem; margin-bottom: 22px; }
.card__tag {
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-soft); border: 1px solid rgba(212,175,55,.35);
  padding: .55em 1.2em; border-radius: 100px; display: inline-block;
}

/* ── Stats ──────────────────────────────────── */
.stats {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 40%, var(--gold-soft) 70%, var(--gold));
  padding: clamp(60px, 9vh, 96px) clamp(22px, 6vw, 80px);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  max-width: 1140px; margin: 0 auto; text-align: center;
}
.stat__num, .stat__plus {
  font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--black); font-weight: 500; line-height: 1;
}
.stat p {
  margin-top: 10px; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(17,17,17,.72);
}

/* ── Testimonials ───────────────────────────── */
.testimonials { background: var(--cream); padding: clamp(90px, 14vh, 160px) clamp(22px, 6vw, 80px); text-align: center; }
.testimonials__row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 30px);
  max-width: 1240px; margin: clamp(48px, 7vh, 80px) auto 0;
}
.tcard { padding: clamp(30px, 3vw, 44px); border-radius: 20px; text-align: left; }
.tcard__stars { color: var(--gold); letter-spacing: .3em; margin-bottom: 18px; }
.tcard blockquote {
  font-family: var(--serif); font-size: 1.12rem; font-style: italic;
  color: var(--ink); line-height: 1.65; margin-bottom: 22px;
}
.tcard figcaption strong { display: block; font-weight: 500; letter-spacing: .06em; color: var(--ink); }
.tcard figcaption span { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.testimonials__note { margin-top: 34px; font-size: .78rem; color: var(--ink-soft); font-style: italic; }

/* ── Atelier list ───────────────────────────── */
.atelier__list { list-style: none; margin: 8px 0 20px; display: grid; gap: 12px; }
.atelier__list li { display: flex; gap: 14px; color: var(--ink-soft); }
.atelier__list span { color: var(--gold); }

/* ── Instagram ──────────────────────────────── */
.insta { background: var(--cream); padding: clamp(80px, 12vh, 140px) clamp(22px, 6vw, 80px); text-align: center; }
.insta__handle { margin: 18px 0 44px; color: var(--ink-soft); font-size: .86rem; letter-spacing: .12em; }
.insta__handle a { color: var(--gold-deep); border-bottom: 1px solid rgba(212,175,55,.4); }
.insta__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  max-width: 1240px; margin: 0 auto;
}
.insta__tile {
  aspect-ratio: 1; border-radius: 14px; display: grid; place-items: center;
  color: rgba(255,253,249,.85); font-size: 1.5rem;
  transition: all .55s var(--ease-lux); overflow: hidden;
}
.insta__tile:hover { transform: translateY(-5px) scale(1.02); box-shadow: var(--shadow-soft); }
.insta__tile[data-tone="a"] { background: linear-gradient(140deg, #C9A24B, #8A6B1E); }
.insta__tile[data-tone="b"] { background: linear-gradient(140deg, #E9C8C4, #C99A94); }
.insta__tile[data-tone="c"] { background: linear-gradient(140deg, #2B2620, #6B6155); }
.insta__tile[data-tone="d"] { background: linear-gradient(140deg, #E8CE7E, #C9A24B); }
.insta__tile[data-tone="e"] { background: linear-gradient(140deg, #D9C9B5, #A08D72); }
.insta__tile[data-tone="f"] { background: linear-gradient(140deg, #C99A94, #8A5F58); }

/* ── FAQ ────────────────────────────────────── */
.faq { background: var(--cream-deep); padding: clamp(90px, 14vh, 150px) clamp(22px, 6vw, 80px); }
.faq > .chapter__title { text-align: center; margin-bottom: clamp(44px, 7vh, 70px); }
.faq__list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { border-radius: 16px; overflow: hidden; }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 28px; font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  color: var(--gold-deep); font-size: 1.4rem; font-family: var(--sans); font-weight: 200;
  transition: transform .45s var(--ease-lux); flex: none;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__item p { padding: 0 28px 24px; color: var(--ink-soft); max-width: 62ch; }

/* ── Contact ────────────────────────────────── */
.contact {
  position: relative;
  background:
    radial-gradient(900px 500px at 50% 0%, rgba(212,175,55,.16), transparent 60%),
    var(--black);
  padding: clamp(110px, 16vh, 190px) clamp(22px, 6vw, 80px);
  text-align: center; overflow: hidden;
}
.contact__inner { position: relative; max-width: 1000px; margin: 0 auto; }
.contact__title {
  font-family: var(--serif); font-weight: 400; color: var(--pearl);
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.1; margin-bottom: 24px;
}
.contact__title em { font-style: italic; color: var(--gold-soft); }
.contact__sub { color: rgba(250,248,245,.62); max-width: 52ch; margin: 0 auto 46px; }
.contact__ctas { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-bottom: clamp(56px, 8vh, 90px); }
.contact__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.ccard { padding: 30px 32px; border-radius: 18px; background: rgba(250,248,245,.05); }
.ccard h4 {
  font-size: .68rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px; font-weight: 400;
}
.ccard p { color: rgba(250,248,245,.72); font-size: .92rem; line-height: 1.9; }

/* ── Footer ─────────────────────────────────── */
.footer {
  background: var(--black); color: rgba(250,248,245,.55);
  border-top: 1px solid rgba(212,175,55,.25);
  padding: clamp(56px, 8vh, 80px) clamp(22px, 6vw, 80px) 40px;
  text-align: center;
}
.footer__script { font-family: var(--script); font-size: 2.4rem; color: var(--gold); display: block; }
.footer__word { font-family: var(--serif); letter-spacing: .46em; font-size: .82rem; color: var(--cream); }
.footer__tag { margin-top: 12px; font-size: .64rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft); }
.footer__nav { display: flex; gap: clamp(18px, 3vw, 36px); justify-content: center; flex-wrap: wrap; margin: 36px 0; }
.footer__nav a { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; transition: color .4s; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__fine { font-size: .74rem; opacity: .55; }

/* ── Animation primitives ───────────────────── */
.split .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.split .word > span { display: inline-block; will-change: transform; }
.parallax { will-change: transform; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .creations__grid { grid-template-columns: repeat(2, 1fr); }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: block; }
  .chapter__grid, .chapter__grid--flip { grid-template-columns: 1fr; gap: 44px; }
  .chapter__grid--flip .chapter__art { order: 2; }
  .process__split { grid-template-columns: 1fr; gap: 26px; }
  .process__media { top: 74px; z-index: 6; }
  .process__media-frame { height: 34svh; min-height: 250px; }
  .process__media-label { font-size: 1.05rem; }
  .testimonials__row, .contact__cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .float-cta span { display: none; }
  .float-cta { padding: 1em; }
}
@media (max-width: 520px) {
  .creations__grid { grid-template-columns: 1fr; }
  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__ctas .btn { width: 100%; text-align: center; }
}

/* ── Reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee__track { animation: none; }
}
