@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   style.css — GRAINOR · Analog & Film Photography
   Prefix: rst-  |  DA: DARK CINEMATIC DARKROOM
   Near-black charcoal + amber safelight + film cyan,
   contact-sheet frames, film-grain + sprocket motifs, glow & depth.
   Fonts: Anton (display) · DM Sans (body) · Space Mono (technical)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Space+Mono:wght@400;700&display=swap');

/* ── Custom Properties ────────────────────────────── */
:root {
  /* Dark backgrounds — names kept (kraft/paper) but remapped to dark values
     so every existing reference recolours to the cinematic darkroom. */
  --kraft:     #0f0e0d;   /* near-black charcoal — primary surface */
  --kraft-2:   #1a1816;   /* panel */
  --kraft-3:   rgba(239,231,214,.12); /* hairline / border */
  --paper:     #221f1b;   /* lifted panel (cards) */
  --ink:       #0a0908;   /* deepest black — frames, deep wells */
  --ink-2:     #050504;   /* near-pure black for shadow plates */

  /* Amber safelight — primary accent (CTAs, links, glows, highlights) */
  --safelight:  #f0a23c;
  --safelight-d:#d4842a;  /* hover / darker */
  /* Film cyan — secondary accent (sparingly: chips, small marks) */
  --cyan:       #5fc7c2;
  --cyan-d:     #46a8a3;

  --sepia:     #b8ad97;   /* muted warm grey */
  --silver:    #5fc7c2;   /* developer-tray steel → cyan tint */

  /* Text on the dark theme */
  --text:      #efe7d6;   /* warm off-white */
  --text-muted:#b8ad97;   /* dim */
  --text-faint: rgba(239,231,214,.55); /* faint */
  --on-ink:    #efe7d6;   /* text on deep black */
  --on-ink-dim: rgba(239,231,214,.55);

  --line:      rgba(239,231,214,.12); /* hairline alias */
  --line-2:    rgba(239,231,214,.2);  /* slightly stronger hairline */

  --ff-head:  'Anton', 'Arial Narrow', system-ui, sans-serif;
  --ff-body:  'DM Sans', system-ui, -apple-system, sans-serif;
  --ff-mono:  'Space Mono', 'Courier New', monospace;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  /* Layered shadows + amber glow for depth */
  --shadow-card: 0 1px 0 rgba(0,0,0,.5), 0 10px 30px rgba(0,0,0,.45);
  --shadow-lift: 0 2px 0 rgba(0,0,0,.6), 0 22px 50px rgba(0,0,0,.6);
  --glow-amber: 0 0 0 1px rgba(240,162,60,.35), 0 8px 30px rgba(240,162,60,.22);

  --max-w: 1320px;
  --gutter: clamp(1rem, 4vw, 2.75rem);
  --anim: 0.2s ease;

  /* film-grain texture as a tiny tiled SVG noise (kept, tuned for dark) */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  /* amber radial safelight glow for hero / dark panels */
  --safelight-glow: radial-gradient(60% 65% at 70% 30%, rgba(240,162,60,.22) 0%, rgba(240,162,60,.07) 38%, transparent 70%);
}

/* ── Reset ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: clamp(0.9375rem, 0.6vw + 0.78rem, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(240,162,60,.06) 0%, transparent 55%),
    var(--kraft);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
/* global film-grain overlay (screen-blend so grain reads as light specks on dark) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.07;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; }
::selection { background: var(--safelight); color: #0f0e0d; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ── Utility ──────────────────────────────────────── */
.rst-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.rst-container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rst-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.rst-reveal.is-visible { opacity: 1; transform: none; }

/* Section eyebrow + title (cinematic) */
.rst-section-label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--safelight);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.rst-section-label::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--safelight);
  box-shadow: 0 0 6px rgba(240,162,60,.6);
}
.rst-section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 400;            /* Anton ships single-weight */
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

/* ── SPROCKET STRIP (35mm film edge — refined) ── */
.rst-sprockets {
  height: 26px;
  background: #050504;            /* film base — deep black */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
/* two rows of crisp perforations punched in charcoal, faint amber inner glow */
.rst-sprockets::before,
.rst-sprockets::after {
  content: '';
  position: absolute; left: 0; right: 0; height: 7px;
  background-image: radial-gradient(circle, var(--kraft) 0 2.4px, transparent 2.9px);
  background-size: 22px 7px;
  background-position: 11px center;
}
.rst-sprockets::before { top: 4px; }
.rst-sprockets::after { bottom: 4px; }

/* ── TICKER BAR ───────────────────────────────────── */
.rst-ticker {
  background: #050504;
  color: var(--text-muted);
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  overflow: hidden;
  height: 32px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}
.rst-ticker-track { display: flex; animation: rst-ticker-scroll 30s linear infinite; }
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.5rem; text-transform: uppercase; }
.rst-ticker-item::before { content: '●'; margin-right: 2.5rem; color: var(--safelight); font-size: 0.7em; }
@keyframes rst-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER ───────────────────────────────────────── */
.rst-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,14,13,.82);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--anim), background var(--anim);
}
.rst-head--stuck { box-shadow: 0 10px 30px rgba(0,0,0,.5); background: rgba(12,11,10,.92); }
.rst-head-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
  padding: 0 var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.rst-head--stuck .rst-head-inner { height: 56px; }

/* Brand slot — wordmark with amber aperture dot */
.rst-brandslot {
  font-family: var(--ff-head);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: color var(--anim);
}
.rst-brandslot::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--safelight);
  box-shadow:
    inset 0 0 0 3px var(--kraft),
    inset 0 0 0 4.5px var(--safelight),
    0 0 10px rgba(240,162,60,.7);
}
.rst-brandslot:hover { color: var(--safelight); }

/* Nav */
.rst-nav { display: flex; align-items: center; gap: 0.1rem; flex: 1; justify-content: center; }
.rst-nav-link {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim);
  white-space: nowrap;
}
.rst-nav-link:hover { color: var(--text); background: rgba(239,231,214,.06); }
.rst-nav-link.is-active { color: var(--safelight); }

/* Head actions */
.rst-head-actions { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.rst-head-btn {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim);
  position: relative;
}
.rst-head-btn:hover { color: var(--safelight); background: rgba(239,231,214,.06); }
.rst-head-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  background: var(--safelight); color: #0f0e0d;
  font-family: var(--ff-mono);
  font-size: 0.62rem; font-weight: 700;
  min-width: 17px; height: 17px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px; position: absolute; top: -3px; right: -5px;
  box-shadow: 0 0 8px rgba(240,162,60,.6);
}

/* Hamburger */
.rst-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.rst-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); transition: transform var(--anim), opacity var(--anim); }
.rst-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rst-hamburger.is-open span:nth-child(2) { opacity: 0; }
.rst-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.rst-mobile-nav {
  display: none; position: fixed; inset: 0;
  background:
    var(--safelight-glow),
    rgba(12,11,10,.98);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; opacity: 0; transition: opacity 0.25s ease;
}
.rst-mobile-nav.is-open { opacity: 1; }
.rst-mobile-nav-link {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  font-weight: 400; letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text); transition: color var(--anim);
}
.rst-mobile-nav-link:hover { color: var(--safelight); }

/* ── HERO (dark cinematic / contact-sheet) ────────── */
.rst-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(560px, 78vh, 840px);
  position: relative;
  background:
    var(--safelight-glow),
    radial-gradient(120% 120% at 0% 100%, #161412 0%, #0c0b0a 60%),
    var(--kraft);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.rst-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 4.5rem);
  position: relative;
  z-index: 2;
}
.rst-hero-left::after {
  /* vertical sprocket gutter between halves — film edge */
  content: '';
  position: absolute; top: 0; bottom: 0; right: 0; width: 16px;
  background-image: radial-gradient(circle, var(--kraft) 0 2.4px, transparent 3px);
  background-size: 16px 26px; background-position: center 14px;
  border-left: 1px solid var(--line); border-right: 1px solid var(--line);
  background-color: #050504;
}
.rst-hero-badge {
  font-family: var(--ff-mono);
  font-size: 0.68rem; letter-spacing: 0.24em;
  color: var(--safelight);
  background: rgba(240,162,60,.08);
  border: 1px solid rgba(240,162,60,.4);
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.7rem; width: fit-content;
  text-transform: uppercase;
}
.rst-hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--safelight); box-shadow: 0 0 8px rgba(240,162,60,.9);
}
.rst-hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 6.4vw, 5.5rem);
  font-weight: 400; line-height: 0.94; letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--text); margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}
.rst-hero-headline em { color: var(--safelight); font-style: normal; }
.rst-hero-lede {
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  color: var(--text-muted); max-width: 44ch; margin-bottom: 2.3rem; line-height: 1.7;
}
.rst-hero-ctas { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.rst-hero-right { position: relative; overflow: hidden; background: #050504; }
.rst-hero-right img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.12) saturate(0.9) brightness(0.9); }
/* cinematic vignette + amber wash over the image */
.rst-hero-right::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 80% at 80% 20%, rgba(240,162,60,.18) 0%, transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(5,5,4,.65) 100%),
    radial-gradient(120% 120% at 50% 50%, transparent 55%, rgba(0,0,0,.55) 100%);
}
/* frame-number strip down the image edge */
.rst-hero-right::before {
  content: '24 ▸ 24A ▸ 25 ▸ 25A ▸ 26';
  position: absolute; top: 0; bottom: 0; left: 0; width: 28px;
  background: #050504; color: var(--safelight);
  font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  writing-mode: vertical-rl; display: flex; align-items: center; justify-content: center;
  z-index: 2; border-right: 1px solid var(--line);
}
.rst-hero-caption {
  position: absolute; bottom: 1.2rem; left: 1.5rem;
  background: rgba(12,11,10,.85); color: var(--text);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem; border-radius: var(--radius-sm); z-index: 3;
  border-left: 2px solid var(--safelight);
}

/* ── BRAND SEAL — aperture-blade ring (visual hook) ── */
.rst-aperture-seal {
  position: absolute; z-index: 4;
  top: 1.3rem; right: 1.3rem;
  width: clamp(74px, 9vw, 108px); height: clamp(74px, 9vw, 108px);
  color: var(--safelight);
  filter: drop-shadow(0 0 14px rgba(240,162,60,.55));
  animation: rst-seal-spin 44s linear infinite;
}
.rst-aperture-seal .rst-seal-text { fill: var(--safelight); }
.rst-aperture-seal .rst-seal-blades { stroke: var(--safelight); }
.rst-aperture-seal .rst-seal-ring { stroke: var(--safelight); }
.rst-aperture-seal .rst-seal-core { fill: #0a0908; }
@keyframes rst-seal-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .rst-aperture-seal { animation: none; } }

/* ── BUTTONS ──────────────────────────────────────── */
.rst-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.72rem 1.4rem; border-radius: var(--radius-md);
  font-family: var(--ff-mono);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--anim), color var(--anim), box-shadow var(--anim), transform var(--anim);
  cursor: pointer;
}
.rst-btn:focus-visible { outline: 2.5px solid var(--safelight); outline-offset: 3px; }
/* solid amber primary with safelight glow */
.rst-btn-primary { background: var(--safelight); color: #0f0e0d; box-shadow: 0 6px 22px rgba(240,162,60,.28); }
.rst-btn-primary:hover { background: var(--safelight-d); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,162,60,.4); }
/* ghost / outline secondary */
.rst-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line-2); }
.rst-btn-ghost:hover { border-color: var(--safelight); color: var(--safelight); background: rgba(240,162,60,.06); }
/* accent = same amber family (used on cards) */
.rst-btn-accent { background: var(--safelight); color: #0f0e0d; box-shadow: 0 4px 16px rgba(240,162,60,.25); }
.rst-btn-accent:hover { background: var(--safelight-d); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(240,162,60,.38); }
/* white → used on amber bands; render as dark-on-light contrast pill */
.rst-btn-white { background: var(--text); color: #0f0e0d; box-shadow: 0 6px 20px rgba(0,0,0,.35); }
.rst-btn-white:hover { background: #fff; transform: translateY(-2px); }
.rst-btn-sm { padding: 0.46rem 0.85rem; font-size: 0.7rem; }

/* ── "LOAD UP" / NEW ON THE SHELF STRIP ───────────── */
.rst-thisweek {
  background: var(--kraft-2);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 3.2rem) var(--gutter);
}
.rst-thisweek-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.75rem; flex-wrap: wrap; }
.rst-thisweek-header > div { display: flex; flex-direction: column; gap: 0.5rem; }
.rst-thisweek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: rst-frame; }

/* ── SPEC METER (replaces roast meter) ────────────── */
.rst-roast-meter { display: flex; align-items: center; gap: 0.5rem; margin: 0.35rem 0 0.1rem; }
.rst-roast-label { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: var(--text-muted); text-transform: uppercase; white-space: nowrap; }
.rst-roast-track { flex: 1; height: 4px; background: rgba(239,231,214,.1); border-radius: 2px; overflow: hidden; }
.rst-roast-fill { height: 100%; background: var(--safelight); box-shadow: 0 0 8px rgba(240,162,60,.6); }
.rst-roast-fill[data-level="1"] { width: 30%; }
.rst-roast-fill[data-level="2"] { width: 60%; }
.rst-roast-fill[data-level="3"] { width: 90%; }

/* ── PRODUCT CARD (35mm contact-sheet frame) ──────── */
.rst-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
  counter-increment: rst-frame;
  box-shadow: var(--shadow-card);
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(240,162,60,.35); }
.rst-card-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: #050504;
  /* film base: black bars top & bottom with sprocket perforations */
  border-top: 12px solid #050504;
  border-bottom: 12px solid #050504;
}
.rst-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.92) brightness(0.96); transition: transform 0.45s ease, filter var(--anim); }
.rst-card:hover .rst-card-img-wrap img { transform: scale(1.06); filter: contrast(1.08) saturate(1) brightness(1.04); }
/* sprocket perforations along top edge of the frame */
.rst-card-img-wrap::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 8px; z-index: 2;
  background-image: radial-gradient(circle, var(--kraft) 0 1.8px, transparent 2.3px);
  background-size: 15px 8px; background-position: 8px center;
}
/* frame number badge (Space Mono) in the corner — the contact-sheet signature */
.rst-card-img-wrap::after {
  content: '№ ' counter(rst-frame, decimal-leading-zero);
  position: absolute; bottom: -11px; right: 8px; z-index: 2;
  font-family: var(--ff-mono); font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.08em; color: var(--safelight);
}
.rst-card-body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; gap: 0.45rem; }
.rst-card-cat { font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.14em; color: var(--safelight); text-transform: uppercase; }
.rst-card-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 400; color: var(--text); line-height: 1.08; letter-spacing: 0.01em; text-transform: uppercase; }
.rst-card-name a { transition: color var(--anim); }
.rst-card-name a:hover { color: var(--safelight); }
.rst-card-short { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.rst-card-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.2rem 0; }
.rst-chip {
  font-family: var(--ff-mono); font-size: 0.6rem;
  background: rgba(239,231,214,.05); color: var(--text-muted);
  padding: 0.22rem 0.5rem; border-radius: 2px; letter-spacing: 0.03em;
  border: 1px solid var(--line);
}
.rst-chip-accent { background: rgba(95,199,194,.1); color: var(--cyan); border-color: rgba(95,199,194,.3); }
.rst-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.55rem; padding-top: 0.7rem; border-top: 1px dashed var(--line-2); }
.rst-price { font-family: var(--ff-mono); font-size: 1.15rem; font-weight: 700; color: var(--text); }
.rst-price-sub { font-family: var(--ff-mono); font-size: 0.66rem; color: var(--text-faint); display: block; }

/* ── KIT CATEGORIES ROW (replaces origins) ────────── */
.rst-origins { padding: clamp(3rem, 6vw, 5rem) var(--gutter); }
.rst-origins-head { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.5rem; }
.rst-origins-lede { font-size: 0.95rem; color: var(--text-muted); max-width: 50ch; margin: 0.5rem 0 1.75rem; }
.rst-origins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.rst-origin-card {
  border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; background: var(--paper);
  box-shadow: var(--shadow-card);
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-origin-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(240,162,60,.35); }
.rst-origin-img { aspect-ratio: 5/4; overflow: hidden; background: #050504; border-bottom: 1px solid var(--line); position: relative; }
.rst-origin-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,5,4,.55) 100%); }
.rst-origin-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.9) brightness(0.92); transition: transform 0.45s ease; }
.rst-origin-card:hover .rst-origin-img img { transform: scale(1.07); }
.rst-origin-body { padding: 1rem 1.1rem 1.2rem; }
.rst-origin-country { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 400; color: var(--text); margin-bottom: 0.4rem; display: flex; align-items: center; justify-content: space-between; text-transform: uppercase; letter-spacing: 0.01em; }
.rst-origin-country span.num { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--safelight); font-weight: 700; }
.rst-origin-meta { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }
.rst-origin-link { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--safelight); margin-top: 0.8rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.rst-origin-link::after { content: '→'; transition: transform var(--anim); }
.rst-origin-card:hover .rst-origin-link::after { transform: translateX(4px); }

/* ── ANALOG LOOP (process tabs) — deep dark panel ─── */
.rst-brew {
  background:
    var(--safelight-glow),
    #0a0908;
  color: var(--text); padding: clamp(3rem, 6vw, 5rem) var(--gutter); position: relative;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.rst-brew::before, .rst-brew::after {
  content: ''; position: absolute; left: 0; right: 0; height: 8px;
  background-image: radial-gradient(circle, var(--kraft) 0 2px, transparent 2.6px);
  background-size: 22px 8px; background-position: 11px center; opacity: .6;
}
.rst-brew::before { top: 5px; }
.rst-brew::after { bottom: 5px; }
.rst-brew .rst-section-title { color: var(--text); }
.rst-brew .rst-section-label { color: var(--safelight); }
.rst-brew-tabs { display: flex; gap: 0.5rem; margin-top: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.rst-brew-tab {
  font-family: var(--ff-mono); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 100px;
  color: var(--text-muted); border: 1px solid var(--line-2);
  transition: background var(--anim), border-color var(--anim), color var(--anim);
}
.rst-brew-tab:hover { background: rgba(239,231,214,0.06); border-color: var(--text-muted); color: var(--text); }
.rst-brew-tab.is-active { background: var(--safelight); border-color: var(--safelight); color: #0f0e0d; box-shadow: 0 4px 16px rgba(240,162,60,.3); }
.rst-brew-panel { display: none; }
.rst-brew-panel.is-active { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2.5rem; align-items: center; }
.rst-brew-desc { font-family: var(--ff-body); font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 500; color: var(--text); line-height: 1.5; }
.rst-brew-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.rst-brew-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.1rem; transition: background var(--anim), border-color var(--anim), transform var(--anim); }
.rst-brew-card:hover { background: #2a2622; border-color: rgba(240,162,60,.3); transform: translateY(-2px); }
.rst-brew-card-name { font-family: var(--ff-head); font-size: 1.05rem; font-weight: 400; color: var(--text); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.01em; }
.rst-brew-card-origin { font-family: var(--ff-mono); font-size: 0.64rem; color: var(--safelight); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── FILM CLUB BAND — dark with amber safelight wash ─ */
.rst-sub-band {
  background:
    radial-gradient(80% 120% at 15% 50%, rgba(240,162,60,.28) 0%, rgba(240,162,60,.05) 45%, transparent 70%),
    #0a0908;
  color: var(--text); padding: clamp(3rem, 6vw, 4.5rem) var(--gutter); position: relative; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.rst-sub-band::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(240,162,60,0.1) 0 2.5px, transparent 3px);
  background-size: 34px 34px; pointer-events: none;
}
.rst-sub-inner { max-width: 900px; margin: 0 auto; position: relative; }
.rst-sub-headline { font-family: var(--ff-head); font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 400; letter-spacing: 0.01em; line-height: 1; margin-bottom: 1rem; text-transform: uppercase; color: var(--text); }
.rst-sub-lede { font-size: 1rem; color: var(--text-muted); max-width: 52ch; margin-bottom: 1.75rem; line-height: 1.65; }
.rst-sub-details { display: flex; gap: 1.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.rst-sub-detail { font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--text); text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.45rem; }
.rst-sub-detail::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--safelight); box-shadow: 0 0 6px rgba(240,162,60,.8); }

/* ── FEATURED / CONTACT SHEET GRID ────────────────── */
.rst-featured { padding: clamp(3rem, 6vw, 5rem) var(--gutter); }
.rst-featured-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.rst-featured-header > div { display: flex; flex-direction: column; gap: 0.5rem; }
.rst-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; counter-reset: rst-frame; }
.rst-featured-grid .rst-card:nth-child(1) { grid-column: span 2; }
.rst-featured-grid .rst-card:nth-child(1) .rst-card-img-wrap { aspect-ratio: 16/7; }

/* ── JOURNAL ──────────────────────────────────────── */
.rst-journal { background: var(--kraft-2); padding: clamp(3rem, 6vw, 5rem) var(--gutter); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rst-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
.rst-article-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim); }
.rst-article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: rgba(240,162,60,.35); }
.rst-article-img { aspect-ratio: 16/9; overflow: hidden; background: #050504; border-bottom: 1px solid var(--line); }
.rst-article-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.9) brightness(0.92); transition: transform 0.4s ease; }
.rst-article-card:hover .rst-article-img img { transform: scale(1.05); }
.rst-article-body { padding: 1.2rem; }
.rst-article-tag { font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.1em; color: var(--safelight); text-transform: uppercase; margin-bottom: 0.45rem; }
.rst-article-title { font-family: var(--ff-head); font-size: 1.25rem; font-weight: 400; color: var(--text); line-height: 1.1; margin-bottom: 0.55rem; text-transform: uppercase; letter-spacing: 0.01em; }
.rst-article-excerpt { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 0.85rem; }
.rst-article-link { font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--safelight); border-bottom: 1px solid rgba(240,162,60,.4); padding-bottom: 2px; transition: border-color var(--anim); }
.rst-article-link:hover { border-color: var(--safelight); }

/* ── NEWSLETTER ───────────────────────────────────── */
.rst-newsletter { padding: clamp(3rem, 7vw, 6rem) var(--gutter); text-align: center; }
.rst-newsletter-inner { max-width: 580px; margin: 0 auto; }
.rst-newsletter-title { font-family: var(--ff-head); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; letter-spacing: 0.01em; color: var(--text); margin-bottom: 0.75rem; text-transform: uppercase; }
.rst-newsletter-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.rst-newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.rst-newsletter-input { flex: 1 1 240px; padding: 0.72rem 1rem; border: 1px solid var(--line-2); border-radius: var(--radius-md); background: var(--paper); color: var(--text); transition: box-shadow var(--anim), border-color var(--anim); }
.rst-newsletter-input::placeholder { color: var(--text-faint); }
.rst-newsletter-input:focus { outline: none; border-color: var(--safelight); box-shadow: var(--glow-amber); }
.rst-newsletter-privacy { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--text-faint); margin-top: 0.75rem; }

/* ── FOOTER ───────────────────────────────────────── */
.rst-foot { background: #0a0908; color: var(--on-ink); padding-top: clamp(3rem, 6vw, 5rem); position: relative; border-top: 1px solid var(--line); }
.rst-foot::before {
  content: ''; position: absolute; top: 5px; left: 0; right: 0; height: 8px;
  background-image: radial-gradient(circle, var(--kraft) 0 2px, transparent 2.6px);
  background-size: 22px 8px; background-position: 11px center; opacity: .55;
}
.rst-foot-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr 1fr; gap: 2.5rem; padding: 0 var(--gutter) 2.5rem; max-width: var(--max-w); margin: 0 auto; }
.rst-foot-brand { font-family: var(--ff-head); font-size: 1.7rem; font-weight: 400; letter-spacing: 0.04em; color: var(--text); margin-bottom: 0.75rem; display: inline-flex; align-items: center; gap: 0.5rem; text-transform: uppercase; }
.rst-foot-brand::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--safelight); box-shadow: inset 0 0 0 2.5px #0a0908, inset 0 0 0 4px var(--safelight), 0 0 9px rgba(240,162,60,.7); }
.rst-foot-tagline { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 1.25rem; }
.rst-foot-address { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }
.rst-foot-hours { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.03em; color: var(--text-faint); margin-top: 0.75rem; line-height: 1.9; }
.rst-foot-col h4 { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--safelight); margin-bottom: 1rem; }
.rst-foot-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.rst-foot-col a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--anim); }
.rst-foot-col a:hover { color: var(--safelight); }

.rst-foot-lang { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; padding: 0 var(--gutter) 2rem; max-width: var(--max-w); margin: 0 auto; }
.rst-foot-lang > span { font-family: var(--ff-mono); font-size: 0.66rem; color: var(--text-faint); }
.rst-lang-btn { font-family: var(--ff-mono); font-size: 0.68rem; letter-spacing: 0.05em; color: var(--text-faint); padding: 0.25rem 0.5rem; border-radius: 2px; transition: color var(--anim), background var(--anim); }
.rst-lang-btn:hover, .rst-lang-btn.is-active { color: var(--safelight); background: rgba(240,162,60,.1); }

.rst-foot-fine { border-top: 1px solid var(--line); padding: 1.25rem var(--gutter); display: flex; align-items: center; justify-content: space-between; font-family: var(--ff-mono); font-size: 0.7rem; color: var(--text-faint); flex-wrap: wrap; gap: 0.5rem; max-width: var(--max-w); margin: 0 auto; }
.rst-foot-fine a { color: var(--text-faint); transition: color var(--anim); }
.rst-foot-fine a:hover { color: var(--text); }
.rst-foot-fine-links { display: flex; gap: 1.5rem; }

/* ── CART DRAWER ──────────────────────────────────── */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); z-index: 190; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.rst-cart-overlay.is-visible { opacity: 1; pointer-events: all; }
.rst-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw); background: var(--kraft-2); z-index: 200; transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.32,0,0.15,1); display: flex; flex-direction: column; border-left: 1px solid var(--line); box-shadow: -10px 0 40px rgba(0,0,0,0.6); }
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--line); }
.rst-drawer-title { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 400; color: var(--text); text-transform: uppercase; letter-spacing: 0.02em; }
.rst-drawer-close { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.3rem; transition: background var(--anim), color var(--anim); }
.rst-drawer-close:hover { background: rgba(239,231,214,.08); color: var(--safelight); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.rst-drawer-empty { font-size: 0.9rem; color: var(--text-muted); text-align: center; padding: 2rem 0; }
.rst-drawer-item { display: flex; gap: 0.85rem; position: relative; }
.rst-drawer-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; border: 1px solid var(--line); background: #050504; }
.rst-drawer-item-info { flex: 1; min-width: 0; }
.rst-drawer-item-name { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.25; }
.rst-drawer-item-meta { font-family: var(--ff-mono); font-size: 0.64rem; color: var(--text-muted); margin-top: 0.15rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.rst-drawer-item-price { font-family: var(--ff-mono); font-size: 0.85rem; font-weight: 700; color: var(--text); }
.rst-drawer-remove { position: absolute; top: 0; right: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text-faint); border-radius: 50%; transition: background var(--anim), color var(--anim); }
.rst-drawer-remove:hover { background: rgba(239,231,214,.08); color: var(--safelight); }

.rst-qty-ctrl { display: flex; align-items: center; gap: 0.3rem; }
.rst-qty-btn { width: 24px; height: 24px; border-radius: 50%; background: rgba(239,231,214,.05); border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--text); transition: background var(--anim), border-color var(--anim); }
.rst-qty-btn:hover { background: rgba(240,162,60,.12); border-color: var(--safelight); }
.rst-qty-val { font-family: var(--ff-mono); font-size: 0.8rem; min-width: 20px; text-align: center; color: var(--text); }

.rst-drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--line); }
.rst-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-family: var(--ff-mono); font-size: 0.85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.rst-drawer-subtotal-val { font-family: var(--ff-mono); font-size: 1.1rem; font-weight: 700; color: var(--safelight); }

body.rst-drawer-lock { overflow: hidden; }

/* ── TOAST ────────────────────────────────────────── */
#rst-toast-container { position: fixed; bottom: 2rem; left: 2rem; right: auto; z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.rst-toast { background: #050504; color: var(--text); padding: 0.75rem 1.25rem; border-radius: var(--radius-md); font-family: var(--ff-mono); font-size: 0.8rem; box-shadow: var(--shadow-lift); border-left: 3px solid var(--safelight); opacity: 0; transform: translateY(8px); transition: opacity 0.22s ease, transform 0.22s ease; pointer-events: none; max-width: 300px; }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ── SHOP PAGE ────────────────────────────────────── */
.rst-shop-header { padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter) 0; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #161412 0%, var(--kraft) 100%); }
.rst-shop-title { font-family: var(--ff-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 400; letter-spacing: 0.01em; color: var(--text); margin: 0.5rem 0 1.5rem; text-transform: uppercase; }
.rst-shop-toolbar { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; flex-wrap: wrap; gap: 1rem; }
.rst-filter-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.rst-filter-chip { font-family: var(--ff-mono); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 100px; border: 1px solid var(--line-2); color: var(--text-muted); background: transparent; transition: all var(--anim); cursor: pointer; }
.rst-filter-chip:hover { background: rgba(239,231,214,.06); color: var(--text); border-color: var(--text-muted); }
.rst-filter-chip.is-active { background: var(--safelight); border-color: var(--safelight); color: #0f0e0d; box-shadow: 0 4px 14px rgba(240,162,60,.3); }
.rst-sort-select { padding: 0.4rem 0.75rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--paper); font-family: var(--ff-mono); font-size: 0.75rem; color: var(--text); cursor: pointer; }
.rst-sort-select:focus { outline: none; border-color: var(--safelight); box-shadow: var(--glow-amber); }
.rst-shop-toolbar label { font-family: var(--ff-mono) !important; font-size: 0.72rem !important; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted) !important; }
.rst-shop-grid { padding: clamp(2rem, 4vw, 3rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: rst-frame; }

/* ── PRODUCT PAGE ─────────────────────────────────── */
.rst-pdp { padding: clamp(1.5rem, 4vw, 3rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.rst-pdp-gallery { position: sticky; top: 84px; }
.rst-pdp-main-img { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/5; background: #050504; position: relative; box-shadow: var(--shadow-card); border-top: 12px solid #050504; }
.rst-pdp-main-img::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 8px; z-index: 2; background-image: radial-gradient(circle, var(--kraft) 0 2px, transparent 2.6px); background-size: 17px 8px; background-position: 9px center; }
.rst-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.92) brightness(0.96); }
.rst-pdp-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.rst-pdp-thumb { width: 70px; height: 70px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; border: 1px solid var(--line-2); transition: border-color var(--anim), transform var(--anim); background: #050504; }
.rst-pdp-thumb:hover { transform: translateY(-2px); border-color: var(--text-muted); }
.rst-pdp-thumb.is-active { border-color: var(--safelight); box-shadow: var(--glow-amber); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.rst-pdp-right { padding-top: 0.25rem; }
.rst-pdp-cat { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--safelight); text-transform: uppercase; margin-bottom: 0.5rem; }
.rst-pdp-name { font-family: var(--ff-head); font-size: clamp(2.2rem, 3.4vw, 3.2rem); font-weight: 400; letter-spacing: 0.01em; color: var(--text); line-height: 0.98; margin-bottom: 1.25rem; text-transform: uppercase; }

.rst-pdp-notes-title { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.rst-pdp-notes-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }

/* spec table */
.rst-pdp-specs { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.5rem; background: var(--paper); }
.rst-pdp-spec-row { display: grid; grid-template-columns: 0.8fr 1.2fr; font-family: var(--ff-mono); font-size: 0.74rem; border-bottom: 1px solid var(--line); }
.rst-pdp-spec-row:last-child { border-bottom: none; }
.rst-pdp-spec-key { color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; padding: 0.6rem 0.85rem; background: rgba(239,231,214,.03); border-right: 1px solid var(--line); }
.rst-pdp-spec-val { color: var(--text); padding: 0.6rem 0.85rem; }

.rst-selector-label { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); margin-bottom: 0.45rem; }
.rst-selector-options { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.rst-selector-opt { font-family: var(--ff-mono); padding: 0.45rem 0.85rem; border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-size: 0.76rem; color: var(--text-muted); cursor: pointer; transition: all var(--anim); background: transparent; }
.rst-selector-opt:hover { background: rgba(239,231,214,.06); color: var(--text); border-color: var(--text-muted); }
.rst-selector-opt.is-active { background: var(--safelight); border-color: var(--safelight); color: #0f0e0d; }

.rst-pdp-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.1rem 0; padding-top: 1.1rem; border-top: 1px dashed var(--line-2); }
.rst-pdp-price { font-family: var(--ff-mono); font-size: 1.8rem; font-weight: 700; color: var(--safelight); }
.rst-pdp-price-unit { font-family: var(--ff-mono); font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.rst-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.rst-pdp-qty-ctrl { display: flex; align-items: center; border: 1px solid var(--line-2); border-radius: var(--radius-md); overflow: hidden; }
.rst-pdp-qty-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--text); transition: background var(--anim), color var(--anim); }
.rst-pdp-qty-btn:hover { background: rgba(240,162,60,.12); color: var(--safelight); }
.rst-pdp-qty-val { min-width: 38px; text-align: center; font-family: var(--ff-mono); font-size: 0.9rem; color: var(--text); border-left: 1px solid var(--line-2); border-right: 1px solid var(--line-2); height: 38px; line-height: 38px; }

.rst-pdp-atc { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.85rem; }
.rst-pdp-atc:disabled { opacity: 0.5; cursor: not-allowed; }

.rst-pdp-long { max-width: 66ch; margin-top: 2.25rem; }
.rst-pdp-long p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; }
.rst-pdp-long-head { font-family: var(--ff-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--safelight); margin-bottom: 0.6rem; }

.rst-related { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); background: var(--kraft-2); border-top: 1px solid var(--line); }
.rst-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.5rem; counter-reset: rst-frame; }

/* ── CART PAGE ────────────────────────────────────── */
.rst-cart-page { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: 920px; margin: 0 auto; }
.rst-cart-page-title { font-family: var(--ff-head); font-size: clamp(2.2rem, 3.6vw, 3rem); font-weight: 400; letter-spacing: 0.01em; color: var(--text); margin-bottom: 2rem; text-transform: uppercase; }
.rst-cart-table { width: 100%; border-collapse: collapse; }
.rst-cart-table th { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 0 0 0.75rem; border-bottom: 1px solid var(--line-2); text-align: left; }
.rst-cart-table td { padding: 1rem 0; border-bottom: 1px solid var(--line); vertical-align: middle; color: var(--text); }
.rst-cart-table td:last-child { text-align: right; }
.rst-cart-item-img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--line); background: #050504; }
.rst-cart-item-name { font-family: var(--ff-body); font-weight: 600; font-size: 0.9rem; color: var(--text); }
.rst-cart-item-meta { font-family: var(--ff-mono); font-size: 0.64rem; color: var(--text-muted); margin-top: 0.15rem; }
.rst-cart-totals { margin-top: 2rem; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.rst-cart-total-row { display: flex; gap: 3rem; font-family: var(--ff-mono); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text); }
.rst-cart-total-row strong { font-family: var(--ff-mono); font-size: 1.1rem; color: var(--safelight); }
.rst-cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; flex-wrap: wrap; gap: 1rem; }

/* ── PAGE HERO BAND (about/contact/legal) ─────────── */
.rst-page-hero {
  background:
    var(--safelight-glow),
    radial-gradient(120% 120% at 0% 0%, #161412 0%, #0a0908 65%);
  color: var(--text); padding: clamp(2.8rem, 5vw, 4.5rem) var(--gutter); position: relative;
  border-bottom: 1px solid var(--line);
}
.rst-page-hero::after { content: ''; position: absolute; bottom: 5px; left: 0; right: 0; height: 8px; background-image: radial-gradient(circle, var(--kraft) 0 2px, transparent 2.6px); background-size: 22px 8px; background-position: 11px center; opacity: .55; }
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.rst-page-title { font-family: var(--ff-head); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 400; letter-spacing: 0.01em; line-height: 0.98; text-transform: uppercase; color: var(--text); }
.rst-page-sub { font-family: var(--ff-mono); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--text-muted); margin-top: 0.7rem; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.rst-about-hero { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.rst-about-lead { font-family: var(--ff-body); font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 500; line-height: 1.4; letter-spacing: -0.01em; max-width: 52ch; color: var(--text); }
.rst-about-lead em { color: var(--safelight); font-style: normal; }
.rst-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.rst-about-text h2 { font-family: var(--ff-head); font-size: 1.7rem; font-weight: 400; letter-spacing: 0.01em; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; }
.rst-about-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.rst-about-img { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: #050504; box-shadow: var(--shadow-card); }
.rst-about-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.9) brightness(0.92); }
.rst-about-values { background: var(--kraft-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.rst-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
.rst-value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-card); transition: border-color var(--anim), transform var(--anim); }
.rst-value-card:hover { border-color: rgba(240,162,60,.3); transform: translateY(-3px); }
.rst-value-num { font-family: var(--ff-mono); font-size: 1.4rem; font-weight: 700; color: var(--safelight); letter-spacing: 0.02em; margin-bottom: 0.5rem; }
.rst-value-title { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.01em; }
.rst-value-body { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }
.rst-about-process { padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.rst-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 1.75rem; counter-reset: step; }
.rst-process-step { counter-increment: step; border-top: 2px solid var(--safelight); padding-top: 0.85rem; }
.rst-process-step::before { content: counter(step, decimal-leading-zero); font-family: var(--ff-mono); font-size: 1.4rem; font-weight: 700; color: var(--safelight); display: block; margin-bottom: 0.6rem; }
.rst-process-step h3 { font-family: var(--ff-head); font-size: 1.15rem; font-weight: 400; color: var(--text); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.01em; }
.rst-process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.rst-team-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem; box-shadow: var(--shadow-card); }
.rst-team-role { font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--safelight); margin-bottom: 0.4rem; }
.rst-team-name { font-family: var(--ff-head); font-size: 1.2rem; font-weight: 400; color: var(--text); text-transform: uppercase; letter-spacing: 0.01em; }
.rst-team-body { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.4rem; line-height: 1.65; }

/* ── CONTACT PAGE ─────────────────────────────────── */
.rst-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; align-items: start; }
.rst-contact-title { font-family: var(--ff-head); font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 400; letter-spacing: 0.01em; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; }
.rst-contact-intro { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.rst-contact-meta h3 { font-family: var(--ff-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--safelight); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.rst-contact-meta p { font-size: 0.88rem; color: var(--text); line-height: 1.8; }
.rst-contact-meta a { color: var(--safelight); border-bottom: 1px solid rgba(240,162,60,.4); transition: border-color var(--anim); }
.rst-contact-meta a:hover { border-color: var(--safelight); }
.rst-form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow-card); }
.rst-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.rst-form-label { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text); }
.rst-form-input, .rst-form-textarea, .rst-form-select { padding: 0.7rem 1rem; border: 1px solid var(--line-2); border-radius: var(--radius-md); background: var(--kraft); color: var(--text); font-size: 0.9rem; transition: box-shadow var(--anim), border-color var(--anim); }
.rst-form-input::placeholder, .rst-form-textarea::placeholder { color: var(--text-faint); }
.rst-form-input:focus, .rst-form-textarea:focus, .rst-form-select:focus { outline: none; border-color: var(--safelight); box-shadow: var(--glow-amber); }
.rst-form-textarea { min-height: 140px; resize: vertical; }
.rst-form-success { background: rgba(95,199,194,0.1); border: 1px solid var(--cyan); color: var(--text); padding: 1rem 1.25rem; border-radius: var(--radius-md); font-size: 0.9rem; display: none; }
.rst-form-success.is-visible { display: block; }

/* ── LEGAL PAGES ──────────────────────────────────── */
.rst-legal-wrap { max-width: 800px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.rst-legal-meta { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--text-muted); margin-bottom: 2.5rem; padding-bottom: 1rem; border-bottom: 1px dashed var(--line-2); }
.rst-legal-section { margin-bottom: 2.5rem; }
.rst-legal-section h2 { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 400; color: var(--text); margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--line-2); text-transform: uppercase; letter-spacing: 0.01em; }
.rst-legal-section p, .rst-legal-section ul, .rst-legal-section ol { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.rst-legal-section ul { list-style: disc; padding-left: 1.5rem; }
.rst-legal-section ol { list-style: decimal; padding-left: 1.5rem; }
.rst-legal-section li { margin-bottom: 0.3rem; }
.rst-legal-section p + p { margin-top: 0.75rem; }
.rst-legal-section a { color: var(--safelight); border-bottom: 1px solid rgba(240,162,60,.4); }

/* ── BREADCRUMB ───────────────────────────────────── */
.rst-breadcrumb { padding: 0.85rem var(--gutter); font-family: var(--ff-mono); font-size: 0.72rem; letter-spacing: 0.03em; color: var(--text-muted); max-width: var(--max-w); margin: 0 auto; display: flex; gap: 0.5rem; align-items: center; }
.rst-breadcrumb a { color: var(--text-muted); transition: color var(--anim); }
.rst-breadcrumb a:hover { color: var(--safelight); }
.rst-breadcrumb-sep { opacity: 0.4; }

/* ── SEARCH MODAL ─────────────────────────────────── */
.rst-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 180; display: none; align-items: flex-start; justify-content: center; padding-top: 80px; }
.rst-search-overlay.is-open { display: flex; }
.rst-search-box { background: var(--kraft-2); border: 1px solid var(--line-2); border-radius: var(--radius-md); padding: 1.5rem; width: min(560px, 90vw); box-shadow: var(--shadow-lift); }
.rst-search-input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--line-2); border-radius: var(--radius-md); font-size: 1rem; color: var(--text); background: var(--kraft); }
.rst-search-input::placeholder { color: var(--text-faint); }
.rst-search-input:focus { outline: none; border-color: var(--safelight); box-shadow: var(--glow-amber); }
.rst-search-results { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.4rem; max-height: 320px; overflow-y: auto; }
.rst-search-result { padding: 0.6rem 0.8rem; border-radius: var(--radius-sm); display: flex; gap: 0.75rem; align-items: center; transition: background var(--anim); }
.rst-search-result:hover { background: rgba(239,231,214,.06); }
.rst-search-result img { width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--line); background: #050504; }
.rst-search-result-name { font-family: var(--ff-body); font-size: 0.88rem; font-weight: 600; color: var(--text); }
.rst-search-result-meta { font-family: var(--ff-mono); font-size: 0.64rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 940px) {
  .rst-nav { display: none; }
  .rst-hamburger { display: flex; }
  .rst-hero { grid-template-columns: 1fr; min-height: auto; }
  .rst-hero-left::after { display: none; }
  .rst-hero-right { height: 56vw; min-height: 280px; }
  .rst-thisweek-grid { grid-template-columns: 1fr; gap: 1rem; }
  .rst-origins-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-featured-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-featured-grid .rst-card:nth-child(1) { grid-column: span 2; }
  .rst-journal-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-shop-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-pdp { grid-template-columns: 1fr; gap: 2rem; }
  .rst-pdp-gallery { position: static; }
  .rst-foot-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .rst-contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .rst-values-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-process-steps { grid-template-columns: repeat(2, 1fr); }
  .rst-related-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-brew-panel.is-active { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .rst-hero-ctas { flex-direction: column; align-items: stretch; }
  .rst-hero-ctas .rst-btn { justify-content: center; }
  .rst-origins-grid { grid-template-columns: 1fr; }
  .rst-featured-grid { grid-template-columns: 1fr; }
  .rst-featured-grid .rst-card:nth-child(1) { grid-column: span 1; }
  .rst-featured-grid .rst-card:nth-child(1) .rst-card-img-wrap { aspect-ratio: 4/3; }
  .rst-journal-grid { grid-template-columns: 1fr; }
  .rst-shop-grid { grid-template-columns: 1fr; }
  .rst-foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .rst-brew-grid { grid-template-columns: 1fr; }
  .rst-values-grid { grid-template-columns: 1fr; }
  .rst-process-steps { grid-template-columns: 1fr; }
  .rst-related-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-cart-table th:nth-child(3), .rst-cart-table td:nth-child(3) { display: none; }
}
@media (max-width: 940px) { .rst-mobile-nav.is-open { display: flex; } }
