/* =========================================================================
   0803 — Design system
   Warm neutral ground, one accent, generous negative space. Everything is
   sized off two clamped scales so pages hold up from 360px to 2000px.
   ========================================================================= */

/* ------------------------------------------------------------- 1. Tokens */
:root {
  --bone:      #f7f4ef;
  --paper:     #ffffff;
  --sand:      #efe8dc;
  --ink:       #191817;
  --ink-soft:  #4d4842;
  --muted:     #8c857b;
  --line:      #e5e0d7;
  --line-soft: #efeae2;
  --clay:      #a97a62;
  --sage:      #8c9679;
  --dark:      #211f1c;
  --ok:        #4f6b4c;
  --low:       #a8763a;
  --out:       #a05a4e;

  --font-sans: 'Jost', 'Futura', 'Avenir Next', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1560px;
  --section: clamp(4.5rem, 9vw, 9rem);

  --r-sm: 2px;
  --r-md: 4px;
  --r-lg: 10px;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .5s;

  --header-h: 68px;
}

/* --------------------------------------------------------- 2. Base reset */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: .012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

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

button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }

hr { border: 0; border-top: 1px solid var(--line); margin: 0; }

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

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

/* ------------------------------------------------------- 3. Typography */
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 300;
  letter-spacing: -.015em;
  line-height: 1.06;
}

.display   { font-size: clamp(2.9rem, 8.2vw, 7.4rem); line-height: .95; letter-spacing: -.035em; }
.h1        { font-size: clamp(2.2rem, 5.4vw, 4.4rem); letter-spacing: -.03em; }
.h2        { font-size: clamp(1.7rem, 3.4vw, 3rem);  letter-spacing: -.026em; }
.h3        { font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: -.018em; }

.serif { font-family: var(--font-serif); font-weight: 300; letter-spacing: -.01em; }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 300; }

.eyebrow {
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.eyebrow--ink { color: var(--ink); }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 56ch;
}

.muted { color: var(--muted); }
.small { font-size: .82rem; letter-spacing: .03em; }
.tiny  { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------- 4. Layout */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 900px; }
.wrap--mid    { max-width: 1180px; }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 5vw, 5rem); }
.section--flush-top { padding-top: 0; }

.rule { border-top: 1px solid var(--line); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin-bottom: clamp(2rem, 3.4vw, 3.4rem);
}
.section-head p { max-width: 46ch; }

.stack > * + * { margin-top: 1rem; }

/* ---------------------------------------------------------- 5. Buttons */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--bone);
  --btn-bd: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 2.1rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform .2s var(--ease);
}
.btn:hover { --btn-bg: transparent; --btn-fg: var(--ink); }
.btn:active { transform: translateY(1px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost:hover { --btn-bg: var(--ink); --btn-fg: var(--bone); }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--ink); --btn-bd: var(--paper); }
.btn--light:hover { --btn-bg: transparent; --btn-fg: var(--paper); --btn-bd: var(--paper); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: .72rem 1.4rem; font-size: .68rem; }

.btn[disabled] { opacity: .38; pointer-events: none; }

.link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  transition: gap .35s var(--ease), opacity .3s var(--ease);
}
.link:hover { gap: .85rem; }
.link svg { width: 13px; height: 13px; }

/* ----------------------------------------------------- 6. Announcement */
.marquee {
  background: var(--dark);
  color: var(--bone);
  overflow: hidden;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .58rem 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 46s linear infinite;
}
.marquee__track span {
  padding-inline: 2.1rem;
  display: inline-flex;
  align-items: center;
  gap: 2.1rem;
  white-space: nowrap;
  opacity: .92;
}
.marquee__track span::after { content: '✦'; opacity: .45; font-size: .6rem; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------------------------------------------------------- 7. Header */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bone);
  border-bottom: 1px solid transparent;
  transition: background .45s var(--ease), border-color .45s var(--ease),
              color .45s var(--ease);
}
.header__inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.header.is-stuck { border-bottom-color: var(--line); }

/* Transparent-over-hero variant, used on the home page. The hero is pulled
   up behind the (still sticky) header so the marquee stays visible above it. */
.header--overlay {
  background: transparent;
  color: var(--paper);
}
.header--overlay .nav__link::after { background: var(--paper); }
.header--overlay.is-stuck {
  background: var(--bone);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.header--overlay.is-stuck .nav__link::after { background: var(--ink); }

.logo {
  justify-self: center;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: .42em;
  text-indent: .42em;
  line-height: 1;
  transition: opacity .3s var(--ease);
}
.logo:hover { opacity: .62; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
}
.nav--end { justify-content: flex-end; }
.nav__link {
  position: relative;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding-block: .4rem;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .42s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current='page']::after {
  transform: scaleX(1);
  transform-origin: left;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: opacity .3s var(--ease);
}
.icon-btn:hover { opacity: .6; }
.icon-btn svg { width: 17px; height: 17px; }

.bag-count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  background: var(--ink);
  color: var(--bone);
  font-size: .6rem;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header--overlay:not(.is-stuck) .bag-count { background: var(--paper); color: var(--ink); }
.bag-count[hidden] { display: none; }

.burger { display: none; }
.burger span {
  display: block;
  width: 20px; height: 1px;
  background: currentColor;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.burger span + span { margin-top: 5px; }

/* ------------------------------------------------- 8. Mobile menu / drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(25, 24, 23, .42);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease);
  z-index: 70;
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.panel {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(430px, 100%);
  background: var(--bone);
  z-index: 80;
  display: flex;
  flex-direction: column;
  transform: translateX(102%);
  transition: transform .55s var(--ease);
  box-shadow: -20px 0 60px rgba(25, 24, 23, .1);
}
.panel.is-open { transform: none; }
.panel--left { right: auto; left: 0; transform: translateX(-102%); box-shadow: 20px 0 60px rgba(25,24,23,.1); }
.panel--left.is-open { transform: none; }

.panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem var(--gutter);
  border-bottom: 1px solid var(--line);
  flex: none;
}
.panel__body { flex: 1; overflow-y: auto; padding: 1.5rem var(--gutter); }
.panel__foot { flex: none; padding: 1.35rem var(--gutter); border-top: 1px solid var(--line); background: var(--paper); }
.panel__title { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; }

.close-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 100px;
  transition: background .3s var(--ease);
}
.close-btn:hover { background: var(--line-soft); }
.close-btn svg { width: 15px; height: 15px; }

.menu-list { display: flex; flex-direction: column; }
.menu-list a {
  font-size: 1.55rem;
  letter-spacing: -.02em;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line-soft);
  transition: padding-left .4s var(--ease), color .3s var(--ease);
}
.menu-list a:hover { padding-left: .6rem; color: var(--clay); }

/* --------------------------------------------------------- 9. Search */
.search {
  position: fixed;
  inset: 0 0 auto;
  background: var(--bone);
  z-index: 85;
  transform: translateY(-101%);
  transition: transform .55s var(--ease);
  border-bottom: 1px solid var(--line);
  max-height: 100dvh;
  overflow-y: auto;
}
.search.is-open { transform: none; }
.search__bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--line-soft);
}
.search__bar input {
  flex: 1;
  border: 0;
  background: none;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  padding: .2rem 0;
}
.search__bar input:focus { outline: none; }
.search__bar input::placeholder { color: var(--muted); }
.search__results { padding-block: 1.8rem 2.6rem; }

/* --------------------------------------------------------- 10. Hero */
.hero {
  position: relative;
  margin-top: calc(var(--header-h) * -1);
  min-height: clamp(560px, 94vh, 1000px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: heroIn 1.8s var(--ease) both;
}
@keyframes heroIn { from { transform: scale(1.07); opacity: 0; } to { transform: none; opacity: 1; } }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(20,18,16,.64) 0%, rgba(20,18,16,.14) 44%, rgba(20,18,16,.44) 100%);
}
.hero__inner { padding-bottom: clamp(3rem, 7vw, 6rem); padding-top: calc(var(--header-h) + clamp(5rem, 12vw, 9rem)); width: 100%; }
.hero__inner .eyebrow { color: rgba(255,255,255,.78); }
.hero h1 { max-width: 16ch; text-shadow: 0 1px 40px rgba(0,0,0,.2); }
.hero p { color: rgba(255,255,255,.86); margin-top: 1.6rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem; }

.hero__note {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 7vw, 6rem);
  max-width: 250px;
  text-align: right;
  font-size: .74rem;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(255,255,255,.82);
}

/* ------------------------------------------------------- 11. Grids */
.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.6rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--products { grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: clamp(1.4rem, 2vw, 2.4rem) clamp(1rem, 1.6vw, 1.6rem); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.split--wide { grid-template-columns: 1.15fr .85fr; }

/* -------------------------------------------------- 12. Product card */
.card { position: relative; display: flex; flex-direction: column; }
.card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
  border-radius: var(--r-md);
}
.card__media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .6s var(--ease), transform 1.1s var(--ease);
}
.card__media img.is-alt { opacity: 0; }
.card:hover .card__media img.is-main { opacity: 0; }
.card:hover .card__media img.is-alt  { opacity: 1; }
.card:hover .card__media img { transform: scale(1.035); }

.card__badge {
  position: absolute;
  top: .8rem; left: .8rem;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
  padding: .34rem .68rem;
  border-radius: 100px;
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.card__badge--out { background: var(--ink); color: var(--bone); }

.card__quick {
  position: absolute;
  left: .8rem; right: .8rem; bottom: .8rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__quick .btn {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-color: transparent;
  backdrop-filter: blur(6px);
}
.card__quick .btn:hover { background: var(--ink); color: var(--bone); }

.card__body { padding-top: .95rem; display: flex; flex-direction: column; gap: .3rem; }
.card__top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card__name { font-size: .96rem; letter-spacing: -.005em; }
.card__price { font-size: .9rem; color: var(--ink-soft); white-space: nowrap; }
.card__meta { font-size: .74rem; color: var(--muted); letter-spacing: .04em; }

.swatches { display: flex; gap: .38rem; margin-top: .35rem; }
.swatch {
  width: 15px; height: 15px;
  border-radius: 100px;
  border: 1px solid rgba(25,24,23,.16);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.swatch:hover { transform: scale(1.16); }
.swatch.is-active { box-shadow: 0 0 0 1.5px var(--bone), 0 0 0 3px var(--ink); }

/* Stock dot used across cards, PDP and the reserve panel. */
.stock { display: inline-flex; align-items: center; gap: .42rem; font-size: .72rem; letter-spacing: .04em; }
.stock::before { content: ''; width: 6px; height: 6px; border-radius: 100px; background: currentColor; flex: none; }
.stock--in  { color: var(--ok); }
.stock--low { color: var(--low); }
.stock--out { color: var(--out); }

/* --------------------------------------------------- 13. Collection tile */
.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--r-md);
  color: var(--paper);
  isolation: isolate;
}
.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.2s var(--ease);
}
.tile::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(20,18,16,.82) 0%, rgba(20,18,16,.34) 20%, rgba(20,18,16,0) 48%);
  transition: opacity .5s var(--ease);
}
.tile:hover img { transform: scale(1.06); }
.tile__body { padding: clamp(1.2rem, 2.2vw, 2.1rem); width: 100%; text-shadow: 0 1px 14px rgba(20,18,16,.5); }
.tile__body h3 { margin-bottom: .3rem; }
.tile__body p { font-size: .82rem; color: rgba(255,255,255,.84); margin: 0; }
.tile--tall { aspect-ratio: 3 / 4.4; }

/* ------------------------------------------------------- 14. Editorial */
.figure { border-radius: var(--r-md); overflow: hidden; background: var(--sand); }
.figure img { width: 100%; }
.figure--tall { aspect-ratio: 4/5; }
.figure--tall img { height: 100%; object-fit: cover; }

.banner {
  position: relative;
  min-height: clamp(420px, 58vw, 640px);
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.banner::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(20,18,16,.66), rgba(20,18,16,.18));
}
.banner__body { max-width: 46ch; padding-block: clamp(3rem, 6vw, 5rem); }
.banner__body p { color: rgba(255,255,255,.87); }

/* --------------------------------------------------- 15. Value / marquee row */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.6rem, 3vw, 3rem);
}
.value h4 { font-size: .96rem; margin-bottom: .5rem; letter-spacing: 0; }
.value p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.value__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--clay);
  display: block;
  margin-bottom: .7rem;
}

/* --------------------------------------------------------- 16. Filters */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  background: var(--bone);
  z-index: 40;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chips--active { padding-top: 1.1rem; }
.chips--active:empty { padding-top: 0; }
.chip {
  padding: .5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper);
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.chip--clear { background: none; border-style: dashed; }

.select {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 100px;
  padding: .5rem 2.2rem .5rem 1rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23191817' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 9px;
  cursor: pointer;
}

.filter-group + .filter-group { margin-top: 1.9rem; padding-top: 1.9rem; border-top: 1px solid var(--line-soft); }
.filter-group h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: .95rem; color: var(--muted); }

.check { display: flex; align-items: center; gap: .7rem; padding: .38rem 0; cursor: pointer; font-size: .92rem; }
.check input { appearance: none; width: 16px; height: 16px; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); flex: none; transition: all .25s var(--ease); }
.check input:checked { background: var(--ink); border-color: var(--ink); }
.check input:checked::after { content: '✓'; color: var(--bone); font-size: .62rem; display: grid; place-items: center; height: 100%; }
.check:hover input { border-color: var(--ink); }
.check .count { margin-left: auto; color: var(--muted); font-size: .76rem; }

/* --------------------------------------------------------- 17. PDP */
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.pdp__gallery { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
.pdp__gallery figure { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--sand); aspect-ratio: 4/5; }
.pdp__gallery figure:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 5; }
.pdp__gallery img { width: 100%; height: 100%; object-fit: cover; }

.pdp__info { position: sticky; top: calc(var(--header-h) + 2rem); }
.pdp__price { font-size: 1.15rem; margin-top: .6rem; }
.pdp__tagline { font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.4; color: var(--ink-soft); margin-top: 1.1rem; }

.opt-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: .8rem; }
.opt-head h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.opt-head .val { font-size: .82rem; color: var(--ink); }

.swatch-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.swatch-lg {
  width: 34px; height: 34px;
  border-radius: 100px;
  border: 1px solid rgba(25,24,23,.16);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.swatch-lg:hover { transform: scale(1.07); }
.swatch-lg.is-active { box-shadow: 0 0 0 2px var(--bone), 0 0 0 3.5px var(--ink); }

.size-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.size-btn {
  min-width: 62px;
  padding: .72rem .6rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: .8rem;
  letter-spacing: .06em;
  position: relative;
  transition: all .28s var(--ease);
}
.size-btn:hover:not([disabled]) { border-color: var(--ink); }
.size-btn.is-active { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.size-btn[disabled] { color: var(--muted); background: transparent; cursor: not-allowed; }
.size-btn[disabled]::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top left, transparent calc(50% - .5px), var(--line) 50%, transparent calc(50% + .5px));
}
.size-btn .dot { position: absolute; top: 5px; right: 5px; width: 5px; height: 5px; border-radius: 100px; }

.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.acc__btn .plus { position: relative; width: 11px; height: 11px; flex: none; }
.acc__btn .plus::before, .acc__btn .plus::after {
  content: ''; position: absolute; background: var(--ink); transition: transform .38s var(--ease);
}
.acc__btn .plus::before { inset: 5px 0 5px 0; height: 1px; }
.acc__btn .plus::after  { inset: 0 5px 0 5px; width: 1px; }
.acc__item.is-open .plus::after { transform: rotate(90deg) scaleX(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel .inner { padding-bottom: 1.35rem; font-size: .9rem; color: var(--ink-soft); line-height: 1.7; }
.acc__panel ul { margin: 0; padding-left: 1.1rem; }
.acc__panel li { margin-bottom: .35rem; }

.instore {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  padding: clamp(1.2rem, 2vw, 1.6rem);
}
.instore__row { display: flex; align-items: flex-start; gap: .9rem; }
.instore__row + .instore__row { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.instore svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--clay); }

/* ------------------------------------------------------- 18. Reserve */
.res-item { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line-soft); }
.res-item img { width: 78px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-sm); background: var(--sand); }
.res-item__top { display: flex; justify-content: space-between; gap: .8rem; align-items: baseline; }
.res-item__name { font-size: .9rem; }
.res-item__meta { font-size: .76rem; color: var(--muted); margin-top: .18rem; }
.res-item__actions { display: flex; gap: .9rem; margin-top: .5rem; }
.res-item__actions button { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .3s var(--ease); }
.res-item__actions button:hover { color: var(--ink); border-color: var(--ink); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; }
.qty button { width: 26px; height: 26px; display: grid; place-items: center; font-size: .9rem; color: var(--ink-soft); }
.qty button:hover { color: var(--ink); }
.qty span { min-width: 22px; text-align: center; font-size: .8rem; }

.empty { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }
.split.is-empty { grid-template-columns: 1fr; }
.empty svg { width: 34px; height: 34px; margin: 0 auto 1.1rem; color: var(--line); }

/* -------------------------------------------------------- 19. Store */
.map {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  position: relative;
}
.map svg { width: 100%; height: 100%; display: block; }

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .62rem 0; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
.hours td:last-child { text-align: right; color: var(--ink-soft); }
.hours tr.is-today td { color: var(--clay); }
.hours tr.is-today td:first-child::after { content: ' · Today'; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
}

/* ------------------------------------------------------- 20. Journal */
.post { display: flex; flex-direction: column; }
.post__media { aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; background: var(--sand); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding-top: 1.1rem; }
.post h3 { margin: .45rem 0 .55rem; font-size: 1.22rem; }
.post p { font-size: .88rem; color: var(--muted); line-height: 1.62; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 2.6rem 0 1rem; }
.prose h3 { font-size: 1.15rem; margin: 2rem 0 .7rem; }
.prose p, .prose li { font-size: 1.02rem; line-height: 1.78; color: var(--ink-soft); }
.prose ul { padding-left: 1.15rem; margin: 0 0 1.4rem; }
.prose li { margin-bottom: .5rem; }
.prose blockquote {
  margin: 2.4rem 0;
  padding-left: 1.6rem;
  border-left: 2px solid var(--clay);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  line-height: 1.45;
  color: var(--ink);
}

/* --------------------------------------------------------- 21. Table */
.table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.table th, .table td { padding: .82rem .8rem; text-align: left; border-bottom: 1px solid var(--line); }
.table th { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 400; }
.table tbody tr:hover { background: var(--paper); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* -------------------------------------------------------- 22. Footer */
.footer { background: var(--dark); color: #cfc9c0; padding-top: clamp(3.5rem, 6vw, 6rem); }
.footer a { transition: color .3s var(--ease); }
.footer a:hover { color: var(--paper); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
}
.footer h4 { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--paper); margin-bottom: 1.2rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .62rem; font-size: .88rem; }
.footer__logo { font-size: 1.6rem; letter-spacing: .4em; color: var(--paper); display: inline-block; margin-bottom: 1.2rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .74rem;
  color: #928c83;
}

.field { display: flex; border-bottom: 1px solid rgba(255,255,255,.24); padding-bottom: .5rem; gap: .8rem; }
.field input { flex: 1; background: none; border: 0; font-size: .92rem; color: var(--paper); }
.field input:focus { outline: none; }
.field input::placeholder { color: #928c83; }
.field button { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--paper); }

/* --------------------------------------------------------- 23. Utility */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

.toast {
  position: fixed;
  left: 50%; bottom: 1.6rem;
  transform: translate(-50%, 160%);
  background: var(--ink);
  color: var(--bone);
  padding: .95rem 1.6rem;
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .08em;
  z-index: 95;
  transition: transform .55s var(--ease);
  box-shadow: 0 12px 40px rgba(25,24,23,.24);
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.is-open { transform: translate(-50%, 0); }

.crumbs { font-size: .74rem; letter-spacing: .06em; color: var(--muted); padding-block: 1.4rem; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { margin-inline: .45rem; opacity: .5; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .42rem .9rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: var(--paper);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -140%);
  background: var(--ink); color: var(--bone);
  padding: .7rem 1.3rem; z-index: 100; font-size: .75rem;
  transition: transform .3s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* ----------------------------------------------------- 24. Responsive */
@media (max-width: 1080px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --header-h: 60px; }
  .nav--main { display: none; }
  .nav--end .nav__link { display: none; }
  .burger { display: block; }
  .header__inner { grid-template-columns: 1fr auto 1fr; }
  .split, .split--wide { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .hero__note { display: none; }
  .icon-btn .label { display: none; }
  .menu-list a { font-size: 1.3rem; }
  .grid--products { grid-template-columns: repeat(2, 1fr); gap: 1.6rem .8rem; }
  .card__quick { display: none; }
}

@media (max-width: 560px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .pdp__gallery { grid-template-columns: 1fr; }
  .display { font-size: clamp(2.6rem, 13vw, 3.6rem); }
  .toolbar { top: var(--header-h); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .footer, .marquee, .no-print, .scrim, .panel { display: none !important; }
  body { background: #fff; }
  .section { padding-block: 1rem; }
}
