/* Field Day — sun-washed editorial minimal
   Fraunces (display serif) + Hanken Grotesk (body/ui) */

:root {
  --chalk:  #f4f0e7;
  --paper:  #faf7f0;
  --sand:   #ece4d4;
  --ink:    #2a2820;
  --stone:  #78735f;
  --line:   #ddd4c2;
  --line-2: #cfc5b0;
  --olive:  #59623f;
  --olive-d:#454d30;
  --clay:   #ad7255;

  --swatch-Natural: #d9d0bd;
  --swatch-Sage:    #9aa17f;
  --swatch-Clay:    #bd8a6f;
  --swatch-Sky:     #a7bcc9;
  --swatch-Ink:     #3a3b35;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 56px);

  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Hanken Grotesk", system-ui, sans-serif;

  --step: 4px;
  --r: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--chalk);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 3px; border-radius: 2px; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; margin: 0; }
.display {
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  font-weight: 340;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.h-xl { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.h-lg { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.h-md { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { margin: 0 0 1rem; max-width: 64ch; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.6; color: #45412f; font-weight: 380; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
}
.muted { color: var(--stone); }
.serif-it { font-family: var(--f-display); font-style: italic; font-weight: 340; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 11vw, 140px); }
.section-sm { padding-block: clamp(48px, 7vw, 88px); }
.band-sand { background: var(--sand); }
.band-ink { background: var(--ink); color: var(--chalk); }
.band-ink .eyebrow { color: #c3c8a2; }
.band-ink .muted { color: #a8a390; }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

.center { text-align: center; }
.stack-sm > * + * { margin-top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-body); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 30px; border-radius: 100px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--chalk);
  transition: transform .2s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s;
}
.btn:hover { background: var(--olive-d); border-color: var(--olive-d); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.btn--block { width: 100%; }
.btn--lg { padding: 17px 38px; font-size: 0.9rem; }
.link-u {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid var(--line-2); padding-bottom: 3px;
  transition: border-color .25s, gap .25s var(--ease);
}
.link-u:hover { border-color: var(--ink); gap: 13px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--chalk) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head__in {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut);
  height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { font-family: var(--f-display); font-size: 1.5rem; font-weight: 380; letter-spacing: -0.01em; white-space: nowrap; }
.brand b { font-weight: 400; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; color: #4b4636;
  position: relative; padding: 4px 0;
}
.nav a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:1px; background: var(--ink); transition: width .28s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.head-right { display: flex; align-items: center; gap: 18px; }
.icon-btn {
  background: none; border: 0; padding: 6px; color: var(--ink); position: relative;
  display: inline-flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 100px;
  background: var(--olive); color: #fff; font-size: 0.66rem; font-weight: 700; letter-spacing: 0;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease);
}
.cart-count[data-empty="1"] { background: var(--line-2); color: var(--stone); }
.cart-count.bump { transform: scale(1.4); }
.burger { display: none; }

/* ---------- hero ---------- */
.hero { position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; padding-block: clamp(40px, 6vw, 84px); }
.hero__media { position: relative; aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__eyebrow { margin-bottom: 22px; }
.hero__title { margin-bottom: 22px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero__meta { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero__meta div { max-width: 15ch; }
.hero__meta .k { font-family: var(--f-display); font-size: 1.15rem; }
.hero__meta .v { font-size: 0.8rem; color: var(--stone); }

/* ---------- marquee ---------- */
.ticker { border-block: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.ticker__track { display: flex; gap: 0; white-space: nowrap; animation: tick 34s linear infinite; }
.ticker__track span { padding: 13px 30px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: #55503e; font-weight: 500; }
.ticker__track span::after { content:"—"; margin-left: 30px; color: var(--line-2); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- product grid ---------- */
.grid-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; }
.pgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 40px) clamp(18px, 2.2vw, 34px); }
.pgrid--4 { grid-template-columns: repeat(4, 1fr); }

.card { display: flex; flex-direction: column; }
.card__media {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden;
  background: var(--sand); margin-bottom: 16px;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.045); }
.card__tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--paper); color: var(--olive-d); font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 11px; border-radius: 100px;
}
.card__quick {
  position: absolute; inset-inline: 12px; bottom: 12px; z-index: 2;
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__quick .btn { width: 100%; padding: 12px; font-size: 0.76rem; }
@media (hover: none) { .card__quick { display: none; } }
.card__row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.card__name { font-family: var(--f-display); font-size: 1.18rem; font-weight: 400; }
.card__price { font-size: 0.98rem; color: #45412f; white-space: nowrap; }
.card__meta { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.card__sub { font-size: 0.82rem; color: var(--stone); }
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,.14);
  box-shadow: inset 0 0 0 2px var(--paper);
}
.swatch--sm { width: 13px; height: 13px; }

/* ---------- editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 72px); align-items: center; }
.split__media { aspect-ratio: 3/2; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split--rev .split__media { order: 2; }

/* ---------- values / steps ---------- */
.cols3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,3vw,48px); }
.val h3 { margin-bottom: 10px; font-size: 1.35rem; }
.val__n { font-family: var(--f-display); font-size: 0.95rem; color: var(--olive); display:block; margin-bottom: 14px; letter-spacing: .04em; }
.val__ico { width: 34px; height: 34px; color: var(--olive); margin-bottom: 16px; }

/* colorway story */
.colorway { display: flex; gap: 14px; flex-wrap: wrap; }
.colorway__chip { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 96px; }
.colorway__dot { width: 60px; height: 60px; border-radius: 50%; border: 1px solid rgba(0,0,0,.12); }
.colorway__chip span { font-size: 0.8rem; letter-spacing: 0.04em; }

/* ---------- filters (shop) ---------- */
.shop-head { padding-block: clamp(36px, 5vw, 60px) 8px; }
.filters {
  position: sticky; top: 68px; z-index: 30; background: color-mix(in srgb, var(--chalk) 92%, transparent);
  backdrop-filter: blur(8px); border-block: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 14px var(--gut);
  margin-inline: calc(-1 * var(--gut));
}
.chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  border: 1px solid var(--line-2); background: transparent; color: #4b4636;
  padding: 8px 16px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.filters__spacer { flex: 1; }
.search {
  display: flex; align-items: center; gap: 8px; border: 1px solid var(--line-2);
  border-radius: 100px; padding: 8px 15px; background: var(--paper); min-width: 190px;
}
.search input { border: 0; background: none; font-family: inherit; font-size: 0.85rem; width: 100%; color: var(--ink); }
.search input:focus { outline: none; }
.search svg { width: 16px; height: 16px; color: var(--stone); flex: none; }
select.sortsel {
  border: 1px solid var(--line-2); background: var(--paper); border-radius: 100px;
  padding: 9px 15px; font-family: inherit; font-size: 0.82rem; color: var(--ink); font-weight: 500;
}
.result-count { font-size: 0.82rem; color: var(--stone); }
.empty-note { padding: 60px 0; text-align: center; color: var(--stone); }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 68px); align-items: start; padding-block: clamp(32px,4vw,56px); }
.pdp__gallery { display: grid; gap: 12px; }
.pdp__main { aspect-ratio: 4/5; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.pdp__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp__info { position: sticky; top: 92px; }
.pdp__price { font-family: var(--f-display); font-size: 1.5rem; margin: 6px 0 20px; }
.pdp__desc { color: #45412f; }
.opt-group { margin-top: 26px; }
.opt-group__label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.opt-group__label .k { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.opt-group__label .sel { font-size: 0.86rem; color: var(--stone); }
.opts { display: flex; gap: 10px; flex-wrap: wrap; }
.opt {
  min-width: 48px; padding: 11px 16px; border: 1px solid var(--line-2); background: var(--paper);
  border-radius: var(--r); font-family: inherit; font-size: 0.88rem; font-weight: 500; color: var(--ink);
  transition: all .18s var(--ease);
}
.opt:hover { border-color: var(--ink); }
.opt[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: var(--chalk); }
.opt--color { display: inline-flex; align-items: center; gap: 9px; padding: 9px 15px 9px 11px; }
.opt--color .dot { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); }
.opt--color[aria-pressed="true"] .dot { box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--chalk); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 100px; overflow: hidden; }
.qty button { width: 42px; height: 44px; background: var(--paper); border: 0; font-size: 1.2rem; color: var(--ink); }
.qty button:hover { background: var(--sand); }
.qty span { width: 44px; text-align: center; font-size: 0.95rem; font-weight: 600; }
.pdp__actions { display: flex; gap: 14px; margin-top: 28px; align-items: center; }
.field-note { font-size: 0.82rem; color: var(--stone); margin-top: 16px; display: flex; gap: 8px; align-items: flex-start; }
.field-note svg { width: 16px; height: 16px; color: var(--olive); flex: none; margin-top: 2px; }
.err-inline { color: var(--clay); font-size: 0.82rem; font-weight: 600; margin-top: 10px; min-height: 1px; }

/* accordion */
.acc { border-top: 1px solid var(--line); margin-top: 34px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: 0; padding: 18px 0; font-family: var(--f-body); font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.03em; color: var(--ink); text-align: left; }
.acc__btn .plus { font-size: 1.3rem; transition: transform .3s var(--ease); color: var(--olive); }
.acc__item[open] .plus, .acc__item.open .plus { transform: rotate(45deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height .34s var(--ease); }
.acc__panel-in { padding-bottom: 20px; color: #45412f; }
.acc__panel ul { margin: 0; padding-left: 18px; }
.acc__panel li { margin-bottom: 6px; }

/* ---------- cart drawer ---------- */
.scrim { position: fixed; inset: 0; background: rgba(30,28,20,.4); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 90; }
.scrim.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(430px, 100vw); z-index: 100;
  background: var(--chalk); box-shadow: -14px 0 44px rgba(30,28,20,.18);
  transform: translateX(100%); transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
}
.drawer.open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__close { background: none; border: 0; font-size: 1.4rem; color: var(--ink); line-height: 1; padding: 4px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 24px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 24px calc(20px + env(safe-area-inset-bottom)); background: var(--paper); }
.line { display: grid; grid-template-columns: 66px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.line__img { width: 66px; height: 82px; border-radius: 2px; overflow: hidden; background: var(--sand); }
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__name { font-family: var(--f-display); font-size: 1.02rem; }
.line__var { font-size: 0.78rem; color: var(--stone); margin-top: 3px; }
.line__ctl { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.line__qty { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 100px; }
.line__qty button { width: 28px; height: 28px; background: none; border: 0; font-size: 1rem; color: var(--ink); }
.line__qty span { width: 26px; text-align: center; font-size: 0.82rem; font-weight: 600; }
.line__rm { background: none; border: 0; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); text-decoration: underline; text-underline-offset: 3px; }
.line__rm:hover { color: var(--clay); }
.line__price { font-size: 0.92rem; text-align: right; }
.drawer__row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.drawer__total { font-family: var(--f-display); font-size: 1.25rem; }
.drawer-empty { text-align: center; padding: 64px 20px; color: var(--stone); }
.drawer-empty svg { width: 40px; height: 40px; color: var(--line-2); margin: 0 auto 16px; }

/* ---------- forms / checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,4vw,64px); align-items: start; padding-block: clamp(32px,4vw,56px); }
.steps { display: flex; gap: 10px; margin-bottom: 34px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--stone); }
.step__n { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; font-size: 0.76rem; }
.step[data-on="1"] { color: var(--ink); }
.step[data-on="1"] .step__n { background: var(--ink); color: var(--chalk); border-color: var(--ink); }
.step[data-done="1"] .step__n { background: var(--olive); color: #fff; border-color: var(--olive); }
.step__sep { color: var(--line-2); }
.fieldset { display: grid; gap: 18px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; color: #4b4636; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid var(--line-2); background: var(--paper); border-radius: var(--r);
  padding: 13px 15px; font-family: inherit; font-size: 0.95rem; color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px color-mix(in srgb, var(--olive) 18%, transparent); }
.field textarea { resize: vertical; min-height: 84px; }
.field.invalid input, .field.invalid textarea { border-color: var(--clay); }
.field .err { color: var(--clay); font-size: 0.78rem; font-weight: 600; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.step-actions { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 30px; }

/* order summary aside */
.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px; position: sticky; top: 92px; }
.summary h3 { font-size: 1.25rem; margin-bottom: 18px; }
.summary__line { display: grid; grid-template-columns: 52px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary__line img { width: 52px; height: 64px; object-fit: cover; border-radius: 2px; background: var(--sand); }
.summary__totals { padding-top: 16px; }
.summary__totals .drawer__row { font-size: 0.92rem; }
.summary__note { margin-top: 18px; font-size: 0.82rem; color: var(--stone); display: flex; gap: 9px; }
.summary__note svg { width: 17px; height: 17px; color: var(--olive); flex: none; margin-top: 1px; }

/* review lines */
.review-block { border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; margin-bottom: 16px; background: var(--paper); }
.review-block h4 { font-family: var(--f-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); margin-bottom: 10px; }
.review-block .edit { float: right; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive); text-decoration: underline; text-underline-offset: 3px; }
.review-block p { margin: 0; font-size: 0.95rem; }

/* confirmation */
.confirm { max-width: 620px; margin: 0 auto; text-align: center; padding-block: clamp(48px,7vw,100px); }
.confirm__badge { width: 66px; height: 66px; border-radius: 50%; background: var(--olive); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 26px; }
.confirm__badge svg { width: 32px; height: 32px; }
.confirm__num { display: inline-block; font-family: var(--f-display); font-size: 1.5rem; background: var(--sand); padding: 8px 20px; border-radius: 100px; margin: 12px 0 4px; letter-spacing: 0.02em; }
.confirm__steps { text-align: left; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 28px; margin-top: 34px; }
.confirm__steps li { margin-bottom: 12px; padding-left: 4px; }

/* ---------- footer ---------- */
.foot { background: var(--ink); color: var(--chalk); padding-block: clamp(56px, 7vw, 92px) 32px; }
.foot a { color: #cfcab6; transition: color .2s; }
.foot a:hover { color: #fff; }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; }
.foot__brand { font-family: var(--f-display); font-size: 1.8rem; margin-bottom: 14px; }
.foot__brand + p { color: #a8a390; font-size: 0.95rem; }
.foot h5 { font-family: var(--f-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #c3c8a2; margin: 0 0 16px; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 10px; font-size: 0.92rem; }
.foot__news { display: flex; gap: 8px; margin-top: 14px; }
.foot__news input { flex: 1; background: transparent; border: 1px solid #4a463a; border-radius: 100px; padding: 11px 16px; color: var(--chalk); font-family: inherit; font-size: 0.86rem; }
.foot__news input:focus { outline: none; border-color: #c3c8a2; }
.foot__news button { border: 0; background: var(--chalk); color: var(--ink); border-radius: 100px; padding: 0 18px; font-weight: 700; }
.foot__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid #3a382e; font-size: 0.82rem; color: #8f8b78; }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding-block: clamp(44px, 6vw, 88px) clamp(24px,3vw,40px); }
.page-hero .eyebrow { margin-bottom: 16px; }
.prose { max-width: 68ch; }
.prose p { color: #45412f; }
.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 28px 0 10px; font-size: 1.3rem; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.faq-item p { margin: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 20px); z-index: 120;
  background: var(--ink); color: var(--chalk); padding: 13px 22px; border-radius: 100px;
  font-size: 0.86rem; font-weight: 500; opacity: 0; pointer-events: none; transition: all .3s var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pgrid, .pgrid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
  .nav, .head-right .icon-btn.acct { display: none; }
  .burger { display: inline-flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; aspect-ratio: 5/5; }
  .split, .split--rev .split__media { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .cols3 { grid-template-columns: 1fr; gap: 30px; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__info { position: static; }
  .checkout { grid-template-columns: 1fr; }
  .summary { position: static; order: -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .pgrid, .pgrid--4 { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .foot__top { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
}

/* mobile menu */
.mmenu { position: fixed; inset: 0; z-index: 95; background: var(--chalk); transform: translateY(-100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; }
.mmenu.open { transform: none; }
.mmenu__head { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 var(--gut); border-bottom: 1px solid var(--line); }
.mmenu nav { display: flex; flex-direction: column; padding: 20px var(--gut); gap: 4px; }
.mmenu nav a { font-family: var(--f-display); font-size: 2rem; padding: 12px 0; border-bottom: 1px solid var(--line); }
.mmenu__foot { margin-top: auto; padding: 24px var(--gut) calc(30px + env(safe-area-inset-bottom)); }

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