/* ==========================================================================
   ZEGLER — Effortless elegance for Her & Him
   Design system: ink & ivory, champagne gold accent, editorial serif + geometric sans
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-2: #161616;
  --ivory: #f5f2ec;
  --ivory-2: #ece7dd;
  --sand: #e3dbcd;
  --gold: #b8975f;
  --gold-2: #d6c39d;
  --champagne: #e9dfca;
  --stone: #8b857c;
  --stone-2: #b5aea3;
  --line: rgba(10, 10, 10, 0.12);
  --line-light: rgba(245, 242, 236, 0.16);

  --font-display: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --font-sans: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dur-fast: 220ms;
  --dur: 480ms;
  --dur-slow: 900ms;

  --gutter: clamp(20px, 4vw, 64px);
  --nav-h: 84px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

::selection { background: var(--gold); color: var(--ink); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.015em;
}
.display em { font-style: italic; font-weight: 300; color: var(--gold); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 14px;
  opacity: 0.7;
}
.lead { font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.35; font-weight: 400; }
.muted { color: var(--stone); }
.on-dark { color: var(--ivory); }
.on-dark .eyebrow { color: var(--gold-2); }
.on-dark .muted { color: var(--stone-2); }

/* ---------- Layout ---------- */
.container { width: 100%; padding-inline: var(--gutter); margin-inline: auto; max-width: 1680px; }
.section { padding-block: clamp(80px, 10vw, 160px); position: relative; }
.section--dark { background: var(--ink); color: var(--ivory); }
.section--sand { background: var(--ivory-2); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head h2 { font-size: clamp(40px, 5.4vw, 84px); }
.section-head .link-arrow { margin-bottom: 10px; }

/* ---------- Links & buttons ---------- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.link-arrow svg { width: 22px; height: 12px; transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover svg { transform: translateX(6px); }
.link-underline { position: relative; }
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease-out);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
  will-change: transform;
}
.btn--primary { background: var(--ink); color: var(--ivory); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: translateY(101%); border-radius: inherit; z-index: -1;
  transition: transform var(--dur) var(--ease-out);
}
.btn--primary:hover { color: var(--ink); }
.btn--primary:hover::before { transform: translateY(0); }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn--ghost::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: scaleX(0); transform-origin: left; z-index: -1;
  transition: transform var(--dur) var(--ease-out);
}
.btn--ghost:hover { color: var(--ivory); border-color: var(--ink); }
.btn--ghost:hover::before { transform: scaleX(1); }
.on-dark .btn--ghost { border-color: var(--line-light); color: var(--ivory); }
.on-dark .btn--ghost::before { background: var(--ivory); }
.on-dark .btn--ghost:hover { color: var(--ink); border-color: var(--ivory); }
.btn--light { background: var(--ivory); color: var(--ink); }
.btn--light::before { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); z-index: -1; transition: transform var(--dur) var(--ease-out); }
.btn--light:hover::before { transform: translateY(0); }
.btn--block { width: 100%; }
.btn .btn__label { position: relative; overflow: hidden; display: block; }
.btn .btn__label span { display: block; transition: transform var(--dur) var(--ease-out); }
.btn .btn__label span:nth-child(2) { position: absolute; top: 100%; left: 0; }
.btn:hover .btn__label span { transform: translateY(-100%); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot { position: absolute; top: -3px; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.cursor__ring {
  position: absolute; top: -20px; left: -20px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; font-weight: 500;
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), top 0.35s var(--ease-out), left 0.35s var(--ease-out), background 0.35s, border-color 0.35s;
}
.cursor__ring span { opacity: 0; transition: opacity 0.25s; }
.cursor.is-link .cursor__ring { width: 64px; height: 64px; top: -32px; left: -32px; border-color: rgba(255,255,255,0.3); }
.cursor.is-view .cursor__ring { width: 96px; height: 96px; top: -48px; left: -48px; background: rgba(255,255,255,0.95); border-color: transparent; color: #000; mix-blend-mode: normal; }
.cursor.is-view .cursor__ring span { opacity: 1; }
.cursor.is-view .cursor__dot { opacity: 0; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
body.has-cursor { cursor: none; }
body.has-cursor a, body.has-cursor button { cursor: none; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9000; background: var(--ink); color: var(--ivory);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 28px;
}
.preloader__word { display: flex; font-family: var(--font-sans); font-weight: 400; font-size: clamp(34px, 6vw, 72px); letter-spacing: 0.42em; margin-left: 0.42em; overflow: hidden; line-height: 1.1; }
.preloader__word span { display: inline-block; transform: translateY(110%); }
.preloader__line { width: min(280px, 50vw); height: 1px; background: rgba(245,242,236,0.15); position: relative; overflow: hidden; }
.preloader__line i { position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.preloader__count { font-size: 11px; letter-spacing: 0.3em; color: var(--stone-2); font-variant-numeric: tabular-nums; }
.preloader.is-done { pointer-events: none; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800; height: var(--nav-h);
  display: flex; align-items: center;
  padding-inline: var(--gutter);
  transition: height var(--dur) var(--ease-out), background var(--dur), backdrop-filter var(--dur), border-color var(--dur);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(245,242,236,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.is-dark:not(.is-scrolled) { color: var(--ivory); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: 100%; }
.nav__links { display: flex; gap: 36px; }
.nav__links a { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; }
.nav__brand {
  font-family: var(--font-sans); font-weight: 400; font-size: 22px; letter-spacing: 0.42em; margin-left: 0.42em; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav__brand img { height: 22px; width: auto; }
.nav__actions { display: flex; justify-content: flex-end; align-items: center; gap: 26px; }
.nav__actions button, .nav__actions a { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; }
.nav__actions svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.nav__bag-count { display: inline-flex; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: currentColor; color: var(--ivory); font-size: 10px; align-items: center; justify-content: center; letter-spacing: 0; }
.nav.is-dark:not(.is-scrolled) .nav__bag-count { color: var(--ink); }
.nav__burger { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.nav__burger i { display: block; width: 24px; height: 1px; background: currentColor; transition: transform var(--dur) var(--ease-out), opacity var(--dur); }
.nav__burger.is-open i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (max-width: 900px) {
  :root { --nav-h: 68px; }
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__brand { justify-content: flex-start; }
  .nav__burger { display: inline-flex; }
  .nav__actions .nav__text { display: none; }
  .nav__actions { gap: 18px; }
}

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 790; background: var(--ink); color: var(--ivory);
  display: flex; flex-direction: column; justify-content: center; padding: var(--gutter);
  clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease-in-out);
}
.menu.is-open { clip-path: inset(0 0 0 0); }
.menu__links a { display: block; font-family: var(--font-display); font-size: clamp(44px, 12vw, 96px); line-height: 1.05; padding: 6px 0; }
.menu__links a em { font-style: italic; color: var(--gold); }
.menu__meta { margin-top: 40px; display: flex; gap: 28px; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.15fr 1fr;
  padding-top: var(--nav-h); overflow: hidden; background: var(--ivory);
}
.hero__content { padding: clamp(40px, 6vw, 96px) var(--gutter); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero__title { font-size: clamp(44px, 7.2vw, 150px); margin-top: 28px; white-space: nowrap; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title .indent { padding-left: 0.9em; }
.hero__sub { margin-top: 36px; max-width: 420px; font-size: 15px; line-height: 1.8; color: var(--stone); }
.hero__cta { display: flex; align-items: center; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero__visual { position: relative; }
.hero__img-main {
  position: absolute; top: 8%; right: 8%; width: 68%; aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand);
  clip-path: inset(0 0 100% 0);
}
.hero__img-main img, .hero__img-second img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.hero__img-second {
  position: absolute; left: 4%; bottom: 10%; width: 32%; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand);
  clip-path: inset(100% 0 0 0);
  box-shadow: 0 40px 80px -30px rgba(10,10,10,0.35);
}
.hero__badge {
  position: absolute; right: 4%; bottom: 12%; width: 130px; height: 130px; border-radius: 50%;
  display: grid; place-items: center; color: var(--ink);
}
.hero__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 18s linear infinite; }
.hero__badge svg text { font-family: var(--font-sans); font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; fill: currentColor; }
.hero__badge .arrow { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.2; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero__scroll { position: absolute; left: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 14px; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--stone); }
.hero__scroll i { display: block; width: 1px; height: 48px; background: var(--line); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; inset: 0; background: var(--ink); animation: drop 2.2s var(--ease-in-out) infinite; }
@keyframes drop { 0% { transform: translateY(-100%);} 50% { transform: translateY(0);} 100% { transform: translateY(100%);} }
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__title { font-size: clamp(44px, 12vw, 110px); }
  .hero__content { padding-top: 40px; order: 2; }
  .hero__visual { height: 68vw; order: 1; margin-top: 12px; }
  .hero__img-main { width: 62%; top: 4%; right: 6%; }
  .hero__img-second { width: 34%; left: 6%; bottom: 4%; }
  .hero__badge { display: none; }
  .hero__scroll { display: none; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; background: var(--ivory); }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__item { display: flex; align-items: center; gap: 48px; padding-right: 48px; white-space: nowrap; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 30px); font-style: italic; color: var(--ink); }
.marquee__item i { display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.marquee--dark { background: var(--ink); color: var(--ivory); border-color: var(--line-light); }
.marquee--dark .marquee__item { color: var(--ivory); }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--ink); color: var(--ivory); padding-block: clamp(100px, 14vw, 220px); }
.manifesto__text { font-family: var(--font-display); font-size: clamp(34px, 5vw, 84px); line-height: 1.12; max-width: 18ch; }
.manifesto__text .w { display: inline-block; opacity: 0.16; transition: none; }
.manifesto__text .w.is-on { opacity: 1; }
.manifesto__text em { font-style: italic; color: var(--gold-2); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); margin-top: clamp(64px, 8vw, 120px); border: 1px solid var(--line-light); }
.pillar { background: var(--ink); padding: clamp(28px, 3vw, 44px); }
.pillar__num { font-family: var(--font-display); font-size: 14px; font-style: italic; color: var(--gold-2); letter-spacing: 0.1em; }
.pillar h3 { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 34px); font-weight: 400; margin-top: 18px; }
.pillar p { margin-top: 14px; font-size: 14px; line-height: 1.75; color: var(--stone-2); max-width: 36ch; }
@media (max-width: 800px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Collections (horizontal) ---------- */
.collections { background: var(--ivory-2); overflow: hidden; }
.collections__head { padding: clamp(80px, 10vw, 140px) var(--gutter) 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.collections__head h2 { font-size: clamp(40px, 5.4vw, 84px); }
.collections__pin { height: 100vh; display: flex; align-items: center; }
.collections__track { display: flex; gap: clamp(24px, 3vw, 48px); padding-inline: var(--gutter); will-change: transform; }
.coll {
  position: relative; flex: 0 0 auto; width: clamp(280px, 30vw, 520px); aspect-ratio: 3 / 4; overflow: hidden; background: var(--sand);
  display: block;
}
.coll:nth-child(even) { margin-top: 10vh; }
.coll img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); transition: transform 1.2s var(--ease-out); }
.coll:hover img { transform: scale(1.12); }
.coll__meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--ivory); background: linear-gradient(to top, rgba(10,10,10,0.7), transparent); display: flex; justify-content: space-between; align-items: flex-end; }
.coll__meta h3 { font-family: var(--font-display); font-size: clamp(28px, 2.6vw, 40px); font-weight: 400; line-height: 1; }
.coll__meta span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; opacity: 0.8; }
.coll__index { position: absolute; top: 20px; left: 24px; font-family: var(--font-display); font-style: italic; color: var(--ivory); font-size: 18px; mix-blend-mode: difference; }
.coll--end { width: clamp(240px, 24vw, 420px); background: var(--ink); color: var(--ivory); display: flex; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.coll--end h3 { font-family: var(--font-display); font-size: clamp(30px, 3vw, 44px); font-weight: 400; margin-bottom: 20px; }
@media (max-width: 900px) {
  .collections__pin { height: auto; display: block; padding-bottom: 60px; }
  .collections__track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .coll { scroll-snap-align: start; width: 76vw; }
  .coll:nth-child(even) { margin-top: 0; }
}

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px) clamp(12px, 1.6vw, 24px); }
.product-grid--edit { grid-template-columns: repeat(6, 1fr); }
.product-grid--edit .card:nth-child(1) { grid-column: span 3; }
.product-grid--edit .card:nth-child(2) { grid-column: span 3; }
.product-grid--edit .card:nth-child(n+3) { grid-column: span 2; }
.card { position: relative; display: block; }
.card__media { position: relative; overflow: hidden; background: var(--sand); aspect-ratio: 4 / 5; }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.7s var(--ease-out), transform 1.4s var(--ease-out); }
.card__media img.alt { opacity: 0; transform: scale(1.06); }
.card:hover .card__media img.alt { opacity: 1; transform: scale(1); }
.card:hover .card__media img.main { transform: scale(1.06); }
.card__tag { position: absolute; top: 14px; left: 14px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; background: var(--ivory); padding: 6px 10px; font-weight: 500; }
.card__quick { position: absolute; left: 14px; right: 14px; bottom: 14px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(245,242,236,0.92); backdrop-filter: blur(8px); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; transform: translateY(120%); opacity: 0; transition: transform var(--dur) var(--ease-out), opacity var(--dur); }
.card:hover .card__quick { transform: translateY(0); opacity: 1; }
.card__body { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding-top: 14px; }
.card__title { font-family: var(--font-display); font-size: 21px; line-height: 1.2; font-weight: 400; }
.card__cat { display: block; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.card__price { font-size: 13px; letter-spacing: 0.06em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.card__price s { color: var(--stone); margin-right: 8px; font-weight: 300; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) {
  .product-grid, .product-grid--edit { grid-template-columns: repeat(2, 1fr); }
  .product-grid--edit .card:nth-child(n) { grid-column: span 1; }
  .card__title { font-size: 17px; }
  .card__quick { display: none; }
  .card__body { flex-direction: column; gap: 6px; }
  .card__price { font-size: 12px; }
}

/* ---------- Her & Him split ---------- */
.split { display: flex; height: min(90vh, 900px); overflow: hidden; }
.split__half { position: relative; flex: 1; transition: flex 1s var(--ease-in-out); overflow: hidden; display: block; }
.split__half:hover { flex: 1.6; }
.split__half img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.6s var(--ease-out); }
.split__half:hover img { transform: scale(1); }
.split__half::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.55), transparent 55%); }
.split__label { position: absolute; left: var(--gutter); bottom: 48px; z-index: 2; color: var(--ivory); }
.split__label .eyebrow { color: var(--gold-2); }
.split__label h3 { font-family: var(--font-display); font-size: clamp(54px, 8vw, 130px); font-weight: 400; line-height: 0.95; margin-top: 12px; }
.split__label .link-arrow { margin-top: 20px; opacity: 0; transform: translateY(10px); transition: opacity var(--dur), transform var(--dur) var(--ease-out); }
.split__half:hover .link-arrow { opacity: 1; transform: none; }
.split__divider { width: 1px; background: var(--ivory); opacity: 0.4; }
@media (max-width: 800px) {
  .split { flex-direction: column; height: auto; }
  .split__half { height: 70vw; }
  .split__half:hover { flex: 1; }
  .split__label .link-arrow { opacity: 1; transform: none; }
  .split__divider { display: none; }
}

/* ---------- Signature (sticky editorial) ---------- */
.signature { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.signature__sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; }
.signature__sticky h2 { font-size: clamp(44px, 5.6vw, 88px); margin-top: 24px; }
.signature__quotes { position: relative; margin-top: 40px; height: 120px; }
.signature__quote { position: absolute; inset: 0; font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-style: italic; line-height: 1.4; color: var(--stone); opacity: 0; transform: translateY(12px); transition: opacity 0.6s, transform 0.6s var(--ease-out); max-width: 30ch; }
.signature__quote.is-active { opacity: 1; transform: none; color: var(--ink); }
.signature__scroll { display: flex; flex-direction: column; gap: 12vh; padding-block: 20vh; }
.signature__img { position: relative; overflow: hidden; background: var(--sand); aspect-ratio: 4 / 5; width: min(100%, 560px); }
.signature__img:nth-child(even) { margin-left: auto; width: min(80%, 440px); }
.signature__img img { width: 100%; height: 115%; object-fit: cover; }
.signature__img figcaption { position: absolute; left: 0; bottom: 0; padding: 14px 18px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory); background: linear-gradient(to top, rgba(10,10,10,0.5), transparent); width: 100%; }
@media (max-width: 900px) {
  .signature { grid-template-columns: 1fr; }
  .signature__sticky { position: relative; height: auto; }
  .signature__scroll { padding-block: 40px 0; gap: 32px; }
  .signature__quotes { height: 140px; }
}

/* ---------- Instagram ---------- */
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.insta__item { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--sand); display: block; }
.insta__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out), filter 0.6s; }
.insta__item:hover img { transform: scale(1.08); }
.insta__item::after { content: ""; position: absolute; inset: 0; background: var(--ink); opacity: 0; transition: opacity 0.5s; }
.insta__item:hover::after { opacity: 0.25; }
.insta__item svg { position: absolute; top: 50%; left: 50%; width: 26px; height: 26px; transform: translate(-50%, -50%) scale(0.8); stroke: var(--ivory); fill: none; stroke-width: 1.4; opacity: 0; transition: opacity 0.4s, transform 0.4s var(--ease-out); z-index: 2; }
.insta__item:hover svg { opacity: 1; transform: translate(-50%, -50%) scale(1); }
@media (max-width: 800px) { .insta__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Newsletter / launch ---------- */
.launch { background: var(--ink); color: var(--ivory); position: relative; overflow: hidden; }
.launch__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 120px); align-items: center; }
.launch h2 { font-size: clamp(48px, 7vw, 120px); margin-top: 20px; }
.launch p { color: var(--stone-2); margin-top: 24px; max-width: 44ch; line-height: 1.8; font-size: 15px; }
.launch__glow { position: absolute; width: 60vw; height: 60vw; border-radius: 50%; background: radial-gradient(circle, rgba(184,151,95,0.22), transparent 62%); top: -20vw; right: -20vw; pointer-events: none; }
.form { position: relative; }
.form__field { position: relative; }
.form__field label { display: block; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone-2); margin-bottom: 12px; }
.form__row { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--line-light); padding-bottom: 14px; position: relative; }
.form__row::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease-out); }
.form__row:focus-within::after { transform: scaleX(1); }
.form input { flex: 1; min-width: 0; background: transparent; border: 0; color: var(--ivory); font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); padding: 8px 0; outline: none; }
.form input::placeholder { color: rgba(245,242,236,0.35); }
.form__submit { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line-light); display: grid; place-items: center; flex: 0 0 auto; transition: background var(--dur), border-color var(--dur), color var(--dur); }
.form__submit svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.4; transition: transform var(--dur) var(--ease-out); }
.form__submit:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.form__submit:hover svg { transform: translateX(3px); }
.form__hint { margin-top: 14px; font-size: 12px; color: var(--stone-2); letter-spacing: 0.04em; }
.form__success { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.6s; }
.form__success .lead { color: var(--ivory); }
.form.is-sent .form__field, .form.is-sent .form__hint { opacity: 0; pointer-events: none; }
.form.is-sent .form__success { opacity: 1; }
.form__error { display: none; margin-top: 10px; font-size: 12px; color: #e3a48a; }
.form.is-error .form__error { display: block; }
@media (max-width: 900px) { .launch__inner { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--ivory); padding: clamp(60px, 8vw, 120px) 0 32px; border-top: 1px solid var(--line-light); }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer__brand p { color: var(--stone-2); font-size: 14px; line-height: 1.8; max-width: 32ch; margin-top: 16px; }
.footer h4 { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; color: var(--gold-2); margin-bottom: 20px; }
.footer li { margin-bottom: 10px; font-size: 14px; color: var(--stone-2); }
.footer li a { transition: color var(--dur); }
.footer li a:hover { color: var(--ivory); }
.footer__word { margin-top: clamp(60px, 8vw, 120px); overflow: hidden; line-height: 0.8; }
.footer__word span {
  display: block; font-family: var(--font-sans); font-weight: 400; font-size: clamp(64px, 18vw, 300px); letter-spacing: 0.18em; margin-left: 0.18em; text-align: center;
  color: transparent; -webkit-text-stroke: 1px rgba(245,242,236,0.35);
  background: linear-gradient(90deg, var(--ivory), var(--gold-2), var(--ivory)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text;
  transition: -webkit-text-stroke-color 0.6s;
}
.footer__word:hover span { -webkit-text-stroke-color: transparent; animation: shine 2.4s linear infinite; color: transparent; }
@keyframes shine { to { background-position: -200% 0; } }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-2); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Page header (shop/product) ---------- */
.page-head { padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 96px)); padding-bottom: clamp(32px, 4vw, 56px); }
.page-head h1 { font-size: clamp(52px, 8vw, 140px); }
.page-head p { margin-top: 20px; color: var(--stone); max-width: 48ch; }
.breadcrumb { display: flex; gap: 10px; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--ink); }

/* Filters */
.filters { position: sticky; top: 64px; z-index: 50; background: rgba(245,242,236,0.9); backdrop-filter: blur(12px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.filters__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 14px; flex-wrap: wrap; }
.chips { display: flex; gap: 6px; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip { padding: 10px 18px; border-radius: 999px; border: 1px solid transparent; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; white-space: nowrap; transition: background var(--dur), color var(--dur), border-color var(--dur); }
.chip:hover { border-color: var(--line); }
.chip.is-active { background: var(--ink); color: var(--ivory); }
.filters__right { display: flex; align-items: center; gap: 20px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.select { position: relative; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.select select { appearance: none; background: transparent; border: 0; font: inherit; letter-spacing: inherit; text-transform: inherit; color: inherit; padding-right: 18px; cursor: pointer; outline: none; }
.select svg { position: absolute; right: 0; width: 10px; height: 10px; pointer-events: none; stroke: currentColor; fill: none; stroke-width: 1.4; }
.shop-grid { padding-block: clamp(40px, 5vw, 72px) clamp(80px, 10vw, 140px); }
.empty { text-align: center; padding: 80px 0; color: var(--stone); font-family: var(--font-display); font-size: 24px; font-style: italic; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 96px); padding-top: calc(var(--nav-h) + 24px); align-items: start; }
.pdp__gallery { display: grid; grid-template-columns: 72px 1fr; gap: 16px; position: sticky; top: calc(var(--nav-h)); }
.pdp__thumbs { display: flex; flex-direction: column; gap: 10px; }
.pdp__thumbs button { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); border: 1px solid transparent; opacity: 0.55; transition: opacity var(--dur), border-color var(--dur); }
.pdp__thumbs button.is-active { opacity: 1; border-color: var(--ink); }
.pdp__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pdp__main { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.pdp__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s var(--ease-out); transform-origin: center; }
.pdp__main img.is-active { opacity: 1; }
.pdp__main.is-zoom img.is-active { transform: scale(1.8); transition: transform 0.2s, opacity 0.6s; }
.pdp__info { padding-top: clamp(16px, 3vw, 48px); padding-bottom: 60px; }
.pdp__title { font-size: clamp(40px, 4.4vw, 68px); margin-top: 16px; }
.pdp__price { display: flex; align-items: baseline; gap: 14px; margin-top: 20px; font-size: 20px; letter-spacing: 0.04em; font-variant-numeric: tabular-nums; }
.pdp__price s { color: var(--stone); font-size: 15px; }
.pdp__price .save { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 4px 8px; }
.pdp__desc { margin-top: 28px; color: var(--stone); line-height: 1.85; font-size: 15px; max-width: 52ch; }
.options { margin-top: 32px; }
.options__label { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-bottom: 12px; display: flex; justify-content: space-between; }
.options__label b { color: var(--ink); font-weight: 400; text-transform: none; letter-spacing: 0.02em; }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; transition: border-color var(--dur), background var(--dur), color var(--dur); }
.swatch i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.12); background: var(--c, #ccc); }
.swatch:hover { border-color: var(--ink); }
.swatch.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.pdp__actions { display: flex; gap: 12px; margin-top: 36px; }
.pdp__actions .btn--primary { flex: 1; }
.pdp__wish { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background var(--dur), border-color var(--dur); }
.pdp__wish svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.4; transition: fill var(--dur); }
.pdp__wish:hover { border-color: var(--ink); }
.pdp__wish.is-on svg { fill: var(--gold); stroke: var(--gold); }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.perk { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); display: flex; flex-direction: column; gap: 10px; }
.perk svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.2; }
.accordion { margin-top: 40px; border-top: 1px solid var(--line); }
.accordion__item { border-bottom: 1px solid var(--line); }
.accordion__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 500; }
.accordion__btn i { position: relative; width: 12px; height: 12px; }
.accordion__btn i::before, .accordion__btn i::after { content: ""; position: absolute; background: currentColor; top: 50%; left: 0; width: 100%; height: 1px; transition: transform var(--dur) var(--ease-out); }
.accordion__btn i::after { transform: rotate(90deg); }
.accordion__item.is-open .accordion__btn i::after { transform: rotate(0); }
.accordion__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur) var(--ease-out); }
.accordion__item.is-open .accordion__panel { grid-template-rows: 1fr; }
.accordion__panel > div { overflow: hidden; }
.accordion__panel p { padding-bottom: 22px; font-size: 14px; line-height: 1.8; color: var(--stone); max-width: 52ch; }
.related { padding-block: clamp(60px, 8vw, 120px); border-top: 1px solid var(--line); }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: relative; top: auto; grid-template-columns: 1fr; }
  .pdp__thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .pdp__thumbs button { flex: 0 0 64px; }
}

/* ---------- Cart drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; z-index: 900; background: rgba(10,10,10,0.45); opacity: 0; pointer-events: none; transition: opacity 0.5s; backdrop-filter: blur(2px); }
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 910; width: min(460px, 100vw); background: var(--ivory); transform: translateX(100%); transition: transform 0.7s var(--ease-in-out); display: flex; flex-direction: column; }
.drawer.is-open { transform: none; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 28px var(--gutter) 20px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--font-display); font-size: 30px; font-weight: 400; }
.drawer__close { width: 44px; height: 44px; display: grid; place-items: center; }
.drawer__close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.4; }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px var(--gutter); }
.drawer__empty { text-align: center; padding: 60px 0; color: var(--stone); font-family: var(--font-display); font-style: italic; font-size: 22px; }
.cart-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-item__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--sand); }
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__title { font-family: var(--font-display); font-size: 19px; line-height: 1.2; }
.cart-item__opt { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.cart-item__qty { display: inline-flex; align-items: center; gap: 12px; margin-top: 10px; font-size: 13px; }
.cart-item__qty button { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 14px; }
.cart-item__price { font-size: 13px; text-align: right; font-variant-numeric: tabular-nums; }
.cart-item__remove { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone); margin-top: 8px; display: block; }
.drawer__foot { padding: 20px var(--gutter) 28px; border-top: 1px solid var(--line); }
.drawer__total { display: flex; justify-content: space-between; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.drawer__total b { font-weight: 500; font-variant-numeric: tabular-nums; }
.drawer__note { font-size: 11px; color: var(--stone); margin-top: 12px; text-align: center; letter-spacing: 0.04em; }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 950; transform: translate(-50%, 20px); opacity: 0; background: var(--ink); color: var(--ivory); padding: 14px 22px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; transition: opacity 0.4s, transform 0.4s var(--ease-out); pointer-events: none; }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal helpers ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-mask { overflow: hidden; }
.reveal-mask > * { display: block; }
.img-reveal { clip-path: inset(0 0 100% 0); }
.img-reveal img { transform: scale(1.15); }

/* ---------- Grain overlay ---------- */
.grain { position: fixed; inset: -50%; z-index: 9998; pointer-events: none; opacity: 0.035; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain 8s steps(10) infinite; }
@keyframes grain { 0%,100% { transform: translate(0,0);} 10% { transform: translate(-5%,-10%);} 20% { transform: translate(-15%,5%);} 30% { transform: translate(7%,-25%);} 40% { transform: translate(-5%,25%);} 50% { transform: translate(-15%,10%);} 60% { transform: translate(15%,0);} 70% { transform: translate(0,15%);} 80% { transform: translate(3%,35%);} 90% { transform: translate(-10%,10%);} }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .img-reveal, .hero__img-main, .hero__img-second { clip-path: none; }
  .img-reveal img, .hero__img-main img, .hero__img-second img { transform: none; }
  .grain { display: none; }
  .preloader { display: none; }
  .manifesto__text .w { opacity: 1; }
}

/* nav over dark sections once scrolled */
.nav.is-scrolled.is-dark { background: rgba(10,10,10,0.72); color: var(--ivory); border-bottom-color: var(--line-light); }
.nav.is-scrolled.is-dark .nav__bag-count { color: var(--ink); }

/* ---------- Dropdown (sort, currency) ---------- */
.dd { position: relative; }
.dd__btn { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; padding: 10px 0; color: inherit; }
.dd__btn svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 1.4; transition: transform 0.45s var(--ease-out); }
.dd.is-open .dd__btn svg { transform: rotate(180deg); }
.dd__panel {
  position: absolute; top: calc(100% + 12px); right: 0; min-width: 232px; z-index: 120;
  background: var(--ivory); border: 1px solid var(--line); padding: 8px;
  box-shadow: 0 30px 60px -24px rgba(10,10,10,0.35);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}
.dd__panel::before { content: ""; position: absolute; top: -6px; right: 14px; width: 10px; height: 10px; background: var(--ivory); border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg); }
.dd.is-open .dd__panel { opacity: 1; transform: none; pointer-events: auto; }
.dd__opt {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; padding: 13px 14px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; color: var(--stone); text-align: left;
  transition: color var(--dur-fast), background var(--dur-fast); position: relative;
}
.dd__opt span { font-family: var(--font-display); font-style: italic; font-size: 15px; letter-spacing: 0.02em; text-transform: none; font-weight: 400; color: var(--stone-2); }
.dd__opt:hover { color: var(--ink); background: var(--ivory-2); }
.dd__opt:hover span { color: var(--gold); }
.dd__opt.is-active { color: var(--ink); }
.dd__opt.is-active::before { content: ""; position: absolute; left: 0; top: 50%; width: 3px; height: 14px; transform: translateY(-50%); background: var(--gold); }
.dd.is-open .dd__opt { animation: ddIn 0.5s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 45ms); }
@keyframes ddIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.dd--nav .dd__panel { min-width: 180px; }
.filters__right .dd__btn { color: var(--ink); }
@media (max-width: 900px) { .dd--nav .dd__panel { right: auto; left: 0; } .dd--nav .dd__panel::before { right: auto; left: 14px; } }

/* ---------- Order form (in drawer) ---------- */
.card__tag--gold { background: var(--ink); color: var(--gold-2); }
.order__intro { font-size: 13px; line-height: 1.7; color: var(--stone); margin: 4px 0 20px; }
.order__field { display: block; margin-bottom: 16px; }
.order__field span { display: block; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.order__field input, .order__field textarea { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 8px 0; font: inherit; font-size: 15px; color: var(--ink); outline: none; resize: vertical; transition: border-color var(--dur); }
.order__field input:focus, .order__field textarea:focus { border-bottom-color: var(--ink); }
.order.is-error .form__error { display: block; margin-bottom: 14px; }
.order__summary { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0; margin: 8px 0 16px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; }
.order__summary b { font-weight: 500; font-size: 15px; letter-spacing: 0.04em; }
.order__back { display: block; margin: 16px auto 0; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone); }
.order__done { padding: 24px 0; }
.order__done .muted { margin-top: 12px; font-size: 13px; line-height: 1.7; }
.order__done a { text-decoration: underline; }
.order__pre { font: 300 13px/1.7 var(--font-sans); white-space: pre-wrap; background: var(--ivory-2); padding: 14px; margin: 18px 0; }
