@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — Ferrule · Fly-Fishing Tackle
   Prefix: rst-  |  Theme: CHALK-STREAM HERITAGE / RIVERSIDE
   River slate-blue-grey + warm buckskin tan + oxblood, on cream paper.
   Display: Newsreader (literary serif) · Body: Hanken Grotesk
   ═══════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ── Custom Properties ────────────────────────────── */
:root {
  /* Core palette — chalk-stream heritage */
  --slate:      #3c4a52;   /* river slate-blue-grey (primary dark)   */
  --slate-2:    #4f5e66;   /* lighter slate                          */
  --tan:        #d8c4a0;   /* warm buckskin tan                      */
  --tan-soft:   #e7dcc4;   /* soft tan panel                         */
  --oxblood:    #7a2e26;   /* oxblood accent                         */
  --oxblood-2:  #8f3a31;   /* oxblood hover                          */
  --cream:      #f3ede0;   /* cream paper (page bg)                  */
  --cream-2:    #efe7d6;   /* slightly deeper cream panel            */
  --ink:        #22282b;   /* near-black ink                         */
  --reed:       #5a6b4a;   /* reed-green tiny accent                 */
  --hairline:   #d6cbb4;   /* hairlines / borders                    */
  --white:      #fbf8f1;   /* warm white card                        */

  /* Semantic aliases (kept so legacy rules read clearly) */
  --paper:      var(--cream);
  --espresso:   var(--slate);
  --terracotta: var(--oxblood);
  --sage:       var(--reed);
  --kraft:      var(--tan);
  --light-tan:  var(--cream-2);
  --mid-tan:    #e1d6bf;
  --text:       var(--ink);
  --text-muted: #5e6a6f;

  /* Typography */
  --ff-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --ff-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --ff-mono:    'Hanken Grotesk', system-ui, sans-serif; /* labels = grotesk uppercase, spaced */

  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  10px;

  --shadow-card: 0 1px 2px rgba(34,40,43,0.05), 0 6px 22px rgba(34,40,43,0.07);
  --shadow-lift: 0 8px 30px rgba(34,40,43,0.16);

  --max-w: 1280px;
  --gutter: clamp(1rem, 4vw, 2.75rem);

  --anim: 0.22s ease;

  /* River-current divider (hand-drawn current line) as reusable data-URI */
  --rule-current: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='12' viewBox='0 0 240 12'%3E%3Cpath d='M0 6 C20 1 40 1 60 6 S100 11 120 6 160 1 180 6 220 11 240 6' fill='none' stroke='%237a2e26' stroke-width='1.4' stroke-linecap='round' opacity='0.7'/%3E%3C/svg%3E");
}

/* ── 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, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  /* faint laid-paper warmth */
  background-image:
    radial-gradient(circle at 18% 12%, rgba(216,196,160,0.12), transparent 42%),
    radial-gradient(circle at 88% 78%, rgba(60,74,82,0.05), transparent 46%);
  overflow-x: hidden;
}
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: rgba(122,46,38,0.18); }
@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(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.rst-reveal.is-visible { opacity: 1; transform: none; }

/* Hand-drawn river-current divider */
.rst-current-rule {
  height: 12px;
  background: var(--rule-current) repeat-x center;
  background-size: 240px 12px;
  opacity: 0.85;
  margin: 0 auto;
}

/* Eyebrow label = Hanken Grotesk uppercase, letter-spaced */
.rst-eyebrow,
.rst-section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
}

/* ── TICKER BAR ───────────────────────────────────── */
.rst-ticker {
  background: var(--slate);
  color: var(--tan);
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.rst-ticker-track {
  display: flex;
  animation: rst-ticker-scroll 30s linear infinite;
  gap: 0;
}
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.5rem; display: inline-flex; align-items: center; }
.rst-ticker-item::before { content: '✦'; margin-right: 2.5rem; color: var(--oxblood); 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(243,237,224,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow var(--anim), padding var(--anim);
}
.rst-head--stuck { box-shadow: 0 2px 18px rgba(34,40,43,0.10); }

/* Transparent header sitting OVER the full-bleed hero (home only).
   Light text on the photo; turns solid via .rst-head--stuck on scroll. */
.rst-head--over {
  position: fixed;
  left: 0; right: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.rst-head--over .rst-brandslot,
.rst-head--over .rst-nav-link,
.rst-head--over .rst-head-btn { color: var(--cream); }
.rst-head--over .rst-brandslot::before { background: var(--cream); }
.rst-head--over .rst-nav-link:hover,
.rst-head--over .rst-head-btn:hover { color: #fff; background: rgba(243,237,224,0.14); }
.rst-head--over .rst-hamburger span { background: var(--cream); }
.rst-head--over .rst-cart-badge { background: var(--oxblood); color: #fff; }
/* push the home page content under the fixed transparent header is NOT needed
   because the hero is full-height and sits beneath it by design. */
body.rst-home { overflow-x: hidden; }
.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 */
.rst-brandslot {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--slate);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--anim);
}
.rst-brandslot::before {
  content: '';
  width: 18px; height: 18px;
  flex-shrink: 0;
  background: var(--oxblood);
  -webkit-mask: var(--seal-mask) center / contain no-repeat;
          mask: var(--seal-mask) center / contain no-repeat;
}
:root {
  --seal-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 4c-4 0-7 1-9 4-1.5 2.2-2 5-2 8' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3Cpath d='M12 4c-4 .5-6 2-7 4M12 7c-3 .4-5 1.6-6 3.4M12 10c-2.5.4-4 1.4-5 3' fill='none' stroke='%23000' stroke-width='1.3' stroke-linecap='round'/%3E%3Cpath d='M10 16c0 2 1 3.5 0 5' fill='none' stroke='%23000' stroke-width='1.6' stroke-linecap='round'/%3E%3Ccircle cx='10' cy='16' r='1.3' fill='%23000'/%3E%3C/svg%3E");
}
.rst-brandslot:hover { color: var(--oxblood); }

/* Nav */
.rst-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}
.rst-nav-link {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim);
  white-space: nowrap;
}
.rst-nav-link:hover { color: var(--slate); background: var(--cream-2); }
.rst-nav-link.is-active { color: var(--oxblood); }

/* Head actions */
.rst-head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  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.6rem;
  border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim);
  position: relative;
}
.rst-head-btn:hover { color: var(--slate); background: var(--cream-2); }
.rst-head-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  background: var(--oxblood);
  color: var(--white);
  font-size: 0.64rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  position: absolute;
  top: -2px;
  right: -4px;
}

/* Hamburger (mobile) */
.rst-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.rst-hamburger span { display: block; width: 22px; height: 2px; background: var(--slate); border-radius: 1px; 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 overlay */
.rst-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.rst-mobile-nav.is-open { opacity: 1; }
.rst-mobile-nav-link {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 500;
  color: var(--slate);
  transition: color var(--anim);
}
.rst-mobile-nav-link:hover { color: var(--oxblood); }

/* ── HERO ─────────────────────────────────────────── */
/* Layered riverside hero: cream text panel meets a slate-vignetted river image. */
.rst-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: clamp(540px, 76vh, 820px);
  background: var(--slate);
  overflow: hidden;
}
.rst-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  background: var(--cream);
  position: relative;
  z-index: 2;
}
/* hand-drawn current line under the hero text */
.rst-hero-left::after {
  content: '';
  position: absolute;
  left: clamp(2rem, 5vw, 5rem);
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  height: 12px;
  background: var(--rule-current) repeat-x left;
  background-size: 240px 12px;
  opacity: 0.65;
}
.rst-hero-badge {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  border: 1.5px solid var(--oxblood);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.6rem;
  width: fit-content;
}
.rst-hero-badge::before { content: '✦'; font-size: 0.75em; }
.rst-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.rst-hero-headline em { font-style: italic; color: var(--oxblood); }
.rst-hero-lede {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  color: var(--text-muted);
  max-width: 40ch;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.rst-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.rst-hero-right {
  position: relative;
  overflow: hidden;
}
.rst-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.rst-hero-right:hover img { transform: scale(1.04); }
/* tan vignette tying image to palette */
.rst-hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(60,74,82,0.35) 0%, transparent 40%),
              linear-gradient(0deg, rgba(34,40,43,0.30), transparent 55%);
  pointer-events: none;
}
.rst-hero-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background: rgba(34,40,43,0.78);
  color: var(--tan);
  font-family: var(--ff-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--oxblood);
}

/* ── BUTTONS ──────────────────────────────────────── */
.rst-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--anim), color var(--anim), box-shadow var(--anim), transform var(--anim), border-color var(--anim);
  cursor: pointer;
}
.rst-btn:focus-visible { outline: 2.5px solid var(--oxblood); outline-offset: 3px; }
.rst-btn-primary {
  background: var(--slate);
  color: var(--cream);
}
.rst-btn-primary:hover { background: var(--ink); box-shadow: 0 5px 16px rgba(34,40,43,0.28); transform: translateY(-1px); }
.rst-btn-ghost {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--hairline);
}
.rst-btn-ghost:hover { border-color: var(--slate); background: var(--cream-2); }
.rst-btn-accent {
  background: var(--oxblood);
  color: var(--white);
}
.rst-btn-accent:hover { background: var(--oxblood-2); box-shadow: 0 5px 16px rgba(122,46,38,0.32); transform: translateY(-1px); }
.rst-btn-white { background: var(--cream); color: var(--oxblood); }
.rst-btn-white:hover { background: var(--white); box-shadow: 0 5px 18px rgba(0,0,0,0.16); transform: translateY(-1px); }
.rst-btn-sm { padding: 0.45rem 0.95rem; font-size: 0.72rem; border-radius: var(--radius-sm); }

/* ── THIS WEEK / FEATURED-LITE STRIP ──────────────── */
.rst-thisweek {
  background: var(--cream-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--gutter);
}
.rst-thisweek-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.rst-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.rst-thisweek-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── SPEC BAR (was roast-meter; reused as a generic line-weight gauge) ── */
.rst-roast-meter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.4rem 0;
}
.rst-roast-label {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}
.rst-roast-track {
  flex: 1;
  height: 4px;
  background: var(--mid-tan);
  border-radius: 2px;
  overflow: hidden;
}
.rst-roast-fill { height: 100%; border-radius: 2px; background: var(--reed); }
.rst-roast-fill[data-level="1"] { width: 28%; }
.rst-roast-fill[data-level="2"] { width: 55%; }
.rst-roast-fill[data-level="3"] { width: 85%; }

/* ── PRODUCT CARD (rich, tackle-catalogue feel) ───── */
.rst-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
  display: flex;
  flex-direction: column;
  position: relative;
}
.rst-card::before {
  /* slim oxblood index tab top-left, like a catalogue */
  content: '';
  position: absolute;
  top: 0; left: 1.1rem;
  width: 34px; height: 4px;
  background: var(--oxblood);
  z-index: 3;
}
.rst-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); border-color: var(--tan); }
.rst-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--cream-2); }
.rst-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.rst-card:hover .rst-card-img-wrap img { transform: scale(1.05); }
.rst-card-body { padding: 1.05rem 1.15rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: 0.4rem; }
.rst-card-cat {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--oxblood);
  text-transform: uppercase;
}
.rst-card-name {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.2;
}
.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.35rem; margin: 0.35rem 0; }
.rst-chip {
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--cream-2);
  color: var(--slate);
  padding: 0.22rem 0.55rem;
  border-radius: 100px;
  border: 1px solid var(--hairline);
}
.rst-chip-accent { background: rgba(122,46,38,0.08); color: var(--oxblood); border-color: rgba(122,46,38,0.2); }
.rst-card-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 0.6rem; padding-top: 0.6rem; border-top: 1px solid var(--hairline); }
.rst-price {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--slate);
}
.rst-price-sub { font-size: 0.68rem; color: var(--text-muted); display: block; letter-spacing: 0.03em; }

/* ── TECHNIQUE / SECTION ROW (was origins) ────────── */
.rst-origins {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.rst-origins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin-top: 1.75rem;
}
.rst-origin-card {
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: transform var(--anim), box-shadow var(--anim);
  cursor: pointer;
}
.rst-origin-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.rst-origin-img { aspect-ratio: 4/3; overflow: hidden; }
.rst-origin-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.rst-origin-card:hover .rst-origin-img img { transform: scale(1.07); }
.rst-origin-body { padding: 1.05rem 1.15rem; }
.rst-origin-country {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.rst-origin-meta {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  line-height: 1.85;
}
.rst-origin-meta span { color: var(--oxblood); font-weight: 600; }

/* ── METHOD SELECTOR (was brew; slate band) ───────── */
.rst-brew {
  background: var(--slate);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  position: relative;
}
.rst-brew::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 12px;
  background: var(--rule-current) repeat-x center;
  background-size: 240px 12px;
  opacity: 0.5;
}
.rst-brew .rst-section-title { color: var(--cream); }
.rst-brew .rst-section-label { color: var(--tan); }
.rst-brew-tabs { display: flex; gap: 0.5rem; margin-top: 1.75rem; margin-bottom: 2rem; flex-wrap: wrap; }
.rst-brew-tab {
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tan);
  border: 1.5px solid rgba(216,196,160,0.3);
  transition: background var(--anim), border-color var(--anim), color var(--anim);
}
.rst-brew-tab:hover { background: rgba(216,196,160,0.12); border-color: var(--tan); }
.rst-brew-tab.is-active { background: var(--oxblood); border-color: var(--oxblood); color: var(--white); }
.rst-brew-panel { display: none; }
.rst-brew-panel.is-active { display: grid; grid-template-columns: 1fr 1.6fr; gap: 2.5rem; align-items: center; }
.rst-brew-desc { font-family: var(--ff-display); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: rgba(243,237,224,0.85); line-height: 1.55; }
.rst-brew-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.rst-brew-card { background: rgba(216,196,160,0.08); border: 1px solid rgba(216,196,160,0.18); border-radius: var(--radius-md); padding: 1rem; transition: background var(--anim), border-color var(--anim); }
.rst-brew-card:hover { background: rgba(216,196,160,0.14); border-color: var(--tan); }
.rst-brew-card a { display: block; }
.rst-brew-card-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
.rst-brew-card-origin { font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600; color: var(--tan); letter-spacing: 0.08em; text-transform: uppercase; }

/* ── ADVICE / SUBSCRIPTION BAND (oxblood) ─────────── */
.rst-sub-band {
  background: var(--oxblood);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) var(--gutter);
}
.rst-sub-inner { max-width: 880px; margin: 0 auto; }
.rst-sub-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.rst-sub-lede { font-size: 1rem; opacity: 0.92; max-width: 50ch; margin-bottom: 2rem; line-height: 1.65; }
.rst-sub-details {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.rst-sub-detail { font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.9; display: inline-flex; align-items: center; gap: 0.4rem; }
.rst-sub-detail::before { content: '✦'; font-size: 0.85em; }

/* ── FEATURED GRID ────────────────────────────────── */
.rst-featured {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
}
.rst-featured-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.rst-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.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 / NOTES ──────────────────────────────── */
.rst-journal {
  background: var(--cream-2);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  border-top: 1px solid var(--hairline);
}
.rst-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.rst-article-card { background: var(--white); border: 1px solid var(--hairline); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--anim), box-shadow var(--anim); }
.rst-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.rst-article-img { aspect-ratio: 16/9; overflow: hidden; }
.rst-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rst-article-card:hover .rst-article-img img { transform: scale(1.05); }
.rst-article-body { padding: 1.25rem; }
.rst-article-tag { font-family: var(--ff-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.13em; color: var(--oxblood); text-transform: uppercase; margin-bottom: 0.4rem; }
.rst-article-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 500; color: var(--slate); line-height: 1.25; margin-bottom: 0.5rem; }
.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-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--oxblood); display: inline-flex; align-items: center; gap: 0.35rem; }
.rst-article-link::after { content: '→'; transition: transform var(--anim); }
.rst-article-card:hover .rst-article-link::after { transform: translateX(3px); }

/* ── 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-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--slate);
  margin-bottom: 0.75rem;
}
.rst-newsletter-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.65; }
.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: 1.5px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate);
  transition: border-color var(--anim), box-shadow var(--anim);
}
.rst-newsletter-input:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(60,74,82,0.08); }
.rst-newsletter-privacy { font-size: 0.74rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── FOOTER ───────────────────────────────────────── */
.rst-foot {
  background: var(--slate);
  color: var(--tan);
  padding-top: clamp(3rem, 6vw, 5rem);
  position: relative;
}
.rst-foot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 12px;
  background: var(--rule-current) repeat-x center;
  background-size: 240px 12px;
  opacity: 0.45;
}
.rst-foot-grid {
  display: grid;
  grid-template-columns: 1.8fr 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-display); font-size: 1.6rem; font-weight: 600; color: var(--cream); margin-bottom: 0.75rem; }
.rst-foot-tagline { font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tan); opacity: 0.75; margin-bottom: 1.25rem; }
.rst-foot-address { font-size: 0.84rem; color: rgba(216,196,160,0.72); line-height: 1.8; }
.rst-foot-hours { font-family: var(--ff-body); font-size: 0.72rem; letter-spacing: 0.03em; color: rgba(216,196,160,0.58); margin-top: 0.75rem; line-height: 1.9; }
.rst-foot-col h4 { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan); opacity: 0.55; margin-bottom: 1rem; }
.rst-foot-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.rst-foot-col a { font-size: 0.86rem; color: rgba(216,196,160,0.78); transition: color var(--anim); }
.rst-foot-col a:hover { color: var(--cream); }

/* Lang switcher */
.rst-foot-lang { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; margin-top: 1.5rem; padding: 0 var(--gutter) 2rem; max-width: var(--max-w); margin-left: auto; margin-right: auto; }
.rst-lang-btn { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; color: rgba(216,196,160,0.5); padding: 0.28rem 0.55rem; border-radius: var(--radius-sm); transition: color var(--anim), background var(--anim); }
.rst-lang-btn:hover, .rst-lang-btn.is-active { color: var(--cream); background: rgba(216,196,160,0.14); }

.rst-foot-fine {
  border-top: 1px solid rgba(216,196,160,0.14);
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(216,196,160,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.rst-foot-fine a { color: rgba(216,196,160,0.5); transition: color var(--anim); }
.rst-foot-fine a:hover { color: rgba(216,196,160,0.8); }
.rst-foot-fine-links { display: flex; gap: 1.5rem; }

/* ── CART DRAWER ──────────────────────────────────── */
.rst-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(34,40,43,0.5);
  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(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.32,0,0.15,1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(34,40,43,0.18);
}
.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(--hairline);
}
.rst-drawer-title { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 500; color: var(--slate); }
.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.25rem;
  transition: background var(--anim), color var(--anim);
}
.rst-drawer-close:hover { background: var(--cream-2); color: var(--slate); }
.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(--hairline); }
.rst-drawer-item-info { flex: 1; min-width: 0; }
.rst-drawer-item-name { font-size: 0.88rem; font-weight: 600; color: var(--slate); line-height: 1.3; }
.rst-drawer-item-meta { font-family: var(--ff-body); font-size: 0.66rem; color: var(--text-muted); margin-top: 0.15rem; letter-spacing: 0.02em; }
.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-display); font-size: 0.95rem; font-weight: 600; color: var(--slate); }
.rst-drawer-remove { position: absolute; top: 0; right: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: var(--text-muted); border-radius: 50%; transition: background var(--anim), color var(--anim); }
.rst-drawer-remove:hover { background: var(--mid-tan); color: var(--oxblood); }

.rst-qty-ctrl { display: flex; align-items: center; gap: 0.3rem; }
.rst-qty-btn { width: 24px; height: 24px; border-radius: 50%; background: var(--cream-2); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--slate); transition: background var(--anim); }
.rst-qty-btn:hover { background: var(--mid-tan); }
.rst-qty-val { font-family: var(--ff-display); font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }

.rst-drawer-foot { padding: 1.25rem 1.5rem; border-top: 1px solid var(--hairline); }
.rst-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-size: 1.15rem; text-transform: none; }

/* Lock scroll when drawer open */
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: var(--slate);
  color: var(--cream);
  padding: 0.78rem 1.3rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  border-left: 3px solid var(--oxblood);
  box-shadow: var(--shadow-lift);
  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(2rem, 4vw, 3.5rem) var(--gutter) 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--cream);
}
.rst-shop-title {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.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-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.95rem;
  border-radius: 100px;
  border: 1.5px solid var(--hairline);
  color: var(--text-muted);
  background: transparent;
  transition: all var(--anim);
  cursor: pointer;
}
.rst-filter-chip:hover { border-color: var(--slate); color: var(--slate); }
.rst-filter-chip.is-active { background: var(--slate); border-color: var(--slate); color: var(--cream); }

.rst-sort-select {
  padding: 0.45rem 0.75rem;
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 0.8rem;
  color: var(--slate);
  cursor: pointer;
  transition: border-color var(--anim);
}
.rst-sort-select:focus { outline: none; border-color: var(--slate); }

.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;
}

/* ── PRODUCT PAGE ─────────────────────────────────── */
.rst-pdp {
  padding: clamp(2rem, 4vw, 3.5rem) 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-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--cream-2); border: 1px solid var(--hairline); }
.rst-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rst-pdp-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.rst-pdp-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--anim), transform var(--anim);
}
.rst-pdp-thumb:hover { transform: translateY(-2px); }
.rst-pdp-thumb.is-active { border-color: var(--oxblood); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.rst-pdp-right { padding-top: 0.5rem; }
.rst-pdp-cat { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; color: var(--oxblood); text-transform: uppercase; margin-bottom: 0.5rem; }
.rst-pdp-name { font-family: var(--ff-display); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 500; letter-spacing: -0.015em; color: var(--slate); line-height: 1.08; margin-bottom: 1.25rem; }
.rst-pdp-specs {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}
.rst-pdp-spec-row { font-family: var(--ff-body); font-size: 0.72rem; }
.rst-pdp-spec-key { color: var(--text-muted); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 0.15rem; }
.rst-pdp-spec-val { color: var(--slate); font-size: 0.88rem; font-weight: 500; }

.rst-pdp-notes-title { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; 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; }

.rst-selector-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--slate); margin-bottom: 0.45rem; }
.rst-selector-options { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.rst-selector-opt {
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  background: var(--white);
  cursor: pointer;
  transition: all var(--anim);
}
.rst-selector-opt:hover { border-color: var(--slate); }
.rst-selector-opt.is-active { background: var(--slate); border-color: var(--slate); color: var(--cream); }

.rst-pdp-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.25rem 0; padding-top: 1rem; border-top: 1px solid var(--hairline); }
.rst-pdp-price { font-family: var(--ff-display); font-size: 1.85rem; font-weight: 600; color: var(--slate); }
.rst-pdp-price-unit { font-size: 0.8rem; color: var(--text-muted); }

.rst-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.rst-pdp-qty-ctrl { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--hairline); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.rst-pdp-qty-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--slate); transition: background var(--anim); }
.rst-pdp-qty-btn:hover { background: var(--cream-2); }
.rst-pdp-qty-val { min-width: 36px; text-align: center; font-family: var(--ff-display); font-weight: 600; font-size: 0.95rem; border-left: 1px solid var(--hairline); border-right: 1px solid var(--hairline); height: 36px; line-height: 36px; }

.rst-pdp-atc { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.85rem; }

.rst-pdp-long { max-width: 65ch; }
.rst-pdp-long-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--slate); margin: 2rem 0 0.6rem; }
.rst-pdp-long p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.78; }

.rst-pdp-brew-rec {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  margin-top: 1.5rem;
  border-left: 3px solid var(--oxblood);
}
.rst-pdp-brew-rec-label { font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; color: var(--oxblood); text-transform: uppercase; margin-bottom: 0.35rem; }
.rst-pdp-brew-rec p { font-size: 0.88rem; color: var(--slate); line-height: 1.65; }

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

/* ── CART PAGE ────────────────────────────────────── */
.rst-cart-page { padding: clamp(2rem, 4vw, 3.5rem) var(--gutter); max-width: 900px; margin: 0 auto; }
.rst-cart-page-title { font-family: var(--ff-display); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 500; letter-spacing: -0.015em; color: var(--slate); margin-bottom: 2rem; }
.rst-cart-table { width: 100%; border-collapse: collapse; }
.rst-cart-table th { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding: 0 0 0.75rem; border-bottom: 1px solid var(--hairline); text-align: left; }
.rst-cart-table td { padding: 1rem 0; border-bottom: 1px solid var(--cream-2); vertical-align: middle; }
.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(--hairline); }
.rst-cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--slate); }
.rst-cart-item-meta { font-family: var(--ff-body); font-size: 0.66rem; color: var(--text-muted); margin-top: 0.15rem; letter-spacing: 0.02em; }
.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-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; align-items: baseline; }
.rst-cart-total-row strong { font-family: var(--ff-display); font-size: 1.25rem; text-transform: none; }
.rst-cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; flex-wrap: wrap; gap: 1rem; }

/* ── 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-display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 400; line-height: 1.45; letter-spacing: -0.005em; max-width: 52ch; color: var(--slate); }
.rst-about-lead em { font-style: italic; color: var(--oxblood); }
.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-display); font-size: 1.55rem; font-weight: 500; color: var(--slate); margin-bottom: 1rem; }
.rst-about-text p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.rst-about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--hairline); }
.rst-about-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-about-values { background: var(--cream-2); border-top: 1px solid var(--hairline); 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(--white); border: 1px solid var(--hairline); border-radius: var(--radius-md); padding: 1.6rem; }
.rst-value-num { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--tan); margin-bottom: 0.5rem; }
.rst-value-title { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 500; color: var(--slate); margin-bottom: 0.5rem; }
.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; }
.rst-process-step::before { content: counter(step, decimal-leading-zero); font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--oxblood); display: block; margin-bottom: 0.75rem; }
.rst-process-step h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 500; color: var(--slate); margin-bottom: 0.35rem; }
.rst-process-step p { font-size: 0.82rem; color: var(--text-muted); 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-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 500; letter-spacing: -0.015em; color: var(--slate); margin-bottom: 1rem; }
.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-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.rst-contact-meta p { font-size: 0.9rem; color: var(--slate); line-height: 1.8; }
.rst-contact-meta a { color: var(--oxblood); text-decoration: underline; text-underline-offset: 3px; }
.rst-form { display: flex; flex-direction: column; gap: 1.1rem; }
.rst-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.rst-form-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--slate); }
.rst-form-input, .rst-form-textarea, .rst-form-select {
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--slate);
  font-size: 0.9rem;
  transition: border-color var(--anim), box-shadow var(--anim);
}
.rst-form-input:focus, .rst-form-textarea:focus, .rst-form-select:focus { outline: none; border-color: var(--slate); box-shadow: 0 0 0 3px rgba(60,74,82,0.08); }
.rst-form-textarea { min-height: 140px; resize: vertical; }
.rst-form-success { background: rgba(90,107,74,0.12); border: 1px solid var(--reed); color: var(--slate); 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: 780px; margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) var(--gutter); }
.rst-legal-title { font-family: var(--ff-display); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 500; letter-spacing: -0.015em; color: var(--slate); margin-bottom: 0.5rem; }
.rst-legal-meta { font-family: var(--ff-body); font-size: 0.74rem; color: var(--text-muted); margin-bottom: 2.5rem; }
.rst-legal-section { margin-bottom: 2.5rem; }
.rst-legal-section h2 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--slate); margin-bottom: 0.75rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--hairline); }
.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; }

/* ── PAGE HERO BAND ───────────────────────────────── */
.rst-page-hero {
  background: var(--slate);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  border-bottom: none;
  position: relative;
}
.rst-page-hero::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 12px;
  background: var(--rule-current) repeat-x center;
  background-size: 240px 12px;
  opacity: 0.5;
}
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.rst-page-title { font-family: var(--ff-display); font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 500; letter-spacing: -0.015em; line-height: 1.06; }
.rst-page-sub { font-family: var(--ff-display); font-style: italic; font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--tan); margin-top: 0.6rem; }

/* ── BREADCRUMB ───────────────────────────────────── */
.rst-breadcrumb { padding: 0.85rem var(--gutter); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.02em; 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(--oxblood); }
.rst-breadcrumb-sep { opacity: 0.4; }

/* ── SEARCH MODAL ─────────────────────────────────── */
.rst-search-overlay {
  position: fixed; inset: 0;
  background: rgba(34,40,43,0.6);
  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(--cream); border-radius: var(--radius-lg); padding: 1.5rem; width: min(560px, 90vw); box-shadow: var(--shadow-lift); border: 1px solid var(--hairline); }
.rst-search-input { width: 100%; padding: 0.78rem 1rem; border: 1.5px solid var(--hairline); border-radius: var(--radius-md); font-size: 1rem; color: var(--slate); background: var(--white); }
.rst-search-input:focus { outline: none; border-color: var(--slate); }
.rst-search-results { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; max-height: 300px; 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); text-decoration: none; }
.rst-search-result:hover { background: var(--cream-2); }
.rst-search-result img { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--hairline); }
.rst-search-result-name { font-size: 0.88rem; font-weight: 600; color: var(--slate); }
.rst-search-result-meta { font-family: var(--ff-body); font-size: 0.66rem; color: var(--text-muted); letter-spacing: 0.03em; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .rst-nav { display: none; }
  .rst-hamburger { display: flex; }
  .rst-hero { grid-template-columns: 1fr; min-height: auto; }
  .rst-hero-right { height: 48vw; min-height: 260px; order: -1; }
  .rst-hero-left::after { display: none; }
  .rst-thisweek-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .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; }
  .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-pdp-specs { grid-template-columns: 1fr; }
  .rst-cart-table th:nth-child(3), .rst-cart-table td:nth-child(3) { display: none; }
}

/* ── MOBILE NAV (show flex) ───────────────────────── */
@media (max-width: 900px) {
  .rst-mobile-nav.is-open { display: flex; }
}

/* ═══════════════════════════════════════════════════
   EDITORIAL JOURNAL LAYOUT  (home rebuild)
   Full-bleed hero · alternating feature bands · field notes · catalogue list
   Distinct from the shared "coffee" split-hero + card-grid architecture.
   ═══════════════════════════════════════════════════ */

/* ── CINEMATIC FULL-BLEED HERO ───────────────────── */
.rst-cine {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;            /* break out of any container to true full-bleed */
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;         /* headline sits bottom-left */
  overflow: hidden;
  isolation: isolate;
}
.rst-cine-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: -2;
}
.rst-cine-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(34,40,43,0.42) 0%, rgba(34,40,43,0.05) 26%, rgba(34,40,43,0.0) 46%, rgba(34,40,43,0.22) 70%, rgba(34,40,43,0.74) 100%);
}
.rst-cine-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(3.5rem, 9vh, 7rem);
  color: var(--cream);
}
.rst-cine-kicker {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.rst-cine-kicker::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--tan);
  opacity: 0.8;
}
.rst-cine-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 16ch;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.rst-cine-caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  color: rgba(243,237,224,0.92);
  margin-top: 1.4rem;
  max-width: 46ch;
  text-shadow: 0 1px 16px rgba(0,0,0,0.3);
}
.rst-cine-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2rem, 6vh, 4rem);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
}
.rst-cine-cue-label {
  font-family: var(--ff-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.rst-cine-cue-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--cream), rgba(243,237,224,0));
  animation: rst-cue 2.2s ease-in-out infinite;
}
@keyframes rst-cue { 0%,100% { transform: scaleY(0.55); transform-origin: top; opacity: 0.5; } 50% { transform: scaleY(1); opacity: 1; } }

/* ── FEATURE BANDS (alternating 50/50) ───────────── */
.rst-features {
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(1rem, 3vw, 2.5rem);
}
.rst-features-intro {
  max-width: var(--max-w);
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: 0 var(--gutter);
  text-align: center;
}
.rst-features-head {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin: 0.6rem 0 0.8rem;
}
.rst-features-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 48ch;
  margin: 0 auto;
}
.rst-feature {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.rst-feature + .rst-feature {
  border-top: 1px solid var(--hairline);
}
.rst-feature--flip .rst-feature-media { order: 2; }
.rst-feature--flip .rst-feature-text { order: 1; }
.rst-feature-media {
  position: relative;
  aspect-ratio: 5/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-2);
  box-shadow: var(--shadow-card);
}
.rst-feature-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0,0.1,1);
}
.rst-feature:hover .rst-feature-media img { transform: scale(1.04); }
.rst-feature-num {
  position: absolute;
  top: 0.75rem; left: 1rem;
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
  opacity: 0.85;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
  pointer-events: none;
}
.rst-feature-text { max-width: 38ch; }
.rst-feature--flip .rst-feature-text { margin-left: auto; }
.rst-feature-kicker {
  font-size: 0.7rem !important;
  margin-bottom: 0.6rem;
}
.rst-feature-name {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin-bottom: 0.85rem;
}
.rst-feature-name a { transition: color var(--anim); }
.rst-feature-name a:hover { color: var(--oxblood); }
.rst-feature-line {
  font-family: var(--ff-display);
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.rst-feature-spec {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--reed);
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--hairline);
}
.rst-feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.rst-feature-foot .rst-price { font-size: 1.6rem; }
.rst-feature-foot .rst-price-sub { display: inline; margin-left: 0.25rem; }
.rst-feature-ctas { display: flex; align-items: center; gap: 0.55rem; }

/* ── FIELD NOTES (3-column editorial journal) ────── */
.rst-fieldnotes {
  background: var(--slate);
  color: var(--cream);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}
.rst-fieldnotes::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: var(--rule-current) repeat-x center;
  background-size: 240px 12px;
  opacity: 0.5;
}
.rst-fieldnotes-head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(216,196,160,0.22);
}
.rst-fieldnotes .rst-eyebrow { color: var(--tan); }
.rst-fieldnotes-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.rst-fieldnotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
}
.rst-note { position: relative; padding-top: 0.5rem; }
.rst-note-no {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tan);
  letter-spacing: 0.05em;
}
.rst-note-tag {
  font-family: var(--ff-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0.9rem 0 0.5rem;
}
.rst-fieldnotes .rst-note-tag { color: #d98a7e; }
.rst-note-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 0.7rem;
}
.rst-note-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(243,237,224,0.74);
  margin-bottom: 1rem;
}
.rst-note-link {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tan);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--anim), color var(--anim);
}
.rst-note-link::after { content: '→'; }
.rst-note-link:hover { color: #fff; gap: 0.7rem; }

/* ── CATALOGUE LIST (text rows — home + shop) ─────── */
.rst-catalogue {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
}
.rst-catalogue-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.rst-catalogue-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--slate);
  margin-top: 0.4rem;
}
.rst-cat-list-head,
.rst-cat-row {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 2fr) auto auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}
.rst-cat-list-head {
  padding: 0 0 0.85rem;
  border-bottom: 2px solid var(--slate);
  font-family: var(--ff-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: var(--max-w);
  margin: 0 auto;
}
.rst-cat-list { border-top: 1px solid var(--hairline); }
.rst-shop-list { padding: 0; max-width: var(--max-w); margin: 0 auto; }
.rst-cat-row {
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline);
  transition: background var(--anim);
}
.rst-cat-row:hover { background: var(--cream-2); }
.rst-cat-row-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.rst-cat-row-name {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500;
  color: var(--slate);
  line-height: 1.15;
  transition: color var(--anim);
}
.rst-cat-row:hover .rst-cat-row-name { color: var(--oxblood); }
.rst-cat-row-type {
  font-size: 0.64rem !important;
  color: var(--text-muted) !important;
}
.rst-cat-row-spec {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--reed);
  min-width: 0;
}
.rst-cat-row-price {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--slate);
  text-align: right;
  white-space: nowrap;
}
.rst-cat-row-add { flex-shrink: 0; }

/* ── EDITORIAL LAYOUT — RESPONSIVE ────────────────── */
@media (max-width: 900px) {
  .rst-fieldnotes-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .rst-feature { grid-template-columns: 1fr; gap: 1.75rem; padding-top: clamp(2.5rem,8vw,3.5rem); padding-bottom: clamp(2.5rem,8vw,3.5rem); }
  .rst-feature-media { order: 1 !important; }
  .rst-feature-text { order: 2 !important; max-width: none; margin-left: 0 !important; }
  .rst-cat-list-head { display: none; }
  .rst-cat-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "main price"
      "spec add";
    row-gap: 0.5rem;
  }
  .rst-cat-row-main { grid-area: main; }
  .rst-cat-row-price { grid-area: price; }
  .rst-cat-row-spec { grid-area: spec; }
  .rst-cat-row-add { grid-area: add; justify-self: end; }
}
@media (max-width: 640px) {
  .rst-cine { min-height: 88svh; min-height: 88vh; }
  .rst-cine-cue { display: none; }
  .rst-feature-foot { align-items: flex-start; }
}

/* ═══ MOBILE / TABLET HEADER + OVERFLOW HARDENING ═══════════════════════
   Header fix for the transparent-over-hero bar: keep the brand legible over
   the photo, drop the crammed search control, and make the close (X) + brand
   visible once the cream full-screen menu is open. Layout-only, ≤768/≤480. */
@media (max-width: 768px) {
  /* Belt-and-braces against any full-bleed child poking past the viewport.
     overflow-x: clip avoids creating a scroll container (keeps position:sticky
     working on inner pages, unlike overflow-x: hidden). */
  html { overflow-x: clip; }
  body { overflow-x: clip; max-width: 100%; }

  /* The search control becomes a bare "Search" word on mobile (its icon is
     replaced by data-i18n text) and crowds the brand — the hamburger menu is
     the mobile entry point, so retire search from the bar here. */
  #rst-search-btn { display: none; }

  /* Give the wordmark room and keep it readable on the photo. */
  .rst-head-inner { gap: 0.75rem; }
  .rst-head-actions { gap: 0.25rem; }
  .rst-brandslot { font-size: 1.25rem; }

  /* Subtle scrim under the transparent header so the cream wordmark/icons
     stay legible over bright stretches of the hero image. */
  .rst-head--over::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(34,40,43,0.40) 0%, rgba(34,40,43,0.12) 60%, rgba(34,40,43,0) 100%);
  }
  .rst-head--over { isolation: isolate; }
  .rst-head--over .rst-brandslot { text-shadow: 0 1px 6px rgba(0,0,0,0.45); }

  /* When the full-screen cream menu is open, the transparent header's cream
     text/X would vanish on the cream backdrop. Flip header controls to slate
     so the brand and the close (X) are clearly visible and tappable. */
  .rst-head:has(.rst-hamburger.is-open) { background: transparent; }
  .rst-head:has(.rst-hamburger.is-open)::after { display: none; }
  .rst-head:has(.rst-hamburger.is-open) .rst-brandslot { color: var(--slate); text-shadow: none; }
  .rst-head:has(.rst-hamburger.is-open) .rst-brandslot::before { background: var(--oxblood); }
  .rst-head:has(.rst-hamburger.is-open) .rst-hamburger span { background: var(--slate); }
}

@media (max-width: 480px) {
  .rst-brandslot { font-size: 1.18rem; }
  .rst-head-inner { padding-left: 1rem; padding-right: 1rem; }
  /* Feature CTAs share a row comfortably on the narrowest phones. */
  .rst-feature-ctas { flex-wrap: wrap; }
}
