/* ═══════════════════════════════════════════════════
   MAISON NOIR — design system
   ═══════════════════════════════════════════════════ */
:root {
  --ink: #0b0a09;
  --ink-2: #14120f;
  --ink-3: #1d1a16;
  --ivory: #f2ede4;
  --ivory-dim: rgba(242, 237, 228, 0.55);
  --gold: #c9a96a;
  --gold-soft: rgba(201, 169, 106, 0.35);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-luxe: cubic-bezier(0.65, 0, 0.15, 1);
}

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

html { scroll-behavior: smooth; }

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

body[data-loading] { overflow: hidden; }

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

/* thin luxe scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: #3a352d; border-radius: 3px; }

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  pointer-events: none;
}
.preloader__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  color: var(--gold);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.preloader__ring {
  stroke-dasharray: 289; stroke-dashoffset: 289;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.25s linear;
}
.preloader__letter {
  font-family: var(--serif); font-size: 44px; fill: var(--ivory);
  animation: preloader-breathe 2.2s ease-in-out infinite;
}
@keyframes preloader-breathe { 50% { opacity: 0.45; } }
.preloader__word {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.55em;
  color: var(--ivory-dim); text-indent: 0.55em;
}
.preloader__count {
  font-family: var(--serif); font-size: 15px; font-style: italic;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.preloader__curtain {
  position: absolute; left: 0; width: 100%; height: 50.5%;
  background: var(--ink);
  transition: transform 1s var(--ease-luxe);
}
.preloader__curtain--1 { top: 0; transform-origin: top; }
.preloader__curtain--2 { bottom: 0; transform-origin: bottom; }
.preloader--done .preloader__inner { opacity: 0; transform: translateY(-16px); }
.preloader--done .preloader__curtain--1 { transform: translateY(-101%); }
.preloader--done .preloader__curtain--2 { transform: translateY(101%); }
.preloader--gone { display: none; }

/* ═══════════ CURSOR ═══════════ */
.cursor, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 300;
  pointer-events: none; border-radius: 50%;
  will-change: transform;
}
.cursor {
  width: 6px; height: 6px; background: var(--gold);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-soft);
  display: grid; place-items: center;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              border-color 0.35s, background-color 0.35s;
}
.cursor-ring--active {
  width: 74px; height: 74px;
  border-color: var(--gold);
  background: rgba(201, 169, 106, 0.08);
}
.cursor-ring__label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  transition: opacity 0.3s;
}
.cursor-ring--active .cursor-ring__label { opacity: 1; }
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-ring { display: none; }
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 64px);
  transition: transform 0.6s var(--ease-luxe), background 0.4s, padding 0.4s;
  background: linear-gradient(to bottom, rgba(11, 10, 9, 0.85), transparent);
}
.nav--scrolled {
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 237, 228, 0.06);
}
.nav--hidden { transform: translateY(-110%); }
.nav__logo {
  text-decoration: none; color: var(--ivory);
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.34em;
  display: flex; gap: 8px;
}
.nav__logo-mark--accent { color: var(--gold); }
.nav__links { display: flex; gap: clamp(18px, 3vw, 44px); }
.nav__link {
  position: relative; overflow: hidden;
  text-decoration: none; color: var(--ivory-dim);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  transition: color 0.3s;
}
.nav__link span { display: inline-block; transition: transform 0.4s var(--ease-out); }
.nav__link::after {
  content: attr(href);
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-luxe);
}
.nav__link:hover { color: var(--ivory); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cart {
  background: none; border: 1px solid rgba(242, 237, 228, 0.2);
  border-radius: 999px; color: var(--ivory);
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 9px 18px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.nav__cart:hover { border-color: var(--gold); background: rgba(201, 169, 106, 0.08); }
.nav__cart-count {
  display: grid; place-items: center;
  min-width: 20px; height: 20px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  font-size: 10px; font-weight: 500;
  transition: transform 0.3s var(--ease-out);
}
.nav__cart-count--bump { animation: count-bump 0.5s var(--ease-out); }
@keyframes count-bump { 40% { transform: scale(1.6); } }

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block;
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
}
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 15vw, 190px);
  line-height: 0.92; letter-spacing: 0.04em;
  margin-bottom: 30px;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.55);
}
.hero__title .char {
  display: inline-block;
  opacity: 0; transform: translateY(110%) rotate(6deg);
  transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe);
  transition-delay: calc(var(--i) * 70ms + 300ms);
}
body:not([data-loading]) .hero__title .char {
  opacity: 1; transform: translateY(0) rotate(0deg);
}
.hero__title .char:hover { color: var(--gold); transition-delay: 0s; transition-duration: 0.25s; }
.hero__sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 2.4vw, 22px); color: var(--ivory-dim);
  margin-bottom: 44px;
}
.hero__scrollcue {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--ivory-dim);
}
.hero__scrollcue-line {
  width: 1px; height: 54px; overflow: hidden; position: relative;
  background: rgba(242, 237, 228, 0.15);
}
.hero__scrollcue-line::after {
  content: ""; position: absolute; left: 0; top: 0;
  width: 100%; height: 40%; background: var(--gold);
  animation: scroll-drip 1.8s var(--ease-luxe) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-110%); }
  100% { transform: translateY(280%); }
}
.hero__scrollcue-word { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; }

/* ═══════════ LINE / WORD REVEALS ═══════════ */
.line-mask { display: block; overflow: hidden; }
.line {
  display: block;
  transform: translateY(115%);
  transition: transform 1s var(--ease-luxe);
}
.reveal.in-view .line { transform: translateY(0); }

[data-words] .word, [data-words-slow] .word {
  display: inline-block; overflow: hidden; vertical-align: bottom;
}
[data-words] .word > span, [data-words-slow] .word > span {
  display: inline-block;
  transform: translateY(115%);
  transition: transform 0.9s var(--ease-luxe);
  transition-delay: calc(var(--i) * 45ms);
}
[data-words-slow] .word > span { transition-delay: calc(var(--i) * 90ms); }
[data-words].in-view .word > span,
[data-words-slow].in-view .word > span { transform: translateY(0); }

/* ═══════════ BUTTONS ═══════════ */
.btn {
  position: relative; display: inline-block; overflow: hidden;
  border: 1px solid rgba(242, 237, 228, 0.3); border-radius: 999px;
  background: none; color: var(--ivory);
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 36px; cursor: pointer; text-decoration: none;
  transition: color 0.4s var(--ease-out), border-color 0.4s;
  will-change: transform;
}
.btn__fill {
  position: absolute; inset: 0; background: var(--gold);
  transform: translateY(101%); border-radius: inherit;
  transition: transform 0.5s var(--ease-luxe);
}
.btn__label { position: relative; z-index: 1; }
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn:hover .btn__fill { transform: translateY(0); }
.btn--wide { width: 100%; text-align: center; }

/* ═══════════ MARQUEE ═══════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(242, 237, 228, 0.08);
  border-bottom: 1px solid rgba(242, 237, 228, 0.08);
  padding: 22px 0;
  background: var(--ink-2);
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 42px;
  will-change: transform;
  padding-right: 42px;
}
.marquee__item {
  font-family: var(--serif); font-size: clamp(20px, 3vw, 34px);
  font-style: italic; color: var(--ivory-dim);
}
.marquee__item--outline {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-soft);
}
.marquee__dot { color: var(--gold); font-size: 14px; }

/* ═══════════ SECTION HEADS ═══════════ */
.section-head {
  padding: clamp(80px, 12vh, 140px) clamp(20px, 6vw, 80px) clamp(30px, 5vh, 60px);
  max-width: 1200px;
}
.section-head__eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.section-head__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5.5vw, 72px); line-height: 1.08;
  max-width: 16ch;
}

/* ═══════════ COLLECTION ═══════════ */
.collection { position: relative; }
.collection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(18px, 3vw, 40px);
  padding: 0 clamp(20px, 6vw, 80px) clamp(80px, 12vh, 140px);
}
.card {
  position: relative;
  opacity: 0; transform: translateY(60px);
  transition: opacity 0.9s var(--ease-luxe), transform 0.9s var(--ease-luxe);
  transition-delay: calc(var(--i) * 90ms);
}
.card.in-view { opacity: 1; transform: translateY(0); }
.card__stage {
  position: relative; aspect-ratio: 3 / 4;
  border-radius: 4px; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, var(--ink-3), var(--ink-2) 70%);
  border: 1px solid rgba(242, 237, 228, 0.06);
  transition: border-color 0.4s;
  cursor: pointer;
}
.card:hover .card__stage { border-color: var(--gold-soft); }
.card__stage::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(242, 237, 228, 0.06) 48%, transparent 56%);
  transform: translateX(-120%);
  transition: transform 1.1s var(--ease-luxe);
  pointer-events: none;
}
.card:hover .card__stage::after { transform: translateX(120%); }
.card__num {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ivory-dim);
}
.card__tag {
  position: absolute; top: 14px; right: 16px; z-index: 2;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-soft);
  padding: 4px 10px; border-radius: 999px;
  opacity: 0; transform: translateY(-6px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.card:hover .card__tag { opacity: 1; transform: translateY(0); }
.card__swatch { position: absolute; inset: 0; }
.card__info {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 18px 4px 0;
}
.card__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(19px, 2vw, 23px); line-height: 1.2;
}
.card__fabric {
  display: block; font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ivory-dim); margin-top: 6px;
}
.card__price {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--gold); white-space: nowrap;
}
.card__add {
  margin-top: 14px;
  width: 100%;
  background: none; border: 1px solid rgba(242, 237, 228, 0.14);
  border-radius: 999px; color: var(--ivory-dim);
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 12px 0; cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.35s, border-color 0.35s;
}
.card__add::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-luxe);
}
.card__add span { position: relative; z-index: 1; display: inline-block; transition: transform 0.3s var(--ease-out); }
.card__add:hover { color: var(--ink); border-color: var(--gold); }
.card__add:hover::before { transform: scaleX(1); }
.card__add--added { color: var(--ink) !important; border-color: var(--gold) !important; }
.card__add--added::before { transform: scaleX(1); }

/* the fixed shared canvas that draws all swatches */
.swatch-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 5; pointer-events: none;
}

/* ═══════════ LOOKBOOK ═══════════ */
.lookbook { background: var(--ink-2); }
.lookbook__panels {
  display: flex; flex-direction: column; gap: clamp(60px, 10vh, 120px);
  padding: clamp(30px, 5vh, 60px) clamp(20px, 6vw, 80px) clamp(90px, 14vh, 160px);
}
.panel {
  display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(24px, 5vw, 70px); align-items: center;
}
.panel--flip { direction: rtl; }
.panel--flip > * { direction: ltr; }
.panel__media {
  position: relative; aspect-ratio: 4 / 5; border-radius: 4px;
  overflow: hidden;
  clip-path: inset(12% 8% 12% 8%);
  transition: clip-path 1.2s var(--ease-luxe);
  will-change: transform, clip-path;
  display: grid; place-items: center;
}
.reveal-panel.in-view .panel__media { clip-path: inset(0 0 0 0); }
.panel__media--dusk {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(201, 169, 106, 0.25), transparent 60%),
    linear-gradient(160deg, #1c2233, #0d0f16 60%, #090a0e);
}
.panel__media--oxblood {
  background:
    radial-gradient(80% 60% at 30% 25%, rgba(201, 169, 106, 0.18), transparent 55%),
    linear-gradient(200deg, #3a1218, #1c0a0d 55%, #0e0607);
}
.panel__media--champagne {
  background:
    radial-gradient(85% 65% at 60% 30%, rgba(242, 237, 228, 0.22), transparent 60%),
    linear-gradient(150deg, #4a3d28, #241e13 55%, #100d08);
}
.panel__media::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.panel__num {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(90px, 14vw, 180px);
  color: rgba(242, 237, 228, 0.12);
  will-change: transform;
}
.panel__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 4vw, 48px); line-height: 1.1;
  margin-bottom: 18px;
}
.panel__body { color: var(--ivory-dim); max-width: 42ch; font-size: 15px; }

/* ═══════════ ATELIER ═══════════ */
.atelier {
  padding: clamp(100px, 16vh, 190px) clamp(20px, 8vw, 120px);
  max-width: 1100px; margin: 0 auto;
}
.atelier__manifesto {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(24px, 3.6vw, 44px); line-height: 1.35;
}
.atelier__manifesto .word > span { color: var(--ivory-dim); transition: transform 0.9s var(--ease-luxe), color 0.9s; }
.atelier__manifesto.in-view .word > span { color: var(--ivory); }
.atelier__stats {
  display: flex; flex-wrap: wrap; gap: clamp(30px, 6vw, 90px);
  margin-top: clamp(50px, 8vh, 90px);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat__num {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 64px);
  color: var(--gold); font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  border-top: 1px solid rgba(242, 237, 228, 0.08);
  background: var(--ink-2);
  padding: clamp(80px, 12vh, 140px) clamp(20px, 6vw, 80px) 40px;
}
.footer__cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 40px; max-width: 1200px; margin: 0 auto;
}
.footer__title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(38px, 6vw, 84px);
}
.footer__form { display: flex; gap: 14px; flex-wrap: wrap; }
.footer__input {
  background: none; border: none;
  border-bottom: 1px solid rgba(242, 237, 228, 0.25);
  color: var(--ivory); font-family: var(--serif); font-style: italic; font-size: 17px;
  padding: 12px 4px; min-width: 260px;
  transition: border-color 0.4s;
  outline: none;
}
.footer__input:focus { border-color: var(--gold); }
.footer__input::placeholder { color: rgba(242, 237, 228, 0.3); }
.footer__meta {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  max-width: 1200px; margin: clamp(60px, 10vh, 100px) auto 0;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242, 237, 228, 0.35);
}

/* ═══════════ CART ═══════════ */
.cart-scrim {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(5, 4, 3, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s;
}
.cart-scrim--open { opacity: 1; pointer-events: auto; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 150;
  width: min(430px, 92vw);
  background: var(--ink-2);
  border-left: 1px solid rgba(242, 237, 228, 0.08);
  display: flex; flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.65s var(--ease-luxe);
  padding: 28px;
}
.cart--open { transform: translateX(0); }
.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px; border-bottom: 1px solid rgba(242, 237, 228, 0.08);
}
.cart__title { font-family: var(--serif); font-size: 26px; }
.cart__close {
  background: none; border: 1px solid rgba(242, 237, 228, 0.2); border-radius: 999px;
  width: 38px; height: 38px; color: var(--ivory); cursor: pointer;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
}
.cart__close:hover { transform: rotate(90deg); border-color: var(--gold); }
.cart__list { list-style: none; flex: 1; overflow-y: auto; padding: 10px 0; }
.cart__item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid rgba(242, 237, 228, 0.06);
  animation: cart-item-in 0.5s var(--ease-luxe) both;
}
@keyframes cart-item-in {
  from { opacity: 0; transform: translateX(30px); }
}
.cart__thumb {
  width: 52px; height: 66px; border-radius: 3px; flex: none;
  border: 1px solid rgba(242, 237, 228, 0.1);
}
.cart__item-name { font-family: var(--serif); font-size: 17px; }
.cart__item-fabric { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-dim); }
.cart__item-price { margin-left: auto; font-family: var(--serif); font-style: italic; color: var(--gold); }
.cart__empty {
  font-family: var(--serif); font-style: italic; color: var(--ivory-dim);
  text-align: center; padding: 40px 0;
}
.cart__foot { border-top: 1px solid rgba(242, 237, 228, 0.08); padding-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.cart__total {
  display: flex; justify-content: space-between;
  font-family: var(--serif); font-size: 20px;
}
.cart__total span:last-child { color: var(--gold); font-style: italic; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .panel, .panel--flip { grid-template-columns: 1fr; direction: ltr; }
  .footer__cta { flex-direction: column; align-items: flex-start; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
  }
  html { scroll-behavior: auto; }
  .hero__title .char, .line, [data-words] .word > span, [data-words-slow] .word > span {
    transform: none !important; opacity: 1 !important;
  }
  .card { opacity: 1; transform: none; }
}
