@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — Barbeum · Maison de rasage
   Prefix kept as rst- (inherited machinery) | DA: apothecary / heritage barber
   Cream paper · oxblood · steel/chrome · ink | high-contrast serif + small caps
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ────────────────────────────── */
:root {
  --paper:     #efe7d6;   /* warm cream paper */
  --paper-2:   #e7ddc8;   /* deeper paper */
  --paper-3:   #f4eee0;   /* light paper */
  --oxblood:   #6e1f24;   /* oxblood */
  --oxblood-2: #8a2f31;   /* lighter oxblood */
  --oxblood-3: #511418;   /* deep oxblood */
  --steel:     #8b8f93;   /* steel / chrome grey */
  --steel-2:   #b8bcc0;
  --steel-3:   #5f6469;
  --brass:     #9c7b3f;
  --brass-2:   #b89a55;
  --ink:       #241c17;   /* near-black ink */
  --ink-soft:  #4a3d33;
  --text:      #2b231d;
  --text-muted:#6a5b4e;
  --line:      #c9b48f;   /* hairline / rule */
  --line-soft: #d8c8a8;
  --white:     #faf6ec;
  --cream:     #f6f1e6;

  /* aliases used by inherited JS/HTML where coffee used these names */
  --espresso:  #241c17;
  --terracotta:#6e1f24;
  --sage:      #6e1f24;
  --kraft:     #c9b48f;
  --light-tan: #e7ddc8;
  --mid-tan:   #d8c8a8;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --ff-mono:    'Inter', system-ui, sans-serif; /* small-caps eyebrows use this tracked */

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

  --shadow-card: 0 1px 0 var(--line-soft), 0 10px 26px rgba(40,26,18,0.10);
  --shadow-lift: 0 2px 0 var(--oxblood), 0 16px 38px rgba(40,26,18,0.18);

  --max-w: 1320px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --anim: 0.24s cubic-bezier(.2,.7,.3,1);
}

/* ── 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.5vw + 0.8rem, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.35), transparent 42%),
    radial-gradient(circle at 82% 88%, rgba(110,31,36,0.05), transparent 50%);
  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: var(--oxblood); color: var(--cream); }
@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.6s ease, transform 0.6s ease; }
.rst-reveal.is-visible { opacity: 1; transform: none; }

/* small-caps eyebrow */
.rst-section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--oxblood);
  text-transform: uppercase;
}
.rst-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* engraved ornament divider used in section heads */
.rst-orn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  color: var(--oxblood); margin: 0.6rem 0;
}
.rst-orn::before, .rst-orn::after { content: ""; width: 46px; height: 1px; background: currentColor; opacity: 0.5; }
.rst-orn span { width: 7px; height: 7px; background: currentColor; transform: rotate(45deg); }

/* ── TICKER BAR ───────────────────────────────────── */
.rst-ticker {
  background: var(--ink);
  color: var(--paper-3);
  font-family: var(--ff-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-bottom: 2px solid var(--oxblood);
}
.rst-ticker-track { display: flex; animation: rst-ticker-scroll 32s linear infinite; }
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.6rem; color: var(--paper-3); }
.rst-ticker-item::before { content: '✶'; margin-right: 2.6rem; color: var(--oxblood-2); }
@keyframes rst-ticker-scroll { 0% { transform: translateX(0);} 100% { transform: translateX(-50%);} }

/* ── HEADER ───────────────────────────────────────── */
.rst-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,238,224,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--anim);
}
.rst-head--stuck { box-shadow: 0 6px 22px rgba(40,26,18,0.12); }
.rst-head-inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 70px; padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.rst-head--stuck .rst-head-inner { height: 60px; }

/* Brand wordmark: serif + small-caps maison */
.rst-brandslot {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 1.8vw, 1.7rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap; flex-shrink: 0;
  display: inline-flex; flex-direction: column; line-height: 0.96;
  transition: color var(--anim);
}
.rst-brandslot::after {
  content: "MAISON DE RASAGE";
  font-family: var(--ff-body); font-size: 0.46rem; font-weight: 600;
  letter-spacing: 0.34em; color: var(--oxblood); margin-top: 2px;
}
.rst-brandslot:hover { color: var(--oxblood); }

/* Nav */
.rst-nav { display: flex; align-items: center; gap: 0.1rem; flex: 1; justify-content: center; }
.rst-nav-link {
  font-family: var(--ff-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-muted); padding: 0.45rem 0.85rem; border-radius: var(--radius-sm);
  position: relative; transition: color var(--anim);
}
.rst-nav-link::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.28rem; height: 1px;
  background: var(--oxblood); transform: scaleX(0); transform-origin: left; transition: transform var(--anim);
}
.rst-nav-link:hover, .rst-nav-link.is-active { color: var(--ink); }
.rst-nav-link:hover::after, .rst-nav-link.is-active::after { transform: scaleX(1); }

/* Head actions */
.rst-head-actions { display: flex; align-items: center; gap: 0.35rem; flex-shrink: 0; }
.rst-head-btn {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 500; color: var(--ink-soft);
  padding: 0.45rem 0.55rem; border-radius: var(--radius-sm);
  position: relative; transition: color var(--anim), background var(--anim);
}
.rst-head-btn:hover { color: var(--oxblood); background: var(--paper-2); }
.rst-head-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  background: var(--oxblood); color: var(--cream);
  font-size: 0.62rem; 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: -1px; right: -3px;
}

/* Hamburger */
.rst-hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.rst-hamburger span { display: block; width: 23px; height: 2px; background: var(--ink); 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(--paper);
  z-index: 99; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; 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.7rem, 6vw, 2.6rem);
  font-weight: 600; color: var(--ink); transition: color var(--anim);
}
.rst-mobile-nav-link:hover { color: var(--oxblood); }

/* ── HERO ─────────────────────────────────────────── */
.rst-hero {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  min-height: clamp(540px, 76vh, 820px);
  border-bottom: 2px solid var(--oxblood);
  overflow: hidden;
}
.rst-hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem,4vw,4rem) clamp(2.5rem, 6vw, 5rem) var(--gutter);
  background:
    linear-gradient(180deg, var(--paper-3), var(--paper));
  position: relative;
}
.rst-hero-left::before {
  content: ""; position: absolute; inset: 1.4rem; border: 1px solid var(--line);
  pointer-events: none;
}
.rst-hero-left::after {
  content: ""; position: absolute; inset: 1.8rem; border: 1px solid var(--oxblood); opacity: 0.4;
  pointer-events: none;
}
.rst-hero-left > * { position: relative; z-index: 1; }
.rst-hero-badge {
  font-family: var(--ff-body); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--oxblood);
  border: 1px solid var(--oxblood); display: inline-block; padding: 0.3rem 0.85rem;
  border-radius: 2px; margin-bottom: 1.5rem; width: fit-content;
}
.rst-hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 1.4rem;
}
.rst-hero-headline em { font-style: italic; color: var(--oxblood); font-weight: 600; }
.rst-hero-lede {
  font-family: var(--ff-serif); font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  color: var(--ink-soft); max-width: 40ch; margin-bottom: 2rem; line-height: 1.5;
}
.rst-hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rst-hero-right { position: relative; overflow: hidden; background: var(--paper-2); border-left: 1px solid var(--line); }
.rst-hero-right img { width: 100%; height: 100%; object-fit: cover; }
.rst-hero-caption {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--ink); color: var(--paper-3);
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-left: 2px solid var(--oxblood);
}

/* ── BUTTONS ──────────────────────────────────────── */
.rst-btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 1.6rem; border-radius: var(--radius-sm);
  font-family: var(--ff-body); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: background var(--anim), color var(--anim), box-shadow var(--anim), transform var(--anim), border-color var(--anim);
}
.rst-btn:focus-visible { outline: 2.5px solid var(--oxblood); outline-offset: 3px; }
.rst-btn-primary { background: var(--oxblood); color: var(--cream); box-shadow: inset 0 0 0 1px var(--oxblood-3); }
.rst-btn-primary:hover { background: var(--oxblood-3); box-shadow: 0 6px 18px rgba(81,20,24,0.32); transform: translateY(-1px); }
.rst-btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.rst-btn-ghost:hover { background: var(--ink); color: var(--paper-3); }
.rst-btn-accent { background: var(--ink); color: var(--paper-3); }
.rst-btn-accent:hover { background: var(--oxblood); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(81,20,24,0.3); }
.rst-btn-white { background: var(--cream); color: var(--oxblood); border: 1px solid var(--cream); }
.rst-btn-white:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.rst-btn-sm { padding: 0.5rem 0.95rem; font-size: 0.66rem; }

/* ── FEATURED / THIS WEEK STRIP ───────────────────── */
.rst-thisweek {
  background: var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(2.6rem, 5vw, 4.5rem) var(--gutter);
  position: relative;
}
.rst-thisweek-header { text-align: center; margin-bottom: 2.4rem; }
.rst-thisweek-header .rst-section-title { margin-top: 0.3rem; }
.rst-thisweek-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: var(--max-w); margin: 0 auto; }

/* ── KEY SPEC METER (repurposed roast meter → spec chip line) ─────── */
.rst-roast-meter {
  display: inline-flex; align-items: center; gap: 0.5rem; margin: 0.15rem 0;
  font-family: var(--ff-body);
}
.rst-roast-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oxblood); white-space: nowrap;
  border: 1px solid var(--line); background: var(--paper-3);
  padding: 0.18rem 0.5rem; border-radius: 2px;
}
.rst-roast-track { display: none; }   /* not used in this DA */
.rst-roast-fill { display: none; }

/* ── PRODUCT CARD (apothecary label) ──────────────── */
.rst-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden; display: flex; flex-direction: column;
  position: relative;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-card::before {
  content: ""; position: absolute; inset: 6px; border: 1px solid var(--line-soft);
  pointer-events: none; z-index: 2; border-radius: 1px;
}
.rst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--oxblood); }
.rst-card-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--paper-3); border-bottom: 1px solid var(--line);
}
.rst-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rst-card:hover .rst-card-img-wrap img { transform: scale(1.04); }
.rst-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: 0.5rem; }
.rst-card-cat {
  font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.18em; color: var(--oxblood); text-transform: uppercase;
}
.rst-card-name {
  font-family: var(--ff-display); font-size: 1.16rem; font-weight: 600; line-height: 1.2;
  color: var(--ink); letter-spacing: -0.005em;
}
.rst-card-name a { transition: color var(--anim); }
.rst-card-name a:hover { color: var(--oxblood); }
.rst-card-chips { display: flex; flex-wrap: wrap; gap: 0.35rem; margin: 0.1rem 0; }
.rst-chip {
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.04em; color: var(--ink-soft);
  background: var(--paper-2); border: 1px solid var(--line-soft);
  padding: 0.18rem 0.55rem; border-radius: 2px;
}
.rst-chip-accent { background: var(--oxblood); color: var(--cream); border-color: var(--oxblood-3); }
.rst-card-short { font-family: var(--ff-serif); font-size: 1.02rem; line-height: 1.4; color: var(--ink-soft); flex: 1; }
.rst-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.5rem; padding-top: 0.8rem; border-top: 1px solid var(--line-soft);
}
.rst-price { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--oxblood); }
.rst-price-sub { font-family: var(--ff-body); font-size: 0.66rem; color: var(--text-muted); margin-left: 0.15rem; }

/* ── ORIGINS ROW → "THE RITUAL" steps ─────────────── */
.rst-origins { padding: clamp(2.8rem, 5vw, 5rem) var(--gutter); }
.rst-origins .rst-section-title { text-align: center; }
.rst-origins-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  max-width: var(--max-w); margin: 2.2rem auto 0;
}
.rst-origin-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; position: relative;
}
.rst-origin-img { aspect-ratio: 8/5; overflow: hidden; background: var(--paper-3); border-bottom: 1px solid var(--line); }
.rst-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-origin-body { padding: 1rem 1.1rem 1.2rem; }
.rst-origin-country { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.rst-origin-meta { font-family: var(--ff-body); font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }
.rst-origin-meta span { color: var(--ink); font-weight: 500; }

/* ── BREW SELECTOR → "TYPES" tabs ─────────────────── */
.rst-brew { padding: clamp(2.8rem, 5vw, 5rem) var(--gutter); background: var(--ink); color: var(--paper-3); }
.rst-brew .rst-section-label { color: var(--brass-2); }
.rst-brew .rst-section-title { color: var(--paper-3); }
.rst-brew-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.6rem 0 2rem; }
.rst-brew-tab {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper-3); opacity: 0.6; padding: 0.6rem 1.1rem;
  border: 1px solid rgba(201,180,143,0.3); border-radius: 2px; transition: all var(--anim);
}
.rst-brew-tab:hover { opacity: 1; }
.rst-brew-tab.is-active { opacity: 1; background: var(--oxblood); border-color: var(--oxblood); color: var(--cream); }
.rst-brew-panel { display: none; }
.rst-brew-panel.is-active { display: grid; grid-template-columns: 1fr 2fr; gap: 1.6rem; align-items: start; }
.rst-brew-desc { font-family: var(--ff-serif); font-size: 1.3rem; line-height: 1.5; color: var(--paper-3); }
.rst-brew-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.rst-brew-card {
  background: rgba(244,238,224,0.05); border: 1px solid rgba(201,180,143,0.25);
  border-radius: 2px; padding: 1rem 1.1rem; transition: all var(--anim);
}
.rst-brew-card:hover { background: rgba(244,238,224,0.1); border-color: var(--brass-2); }
.rst-brew-card-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--paper-3); margin-bottom: 0.2rem; }
.rst-brew-card-origin { font-family: var(--ff-body); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--brass-2); text-transform: uppercase; }

/* ── MAISON STORY BAND (sub-band) ─────────────────── */
.rst-sub-band {
  padding: clamp(3rem, 6vw, 5.5rem) var(--gutter);
  background:
    linear-gradient(180deg, var(--oxblood), var(--oxblood-3));
  color: var(--cream); position: relative; overflow: hidden;
}
.rst-sub-band::before {
  content: "N"; position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-display); font-size: 26rem; font-weight: 900; color: rgba(246,241,230,0.05);
  line-height: 1; pointer-events: none;
}
.rst-sub-inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.rst-sub-headline { font-family: var(--ff-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; margin-bottom: 1rem; line-height: 1.1; }
.rst-sub-lede { font-family: var(--ff-serif); font-size: clamp(1.15rem, 1.6vw, 1.4rem); line-height: 1.55; opacity: 0.92; margin-bottom: 1.6rem; }
.rst-sub-details { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; margin-bottom: 1.8rem; }
.rst-sub-detail {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; padding-left: 1.3rem;
}
.rst-sub-detail::before { content: "✶"; position: absolute; left: 0; color: var(--brass-2); }

/* ── FEATURED GRID ────────────────────────────────── */
.rst-featured { padding: clamp(2.8rem, 5vw, 5rem) var(--gutter); }
.rst-featured-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 2rem; max-width: var(--max-w); margin-inline: auto;
  border-bottom: 2px solid var(--oxblood); padding-bottom: 1rem;
}
.rst-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: var(--max-w); margin: 0 auto; }

/* ── JOURNAL → "FROM THE MAISON" ──────────────────── */
.rst-journal { padding: clamp(2.8rem, 5vw, 5rem) var(--gutter); background: var(--paper-2); border-top: 1px solid var(--line); }
.rst-journal .rst-section-title { text-align: center; margin-bottom: 2rem; }
.rst-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; max-width: var(--max-w); margin: 0 auto; }
.rst-article-card { background: var(--cream); border: 1px solid var(--line); 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-card); }
.rst-article-img { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); border-bottom: 1px solid var(--line); }
.rst-article-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-article-body { padding: 1.2rem 1.3rem 1.4rem; }
.rst-article-tag { font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 0.5rem; }
.rst-article-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; line-height: 1.25; color: var(--ink); margin-bottom: 0.5rem; }
.rst-article-excerpt { font-family: var(--ff-serif); font-size: 1.02rem; line-height: 1.45; color: var(--ink-soft); margin-bottom: 0.8rem; }
.rst-article-link { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oxblood); }
.rst-article-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ── NEWSLETTER ───────────────────────────────────── */
.rst-newsletter { padding: clamp(3rem, 6vw, 5rem) var(--gutter); background: var(--paper); text-align: center; border-top: 1px solid var(--line); }
.rst-newsletter-inner { max-width: 560px; margin: 0 auto; }
.rst-newsletter-title { font-family: var(--ff-display); font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; }
.rst-newsletter-desc { font-family: var(--ff-serif); font-size: 1.15rem; line-height: 1.5; color: var(--ink-soft); margin-bottom: 1.6rem; }
.rst-newsletter-form { display: flex; gap: 0.6rem; max-width: 440px; margin: 0 auto; }
.rst-newsletter-input {
  flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--ink); background: var(--cream);
  border-radius: 2px; color: var(--ink); font-family: var(--ff-body);
}
.rst-newsletter-input:focus { outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 3px rgba(110,31,36,0.12); }
.rst-newsletter-privacy { font-family: var(--ff-body); font-size: 0.72rem; color: var(--text-muted); margin-top: 0.9rem; }

/* ── FOOTER ───────────────────────────────────────── */
.rst-foot { background: var(--ink); color: var(--paper-3); padding: clamp(2.8rem, 5vw, 4rem) var(--gutter) 1.5rem; border-top: 3px solid var(--oxblood); }
.rst-foot-grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 2rem; max-width: var(--max-w); margin: 0 auto 2.2rem; }
.rst-foot-brand { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 800; color: var(--paper-3); margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.rst-foot-tagline { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--brass-2); margin-bottom: 1rem; line-height: 1.4; }
.rst-foot-address { font-family: var(--ff-body); font-size: 0.82rem; color: rgba(244,238,224,0.7); line-height: 1.7; margin-bottom: 0.8rem; }
.rst-foot-hours { font-family: var(--ff-body); font-size: 0.8rem; color: rgba(244,238,224,0.55); line-height: 1.7; }
.rst-foot-col h4 { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 0.9rem; }
.rst-foot-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.rst-foot-col a { font-family: var(--ff-body); font-size: 0.86rem; color: rgba(244,238,224,0.78); transition: color var(--anim); }
.rst-foot-col a:hover { color: var(--paper-3); }
.rst-foot-lang { display: flex; gap: 0.4rem; justify-content: center; flex-wrap: wrap; max-width: var(--max-w); margin: 0 auto 1.4rem; padding-top: 1.4rem; border-top: 1px solid rgba(201,180,143,0.2); }
.rst-lang-btn {
  font-family: var(--ff-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em;
  color: rgba(244,238,224,0.6); padding: 0.3rem 0.7rem; border: 1px solid rgba(201,180,143,0.25); border-radius: 2px;
  transition: all var(--anim);
}
.rst-lang-btn:hover { color: var(--paper-3); border-color: var(--brass-2); }
.rst-lang-btn.is-active { background: var(--oxblood); color: var(--cream); border-color: var(--oxblood); }
.rst-foot-fine { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: var(--max-w); margin: 0 auto; font-family: var(--ff-body); font-size: 0.74rem; color: rgba(244,238,224,0.5); }
.rst-foot-fine-links { display: flex; gap: 1.2rem; }
.rst-foot-fine-links a:hover { color: var(--paper-3); }

/* ── CART DRAWER ──────────────────────────────────── */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(36,28,23,0.5); opacity: 0; visibility: hidden; transition: opacity var(--anim), visibility var(--anim); z-index: 200; }
.rst-cart-overlay.is-visible { opacity: 1; visibility: visible; }
.rst-drawer {
  position: fixed; top: 0; right: 0; width: min(420px, 90vw); height: 100%;
  background: var(--paper); border-left: 2px solid var(--oxblood);
  z-index: 201; transform: translateX(100%); transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; box-shadow: -12px 0 40px rgba(36,28,23,0.2);
}
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--line); }
.rst-drawer-title { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.rst-drawer-close { font-size: 1.6rem; color: var(--text-muted); line-height: 1; transition: color var(--anim); }
.rst-drawer-close:hover { color: var(--oxblood); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.rst-drawer-empty { font-family: var(--ff-serif); font-size: 1.1rem; color: var(--text-muted); text-align: center; padding: 2.5rem 0; }
.rst-drawer-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 0.85rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.rst-drawer-item-img { width: 56px; height: 56px; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; background: var(--paper-3); }
.rst-drawer-item-name { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.rst-drawer-item-meta { font-family: var(--ff-body); font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.rst-drawer-item-price { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700; color: var(--oxblood); }
.rst-drawer-remove { font-size: 1.2rem; color: var(--text-muted); line-height: 1; align-self: start; transition: color var(--anim); }
.rst-drawer-remove:hover { color: var(--oxblood); }
.rst-qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; background: var(--cream); }
.rst-qty-btn { width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 0.95rem; transition: background var(--anim); }
.rst-qty-btn:hover { background: var(--paper-2); }
.rst-qty-val { min-width: 28px; text-align: center; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 600; }
.rst-drawer-foot { padding: 1.2rem 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-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--oxblood); letter-spacing: 0; }
.rst-drawer-foot .rst-btn { width: 100%; justify-content: center; }
body.rst-drawer-lock { overflow: hidden; }

/* ── TOAST ────────────────────────────────────────── */
#rst-toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; align-items: center; }
.rst-toast { background: var(--ink); color: var(--paper-3); font-family: var(--ff-body); font-size: 0.82rem; padding: 0.7rem 1.2rem; border-radius: 2px; border-left: 3px solid var(--oxblood); opacity: 0; transform: translateY(12px); transition: opacity var(--anim), transform var(--anim); box-shadow: 0 8px 24px rgba(36,28,23,0.25); }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ── SHOP PAGE ────────────────────────────────────── */
.rst-shop-header { padding: clamp(1.6rem, 3vw, 2.5rem) var(--gutter) 0; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.rst-shop-title { font-family: var(--ff-display); font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; color: var(--ink); margin: 0.5rem 0 1.2rem; }
.rst-shop-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-bottom: 1.2rem; }
.rst-filter-chips { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.rst-filter-chip {
  font-family: var(--ff-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line);
  padding: 0.5rem 0.9rem; border-radius: 2px; transition: all var(--anim);
}
.rst-filter-chip:hover { border-color: var(--oxblood); color: var(--oxblood); }
.rst-filter-chip.is-active { background: var(--oxblood); color: var(--cream); border-color: var(--oxblood-3); }
.rst-sort-select { font-family: var(--ff-body); font-size: 0.8rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 2px; padding: 0.45rem 0.7rem; }
.rst-shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; max-width: var(--max-w); margin: 0 auto; padding: clamp(1.6rem,3vw,2.6rem) var(--gutter) clamp(3rem,6vw,5rem); }

/* ── PRODUCT PAGE (fiche) ─────────────────────────── */
.rst-pdp { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); max-width: var(--max-w); margin: 0 auto; padding: clamp(1.5rem,3vw,2.5rem) var(--gutter) clamp(3rem,6vw,5rem); }
.rst-pdp-gallery { position: sticky; top: 90px; align-self: start; }
.rst-pdp-main-img { aspect-ratio: 4/3; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-3); position: relative; }
.rst-pdp-main-img::after { content: ""; position: absolute; inset: 8px; border: 1px solid var(--line-soft); pointer-events: none; }
.rst-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-thumbs { display: flex; gap: 0.6rem; margin-top: 0.7rem; }
.rst-pdp-thumb { width: 78px; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; background: var(--paper-3); transition: border-color var(--anim); }
.rst-pdp-thumb.is-active { border-color: var(--oxblood); box-shadow: 0 0 0 1px var(--oxblood); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-cat { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 0.6rem; }
.rst-pdp-name { font-family: var(--ff-display); font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 800; line-height: 1.05; color: var(--ink); margin-bottom: 1.3rem; }
.rst-pdp-specs { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.3rem; background: var(--cream); }
.rst-pdp-spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 1rem; border-bottom: 1px solid var(--line-soft); }
.rst-pdp-spec-row:last-child { border-bottom: none; }
.rst-pdp-spec-row:nth-child(odd) { background: var(--paper-3); }
.rst-pdp-spec-key { font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--oxblood); }
.rst-pdp-spec-val { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--ink); text-align: right; }
.rst-pdp-notes-title, .rst-selector-label { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.55rem; }
.rst-pdp-notes-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.rst-selector-options { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.rst-selector-opt {
  font-family: var(--ff-body); font-size: 0.75rem; font-weight: 500; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); padding: 0.5rem 0.9rem; border-radius: 2px; transition: all var(--anim);
}
.rst-selector-opt:hover { border-color: var(--oxblood); }
.rst-selector-opt.is-active { background: var(--ink); color: var(--paper-3); border-color: var(--ink); }
.rst-pdp-price-row { display: flex; align-items: baseline; gap: 0.5rem; margin: 1.4rem 0 0.4rem; }
.rst-pdp-price { font-family: var(--ff-display); font-size: 2rem; font-weight: 800; color: var(--oxblood); }
.rst-pdp-price-unit { font-family: var(--ff-body); font-size: 0.8rem; color: var(--text-muted); }
.rst-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin: 1rem 0; }
.rst-pdp-qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; background: var(--cream); }
.rst-pdp-qty-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; color: var(--ink); font-size: 1.1rem; transition: background var(--anim); }
.rst-pdp-qty-btn:hover { background: var(--paper-2); }
.rst-pdp-qty-val { min-width: 40px; text-align: center; font-family: var(--ff-body); font-weight: 600; }
.rst-pdp-atc { width: 100%; justify-content: center; padding: 0.95rem; font-size: 0.78rem; }
.rst-pdp-atc:disabled { opacity: 0.5; cursor: not-allowed; }
.rst-pdp-long { font-family: var(--ff-serif); font-size: 1.18rem; line-height: 1.6; color: var(--ink-soft); }
.rst-pdp-long p { margin-bottom: 1rem; }
.rst-pdp-brew-rec { margin-top: 1.4rem; padding: 1.1rem 1.3rem; background: var(--paper-2); border-left: 3px solid var(--oxblood); border-radius: 2px; }
.rst-pdp-brew-rec-label { font-family: var(--ff-body); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--oxblood); margin-bottom: 0.4rem; }
.rst-pdp-brew-rec p { font-size: 1.05rem; margin: 0; }

/* ── RELATED ──────────────────────────────────────── */
.rst-related { padding: clamp(2.5rem,5vw,4rem) var(--gutter); background: var(--paper-2); border-top: 1px solid var(--line); }
.rst-related .rst-section-title { text-align: center; margin-bottom: 2rem; }
.rst-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; max-width: var(--max-w); margin: 0 auto; }

/* ── CART PAGE ────────────────────────────────────── */
.rst-cart-page { max-width: 980px; margin: 0 auto; padding: clamp(1.5rem,3vw,2.5rem) var(--gutter) clamp(3rem,6vw,5rem); }
.rst-cart-page-title { font-family: var(--ff-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--ink); margin: 0.5rem 0 1.5rem; }
.rst-cart-table { width: 100%; border-collapse: collapse; }
.rst-cart-table thead th { font-family: var(--ff-body); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--oxblood); text-align: left; padding: 0.7rem 0.6rem; border-bottom: 2px solid var(--oxblood); }
.rst-cart-table tbody td { padding: 1rem 0.6rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.rst-cart-item-img { width: 64px; height: 64px; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; background: var(--paper-3); }
.rst-cart-item-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.rst-cart-item-name a:hover { color: var(--oxblood); }
.rst-cart-item-meta { font-family: var(--ff-body); font-size: 0.74rem; color: var(--text-muted); margin-top: 0.2rem; }
.rst-cart-totals { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.rst-cart-total-row { display: flex; align-items: baseline; gap: 2rem; font-family: var(--ff-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.rst-cart-total-row strong { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 800; color: var(--oxblood); letter-spacing: 0; }
.rst-cart-actions { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.rst-about-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; max-width: var(--max-w); margin: 0 auto; padding: clamp(2rem,4vw,3.5rem) var(--gutter); }
.rst-about-lead { font-family: var(--ff-serif); font-size: clamp(1.3rem,2vw,1.7rem); line-height: 1.45; color: var(--ink); }
.rst-about-img { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--paper-3); aspect-ratio: 4/3; }
.rst-about-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-about-text { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter) clamp(2rem,4vw,3rem); font-family: var(--ff-serif); font-size: 1.18rem; line-height: 1.65; color: var(--ink-soft); }
.rst-about-text p { margin-bottom: 1.1rem; }
.rst-about-values { background: var(--paper-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.4rem; max-width: var(--max-w); margin: 1.8rem auto 0; }
.rst-value-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.6rem 1.5rem; position: relative; }
.rst-value-num { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 800; font-style: italic; color: var(--oxblood); margin-bottom: 0.6rem; }
.rst-value-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.rst-value-body { font-family: var(--ff-serif); font-size: 1.05rem; line-height: 1.5; color: var(--ink-soft); }
.rst-about-process { max-width: var(--max-w); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) var(--gutter); }
.rst-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 1.8rem; counter-reset: step; }
.rst-process-step { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.4rem 1.3rem; position: relative; }
.rst-process-step::before { counter-increment: step; content: "0" counter(step); font-family: var(--ff-display); font-size: 0.9rem; font-weight: 700; color: var(--oxblood); display: block; margin-bottom: 0.5rem; letter-spacing: 0.1em; }
.rst-process-step h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.rst-process-step p { font-family: var(--ff-serif); font-size: 1rem; line-height: 1.45; color: var(--ink-soft); }

/* ── CONTACT PAGE ─────────────────────────────────── */
.rst-contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); max-width: var(--max-w); margin: 0 auto; padding: clamp(2rem,4vw,3rem) var(--gutter) clamp(3rem,6vw,5rem); }
.rst-contact-title { font-family: var(--ff-display); font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; color: var(--ink); margin-bottom: 0.8rem; }
.rst-contact-intro { font-family: var(--ff-serif); font-size: 1.18rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 1.5rem; }
.rst-contact-meta { font-family: var(--ff-body); font-size: 0.92rem; line-height: 1.9; color: var(--ink); }
.rst-contact-meta strong { color: var(--oxblood); font-weight: 600; }
.rst-form { display: flex; flex-direction: column; gap: 1rem; }
.rst-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.rst-form-label { font-family: var(--ff-body); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); }
.rst-form-input, .rst-form-textarea, .rst-form-select { padding: 0.7rem 0.9rem; border: 1px solid var(--line); background: var(--cream); border-radius: 2px; color: var(--ink); font-family: var(--ff-body); }
.rst-form-input:focus, .rst-form-textarea:focus, .rst-form-select:focus { outline: none; border-color: var(--oxblood); box-shadow: 0 0 0 3px rgba(110,31,36,0.12); }
.rst-form-textarea { resize: vertical; min-height: 130px; }
.rst-form-success { font-family: var(--ff-serif); font-size: 1.15rem; color: var(--oxblood); padding: 1rem; background: var(--paper-2); border-left: 3px solid var(--oxblood); border-radius: 2px; }

/* ── PAGE HERO BAND ───────────────────────────────── */
.rst-page-hero { background: var(--ink); color: var(--paper-3); padding: clamp(2.4rem,5vw,3.6rem) var(--gutter); border-bottom: 2px solid var(--oxblood); }
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.rst-page-title { font-family: var(--ff-display); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: var(--paper-3); margin-top: 0.4rem; }
.rst-page-sub { font-family: var(--ff-serif); font-size: clamp(1.15rem,1.6vw,1.4rem); color: var(--brass-2); margin-top: 0.5rem; max-width: 56ch; }
.rst-page-hero .rst-section-label { color: var(--brass-2); }

/* ── BREADCRUMB ───────────────────────────────────── */
.rst-breadcrumb { font-family: var(--ff-body); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-muted); padding: 0.85rem 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.rst-breadcrumb a:hover { color: var(--oxblood); }
.rst-breadcrumb-sep { color: var(--line); }

/* ── LEGAL PAGES ──────────────────────────────────── */
.rst-legal-wrap { max-width: 760px; margin: 0 auto; padding: clamp(2rem,4vw,3rem) var(--gutter) clamp(3rem,6vw,5rem); }
.rst-legal-meta { font-family: var(--ff-body); font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.rst-legal-section { margin-bottom: 1.8rem; }
.rst-legal-section h2 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.6rem; }
.rst-legal-section h3 { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin: 0.9rem 0 0.4rem; }
.rst-legal-section p, .rst-legal-section li { font-family: var(--ff-serif); font-size: 1.1rem; line-height: 1.6; color: var(--ink-soft); margin-bottom: 0.6rem; }
.rst-legal-section ul { padding-left: 1.3rem; list-style: disc; }

/* ── SEARCH MODAL ─────────────────────────────────── */
.rst-search-overlay { position: fixed; inset: 0; background: rgba(36,28,23,0.6); backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity var(--anim), visibility var(--anim); z-index: 250; padding-top: 12vh; }
.rst-search-overlay.is-open { opacity: 1; visibility: visible; }
.rst-search-box { max-width: 620px; margin: 0 auto; padding: 0 1.5rem; }
.rst-search-input { width: 100%; padding: 1.1rem 1.3rem; font-family: var(--ff-display); font-size: 1.3rem; color: var(--ink); background: var(--paper); border: 2px solid var(--oxblood); border-radius: var(--radius-md); }
.rst-search-input:focus { outline: none; }
.rst-search-results { background: var(--paper); border-radius: var(--radius-md); margin-top: 0.6rem; max-height: 56vh; overflow-y: auto; }
.rst-search-result { display: flex; align-items: center; gap: 0.85rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line-soft); transition: background var(--anim); }
.rst-search-result:hover { background: var(--paper-2); }
.rst-search-result img { width: 46px; height: 46px; object-fit: cover; border: 1px solid var(--line); border-radius: 2px; background: var(--paper-3); }
.rst-search-result-name { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--ink); }
.rst-search-result-meta { font-family: var(--ff-body); font-size: 0.72rem; color: var(--text-muted); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1080px) {
  .rst-shop-grid, .rst-related-grid { grid-template-columns: repeat(3, 1fr); }
  .rst-foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .rst-origins-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .rst-nav { display: none; }
  .rst-hamburger { display: flex; }
  .rst-mobile-nav { display: flex; }
  .rst-hero { grid-template-columns: 1fr; }
  .rst-hero-right { min-height: 320px; order: -1; }
  .rst-pdp { grid-template-columns: 1fr; }
  .rst-pdp-gallery { position: static; }
  .rst-brew-panel.is-active { grid-template-columns: 1fr; }
  .rst-about-hero, .rst-contact-wrap { grid-template-columns: 1fr; }
  .rst-thisweek-grid, .rst-featured-grid, .rst-journal-grid, .rst-values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .rst-shop-grid, .rst-related-grid, .rst-thisweek-grid, .rst-featured-grid, .rst-journal-grid, .rst-values-grid, .rst-origins-grid, .rst-process-steps, .rst-brew-grid { grid-template-columns: 1fr; }
  .rst-foot-grid { grid-template-columns: 1fr 1fr; }
  .rst-featured-header { flex-direction: column; align-items: flex-start; }
  .rst-newsletter-form { flex-direction: column; }
  .rst-cart-actions { flex-direction: column; align-items: stretch; }
  .rst-cart-actions .rst-btn { width: 100%; justify-content: center; }
}

/* ── MOBILE NAV (show flex when open already handled) ── */
