/* ==========================================================================
   MYLADDER — main.css
   Dark walnut + brass. Fraunces display / Inter body, self-hosted.
   Breakpoints: sm 640 / md 768 / lg 1024 / xl 1280. Mobile = below md.
   ========================================================================== */

/* ---------- Fonts (self-hosted woff2, ../fonts relative to this file) ----- */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens -------------------------------------------------------- */
:root {
  --color-bg: #1C1410;
  --color-text: #F5EFE6;
  --color-text-muted: #C9BBAE; /* clears WCAG AA 4.5:1 on #1C1410 */
  --color-text-faint: #9A8B7C; /* large/decorative text only */
  --color-brass: #C9A227;
  --color-brass-bright: #E0C158;
  --color-walnut: #3E2723;
  --color-error: #E0575B;   /* 4.91:1 on --color-bg as text; on raised inputs it is border-only (3:1 rule) */
  --color-success: #6FA97B; /* 6.60:1 on --color-bg */
  --color-surface: #251B13;
  --color-raised: #2F2318;
  --color-line: rgba(201, 162, 39, 0.16);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 72rem;
  --radius: 14px;
  --radius-lg: 20px;
  --header-h: 4.5rem;
}

/* ---------- Reset / base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul[class], ol[class] { padding: 0; list-style: none; }
::selection { background: var(--color-brass); color: var(--color-bg); }

/* Never remove an outline without replacing it. */
:focus-visible {
  outline: 2px solid var(--color-brass-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
/* #main only receives focus programmatically (skip link); it's a whole-page
   region, so a ring around it would be noise. The skip action is the cue. */
#main:focus { outline: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--color-brass); color: var(--color-bg);
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0; font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout utilities --------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }

.section { padding-block: 4rem; }
.section--alt { background: var(--color-surface); border-block: 1px solid var(--color-line); }
@media (min-width: 768px) { .section { padding-block: 6rem; } }

.kicker {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--color-brass);
}
.kicker--bright { color: var(--color-brass-bright); }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
.page-head { max-width: 42rem; padding-top: calc(var(--header-h) + 3rem); }
.page-head h1 { margin-top: 0.75rem; font-size: clamp(2.25rem, 5vw, 3.25rem); }
.page-head .lead { margin-top: 1rem; color: var(--color-text-muted); }
.section-head h2 { margin-top: 0.75rem; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 36rem; }
.section-head p { margin-top: 1rem; color: var(--color-text-muted); max-width: 36rem; }

/* ---------- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.9rem 2rem;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  min-height: 44px; /* touch target */
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
  cursor: pointer;
}
.btn--sm { padding: 0.55rem 1.15rem; font-size: 0.9rem; }
.btn--brass { background: var(--color-brass); color: var(--color-bg); }
.btn--brass:hover { background: var(--color-brass-bright); }
.btn--ghost { border: 1px solid var(--color-line); color: var(--color-text); background: transparent; }
.btn--ghost:hover { border-color: var(--color-brass); color: var(--color-brass-bright); }

/* WhatsApp glyph, inline SVG mask so it inherits currentColor. */
.wa-icon {
  width: 1.15em; height: 1.15em; flex: none; background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 0-8.6 15.1L2 22l5-1.3A10 10 0 1 0 12 2Zm0 1.8a8.2 8.2 0 1 1-4.2 15.3l-.3-.2-3 .8.8-2.9-.2-.3A8.2 8.2 0 0 1 12 3.8Zm-3.1 4c-.2 0-.5 0-.7.3-.2.3-.9.9-.9 2.1 0 1.2.9 2.4 1 2.6.1.2 1.8 2.9 4.5 4 2.2.9 2.7.7 3.2.7.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3l-2-.9c-.3-.1-.5-.2-.7.1l-1 1.2c-.2.2-.3.2-.6.1a6.7 6.7 0 0 1-3.3-2.9c-.2-.4 0-.5.2-.7l.5-.7c.1-.2.2-.3.3-.5v-.5L9.7 8.2c-.2-.4-.4-.4-.8-.4Z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2a10 10 0 0 0-8.6 15.1L2 22l5-1.3A10 10 0 1 0 12 2Zm0 1.8a8.2 8.2 0 1 1-4.2 15.3l-.3-.2-3 .8.8-2.9-.2-.3A8.2 8.2 0 0 1 12 3.8Zm-3.1 4c-.2 0-.5 0-.7.3-.2.3-.9.9-.9 2.1 0 1.2.9 2.4 1 2.6.1.2 1.8 2.9 4.5 4 2.2.9 2.7.7 3.2.7.5-.1 1.6-.7 1.8-1.3.2-.6.2-1.2.2-1.3-.1-.1-.3-.2-.6-.3l-2-.9c-.3-.1-.5-.2-.7.1l-1 1.2c-.2.2-.3.2-.6.1a6.7 6.7 0 0 1-3.3-2.9c-.2-.4 0-.5.2-.7l.5-.7c.1-.2.2-.3.3-.5v-.5L9.7 8.2c-.2-.4-.4-.4-.8-.4Z"/></svg>') center / contain no-repeat;
}

/* ---------- Aspect-ratio media frames (explicit before load — no CLS) ----- */
.ratio-4-3, .ratio-16-9, .ratio-3-2, .ratio-2-1, .ratio-16-7, .ratio-4-5, .ratio-1-1, .ratio-9-16 {
  position: relative; overflow: hidden; display: block;
  background: var(--color-raised);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}
.ratio-4-3  { aspect-ratio: 4 / 3; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-2  { aspect-ratio: 3 / 2; }
.ratio-2-1  { aspect-ratio: 2 / 1; }
.ratio-16-7 { aspect-ratio: 16 / 7; }
.ratio-4-5  { aspect-ratio: 4 / 5; }
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-9-16 { aspect-ratio: 9 / 16; }
.cover, .ratio-4-3 > img, .ratio-16-9 > img, .ratio-3-2 > img, .ratio-2-1 > img,
.ratio-16-7 > img, .ratio-4-5 > img, .ratio-1-1 > img, .ratio-9-16 > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}

/* ---------- Header -------------------------------------------------------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color 250ms ease, border-color 250ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(28, 20, 16, 0.88);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom-color: var(--color-line);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.25rem;
  height: var(--header-h);
}
.site-header__brand { flex: none; display: inline-flex; }
.site-header__logo { width: auto; height: 2.5rem; }
.site-header__nav { display: none; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }
.site-header__link {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  color: var(--color-text-muted); padding: 0.5rem 0.6rem;
  transition: color 200ms ease;
}
.site-header__link:hover { color: var(--color-brass-bright); }
.site-header__link[aria-current="page"] {
  color: var(--color-brass-bright);
  text-decoration: underline; text-decoration-color: var(--color-brass); text-underline-offset: 6px;
}
.site-header__wishlist {
  position: relative; display: inline-flex; padding: 0.6rem;
  color: var(--color-text-muted); transition: color 200ms ease;
}
.site-header__wishlist:hover { color: var(--color-brass-bright); }
.site-header__wishlist svg { width: 1.4rem; height: 1.4rem; }
.site-header__count {
  position: absolute; top: 0; right: 0;
  min-width: 1.1rem; height: 1.1rem; padding-inline: 0.25rem;
  border-radius: 999px; background: var(--color-brass); color: var(--color-bg);
  font-size: 0.7rem; font-weight: 700; line-height: 1.1rem; text-align: center;
}
.site-header__burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; align-items: center;
}
.site-header__burger span {
  display: block; width: 22px; height: 2px; background: var(--color-text);
  border-radius: 2px; transition: transform 200ms ease, opacity 200ms ease;
}
@media (min-width: 768px) {
  .site-header__nav { display: flex; gap: 0.25rem; margin-left: 0.5rem; }
  .site-header__burger { display: none; }
}
@media (max-width: 767.98px) {
  .site-header__cta { display: none; } /* WhatsApp lives at the top of the drawer */
}

/* ---------- Mobile drawer ------------------------------------------------- */
.mobile-nav { position: fixed; inset: 0; z-index: 150; }
.mobile-nav[hidden] { display: none; }
.mobile-nav__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55); }
.mobile-nav__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(20rem, 88vw);
  background: var(--color-surface); border-left: 1px solid var(--color-line);
  padding: 1.25rem 1.5rem 2rem;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 250ms ease;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.mobile-nav__cta { flex: 1; }
.mobile-nav__close {
  width: 44px; height: 44px; flex: none;
  font-size: 1.75rem; line-height: 1; color: var(--color-text-muted);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-nav__link {
  display: block; padding: 0.9rem 0.25rem;
  font-family: var(--font-display); font-size: 1.35rem; text-decoration: none;
  border-bottom: 1px solid var(--color-line);
  transition: color 200ms ease;
}
.mobile-nav__link:hover { color: var(--color-brass-bright); }
.mobile-nav__link[aria-current="page"] { color: var(--color-brass-bright); }
.mobile-nav__note { margin-top: auto; padding-top: 2rem; font-size: 0.8rem; color: var(--color-text-faint); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------------------------------------------------------- */
.hero { position: relative; min-height: 92svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__media { border: 0; border-radius: 0; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--color-bg) 0%, rgba(28, 20, 16, 0.42) 45%, rgba(28, 20, 16, 0.1) 100%);
}
.hero__content { position: relative; z-index: 1; width: 100%; padding-block: 4rem 4.5rem; }
.hero__title { margin-top: 1rem; font-size: clamp(2.75rem, 8vw, 4.75rem); line-height: 1.05; max-width: 42rem; }
.hero__sub { margin-top: 1.5rem; max-width: 34rem; font-size: 1.125rem; color: var(--color-text-muted); }
.hero__ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__ctas .btn--ghost { background: rgba(28, 20, 16, 0.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

/* ---------- Reel ---------------------------------------------------------- */
.reel__frame { border-radius: var(--radius-lg); }
/* Brand film: native-controls player, poster-only until tapped. */
.film__frame { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); }
/* founders-ad has a baked-in headline at the top of the creative; bias the
   banner crop downward so the crop never slices through those letters. */
.founders-banner .cover { object-position: 50% 78%; }
.film__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-story { margin: 1.5rem 0 0; }
.product-story__caption { margin-top: 0.75rem; font-size: 0.875rem; color: var(--color-text-muted); }
.shop-editorial { display: block; margin-top: 3rem; border-radius: var(--radius-lg); overflow: hidden; }
.shop-editorial:focus-visible { outline: 2px solid var(--color-brass-bright); outline-offset: 3px; }

/* ---------- Floating WhatsApp button (glowing) ----------------------------
   #16A34A instead of WhatsApp's #25D366: still unmistakably WhatsApp-green,
   but the white glyph passes the 3:1 non-text contrast check against it.
   The global prefers-reduced-motion block kills the glow animation. */
.wa-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 120; /* above header (100), below drawer (150) and toast (180) */
  width: 3.5rem; height: 3.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #16A34A;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: wa-glow 2.4s ease-out infinite;
  transition: transform 150ms ease, background-color 150ms ease;
}
.wa-fab .wa-icon { width: 2rem; height: 2rem; }
.wa-fab:hover { background: #15803D; transform: scale(1.07); }
.wa-fab:focus-visible { outline: 2px solid var(--color-brass-bright); outline-offset: 3px; transform: scale(1.07); }
@keyframes wa-glow {
  0%   { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70%  { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* reel-1.mp4 is a 9:16 vertical film — center it as a phone-shaped player so
   it shows in full instead of being cover-cropped to a horizontal sliver. */
.reel--portrait { max-width: 26rem; margin-inline: auto; }
.reel__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__play {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  background: rgba(28, 20, 16, 0.3);
  transition: background-color 200ms ease;
}
.reel__play:hover { background: rgba(28, 20, 16, 0.18); }
.reel__play span {
  display: flex; width: 5rem; height: 5rem; align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid rgba(245, 239, 230, 0.3);
  background: rgba(28, 20, 16, 0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.reel__play svg { width: 2rem; height: 2rem; margin-left: 4px; }
.reel__play[hidden] { display: none; }

/* ---------- Product grids & cards ----------------------------------------- */
.modules-grid, .shop-grid {
  margin-top: 2.5rem; display: grid; gap: 1.5rem;
}
@media (min-width: 640px)  { .modules-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .modules-grid { grid-template-columns: repeat(4, 1fr); } .shop-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex; flex-direction: column;
  background: var(--color-raised); border: 1px solid var(--color-line);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 200ms ease, transform 200ms ease;
}
.product-card:hover { border-color: rgba(201, 162, 39, 0.4); transform: translateY(-3px); }
.product-card__media { border: 0; border-radius: 0; }
.product-card__body { display: flex; flex-direction: column; flex: 1; padding: 1.25rem; }
.product-card__tagline { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-brass); font-weight: 600; }
.product-card__name { margin-top: 0.4rem; font-size: 1.4rem; }
.product-card__name a { text-decoration: none; }
.product-card__name a:hover { color: var(--color-brass-bright); }
.product-card__price { margin-top: 0.3rem; font-weight: 600; color: var(--color-text); }
.product-card__soon { color: var(--color-brass-bright); font-size: 0.85rem; font-weight: 500; }
.product-card__short { margin-top: 0.6rem; font-size: 0.9rem; color: var(--color-text-muted); flex: 1; }
.product-card__actions { margin-top: 1.1rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.wishlist-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  border: 1px solid var(--color-line); color: var(--color-text-muted);
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.wishlist-toggle:hover { color: var(--color-brass-bright); border-color: var(--color-brass); }
.wishlist-toggle svg { width: 1.25rem; height: 1.25rem; }
.wishlist-toggle.is-active { color: var(--color-bg); background: var(--color-brass); border-color: var(--color-brass); }
.wishlist-toggle.is-active svg { fill: currentColor; }

/* ---------- Coming Soon badge --------------------------------------------- */
.coming-soon {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  background:
    repeating-linear-gradient(-45deg, rgba(201, 162, 39, 0.05) 0 14px, transparent 14px 28px),
    rgba(28, 20, 16, 0.72);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.coming-soon__badge {
  border: 1px solid var(--color-brass); color: var(--color-brass-bright);
  border-radius: 999px; padding: 0.45rem 1.2rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
}
.coming-soon__label { font-size: 0.8rem; color: var(--color-text-muted); }

/* ---------- Craftsmanship / figure cards ----------------------------------- */
.craft-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .craft-grid { grid-template-columns: repeat(3, 1fr); } }
.figure-card { background: var(--color-raised); border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.figure-card > .ratio-4-3, .figure-card > .ratio-1-1 { border: 0; border-radius: 0; }
.figure-card figcaption, .figure-card__body { padding: 1.25rem; }
.figure-card h3 { font-size: 1.25rem; }
.figure-card p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--color-text-muted); }
.figure-card .caption { padding: 0.75rem 1.25rem; font-size: 0.78rem; color: var(--color-text-faint); }

/* ---------- Two-column teaser ---------------------------------------------- */
.teaser { padding-bottom: 4rem; }
.teaser__grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .teaser__grid { grid-template-columns: 1fr 1fr; } }
.teaser__copy h2 { margin-top: 0.75rem; font-size: clamp(1.9rem, 4vw, 3rem); }
.teaser__copy > p { margin-top: 1rem; color: var(--color-text-muted); max-width: 28rem; }
.teaser__copy .btn { margin-top: 2rem; }
.h2-display { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.section--tight { padding-block: 4rem; }

/* ---------- Lifestyle strip ------------------------------------------------ */
.lifestyle__strip {
  margin-top: 2rem; display: flex; gap: 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-inline: 1rem; padding-bottom: 0.5rem;
  scrollbar-width: thin; scrollbar-color: var(--color-brass) transparent;
}
@media (min-width: 640px) { .lifestyle__strip { padding-inline: 1.5rem; } }
.lifestyle__item { flex: none; width: 78vw; scroll-snap-align: center; }
@media (min-width: 640px)  { .lifestyle__item { width: 46vw; } }
@media (min-width: 1024px) { .lifestyle__item { width: 30vw; } }

/* ---------- Founders banner ------------------------------------------------ */
.founders-banner { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(201, 162, 39, 0.3); }
.founders-banner .ratio-3-2, .founders-banner .ratio-16-7 { border: 0; border-radius: 0; }
.founders-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(28, 20, 16, 0.95) 0%, rgba(28, 20, 16, 0.3) 55%, transparent 100%);
  padding: 1.5rem;
}
@media (min-width: 768px) { .founders-banner__overlay { padding: 2.5rem; } }
.founders-banner__overlay h2 { margin-top: 0.5rem; font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.founders-banner__ctas { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- Shop ----------------------------------------------------------- */
.shop-toolbar { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.shop-toolbar__label { font-size: 0.8rem; color: var(--color-text-faint); margin-right: 0.25rem; }
.pill {
  display: inline-flex; align-items: center; min-height: 44px;
  border: 1px solid var(--color-line); border-radius: 999px;
  padding: 0.4rem 1.1rem; font-size: 0.9rem; font-weight: 500;
  color: var(--color-text-muted); text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.pill:hover { color: var(--color-brass-bright); border-color: var(--color-brass); }
.pill[aria-current="true"] { background: var(--color-brass); border-color: var(--color-brass); color: var(--color-bg); font-weight: 600; }
.shop-empty {
  margin-top: 3rem; padding: 3rem 1.5rem; text-align: center;
  border: 1px dashed var(--color-line); border-radius: var(--radius);
  color: var(--color-text-muted);
}
.shop-empty a { color: var(--color-brass-bright); }

/* ---------- Single product ------------------------------------------------- */
.product-hero { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .product-hero { grid-template-columns: 7fr 5fr; align-items: start; } }
.product-hero__meaning { margin-top: 0.75rem; color: var(--color-text-faint); font-style: italic; }
.product-hero__price { margin-top: 1.25rem; font-size: 1.6rem; font-weight: 700; }
.product-hero__desc { margin-top: 1.25rem; color: var(--color-text-muted); }
.product-hero__ctas { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.feature-list { margin-top: 1.5rem; display: grid; gap: 0.6rem; }
.feature-list li { display: flex; gap: 0.6rem; color: var(--color-text-muted); font-size: 0.95rem; }
.feature-list li::before { content: ''; flex: none; width: 6px; height: 6px; margin-top: 0.55rem; border-radius: 999px; background: var(--color-brass); }
.product-dims { margin-top: 1.25rem; font-size: 0.85rem; color: var(--color-text-faint); letter-spacing: 0.04em; }
.addons { margin-top: 4rem; }
.addons__grid { margin-top: 1.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .addons__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .addons__grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Founders / perks ----------------------------------------------- */
.perks-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .perks-grid { grid-template-columns: repeat(2, 1fr); } }
.perk { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 1.25rem; }
.perk h2, .perk h3 { font-size: 1.15rem; }
.perk p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--color-text-muted); }
.fineprint { margin-top: 0.9rem; font-size: 0.78rem; color: var(--color-text-faint); }

/* ---------- FAQ ------------------------------------------------------------ */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--color-line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.25rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex: none;
  display: flex; width: 2rem; height: 2rem; align-items: center; justify-content: center;
  border: 1px solid var(--color-line); border-radius: 999px; color: var(--color-brass);
  transition: transform 200ms ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body { padding: 0 2.5rem 1.5rem 0; color: var(--color-text-muted); font-size: 0.95rem; }

/* ---------- About ---------------------------------------------------------- */
.about-grid { margin-top: 3rem; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.prose > p + p { margin-top: 1.25rem; }
.prose { color: var(--color-text-muted); }
.about-figures { display: grid; gap: 1.5rem; }
.about-figures__pair { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .about-figures__pair { grid-template-columns: 1fr 1fr; } }
.principles { margin-top: 5rem; display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Contact form --------------------------------------------------- */
.contact-grid { margin-top: 3rem; display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.contact-aside { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.contact-aside p { color: var(--color-text-muted); }
.field { display: block; margin-bottom: 1.4rem; }
.field span { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.45rem; }
.field input, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--color-raised); color: var(--color-text);
  border: 1px solid var(--color-line); border-radius: 10px;
  font: inherit;
  transition: border-color 200ms ease;
}
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--color-brass-bright); outline-offset: 1px; border-color: var(--color-brass); }
.field.has-error input, .field.has-error textarea { border-color: var(--color-error); }
.field__error { display: none; margin-top: 0.4rem; font-size: 0.85rem; color: var(--color-error); }
.field.has-error .field__error { display: block; }
.form-note { font-size: 0.8rem; color: var(--color-text-faint); margin-top: 0.75rem; }

/* ---------- Wishlist ------------------------------------------------------- */
.wishlist-grid { margin-top: 2.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .wishlist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wishlist-grid { grid-template-columns: repeat(3, 1fr); } }
.wishlist-empty {
  margin-top: 3rem; padding: 3.5rem 1.5rem; text-align: center;
  border: 1px dashed var(--color-line); border-radius: var(--radius);
}
.wishlist-empty p { color: var(--color-text-muted); }
.wishlist-empty .btn { margin-top: 1.5rem; }
.wishlist-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.wishlist-item__remove { margin-left: auto; }

/* ---------- Not found ------------------------------------------------------ */
.not-found {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding-block: calc(var(--header-h) + 3rem) 4rem;
}
.not-found__art { width: 10rem; height: auto; }
.not-found__title { font-size: clamp(2rem, 5vw, 3rem); }
.not-found__body { margin-top: 1rem; max-width: 26rem; color: var(--color-text-muted); }
.not-found__actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Footer --------------------------------------------------------- */
.site-footer { margin-top: 4rem; border-top: 1px solid var(--color-line); background: var(--color-surface); }
.site-footer__inner { display: grid; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer__logo { height: 2.25rem; width: auto; margin-bottom: 1rem; }
.site-footer__brand p { color: var(--color-text-muted); font-size: 0.95rem; max-width: 26rem; margin-bottom: 1.25rem; }
.site-footer__col h2 { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-brass); font-family: var(--font-body); font-weight: 600; margin-bottom: 1rem; }
.site-footer__col a { display: block; padding-block: 0.4rem; color: var(--color-text-muted); text-decoration: none; transition: color 200ms ease; }
.site-footer__col a:hover { color: var(--color-brass-bright); }
.site-footer__col a[aria-current="page"] { color: var(--color-brass-bright); }
.site-footer__legal { border-top: 1px solid var(--color-line); padding-block: 1.5rem; font-size: 0.8rem; color: var(--color-text-faint); display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; }

/* ---------- Toast ---------------------------------------------------------- */
.ml-toast {
  position: fixed; left: 50%; bottom: 1.5rem; z-index: 180;
  transform: translate(-50%, 1rem);
  background: var(--color-raised); color: var(--color-text);
  border: 1px solid var(--color-brass); border-radius: 999px;
  padding: 0.7rem 1.5rem; font-size: 0.9rem; font-weight: 500;
  opacity: 0; pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  max-width: calc(100vw - 2rem); text-align: center;
}
.ml-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.ml-toast.is-success { border-color: var(--color-success); }

/* ---------- Scroll reveal --------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(18px); }
.js-reveal-ready [data-reveal] { transition: opacity 600ms ease, transform 600ms ease; }
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- Page offset for fixed header on non-hero pages ------------------ */
.page-main { padding-bottom: 4rem; }

/* ---------- Reduced motion: kill all animation site-wide -------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
