/* ============================================================
   HOUSE OF ARLO — components
   ============================================================ */

/* ---------- Announcement bar ---------------------------------------- */
.bar {
  background: var(--green-deep);
  color: var(--cream);
  height: var(--bar-h);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.bar__track { position: relative; height: 1.2em; width: 100%; }
.bar__item {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: .6em;
  font-family: var(--font-accent);
  font-size: var(--step--1);
  letter-spacing: .22em; text-indent: .22em;
  text-transform: uppercase;
  opacity: 0; transform: translateY(100%);
  transition: opacity 620ms var(--ease-soft), transform 620ms var(--ease-soft);
  white-space: nowrap;
}
.bar__item.is-on { opacity: 1; transform: none; }
/* The outgoing line clears out faster than the incoming rises, so the two
   never read as one overlapping block. */
.bar__item.is-off {
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 220ms linear, transform 620ms var(--ease-soft);
}

/* ---------- Header ---------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr__in {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-5);
}
.hdr a { color: inherit; }

/* Over the hero: cream type, no plate */
.hdr--over { color: var(--cream); }
.hdr--over .hdr__logo { color: var(--cream); }
/* Once scrolled past the hero */
.hdr.is-stuck {
  background: rgba(250,247,240,.92);
  backdrop-filter: saturate(1.4) blur(14px);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,24,15,.03);
}
.hdr.is-stuck .hdr__logo { color: var(--ink); }

.nav { display: flex; gap: var(--sp-6); align-items: center; }
.nav a {
  font-size: var(--step--1);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-block: .4em;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.hdr__logo {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 30, 'wght' 400;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  letter-spacing: -.01em;
  white-space: nowrap;
  text-align: center;
}
.hdr__logo .it { font-style: italic; }

.hdr__right { display: flex; justify-content: flex-end; gap: var(--sp-5); align-items: center; }
.icon-btn {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; font-weight: 500;
}
.cart-count {
  display: inline-grid; place-items: center;
  min-width: 1.55em; height: 1.55em; padding: 0 .35em;
  border-radius: var(--r-pill);
  background: var(--tan); color: #fff;
  font-size: .72em; font-weight: 600; letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.nav-toggle { display: none; }

/* ---------- Hero ------------------------------------------------------ */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 940px);
  margin-top: calc(-1 * var(--nav-h));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Two layers: a soft ellipse that seats the type, over a top-and-tail
   gradient for the nav and the fold. Keeps the corners of the frame bright. */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 78% 62% at 50% 48%, rgba(20,24,15,.64) 0%, rgba(20,24,15,.38) 46%, rgba(20,24,15,.06) 76%),
    linear-gradient(to bottom, rgba(20,24,15,.55) 0%, rgba(20,24,15,.24) 26%, rgba(20,24,15,.30) 58%, rgba(20,24,15,.70) 100%);
}
.hero__in {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: calc(var(--nav-h) + var(--sp-8)) var(--gutter) var(--sp-9);
  color: var(--cream);
  text-align: center;
}
.hero__oval { margin-bottom: var(--sp-5); opacity: .9; }
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--step-7);
  line-height: .98;
  letter-spacing: -.025em;
  text-wrap: balance;
  text-shadow: 0 1px 3px rgba(20,24,15,.22), 0 2px 48px rgba(20,24,15,.42);
}
.hero h1 .it { font-style: italic; }
.hero__sub {
  margin: var(--sp-5) auto 0;
  max-width: 46ch;
  font-family: var(--font-accent);
  font-weight: 300;
  font-size: var(--step-2);
  line-height: 1.45;
  color: rgba(244,239,228,.92);
  text-wrap: balance;
}
.hero__cta { margin-top: var(--sp-7); display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--sp-5); transform: translateX(-50%);
  color: rgba(244,239,228,.8);
  font-family: var(--font-accent);
  font-size: var(--step--2); letter-spacing: .3em; text-transform: uppercase;
  display: grid; justify-items: center; gap: .5em;
}
.hero__scroll span:last-child { animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%,100%{transform:translateY(0);opacity:.55} 50%{transform:translateY(5px);opacity:1} }

/* ---------- Trust strip ---------------------------------------------- */
.trust {
  background: var(--green);
  color: var(--cream);
  padding-block: var(--sp-5);
}
.trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  text-align: center;
}
.trust__item { display: grid; gap: .25em; justify-items: center; }
.trust__item strong {
  font-family: var(--font-accent);
  font-size: var(--step-0);
  font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
.trust__item span { font-size: var(--step--1); color: rgba(244,239,228,.72); }

/* ---------- Section headers ------------------------------------------ */
.sec-head { display: grid; gap: var(--sp-3); justify-items: center; text-align: center; margin-bottom: var(--sp-7); }
.sec-head h2 { font-family: var(--font-display); font-size: var(--step-5); }
.sec-head h2 .it { font-style: italic; }
.sec-head p { max-width: 52ch; }

/* ---------- Product card --------------------------------------------- */
.grid-p {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1.2rem, 2.4vw, 2.4rem) clamp(.9rem, 1.8vw, 1.8rem);
}
.card { position: relative; display: grid; gap: var(--sp-3); }
.card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--r-md);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1100ms var(--ease-soft), filter var(--dur) var(--ease);
}
.card:hover .card__media img { transform: scale(1.045); }

/* Seats a whole product on a cream field rather than cropping it to the
   tile. For photography whose native aspect isn't 4:5. */
.card__media--contain { background: var(--cream); }
.card__media--contain img { object-fit: contain; padding: 8%; }
.card:hover .card__media--contain img { transform: scale(1.02); }

.card__brand {
  font-family: var(--font-accent);
  font-size: var(--step--2);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .15em;
}

.badge {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  z-index: 2;
  background: var(--cream); color: var(--ink);
  padding: .4em .85em;
  border-radius: var(--r-pill);
  font-family: var(--font-accent);
  font-size: var(--step--2);
  letter-spacing: .16em; text-indent: .16em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.badge--urgent { background: var(--urgent); color: #fff; }
.badge--green  { background: var(--green); color: var(--cream); }

/* Quick add slides up on hover — removes a click from the path */
.card__quick {
  position: absolute; left: var(--sp-3); right: var(--sp-3); bottom: var(--sp-3);
  z-index: 2;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover .card__quick, .card:focus-within .card__quick { opacity: 1; transform: none; }
.card__quick .btn { width: 100%; background: rgba(250,247,240,.94); color: var(--ink); backdrop-filter: blur(8px); }
.card__quick .btn:hover { background: var(--green); color: var(--cream); }

.card__body { display: grid; gap: .3em; }
.card__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  line-height: 1.15;
}
.card__sub { font-size: var(--step--1); color: var(--text-muted); }
.card__row { display: flex; align-items: baseline; gap: .6em; margin-top: .2em; }
.price { font-size: var(--step-0); font-weight: 500; font-variant-numeric: tabular-nums; }
.price--was { color: var(--text-muted); text-decoration: line-through; font-weight: 400; font-size: var(--step--1); }
.price--save { color: var(--urgent); font-size: var(--step--1); font-weight: 500; }

.stars { display: inline-flex; align-items: center; gap: .35em; font-size: var(--step--1); color: var(--text-muted); }
.stars__glyphs { color: var(--brass); letter-spacing: .06em; }

.stock-line { font-size: var(--step--2); color: var(--urgent); letter-spacing: .04em; }

/* ---------- Editorial split ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
.split--flip .split__media { order: 2; }
/* Frame ratio is per-instance so a portrait source is never forced into a
   landscape box. Set --ar on .split__media to match the image you put in it. */
.split__media { position: relative; border-radius: var(--r-md); overflow: hidden; }
.split__media img { width: 100%; aspect-ratio: var(--ar, 3/2); object-fit: cover; }
.split__body { display: grid; gap: var(--sp-4); justify-items: start; }
.split__body h2 { font-family: var(--font-display); font-size: var(--step-4); }
.split__body h2 .it { font-style: italic; }

/* ---------- Bundle ---------------------------------------------------- */
.bundle {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}
/* Square tiles, centred in the column. Stretching three portrait shots to
   fill the body's height was cropping nearly half of each one away. */
.bundle__media { display: grid; grid-template-columns: repeat(3, 1fr); align-content: center; }
.bundle__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.bundle__body { padding: clamp(2rem, 4vw, 3.5rem); display: grid; gap: var(--sp-4); justify-items: start; }
.bundle__body h2 { font-family: var(--font-display); font-size: var(--step-4); }
.bundle__body h2 .it { font-style: italic; }
.bundle__list { display: grid; gap: .35em; font-size: var(--step--1); color: rgba(244,239,228,.78); }
.bundle__list li::before { content: '— '; }
.bundle__price { display: flex; align-items: baseline; gap: .7em; }
.bundle__price .now { font-family: var(--font-display); font-size: var(--step-3); }
.bundle__price .was { color: rgba(244,239,228,.6); text-decoration: line-through; }
.bundle__price .save {
  background: var(--brass); color: var(--ink);
  padding: .25em .7em; border-radius: var(--r-pill);
  font-size: var(--step--2); letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
}

/* ---------- Testimonials --------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 3rem); }
.quote { display: grid; gap: var(--sp-3); }
.quote blockquote {
  margin: 0;
  font-family: var(--font-accent);
  font-size: var(--step-2);
  font-weight: 300;
  line-height: 1.42;
  text-wrap: pretty;
}
.quote figcaption { font-size: var(--step--1); color: var(--text-muted); letter-spacing: .04em; }

/* ---------- Founder --------------------------------------------------- */
.founder { background: var(--cream); }
.founder__in { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.founder__media { border-radius: var(--r-md); overflow: hidden; }
.founder__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.founder__body { display: grid; gap: var(--sp-4); justify-items: start; }
.founder__body h2 { font-family: var(--font-display); font-size: var(--step-4); }
.founder__body h2 .it { font-style: italic; }
.sig {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--step-2);
}

/* ---------- Newsletter ------------------------------------------------ */
.news { background: var(--green-deep); color: var(--cream); }
.news__in { display: grid; gap: var(--sp-5); justify-items: center; text-align: center; }
.news h2 { font-family: var(--font-display); font-size: var(--step-4); }
.news h2 .it { font-style: italic; }
.news p { max-width: 46ch; color: rgba(244,239,228,.75); }
.news__form { display: flex; gap: var(--sp-2); width: min(520px, 100%); }
.news__form input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(244,239,228,.35);
  border-radius: var(--r-pill);
  padding: 1.05em 1.5em;
  color: var(--cream);
  font-size: var(--step--1);
}
.news__form input::placeholder { color: rgba(244,239,228,.5); }
.news__form input:focus { outline: none; border-color: var(--cream); }
.news__fine { font-size: var(--step--2); color: rgba(244,239,228,.5); }

/* ---------- Footer ---------------------------------------------------- */
.ftr { background: var(--green-deep); color: var(--cream); padding-block: var(--sp-8) var(--sp-6); }
.ftr__top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 4rem); }
.ftr__brand { display: grid; gap: var(--sp-4); justify-items: start; }
.ftr__logo { font-family: var(--font-display); font-variation-settings: 'opsz' 30, 'wght' 400; font-size: var(--step-3); }
.ftr__logo .it { font-style: italic; }
.ftr h4 {
  font-family: var(--font-accent);
  font-size: var(--step--1); letter-spacing: .22em; text-transform: uppercase;
  color: rgba(244,239,228,.6);
  margin-bottom: var(--sp-3);
}
.ftr li { margin-bottom: .55em; }
.ftr li a { font-size: var(--step--1); color: rgba(244,239,228,.85); }
.ftr li a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.ftr__bottom {
  margin-top: var(--sp-8); padding-top: var(--sp-5);
  border-top: 1px solid rgba(244,239,228,.15);
  display: flex; justify-content: space-between; gap: var(--sp-5); flex-wrap: wrap;
  font-size: var(--step--2); color: rgba(244,239,228,.55);
}
.pay { display: flex; gap: .5em; align-items: center; flex-wrap: wrap; }
.pay span {
  border: 1px solid rgba(244,239,228,.25);
  border-radius: var(--r-sm);
  padding: .3em .6em;
  font-size: .95em;
  letter-spacing: .06em;
}

/* ---------- Cart drawer ----------------------------------------------- */
.scrim {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(20,24,15,.42);
  backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}
.scrim.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 100;
  width: min(430px, 100%);
  background: var(--bone);
  display: grid; grid-template-rows: auto auto 1fr auto;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-soft);
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head {
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { font-family: var(--font-display); font-size: var(--step-2); }

/* Free-shipping progress — goal gradient */
.ship {
  padding: var(--sp-4) var(--sp-5);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  display: grid; gap: .6em;
}
.ship__msg { font-size: var(--step--1); }
.ship__msg b { font-weight: 600; }
.ship__bar { height: 4px; background: var(--sand); border-radius: var(--r-pill); overflow: hidden; }
.ship__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--green));
  border-radius: var(--r-pill);
  transition: width 700ms var(--ease-soft);
}
.ship.is-met .ship__fill { background: var(--success); }

.drawer__items { overflow-y: auto; padding: var(--sp-4) var(--sp-5); display: grid; gap: var(--sp-4); align-content: start; }
.citem { display: grid; grid-template-columns: 72px 1fr auto; gap: var(--sp-3); align-items: start; }
.citem img { width: 72px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-sm); }
.citem__name { font-family: var(--font-display); font-size: var(--step-0); line-height: 1.2; }
.citem__meta { font-size: var(--step--2); color: var(--text-muted); }
.citem__price { font-size: var(--step--1); font-variant-numeric: tabular-nums; }
.qty { display: inline-flex; align-items: center; gap: .5em; margin-top: .4em; border: 1px solid var(--line-strong); border-radius: var(--r-pill); padding: .1em .5em; }
.qty button { width: 1.4em; line-height: 1; font-size: var(--step-0); color: var(--text-muted); }
.qty button:hover { color: var(--ink); }
.qty span { font-size: var(--step--1); font-variant-numeric: tabular-nums; min-width: 1.2em; text-align: center; }

.drawer__foot { padding: var(--sp-5); border-top: 1px solid var(--line); display: grid; gap: var(--sp-3); background: var(--cream); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; }
.drawer__total span:first-child { font-family: var(--font-accent); letter-spacing: .18em; text-transform: uppercase; font-size: var(--step--1); }
.drawer__total b { font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.drawer__fine { font-size: var(--step--2); color: var(--text-muted); text-align: center; }
.empty { display: grid; gap: var(--sp-4); justify-items: center; text-align: center; padding: var(--sp-8) var(--sp-4); color: var(--text-muted); }

/* ---------- Waitlist panel -------------------------------------------- */
.wl { padding: var(--sp-5); overflow-y: auto; display: grid; gap: var(--sp-4); align-content: start; }
.wl__intro { font-size: var(--step-0); line-height: 1.6; color: var(--text-muted); }
.wl__intro b { color: var(--text); font-weight: 500; }

.wl__context {
  display: grid; grid-template-columns: 72px 1fr; gap: var(--sp-3);
  align-items: center;
  padding: var(--sp-3);
  background: var(--cream);
  border-radius: var(--r-md);
}
.wl__context img { width: 72px; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-sm); }

.wl__form { display: grid; gap: var(--sp-2); }
.wl__label {
  font-family: var(--font-accent);
  font-size: var(--step--1);
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--sp-2);
}
.wl__label span { text-transform: none; letter-spacing: .04em; opacity: .7; }
.wl__form input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  padding: .95em 1.1em;
  font-size: var(--step-0);
}
.wl__form input:focus { outline: none; border-color: var(--green); }
.wl__form .btn { margin-top: var(--sp-3); }
.wl__fine { font-size: var(--step--2); color: var(--text-muted); line-height: 1.5; }
.wl__fine a { text-decoration: underline; text-underline-offset: 2px; }

.wl__done { display: grid; gap: var(--sp-3); justify-items: start; padding-block: var(--sp-4); }

/* ---------- Film grain + Kodak warmth ---------------------------------
   The owner's reference is sun-drenched Kodak Gold. Photography gets a
   real grain layer and a warm grade so the whole site reads as one roll
   of film rather than clean digital renders. */
/* NB: .hero__media, .card__media and .split__media are already positioned —
   do not restate `position` here or it clobbers the hero's absolute fill. */
.hero__media, .card__media, .split__media, .founder__media, .bundle__media {
  isolation: isolate;
}
.founder__media, .bundle__media { position: relative; }
.hero__media::after, .card__media::after, .split__media::after,
.founder__media::after, .bundle__media::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .30;
}
/* Heavier on the hero, where the film character has to carry the page */
.hero__media::after { opacity: .40; }

/* Warm Kodak grade — lifts the golds, softens the blacks slightly */
.hero__media img, .split__media img, .founder__media img,
.card__media:not(.card__media--contain) img {
  filter: saturate(1.06) contrast(1.03) sepia(.06) brightness(1.01);
}
/* Product cut-outs on cream stay true — no grade, no grain */
.card__media--contain::after { display: none; }
.card__media--contain img { filter: none; }

@media (prefers-reduced-motion: reduce) {
  .hero__media::after, .card__media::after { opacity: .18; }
}

/* ---------- Toast ----------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: var(--sp-5); z-index: 110;
  transform: translate(-50%, 120%);
  background: var(--green-deep); color: var(--cream);
  padding: .9em 1.5em; border-radius: var(--r-pill);
  font-size: var(--step--1);
  box-shadow: var(--shadow-lg);
  transition: transform 520ms var(--ease-soft);
  white-space: nowrap;
}
.toast.is-on { transform: translate(-50%, 0); }

/* ---------- PDP ------------------------------------------------------- */
.pdp { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.pdp__media { display: grid; gap: var(--sp-3); position: sticky; top: calc(var(--nav-h) + var(--sp-4)); }
.pdp__media img { width: 100%; height: auto; border-radius: var(--r-md); }
.pdp__media--contain {
  background: var(--cream);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  aspect-ratio: 4/5;
}
.pdp__media--contain img { width: auto; max-width: 84%; max-height: 84%; }
.pdp__body { display: grid; gap: var(--sp-4); align-content: start; padding-top: var(--sp-4); }
.pdp__name { font-family: var(--font-display); font-size: var(--step-5); line-height: 1.02; }
.pdp__name .it { font-style: italic; }
.pdp__sub { font-family: var(--font-accent); font-size: var(--step-2); font-weight: 300; color: var(--text-muted); }
.pdp__price { display: flex; align-items: baseline; gap: .7em; }
.pdp__price .now { font-size: var(--step-3); font-family: var(--font-display); }
.pdp__details { display: grid; gap: .5em; border-top: 1px solid var(--line); padding-top: var(--sp-4); }
.pdp__details li { display: grid; grid-template-columns: auto 1fr; gap: .7em; font-size: var(--step--1); }
.pdp__details li::before { content: '—'; color: var(--tan); }
.swatches { display: flex; gap: .5em; flex-wrap: wrap; }
.swatch {
  border: 1px solid var(--line-strong); background: var(--surface);
  border-radius: var(--r-pill); padding: .5em 1.1em;
  font-size: var(--step--1);
  transition: all var(--dur) var(--ease);
}
.swatch[aria-pressed="true"] { background: var(--green); color: var(--cream); border-color: var(--green); }
.assure { display: grid; gap: .5em; font-size: var(--step--1); color: var(--text-muted); }
.assure li { display: flex; gap: .6em; align-items: baseline; }
.assure b { color: var(--text); font-weight: 500; }

/* Netlify honeypot — present for bots, never shown to people. */
.hp { display: none; }

/* ---------- PDP specifications ----------------------------------------
   Hairline grid drawn with a 1px gap over a line-coloured backing, so the
   rules stay perfect however the columns wrap. ------------------------- */
.specs { display: grid; gap: var(--sp-6); }
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.spec { background: var(--bg); padding: var(--sp-5); }
.spec__label {
  font-family: var(--font-accent);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .55em;
}
.spec__value {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 30, 'wght' 400;
  font-size: var(--step-2);
  line-height: 1.18;
  letter-spacing: -.015em;
}

.sizes { max-width: 46rem; }
.sizes__cap {
  font-family: var(--font-accent);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--line-strong);
}
.sizes__row {
  display: grid;
  grid-template-columns: 7rem 1fr auto;
  gap: var(--sp-4);
  align-items: baseline;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step--1);
}
.sizes__row b {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 30, 'wght' 400;
  font-size: var(--step-1);
  font-weight: 400;
}
.sizes__row span { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.sizes__row span:last-child { text-align: right; }

@media (max-width: 900px) { .specs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .specs__grid { grid-template-columns: 1fr; }
  .sizes__row { grid-template-columns: 1fr auto; row-gap: .2em; }
  .sizes__row b { grid-column: 1 / -1; }
}

/* ---------- Shop filters ---------------------------------------------- */
.filters { display: flex; gap: .5em; flex-wrap: wrap; justify-content: center; margin-bottom: var(--sp-7); }
.filter {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: .6em 1.3em;
  font-size: var(--step--1);
  letter-spacing: .06em;
  transition: all var(--dur) var(--ease);
}
.filter:hover { border-color: var(--green); }
.filter[aria-pressed="true"] { background: var(--green); color: var(--cream); border-color: var(--green); }

/* ---------- Page head ------------------------------------------------- */
.phead { padding-top: calc(var(--sp-8)); text-align: center; display: grid; gap: var(--sp-3); justify-items: center; }
.phead h1 { font-family: var(--font-display); font-size: var(--step-6); }
.phead h1 .it { font-style: italic; }

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 1000px) {
  .split, .founder__in, .bundle, .pdp { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .pdp__media { position: static; }
  .quotes { grid-template-columns: 1fr; gap: var(--sp-6); }
  .ftr__top { grid-template-columns: 1fr 1fr; }
  .bundle__media img { min-height: 210px; }
}
@media (max-width: 760px) {
  .trust__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); text-align: left; }
  .trust__item { justify-items: start; }
  .nav, .hdr__right .icon-btn--acct { display: none; }
  .hdr__in { grid-template-columns: auto 1fr auto; }
  .nav-toggle { display: inline-flex; }
  .hdr__logo { text-align: left; }
  .grid-p { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) var(--sp-3); }
  .ftr__top { grid-template-columns: 1fr; }
  .news__form { flex-direction: column; }
  .news__form .btn { width: 100%; }
}
