/* ------------------------------------------------------------------
   Choker · Maison (v4)
   Quiet-luxury: bone paper, warm brown ink, terracotta accent.
   Fraunces serif display + Inter Tight body. Generous whitespace.
------------------------------------------------------------------ */

:root {
  --bone: #f7f0e3;
  --bone-2: #efe5d3;
  --sand: #e8dccb;
  --sand-2: #dccdb6;
  --taupe: #c9b8a1;
  --cocoa: #8a6d52;
  --cocoa-deep: #5a4432;
  --ink: #3a2d22;
  --ink-2: #6a5544;
  --ink-quiet: #9c8b7a;
  --rust: #a85a3a;
  --rust-soft: #c47a5c;
  --olive: #8e9476;
  --cream-hi: #fdf8ed;
  --line: rgba(58, 45, 34, 0.1);
  --line-strong: rgba(58, 45, 34, 0.25);

  --f-display: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --f-body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --pad: clamp(20px, 4vw, 72px);
  --pad-lg: clamp(32px, 6vw, 120px);
  --radius: 4px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "ss01" 1, "cv11" 1;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: 0.06;
  mix-blend-mode: multiply;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: 0; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-weight: 400; font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0; }
p { margin: 0 0 1em; }
::selection { background: var(--rust); color: var(--cream-hi); }

.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Global atoms ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
}
.eyebrow--muted { color: var(--ink-quiet); }
.rule {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--ink-quiet);
  vertical-align: middle;
  margin: 0 12px 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--ink);
  color: var(--bone);
}
.btn--primary:hover { background: var(--rust); }
.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--bone);
}
.btn--rust {
  background: var(--rust);
  color: var(--cream-hi);
}
.btn--rust:hover { background: var(--cocoa-deep); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--sand);
}
.btn--block { width: 100%; justify-content: center; }

.link-u {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .3s var(--ease), color .3s var(--ease), gap .3s var(--ease);
}
.link-u:hover {
  border-color: var(--rust);
  color: var(--rust);
  gap: 14px;
}

/* ---------- Age strip (soft) ---------- */
.age-strip {
  background: var(--sand);
  color: var(--ink);
  padding: 10px var(--pad);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.age-strip button {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background .3s var(--ease);
}
.age-strip button:hover { background: var(--rust); }
.age-strip.is-hidden { display: none; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.topbar__row {
  max-width: 1480px;
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar__left, .topbar__right { display: inline-flex; gap: 20px; align-items: center; }
.topbar strong { font-weight: 500; color: var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(247, 240, 227, 0.9);
  backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1480px;
  margin: 0 auto;
  padding: 22px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand__mark {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__word {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-variation-settings: "opsz" 48, "SOFT" 30, "WONK" 0;
  color: var(--ink);
}
.primary-nav {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  justify-self: center;
}
.primary-nav a {
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] {
  color: var(--ink);
}
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.nav-tools {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-self: end;
}
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
  position: relative;
}
.icon-btn:hover { background: var(--sand); }
.bag-count {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--rust);
  color: var(--cream-hi);
  font-size: 10px;
  font-weight: 500;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0 4px;
}
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 1px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 140px) var(--pad) clamp(60px, 8vw, 120px);
  max-width: 1480px;
  margin: 0 auto;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
}
.hero__eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--rust);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 128px);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 32px;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.hero__title em {
  font-style: italic;
  color: var(--cocoa);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero__title .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.15s; }
.hero__title .line:nth-child(2) { animation-delay: 0.3s; }
.hero__title .line:nth-child(3) { animation-delay: 0.45s; }
@keyframes riseIn { to { opacity: 1; transform: translateY(0); } }

.hero__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink-2);
  max-width: 46ch;
  margin: 0 0 40px;
  line-height: 1.7;
  opacity: 0;
  animation: riseIn 1.1s 0.65s var(--ease) forwards;
}
.hero__cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: riseIn 1.1s 0.8s var(--ease) forwards;
}

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 3 / 4;
  opacity: 0;
  animation: riseIn 1.4s 0.4s var(--ease) forwards;
}
.hero__plate {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sand) 0%, var(--bone-2) 50%, var(--sand) 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(58, 45, 34, 0.3), 0 10px 30px -10px rgba(58, 45, 34, 0.15);
}
.hero__plate svg { width: 100%; height: 100%; }
.hero__sub {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 50%;
  aspect-ratio: 1;
  background: var(--bone);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 20px 50px -20px rgba(58, 45, 34, 0.3);
  border: 1px solid var(--line);
}
.hero__sub .inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rust) 0%, var(--cocoa) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.hero__sub .inner svg { width: 100%; height: 100%; }

.hero__meta {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 2px rgba(58, 45, 34, 0.3);
  z-index: 2;
}
.hero__meta strong { display: block; font-size: 22px; font-family: var(--f-display); font-style: italic; letter-spacing: 0.02em; margin-top: 4px; font-weight: 400; text-transform: none; }

/* Hero stats below */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 0 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  max-width: 900px;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}
.hero__stats span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ---------- Marquee (quiet) ---------- */
.marquee {
  overflow: hidden;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone-2);
}
.marquee__track {
  display: inline-flex;
  gap: 52px;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  padding-left: 52px;
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-style: italic;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 1;
}
.marquee__track .bullet {
  width: 8px; height: 8px;
  background: var(--rust);
  border-radius: 50%;
  display: inline-block;
  align-self: center;
  margin-top: 0.4em;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section ---------- */
.section {
  padding: var(--pad-lg) var(--pad);
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 1480px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section-head--centered { text-align: center; }
.section-head--split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: end;
}
.section-head__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-head__eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--rust);
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
  max-width: 16ch;
}
.section-head h2 em {
  font-style: italic;
  color: var(--cocoa);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.section-head__lede {
  font-size: 15px;
  color: var(--ink-2);
  max-width: 46ch;
  line-height: 1.7;
}
.section-head--centered h2 { max-width: 22ch; margin: 0 auto; }
.section-head--centered .section-head__eyebrow { justify-content: center; }
.section-head--centered .section-head__lede { margin: 24px auto 0; }

/* ---------- Collections (refined 3-up) ---------- */
.collections {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}
.coll {
  background: var(--bone);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background .5s var(--ease);
  position: relative;
}
.coll:hover { background: var(--sand); }
.coll__art {
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bone-2);
  position: relative;
}
.coll__art svg {
  width: 100%; height: 100%;
  transition: transform 1.5s var(--ease);
}
.coll:hover .coll__art svg { transform: scale(1.04); }
.coll__num {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--f-display);
  font-size: 14px;
  font-style: italic;
  color: var(--bone);
  background: rgba(58, 45, 34, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.coll__body { display: flex; flex-direction: column; gap: 12px; }
.coll__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 0;
}
.coll__title em { font-style: italic; color: var(--cocoa); }
.coll__desc {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  max-width: 38ch;
  line-height: 1.65;
}
.coll__link {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rust);
  align-self: flex-start;
  transition: gap .3s var(--ease), letter-spacing .3s var(--ease);
}
.coll:hover .coll__link { letter-spacing: 0.18em; }

/* ---------- Featured / product grid ---------- */
.featured {
  max-width: 1480px;
  margin: 0 auto;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 3vw, 48px) clamp(24px, 2.4vw, 32px);
}
.pcard {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.pcard:hover { transform: translateY(-4px); }
.pcard__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bone-2);
  box-shadow: 0 6px 24px -8px rgba(58, 45, 34, 0.12);
  transition: box-shadow .5s var(--ease);
}
.pcard:hover .pcard__media {
  box-shadow: 0 20px 50px -15px rgba(58, 45, 34, 0.22);
}
.pcard__media svg {
  width: 100%; height: 100%;
  transition: transform 1.6s var(--ease);
}
.pcard:hover .pcard__media svg { transform: scale(1.05); }
.pcard__tag {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--bone);
  color: var(--rust);
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}
.pcard__qv {
  position: absolute;
  left: 14px; right: 14px;
  bottom: 14px;
  background: var(--ink);
  color: var(--bone);
  padding: 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s var(--ease);
}
.pcard:hover .pcard__qv { opacity: 1; transform: translateY(0); }
.pcard__qv:hover { background: var(--rust); }
.pcard__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pcard__ref {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin: 0;
}
.pcard__name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.pcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}
.pcard__material {
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: 0.02em;
}
.pcard__price {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ---------- Philosophy / manifesto ---------- */
.manifesto {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.manifesto__visual {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--sand) 0%, var(--bone-2) 50%, var(--sand-2) 100%);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(58, 45, 34, 0.3);
  position: relative;
}
.manifesto__visual svg { width: 100%; height: 100%; }
.manifesto__visual .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(247, 240, 227, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.manifesto__visual .badge::before { content: "— "; color: var(--rust); }
.manifesto h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 32px;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.manifesto h2 em {
  font-style: italic;
  color: var(--cocoa);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.manifesto p {
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 0 1em;
  font-size: 15px;
  line-height: 1.75;
}
.manifesto p + p { margin-bottom: 32px; }

/* ---------- Materials (refined tabular) ---------- */
.materials {
  max-width: 1200px;
  margin: 0 auto;
}
.materials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.mat {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease);
}
.mat:hover { padding-left: 20px; padding-right: 20px; background: var(--bone-2); }
.mat__swatch {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px var(--line), 0 0 30px -10px color-mix(in srgb, var(--c) 60%, transparent);
}
.mat__name {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
}
.mat__origin {
  display: block;
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--ink-quiet);
  letter-spacing: 0.06em;
  font-style: normal;
  margin-top: 2px;
}
.mat__badge {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ---------- Editorial feature ---------- */
.editorial {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  padding: 0 var(--pad);
}
.edt-1 { grid-column: 1 / span 5; aspect-ratio: 4/5; }
.edt-2 { grid-column: 6 / span 7; display: flex; flex-direction: column; justify-content: center; padding: clamp(20px, 3vw, 40px); }
.edt-1, .edt-2 { border-radius: 6px; }
.edt-1 {
  background: linear-gradient(160deg, var(--rust) 0%, var(--cocoa) 100%);
  overflow: hidden;
  position: relative;
}
.edt-1 svg { width: 100%; height: 100%; }
.edt-1 .label {
  position: absolute;
  bottom: 20px; left: 20px;
  color: var(--bone);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.edt-1 .label strong {
  display: block;
  font-family: var(--f-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 4px;
  text-transform: none;
}
.edt-2 h3 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  font-weight: 300;
  margin: 20px 0 24px;
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.edt-2 h3 em { font-style: italic; color: var(--cocoa); }
.edt-2 p { color: var(--ink-2); max-width: 50ch; }
.edt-2__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 40px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.edt-2__specs div { display: flex; flex-direction: column; gap: 4px; }
.edt-2__specs strong {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}
.edt-2__specs span {
  font-family: var(--f-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}

/* ---------- Press ---------- */
.press {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bone-2);
}
.press .eyebrow { margin-bottom: 24px; }
.press__row {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 72px);
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--ink-2);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ---------- Bespoke ---------- */
.bespoke {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad);
  text-align: center;
  position: relative;
}
.bespoke__inner {
  max-width: 640px;
  margin: 0 auto;
}
.bespoke h2 {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 20px 0 24px;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.bespoke h2 em {
  font-style: italic;
  color: var(--cocoa);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.bespoke p {
  color: var(--ink-2);
  max-width: 48ch;
  margin: 0 auto 36px;
}
.bespoke__ornament {
  margin: 0 auto 24px;
  width: 60px; height: 1px;
  background: var(--rust);
  position: relative;
}
.bespoke__ornament::before, .bespoke__ornament::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 6px; height: 6px;
  background: var(--rust);
  border-radius: 50%;
}
.bespoke__ornament::before { left: -10px; }
.bespoke__ornament::after { right: -10px; }

/* ---------- Letter ---------- */
.letter {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 96px) var(--pad);
  background: var(--sand);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}
.letter h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  font-weight: 300;
  margin: 16px 0;
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.letter h2 em { font-style: italic; color: var(--cocoa); }
.letter p {
  color: var(--ink-2);
  margin: 0;
  max-width: 42ch;
}
.letter__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: var(--bone);
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  box-shadow: 0 4px 16px -4px rgba(58, 45, 34, 0.08);
}
.letter__form input {
  padding: 14px 0;
  font-size: 14px;
  outline: 0;
  min-width: 0;
}
.letter__form input::placeholder { color: var(--ink-quiet); }
.letter__form button {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.letter__form button:hover { background: var(--rust); }
.letter__note {
  grid-column: 1 / -1;
  margin: 14px 20px 0 !important;
  font-size: 12px;
  color: var(--rust);
  min-height: 14px;
  letter-spacing: 0.02em;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(60px, 8vw, 100px) var(--pad) 28px;
  position: relative;
  z-index: 2;
}
.footer__inner {
  max-width: 1480px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247, 240, 227, 0.1);
}
.footer__brand .brand__word { color: var(--bone); font-size: 28px; }
.footer__brand p {
  color: rgba(247, 240, 227, 0.6);
  font-size: 13px;
  margin: 20px 0 0;
  max-width: 32ch;
  line-height: 1.7;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-soft);
  margin: 0 0 20px;
}
.footer__col a {
  display: block;
  padding: 5px 0;
  color: rgba(247, 240, 227, 0.8);
  font-size: 13px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--rust-soft); }
.footer__col p {
  font-size: 12px;
  color: rgba(247, 240, 227, 0.5);
  line-height: 1.7;
  margin: 12px 0 0;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(247, 240, 227, 0.4);
  flex-wrap: wrap;
}
.footer__bottom a { color: inherit; transition: color .2s var(--ease); }
.footer__bottom a:hover { color: var(--rust-soft); }

/* ---------- Page head ---------- */
.page-head {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) var(--pad) clamp(40px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
}
.page-head__eyebrow { margin-bottom: 20px; display: inline-flex; gap: 12px; align-items: center; }
.page-head__eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--rust); }
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.95;
  font-weight: 300;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 80, "WONK" 0;
}
.page-head h1 em {
  font-style: italic;
  color: var(--cocoa);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.page-head__meta {
  max-width: 32ch;
  margin-bottom: 14px;
}
.page-head__meta p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 12px;
}
.page-head__meta .specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}
.page-head__meta .specs strong {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
  margin-bottom: 4px;
}
.page-head__meta .specs span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}

/* ---------- Shop ---------- */
.shop {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
}
.shop__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 56px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.shop__chips { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.shop__chips > span { color: var(--ink-quiet); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; margin-right: 8px; }
.chip {
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-active {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.sort {
  padding: 9px 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-strong);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23a85a3a' stroke-width='1.4'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* ---------- Quick view ---------- */
.quick {
  position: fixed; inset: 0;
  z-index: 150;
  display: grid; place-items: center;
  padding: 20px;
}
.quick[hidden] { display: none; }
.quick__backdrop {
  position: absolute; inset: 0;
  background: rgba(58, 45, 34, 0.6);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.quick__panel {
  position: relative;
  background: var(--bone);
  border-radius: 8px;
  max-width: 960px;
  width: 100%;
  max-height: 92vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 100px -20px rgba(58, 45, 34, 0.4);
  animation: popIn .5s var(--ease);
}
@keyframes popIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.quick__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  z-index: 2;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 4px 12px rgba(58, 45, 34, 0.15);
}
.quick__close:hover { background: var(--ink); color: var(--bone); transform: rotate(90deg); }
.quick__art {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--sand) 0%, var(--bone-2) 100%);
  border-radius: 8px 0 0 8px;
}
.quick__art svg { width: 100%; height: 100%; }
.quick__body { padding: 48px 40px 40px; }
.quick__ref {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 10px;
  font-weight: 500;
}
.quick__body h3 {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.02;
  font-weight: 300;
  margin: 0 0 10px;
  font-style: italic;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.quick__price {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--cocoa);
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}
.quick__desc {
  color: var(--ink-2);
  font-size: 14px;
  margin: 0 0 24px;
  max-width: 42ch;
  line-height: 1.7;
}
.quick__specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 24px;
  font-size: 12px;
}
.quick__specs dt { color: var(--ink-quiet); letter-spacing: 0.12em; text-transform: uppercase; font-size: 10px; align-self: center; }
.quick__specs dd { margin: 0; color: var(--ink); }
.quick__size { margin-bottom: 24px; }
.quick__size > span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  margin-bottom: 10px;
}
.quick__sizes { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.quick__sizes button {
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  transition: all .3s var(--ease);
}
.quick__sizes button:hover { border-color: var(--ink); }
.quick__sizes button.is-selected {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.quick__note {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  text-align: center;
}

/* ---------- About ---------- */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.about-intro p {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 300;
  color: var(--ink);
  font-style: italic;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.about-intro p:last-of-type { color: var(--cocoa); font-size: clamp(16px, 1.5vw, 20px); font-style: normal; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--f-body); margin-top: 40px; font-weight: 500; }

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.timeline__item:last-child { border-bottom: 1px solid var(--line); }
.timeline__year {
  font-family: var(--f-display);
  font-size: clamp(40px, 4vw, 56px);
  font-style: italic;
  font-weight: 300;
  color: var(--cocoa);
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.timeline__body h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 400;
  margin: 0 0 12px;
  font-style: italic;
  color: var(--ink);
}
.timeline__body p {
  color: var(--ink-2);
  font-size: 15px;
  max-width: 64ch;
  line-height: 1.7;
  margin: 0;
}

.craft-grid {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.craft-card {
  padding: 40px 32px;
  background: var(--bone-2);
  border-radius: 6px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.craft-card:hover { transform: translateY(-4px); background: var(--sand); }
.craft-card__num {
  font-family: var(--f-display);
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
  color: var(--cocoa);
  line-height: 1;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.craft-card h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--ink);
}
.craft-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.numbers {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
}
.numbers div {
  background: var(--bone);
  padding: 40px 28px;
  text-align: center;
}
.numbers strong {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  font-weight: 300;
  font-style: italic;
  color: var(--cocoa);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.numbers p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Contact ---------- */
.contact {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-quiet);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 15px;
  color: var(--ink);
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--rust);
}
.field textarea { resize: vertical; min-height: 140px; font-family: var(--f-body); }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none' stroke='%23a85a3a' stroke-width='1.4'><path d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  cursor: pointer;
}
.field__radio { display: inline-flex; gap: 24px; padding: 14px 0; border-bottom: 1px solid var(--line-strong); flex-wrap: wrap; }
.field__radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
  cursor: pointer;
}
.field__radio input { accent-color: var(--rust); }
.check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.check input { accent-color: var(--rust); margin-top: 3px; }
.contact-form__note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--rust);
  min-height: 14px;
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

.contact-aside {
  display: grid;
  gap: 20px;
  align-content: start;
}
.salon {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bone-2);
  transition: background .3s var(--ease);
}
.salon:hover { background: var(--sand); }
.salon h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.salon p {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 10px;
  line-height: 1.6;
}
.salon a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.salon a:hover { border-color: var(--rust); color: var(--rust); }
.salon__hours {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-quiet);
}

/* ---------- Version switcher (4-way) ---------- */
.switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  display: inline-flex;
  padding: 4px;
  background: var(--bone);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(58, 45, 34, 0.2);
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.switcher a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.switcher a:hover { color: var(--ink); }
.switcher a.is-current {
  background: var(--ink);
  color: var(--bone);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .primary-nav.is-open {
    display: flex;
    position: fixed;
    top: 76px; left: 0; right: 0;
    height: auto;
    max-height: calc(100vh - 76px);
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 4px;
    padding: 12px var(--pad);
    z-index: 70;
  }
  .primary-nav.is-open a { padding: 14px 0; font-size: 18px; font-family: var(--f-display); font-style: italic; border-bottom: 1px solid var(--line); }
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 480px; justify-self: center; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .collections { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .edt-1 { grid-column: 1; aspect-ratio: 16/10; }
  .edt-2 { grid-column: 1; padding: 20px 0; }
  .materials__grid { grid-template-columns: 1fr; }
  .letter { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr 1fr; }
  .page-head { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .contact-form { grid-template-columns: 1fr; }
  .craft-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .timeline__item { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .letter__form { grid-template-columns: 1fr; padding: 16px; border-radius: 6px; }
  .letter__form input { padding: 12px 0; }
  .letter__form button { width: 100%; }
  .quick__panel { grid-template-columns: 1fr; }
  .quick__art { border-radius: 8px 8px 0 0; max-height: 40vh; }
  .quick__body { padding: 28px 24px; }
  .switcher { bottom: 12px; right: 12px; font-size: 10px; }
  .switcher a { padding: 7px 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
