/* ---------- Tokens ---------- */
:root {
  --ink: #1B1714;
  --ink-2: #3a322c;
  --muted: #6b625b;
  --noir: #0E0C0A;
  --ivory: #FBF7F1;
  --bone: #EFE7DB;
  --blush: #ECDCD2;
  --accent: #B49467; /* restrained gold */
  --accent-deep: #8e7245;
  --line: #E6DCCD;
  --line-soft: rgba(27,23,20,0.10);
  --line-dark: rgba(251,247,241,0.14);
  --shadow-card: 0 1px 0 rgba(27,23,20,0.04);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1360px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Type ---------- */
.display { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; line-height: 1.02; }
.serif   { font-family: var(--serif); font-weight: 400; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow.gold { color: var(--accent-deep); }
.mono { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0 0 1em; text-wrap: pretty; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 9vw, 140px) 0; }
.section--tight { padding: clamp(56px, 6vw, 92px) 0; }
.dark { background: var(--noir); color: var(--ivory); }
.dark .eyebrow { color: rgba(251,247,241,0.55); }
.dark .eyebrow.gold { color: var(--accent); }
.dark a:hover { color: var(--accent); }

/* ---------- Top announcement ---------- */
.announce {
  background: var(--noir);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
  font-weight: 400;
}
.announce .dot { display: inline-block; width: 3px; height: 3px; background: var(--accent); border-radius: 50%; margin: 0 14px; vertical-align: middle; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(251,247,241,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav--over {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  color: var(--ivory);
}
.nav--over.scrolled {
  background: rgba(251,247,241,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
}
.nav-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 18px 0; }
.nav-links { display: flex; gap: 28px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.nav-links button { background: none; border: 0; color: inherit; padding: 6px 0; position: relative; letter-spacing: inherit; font-weight: inherit; font-size: inherit; }
.nav-links button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.nav-links button:hover::after, .nav-links button[aria-current="true"]::after { transform: scaleX(1); }
.nav-logo { justify-self: center; display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 16px; width: auto; }
.nav--over:not(.scrolled) .nav-logo img { filter: invert(1) brightness(2); }
.nav-actions { justify-self: end; display: flex; align-items: center; gap: 18px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; }
.nav-actions button { background: none; border: 0; color: inherit; font: inherit; padding: 6px 0; }
.nav-fitting {
  border: 1px solid currentColor !important;
  padding: 10px 18px !important;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav-fitting:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink) !important; }
.nav--over:not(.scrolled) .nav-fitting:hover { background: var(--ivory); color: var(--ink); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border: 1px solid var(--ink); background: var(--ink); color: var(--ivory); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; transition: background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { background: var(--ivory); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }
.btn--ivory { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--ivory:hover { background: transparent; color: var(--ivory); border-color: var(--ivory); }
.btn--gold { background: transparent; color: var(--ivory); border-color: var(--accent); }
.btn--gold:hover { background: var(--accent); color: var(--noir); }
.btn--lg { padding: 18px 30px; }
.btn .arrow { width: 16px; height: 1px; background: currentColor; position: relative; transition: width .3s ease; }
.btn .arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
.btn:hover .arrow { width: 24px; }

.link-under {
  position: relative; display: inline-block; padding-bottom: 2px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.link-under::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(1); transform-origin: left; transition: transform .35s ease; }
.link-under:hover::after { transform: scaleX(0.5); }

/* ---------- Hero ---------- */
.hero { position: relative; height: clamp(640px, 92vh, 980px); overflow: hidden; background: var(--noir); margin-top: -1px; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,12,10,0.55) 0%, rgba(14,12,10,0.15) 30%, rgba(14,12,10,0.05) 55%, rgba(14,12,10,0.55) 100%); }
.hero-inner { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; padding-top: clamp(80px, 12vh, 140px); padding-bottom: 60px; color: var(--ivory); }
.hero-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(58px, 9vw, 132px); line-height: 0.95; letter-spacing: -0.015em; max-width: 12ch; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--bone); }
.hero-sub { max-width: 38ch; font-size: 15px; opacity: 0.85; margin-top: 28px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border: 1px solid rgba(251,247,241,0.35); border-radius: 999px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-pill .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }

/* ---------- Marquee strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; background: var(--ivory); overflow: hidden; }
.strip-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 48s linear infinite; }
.strip-item { display: inline-flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.strip-item .sep { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section headers ---------- */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 28px; } }
.section-head .title { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.01em; }
.section-head .title em { font-style: italic; color: var(--ink-2); }
.section-head .meta { display: flex; flex-direction: column; gap: 14px; font-size: 14px; max-width: 44ch; color: var(--ink-2); }

/* ---------- Collections (campaign grid) ---------- */
.collections-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; }
@media (max-width: 900px) { .collections-grid { grid-template-columns: 1fr; } }
.collection-card { position: relative; overflow: hidden; background: var(--bone); cursor: pointer; }
.collection-card .ratio { padding-bottom: 130%; position: relative; overflow: hidden; }
.collection-card.tall .ratio { padding-bottom: 140%; }
.collection-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.04); }
.collection-card .label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 26px; color: var(--ivory); z-index: 2; display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; }
.collection-card .label::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(14,12,10,0.65) 100%); z-index: -1; }
.collection-card .label .season { font-family: var(--serif); font-size: 28px; line-height: 1; font-weight: 400; }
.collection-card .label .meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.collection-card .num { position: absolute; top: 22px; left: 26px; font-family: var(--mono); font-size: 11px; color: var(--ivory); letter-spacing: 0.1em; z-index: 2; }

/* ---------- Craft block ---------- */
.craft { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
@media (max-width: 900px) { .craft { grid-template-columns: 1fr; } }
.craft .img { position: relative; overflow: hidden; background: var(--bone); }
.craft .img::after { content: ""; position: absolute; inset: 0; outline: 1px solid var(--accent); outline-offset: -16px; pointer-events: none; opacity: 0.0; transition: opacity .4s ease; }
.craft .img:hover::after { opacity: 0.4; }
.craft .img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.craft .copy { max-width: 48ch; }
.craft .copy h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 28px; }
.craft .copy h2 em { font-style: italic; color: var(--ink-2); }
.craft .copy p { font-size: 16px; color: var(--ink-2); }
.craft .list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; margin: 36px 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.craft .list dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 4px; }
.craft .list dd { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.1; }

/* ---------- Lines grid ---------- */
.lines { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .lines { grid-template-columns: repeat(2, 1fr); } }
.line-card { background: var(--ivory); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 14px; min-height: 280px; cursor: pointer; transition: background .35s ease, color .35s ease; }
.line-card:hover { background: var(--noir); color: var(--ivory); }
.line-card .num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent-deep); }
.line-card:hover .num { color: var(--accent); }
.line-card .name { font-family: var(--serif); font-size: 38px; font-weight: 300; line-height: 1; margin-top: auto; letter-spacing: -0.005em; }
.line-card .desc { font-size: 13px; color: var(--ink-2); max-width: 28ch; }
.line-card:hover .desc { color: rgba(251,247,241,0.7); }
.line-card .more { margin-top: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; opacity: 0.6; transition: opacity .25s ease; }
.line-card:hover .more { opacity: 1; color: var(--accent); }

/* ---------- Product card / grid ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 16px; }
@media (max-width: 1000px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 4px 8px; } }
.product-card { cursor: pointer; background: transparent; }
.product-card .img { position: relative; background: var(--bone); overflow: hidden; }
.product-card .img::before { content: ""; display: block; padding-bottom: 130%; }
.product-card .img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 8%; transition: transform .8s cubic-bezier(.2,.7,.2,1); mix-blend-mode: multiply; }
.product-card .img.dark-bg { background: var(--noir); }
.product-card .img.dark-bg img { mix-blend-mode: normal; }
.product-card:hover .img img { transform: scale(1.03); }
.product-card .badge { position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; padding: 5px 9px; background: rgba(251,247,241,0.92); color: var(--ink); }
.product-card .info { padding: 18px 4px 8px; display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.product-card .info .name { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.15; }
.product-card .info .price { font-size: 13px; color: var(--ink); white-space: nowrap; font-feature-settings: "tnum"; }
.product-card .mto { padding: 0 4px 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.product-card .mto::before { content: ""; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }

/* ---------- Founder quote ---------- */
.quote-band { background: var(--bone); padding: clamp(80px, 10vw, 140px) 0; }
.quote-band .container { max-width: 1100px; }
.quote-band q {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
  quotes: "“" "”" "‘" "’";
}
.quote-band .cite { margin-top: 32px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); display: flex; align-items: center; gap: 12px; }
.quote-band .cite .rule { width: 36px; height: 1px; background: var(--accent); }

/* ---------- Press strip ---------- */
.press { display: flex; flex-wrap: wrap; gap: 12px 36px; align-items: center; justify-content: center; padding: 36px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.press-item { font-family: var(--serif); font-size: 22px; font-weight: 400; letter-spacing: 0.02em; color: var(--ivory); opacity: 0.78; }
.press-item.small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; }

/* ---------- Closing CTA ---------- */
.closing { position: relative; padding: 0; min-height: 540px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--ivory); background: var(--noir); }
.closing img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.closing-inner { position: relative; z-index: 2; padding: 80px 24px; max-width: 720px; }
.closing h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(42px, 6vw, 76px); line-height: 1.02; margin-bottom: 24px; }
.closing p { max-width: 50ch; margin: 0 auto 36px; opacity: 0.85; }
.closing-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer.foot { background: var(--noir); color: var(--ivory); padding: 80px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot h4 { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px; color: rgba(251,247,241,0.55); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.foot ul a:hover { color: var(--accent); }
.foot .brand-mark { font-family: var(--serif); font-size: 26px; letter-spacing: 0.04em; margin-bottom: 22px; }
.foot .news { display: flex; gap: 0; border-bottom: 1px solid rgba(251,247,241,0.3); padding-bottom: 8px; max-width: 360px; }
.foot .news input { background: transparent; border: 0; color: var(--ivory); font: inherit; flex: 1; padding: 8px 0; outline: none; }
.foot .news input::placeholder { color: rgba(251,247,241,0.45); }
.foot .news button { background: transparent; border: 0; color: var(--ivory); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding: 6px 0; }
.foot .news button:hover { color: var(--accent); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 28px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; flex-wrap: wrap; gap: 16px; }

/* ---------- WhatsApp FAB ---------- */
.fab { position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 70; display: inline-flex; align-items: center; gap: 10px; padding: 14px 18px; border-radius: 999px; background: var(--ink); color: var(--ivory); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; box-shadow: 0 10px 30px rgba(14,12,10,0.25); transition: transform .25s ease, background .25s ease; border: 1px solid var(--ink); }
.fab:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }
.fab svg { width: 16px; height: 16px; }
@media (max-width: 700px) { .fab .label { display: none; } .fab { padding: 16px; } }

/* ---------- Mobile bottom bar ---------- */
.mobar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 65; display: none; background: var(--ivory); border-top: 1px solid var(--line); padding: 12px 16px; gap: 8px; }
.mobar .btn { flex: 1; justify-content: center; padding: 12px 10px; font-size: 11px; }
@media (max-width: 700px) { .mobar { display: flex; } body { padding-bottom: 72px; } }

/* ---------- Generic page header ---------- */
.page-head { padding: clamp(60px, 8vh, 110px) 0 clamp(40px, 5vh, 80px); }
.page-head .crumbs { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.06em; }
.page-head .crumbs button { background: none; border: 0; padding: 0; color: inherit; font: inherit; }
.page-head .crumbs button:hover { color: var(--accent-deep); }
.page-head h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(48px, 7vw, 96px); line-height: 1.02; letter-spacing: -0.01em; max-width: 18ch; }
.page-head h1 em { font-style: italic; color: var(--ink-2); }
.page-head .lede { max-width: 56ch; margin-top: 28px; font-size: 16px; color: var(--ink-2); }

/* ---------- Shop filters ---------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 36px; flex-wrap: wrap; }
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { padding: 8px 14px; border: 1px solid var(--line); background: transparent; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-2); border-radius: 999px; transition: all .2s ease; }
.filter-chip:hover { border-color: var(--ink-2); }
.filter-chip[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.shop-meta { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Product detail ---------- */
.pdp { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.pdp-gallery { display: grid; gap: 6px; }
.pdp-gallery .main { background: var(--bone); position: relative; }
.pdp-gallery .main img { width: 100%; aspect-ratio: 3/4; object-fit: contain; padding: 6%; mix-blend-mode: multiply; }
.pdp-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.pdp-gallery .thumbs .t { background: var(--bone); aspect-ratio: 3/4; overflow: hidden; border: 1px solid transparent; cursor: pointer; }
.pdp-gallery .thumbs .t.active { border-color: var(--accent); }
.pdp-gallery .thumbs .t img { width: 100%; height: 100%; object-fit: contain; padding: 12%; mix-blend-mode: multiply; }
.pdp-info { position: sticky; top: 100px; padding-top: 8px; }
.pdp-info .breadcrumbs { font-family: var(--mono); font-size: 11px; color: var(--muted); margin-bottom: 24px; }
.pdp-info h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 14px; }
.pdp-info .price { font-size: 18px; font-feature-settings: "tnum"; margin-bottom: 6px; }
.pdp-info .mto { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-deep); }
.pdp-info .desc { margin: 28px 0; font-size: 15px; color: var(--ink-2); }
.pdp-info hr { border: 0; border-top: 1px solid var(--line); margin: 24px 0; }
.opt-row { margin-bottom: 22px; }
.opt-row .label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; display: flex; justify-content: space-between; }
.opt-row .label a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; }
.swatches { display: flex; gap: 10px; }
.swatch { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); cursor: pointer; position: relative; }
.swatch[aria-pressed="true"]::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid var(--ink); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.size-chip { width: 50px; height: 44px; border: 1px solid var(--line); background: transparent; font-size: 13px; font-weight: 400; transition: all .2s ease; }
.size-chip:hover { border-color: var(--ink); }
.size-chip[aria-pressed="true"] { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.pdp-ctas { display: grid; gap: 10px; margin-top: 12px; }
.pdp-meta { margin-top: 32px; border-top: 1px solid var(--line); }
.pdp-meta details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.pdp-meta summary { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pdp-meta summary::-webkit-details-marker { display: none; }
.pdp-meta summary::after { content: "+"; font-family: var(--serif); font-size: 20px; font-weight: 300; transition: transform .2s ease; }
.pdp-meta details[open] summary::after { content: "−"; }
.pdp-meta details p { padding-top: 14px; font-size: 14px; color: var(--ink-2); margin: 0; }

/* ---------- Editorial story (designer) ---------- */
.designer-hero { position: relative; height: clamp(420px, 70vh, 740px); overflow: hidden; background: var(--noir); }
.designer-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; object-position: center 20%; }
.designer-hero .copy { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 0 0 80px; color: var(--ivory); z-index: 2; }
.designer-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(64px, 9vw, 132px); line-height: 0.95; letter-spacing: -0.015em; }
.designer-hero h1 em { font-style: italic; }
.story-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(36px, 6vw, 120px); margin-top: 80px; }
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }
.story-grid .col-meta { position: sticky; top: 100px; align-self: start; }
.story-grid .col-meta .eyebrow { margin-bottom: 14px; }
.story-grid .col-meta dl { display: grid; gap: 18px; margin: 32px 0 0; padding: 28px 0 0; border-top: 1px solid var(--line); font-size: 14px; }
.story-grid .col-meta dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.story-grid .col-meta dd { margin: 0; font-family: var(--serif); font-size: 18px; line-height: 1.2; }
.story-grid .col-body p { font-family: var(--serif); font-weight: 400; font-size: clamp(20px, 1.6vw, 22px); line-height: 1.5; color: var(--ink); max-width: 60ch; }
.story-grid .col-body p:first-child::first-letter { font-size: 4em; float: left; line-height: 0.9; padding: 6px 14px 0 0; color: var(--accent-deep); font-weight: 400; }

/* ---------- Editorial 50/50 ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; } }
.split > div { background: var(--ivory); padding: clamp(40px, 5vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.split img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split.dark > div.copy { background: var(--noir); color: var(--ivory); }
.split .copy h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin-bottom: 20px; letter-spacing: -0.005em; }
.split .copy p { font-size: 15px; color: var(--ink-2); max-width: 50ch; }
.split.dark .copy p { color: rgba(251,247,241,0.78); }
.split .copy .actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

/* ---------- Form ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 96px); align-items: start; }
@media (max-width: 800px) { .book-grid { grid-template-columns: 1fr; } }
.book-info dl { margin: 24px 0 0; display: grid; gap: 22px; }
.book-info dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.book-info dd { margin: 0; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2; }
.book-info dd a { border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
form.book { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea { background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 0 14px; font: inherit; color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--accent); }
.field textarea { min-height: 120px; resize: vertical; }
.radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
.radio-row .filter-chip { cursor: pointer; }

/* ---------- Editorial image stack ---------- */
.stack { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.stack .a { grid-column: 2 / span 5; }
.stack .b { grid-column: 7 / span 4; margin-top: 80px; }
.stack img { width: 100%; object-fit: cover; }
.stack .a img { aspect-ratio: 4/5; }
.stack .b img { aspect-ratio: 3/4; }
@media (max-width: 800px) {
  .stack { grid-template-columns: 1fr; }
  .stack .a, .stack .b { grid-column: 1; margin: 0; }
}

/* ---------- Toast ---------- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--ink); color: var(--ivory); padding: 14px 22px; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0; transition: opacity .3s ease, transform .3s ease; z-index: 100; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Page transitions ---------- */
.page-enter { animation: pageFade .4s ease both; }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Misc ---------- */
.divider { width: 32px; height: 1px; background: var(--accent); }
.spacer-lg { height: clamp(60px, 8vw, 120px); }
.center { text-align: center; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }

/* small caps detail label  */
.detail-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.detail-row dt { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin: 0; }
.detail-row dd { margin: 0; font-size: 14px; color: var(--ink); }
