@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — CORDAVEL · Traditional & Target Archery
   Concept: "lane card" heritage-precision.
   Hero with vertical shooting-lane motif; target-ring section
   dividers; staggered 2-column shop list with spec lines; PDP
   technical sheet. Palette: forest / leather tan / arrow red / bone.
   Fonts: Bitter (slab serif) + Outfit (geometric sans).
   Prefix kept as rst- so cart.js / i18n.js hooks keep working.
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── Custom properties ────────────────────────────── */
:root {
  --forest:    #1e3a2e;   /* deep forest green — primary ink */
  --forest-dk: #15281f;
  --forest-lt: #2c5142;
  --tan:       #b98a52;   /* leather tan — secondary */
  --tan-dk:    #9c7038;
  --arrow:     #9a2d20;   /* arrow red — accent */
  --arrow-dk:  #7e2419;
  --bone:      #efe9dd;   /* bone — page ground */
  --bone-2:    #e6ddcc;
  --bone-3:    #dcd0ba;
  --paper:     #f7f3ea;   /* lighter card paper */
  --white:     #fffdf8;
  --ink:       #1e2b24;   /* body text */
  --ink-soft:  #5d6b62;   /* muted text */

  /* engine-compatibility aliases (old class internals reference these) */
  --espresso:  var(--forest);
  --terracotta:var(--arrow);
  --kraft:     var(--bone-3);
  --light-tan: var(--bone-2);
  --mid-tan:   var(--bone-3);
  --text:      var(--ink);
  --text-muted:var(--ink-soft);

  --ff-display: 'Bitter', Georgia, serif;
  --ff-body:    'Outfit', system-ui, sans-serif;
  --ff-mono:    'Outfit', system-ui, sans-serif;

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

  --shadow-card: 0 2px 14px rgba(21,40,31,0.08);
  --shadow-lift: 0 14px 34px rgba(21,40,31,0.18);

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

  /* target-ring divider, reused as background image */
  --ring: radial-gradient(circle at 50% 50%,
            transparent 0 9px, var(--arrow) 9px 12px,
            transparent 12px 19px, var(--white) 19px 22px,
            transparent 22px 31px, var(--forest) 31px 34px, transparent 34px);
}

/* ── 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.55vw + 0.75rem, 1.05rem);
  line-height: 1.62;
  color: var(--ink);
  background: var(--bone);
  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; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

.rst-section-label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--tan-dk);
  text-transform: uppercase;
}
.rst-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.01em;
  line-height: 1.12;
}

/* Target-ring divider element */
.rst-ringdiv {
  height: 46px;
  background-image: var(--ring);
  background-repeat: repeat-x;
  background-position: center;
  background-size: 46px 46px;
  opacity: 0.9;
  margin: 0;
}

/* ── TICKER BAR ───────────────────────────────────── */
.rst-ticker {
  background: var(--forest-dk);
  color: var(--bone-2);
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  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; }
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.5rem; color: var(--bone-2); }
.rst-ticker-item::before { content: '◆'; margin-right: 2.5rem; color: var(--tan); font-size: 0.6rem; }
@keyframes rst-ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER — archetype E "minimal": brand left · Menu/cart right,
      nav lives in a slide-in panel at every width ──────── */
.rst-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(239,233,221,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bone-3);
  transition: box-shadow var(--anim);
}
.rst-head--stuck { box-shadow: 0 3px 18px rgba(21,40,31,0.12); }
.rst-head-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  height: 66px; padding: 0 var(--gutter);
  max-width: var(--max-w); margin: 0 auto;
}
.rst-head--stuck .rst-head-inner { height: 58px; }

/* Brand slot — wordmark with arrow glyph */
.rst-brandslot {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  white-space: nowrap; flex-shrink: 0;
  transition: color var(--anim);
}
.rst-brandslot::before {
  content: ""; width: 20px; height: 20px; flex-shrink: 0;
  background: var(--arrow);
  -webkit-mask: var(--brand-mark) center/contain no-repeat;
          mask: var(--brand-mark) center/contain no-repeat;
  --brand-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='black'/%3E%3C/svg%3E");
}
.rst-brandslot:hover { color: var(--arrow); }

/* Head actions (right cluster) */
.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(--ink-soft); padding: 0.4rem 0.55rem; border-radius: var(--radius-sm);
  transition: color var(--anim), background var(--anim); position: relative;
}
.rst-head-btn:hover { color: var(--forest); background: var(--bone-2); }
.rst-head-btn svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.rst-cart-badge {
  background: var(--arrow); color: var(--white); 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: -3px; right: -4px;
}

/* Menu button — pill with hamburger glyph + label, shown at ALL widths */
.rst-hamburger {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.46rem 0.95rem 0.46rem 0.8rem;
  border: 1.5px solid var(--tan); border-radius: 999px;
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest);
  transition: background var(--anim), border-color var(--anim), color var(--anim);
}
.rst-hamburger:hover { background: var(--forest); border-color: var(--forest); color: var(--bone); }
.rst-hamburger:hover .rst-burger span { background: var(--bone); }
.rst-hamburger:focus-visible { outline: 2.5px solid var(--arrow); outline-offset: 3px; }
.rst-burger { display: inline-flex; flex-direction: column; gap: 4px; width: 18px; }
.rst-burger span { display: block; width: 18px; height: 2px; background: var(--forest); border-radius: 1px; transition: transform var(--anim), opacity var(--anim), background var(--anim); }
.rst-hamburger.is-open .rst-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rst-hamburger.is-open .rst-burger span:nth-child(2) { opacity: 0; }
.rst-hamburger.is-open .rst-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.rst-menu-label { display: inline; }

/* ── NAV PANEL (the slide-in menu, all widths) ───────── */
/* id/class kept as rst-mobile-nav so the existing JS hooks keep working */
.rst-mobile-nav {
  display: flex; flex-direction: column;
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 130;
  width: min(440px, 90vw);
  background: linear-gradient(165deg, var(--forest-lt), var(--forest) 48%, var(--forest-dk));
  color: var(--bone);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.5rem, 3.5vw, 2.6rem) clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: -24px 0 60px rgba(21,40,31,0.42);
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto; overscroll-behavior: contain;
  visibility: hidden;
}
.rst-mobile-nav.is-open { transform: translateX(0); visibility: visible; }
/* scrim behind the panel — driven by panel state via :has(), so no
   extra JS is needed beyond the existing hamburger toggle */
.rst-navpanel-scrim {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(21,40,31,0.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity 0.32s ease, visibility 0.32s ease;
}
.rst-navpanel-scrim.is-open,
body:has(#rst-mobile-nav.is-open) .rst-navpanel-scrim { opacity: 1; visibility: visible; }

.rst-navpanel-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-bottom: 1.1rem; margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--forest-lt);
}
.rst-navpanel-brand {
  font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700;
  letter-spacing: 0.02em; color: var(--bone);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.rst-navpanel-brand::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0; background: var(--tan);
  -webkit-mask: var(--brand-mark) center/contain no-repeat; mask: var(--brand-mark) center/contain no-repeat;
  --brand-mark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Ccircle cx='12' cy='12' r='4' fill='black'/%3E%3C/svg%3E");
}
.rst-navpanel-close {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--forest-lt); color: var(--bone-2); font-size: 1.4rem; line-height: 1;
  transition: background var(--anim), color var(--anim), border-color var(--anim);
}
.rst-navpanel-close:hover { background: var(--arrow); border-color: var(--arrow); color: var(--white); }

.rst-navpanel-label {
  font-family: var(--ff-body); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tan); margin: 1.3rem 0 0.4rem;
}
.rst-mobile-nav-link {
  display: flex; align-items: baseline; gap: 0.9rem;
  font-family: var(--ff-display); font-size: clamp(1.5rem, 4.5vw, 2rem); font-weight: 500;
  color: var(--bone); line-height: 1.1;
  padding: 0.62rem 0; border-bottom: 1px solid rgba(185,138,82,0.22);
  transition: color var(--anim), padding-left var(--anim);
}
.rst-mobile-nav-link:hover { color: var(--tan); padding-left: 0.4rem; }
.rst-mobile-nav-link.is-active { color: var(--tan); }

.rst-navpanel-foot { margin-top: auto; padding-top: 1.6rem; }
.rst-navpanel-cta {
  display: inline-flex; width: 100%; justify-content: center;
  background: var(--arrow); color: var(--white);
  padding: 0.8rem 1.2rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.9rem;
  transition: background var(--anim), transform var(--anim);
}
.rst-navpanel-cta:hover { background: var(--arrow-dk); transform: translateY(-1px); }
.rst-navpanel-note {
  font-size: 0.72rem; color: var(--bone-2); opacity: 0.75; margin-top: 0.9rem;
  display: flex; align-items: center; gap: 0.45rem;
}
.rst-navpanel-note::before { content: "◆"; color: var(--tan); font-size: 0.55rem; }

/* ── 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.875rem; font-weight: 600; letter-spacing: 0.01em;
  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(--arrow); outline-offset: 3px; }
.rst-btn-primary { background: var(--forest); color: var(--bone); }
.rst-btn-primary:hover { background: var(--forest-dk); box-shadow: 0 6px 18px rgba(21,40,31,0.28); transform: translateY(-1px); }
.rst-btn-ghost { background: transparent; color: var(--forest); border: 1.5px solid var(--tan); }
.rst-btn-ghost:hover { border-color: var(--forest); background: var(--bone-2); }
.rst-btn-accent { background: var(--arrow); color: var(--white); }
.rst-btn-accent:hover { background: var(--arrow-dk); box-shadow: 0 6px 18px rgba(154,45,32,0.32); transform: translateY(-1px); }
.rst-btn-white { background: var(--bone); color: var(--forest); }
.rst-btn-white:hover { background: var(--white); transform: translateY(-1px); }
.rst-btn-sm { padding: 0.46rem 0.9rem; font-size: 0.8rem; border-radius: var(--radius-sm); }

/* ── HERO — archetype 4 "full-bleed photo": archer photo runs
      full height flush to the right viewport edge (no card / no
      margin); copy + stats sit left on the striped forest ground ── */
.rst-hero {
  position: relative; isolation: isolate;
  min-height: clamp(560px, 90vh, 900px);
  background:
    repeating-linear-gradient(90deg,
      transparent 0 calc(13% - 1px), rgba(185,138,82,0.14) calc(13% - 1px) 13%, transparent 13%),
    linear-gradient(160deg, var(--forest-lt), var(--forest) 52%, var(--forest-dk));
  color: var(--bone);
  overflow: hidden;
}
/* the photo — pinned to the right edge of the viewport, no margin/card */
.rst-hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; z-index: 0;
  width: clamp(46%, 54vw, 60%);
  overflow: hidden;
}
.rst-hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
  transition: transform 9s ease;
}
.rst-hero:hover .rst-hero-photo img { transform: scale(1.05); }
/* feather the photo's left edge into the forest ground for legibility */
.rst-hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg,
    var(--forest) 0%, rgba(30,58,46,0.55) 18%, rgba(30,58,46,0.12) 38%, transparent 60%);
}
/* concentric target reticle pinned top-right over the photo */
.rst-hero-photo::after {
  content: ""; position: absolute; z-index: 2; top: clamp(1rem,3vw,2.5rem); right: clamp(1rem,3vw,2.5rem);
  width: clamp(74px,8vw,120px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, transparent 0 26%, var(--arrow) 26% 33%, transparent 33% 60%, var(--white) 60% 67%, transparent 67%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.5); opacity: 0.92;
}
.rst-hero-caption {
  position: absolute; bottom: 1.25rem; right: 1.25rem; z-index: 3;
  background: rgba(21,40,31,0.85); color: var(--bone-2);
  font-family: var(--ff-body); font-size: 0.66rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: var(--radius-sm);
}

/* lane number stencils running up the far-left edge */
.rst-hero::before {
  content: "01 · 02 · 03 · 04"; z-index: 1;
  position: absolute; left: clamp(0.5rem,1.1vw,1rem); top: 50%;
  transform: translateY(-50%) rotate(180deg); writing-mode: vertical-rl;
  font-family: var(--ff-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.4em;
  color: rgba(185,138,82,0.4); pointer-events: none;
}

/* copy column — overlaps the photo, sits above it */
.rst-hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  min-height: inherit;
  max-width: 640px;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem,4vw,3rem) clamp(2.5rem, 6vw, 5rem) clamp(2.4rem, 5.5vw, 5.5rem);
}
.rst-hero-badge {
  font-family: var(--ff-body); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bone);
  border: 1.5px solid var(--tan); background: rgba(185,138,82,0.12);
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.3rem 0.85rem; border-radius: 3px; margin-bottom: 1.6rem; width: fit-content;
}
.rst-hero-badge::before { content: "◆"; color: var(--tan); font-size: 0.6rem; }
.rst-hero-headline {
  font-family: var(--ff-display); font-size: clamp(2.4rem, 5.6vw, 4.6rem); font-weight: 600;
  line-height: 1.03; letter-spacing: -0.02em; color: var(--white); margin-bottom: 1.4rem;
  text-shadow: 0 2px 24px rgba(21,40,31,0.35);
}
.rst-hero-headline em { font-style: italic; color: var(--tan); font-weight: 500; }
.rst-hero-lede { font-size: clamp(0.98rem, 1.1vw, 1.12rem); color: var(--bone-2); max-width: 42ch; margin-bottom: 2.2rem; line-height: 1.7; }
.rst-hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.rst-hero-stats {
  display: flex; gap: clamp(1.5rem, 3vw, 2.6rem); margin-top: auto; padding-top: 2.6rem; flex-wrap: wrap;
}
.rst-hero-stat { display: flex; flex-direction: column; position: relative; }
.rst-hero-stat + .rst-hero-stat { padding-left: clamp(1.5rem, 3vw, 2.6rem); }
.rst-hero-stat + .rst-hero-stat::before {
  content: ""; position: absolute; left: 0; top: 0.1rem; bottom: 0.1rem; width: 1px;
  background: rgba(185,138,82,0.4);
}
.rst-hero-stat b { font-family: var(--ff-display); font-size: clamp(1.5rem,2.4vw,1.85rem); font-weight: 600; color: var(--tan); line-height: 1; }
.rst-hero-stat span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--bone-2); margin-top: 0.4rem; }

/* ── DISCIPLINE STRIP (two tracks) ────────────────── */
.rst-tracks { padding: clamp(2.5rem,5vw,4rem) var(--gutter); background: var(--bone); }
.rst-tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.rst-track {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem,3vw,2.2rem); color: var(--bone);
  background: var(--forest); isolation: isolate;
}
.rst-track img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.6s ease; }
.rst-track::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(21,40,31,0.25), rgba(21,40,31,0.85)); }
.rst-track:hover img { transform: scale(1.06); }
.rst-track-kicker { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.5rem; }
.rst-track-title { font-family: var(--ff-display); font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 600; margin-bottom: 0.5rem; color: var(--white); }
.rst-track-desc { font-size: 0.9rem; color: var(--bone-2); max-width: 42ch; margin-bottom: 1rem; }
.rst-track-link { font-size: 0.82rem; font-weight: 600; color: var(--white); border-bottom: 2px solid var(--arrow); padding-bottom: 2px; width: fit-content; }

/* ── FEATURED — lane cards ────────────────────────── */
.rst-featured { padding: clamp(2.5rem,5vw,4.5rem) var(--gutter); background: var(--bone); }
.rst-featured-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.rst-featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* lane card — product card with spec rail */
.rst-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--bone-3);
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
  display: flex; flex-direction: column;
}
.rst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--tan); }
.rst-card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bone-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.06); }
.rst-card-disc {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  font-family: var(--ff-body); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--white); background: rgba(21,40,31,0.82);
  padding: 0.2rem 0.55rem; border-radius: 3px; backdrop-filter: blur(2px);
}
.rst-card-body { padding: 1rem 1.15rem 1.25rem; display: flex; flex-direction: column; flex: 1; gap: 0.45rem; }
.rst-card-cat { font-family: var(--ff-body); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; color: var(--tan-dk); text-transform: uppercase; }
.rst-card-name { font-family: var(--ff-display); font-size: 1.08rem; font-weight: 600; color: var(--forest); line-height: 1.22; }
.rst-card-name a:hover { color: var(--arrow); }
.rst-card-short { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.rst-card-chips { display: flex; flex-wrap: wrap; gap: 0.3rem; margin: 0.15rem 0; }
.rst-chip { font-family: var(--ff-body); font-size: 0.63rem; font-weight: 500; background: var(--bone-2); color: var(--forest); padding: 0.2rem 0.5rem; border-radius: 3px; letter-spacing: 0.02em; }
.rst-chip-accent { background: rgba(154,45,32,0.1); color: var(--arrow); }

/* spec rail — the spec lines on a card (power / draw / length / hand) */
.rst-card-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.15rem 0.9rem; margin: 0.2rem 0 0.1rem; padding: 0.55rem 0; border-top: 1px dashed var(--bone-3); border-bottom: 1px dashed var(--bone-3); }
.rst-spec-line { display: flex; justify-content: space-between; gap: 0.4rem; font-size: 0.7rem; }
.rst-spec-line b { font-family: var(--ff-body); font-weight: 600; letter-spacing: 0.04em; color: var(--ink-soft); text-transform: uppercase; font-size: 0.6rem; align-self: center; }
.rst-spec-line span { color: var(--forest); font-weight: 500; text-align: right; }

.rst-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
.rst-price { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--forest); }
.rst-price-sub { font-size: 0.7rem; color: var(--ink-soft); display: block; }
/* roast meter no longer used semantically but kept defined to avoid layout surprises */
.rst-roast-meter { display: none; }
.rst-roast-label { font-family: var(--ff-body); }

/* ── CRAFT / VALUES band ──────────────────────────── */
.rst-craft { background: var(--forest); color: var(--bone); padding: clamp(3rem,6vw,5rem) var(--gutter); }
.rst-craft-head { max-width: 60ch; margin-bottom: 2.5rem; }
.rst-craft .rst-section-title { color: var(--white); }
.rst-craft-sub { color: var(--bone-2); margin-top: 0.8rem; font-size: 1.02rem; }
.rst-craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.rst-craft-card { border: 1px solid var(--forest-lt); border-radius: var(--radius-md); padding: 1.6rem; background: rgba(185,138,82,0.06); }
.rst-craft-num { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--tan); margin-bottom: 0.6rem; }
.rst-craft-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.rst-craft-card p { font-size: 0.88rem; color: var(--bone-2); line-height: 1.6; }

/* ── SUBSCRIPTION / CLUB band ─────────────────────── */
.rst-sub-band { background: var(--tan); padding: clamp(3rem,6vw,4.5rem) var(--gutter); }
.rst-sub-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.rst-sub-headline { font-family: var(--ff-display); font-size: clamp(1.6rem,3.2vw,2.4rem); font-weight: 600; color: var(--forest-dk); margin-bottom: 1rem; }
.rst-sub-lede { color: var(--forest-dk); opacity: 0.85; font-size: 1.02rem; margin-bottom: 1.6rem; }
.rst-sub-details { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; margin-bottom: 1.8rem; }
.rst-sub-detail { font-size: 0.78rem; font-weight: 600; color: var(--forest-dk); background: rgba(30,58,46,0.12); padding: 0.35rem 0.85rem; border-radius: 20px; }

/* ── JOURNAL ──────────────────────────────────────── */
.rst-journal { padding: clamp(2.5rem,5vw,4.5rem) var(--gutter); background: var(--bone); }
.rst-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.75rem; }
.rst-article-card { background: var(--white); border: 1px solid var(--bone-3); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--anim), box-shadow var(--anim); display: flex; flex-direction: column; }
.rst-article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.rst-article-img { aspect-ratio: 16/10; overflow: hidden; }
.rst-article-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.rst-article-card:hover .rst-article-img img { transform: scale(1.06); }
.rst-article-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.rst-article-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--arrow); margin-bottom: 0.5rem; }
.rst-article-title { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; color: var(--forest); line-height: 1.25; margin-bottom: 0.5rem; }
.rst-article-excerpt { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; flex: 1; margin-bottom: 0.8rem; }
.rst-article-link { font-size: 0.8rem; font-weight: 600; color: var(--forest); border-bottom: 2px solid var(--arrow); width: fit-content; padding-bottom: 1px; }

/* ── NEWSLETTER ───────────────────────────────────── */
.rst-newsletter { background: var(--forest-dk); padding: clamp(3rem,6vw,4.5rem) var(--gutter); }
.rst-newsletter-inner { max-width: 620px; margin: 0 auto; text-align: center; }
.rst-newsletter-title { font-family: var(--ff-display); font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 600; color: var(--white); margin-bottom: 0.8rem; }
.rst-newsletter-desc { color: var(--bone-2); 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.75rem 1rem; border-radius: var(--radius-md); border: 1.5px solid var(--forest-lt); background: rgba(255,255,255,0.06); color: var(--bone); }
.rst-newsletter-input::placeholder { color: rgba(239,233,221,0.5); }
.rst-newsletter-input:focus { outline: none; border-color: var(--tan); }
.rst-newsletter-privacy { font-size: 0.72rem; color: var(--bone-2); margin-top: 1rem; opacity: 0.8; }

/* ── SHOP ─────────────────────────────────────────── */
.rst-shop-header { background: var(--forest); color: var(--bone); padding: clamp(1.5rem,3vw,2.5rem) 0 clamp(1.25rem,2.5vw,2rem); }
.rst-breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.74rem; color: var(--ink-soft); margin-bottom: 0.85rem; }
.rst-shop-header .rst-breadcrumb { color: var(--bone-2); }
.rst-shop-header .rst-breadcrumb a:hover { color: var(--tan); }
.rst-breadcrumb-sep { opacity: 0.5; }
.rst-shop-title { font-family: var(--ff-display); font-size: clamp(1.9rem,4vw,2.8rem); font-weight: 600; color: var(--white); margin-bottom: 1.2rem; }
.rst-shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.rst-filter-chips { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.rst-filter-chip {
  font-size: 0.78rem; font-weight: 500; color: var(--bone-2);
  padding: 0.4rem 0.9rem; border-radius: 20px; border: 1.5px solid var(--forest-lt);
  transition: all var(--anim);
}
.rst-filter-chip:hover { border-color: var(--tan); color: var(--white); }
.rst-filter-chip.is-active { background: var(--tan); border-color: var(--tan); color: var(--forest-dk); font-weight: 600; }
.rst-sort-select { padding: 0.4rem 0.6rem; border-radius: var(--radius-sm); border: 1.5px solid var(--forest-lt); background: var(--forest-dk); color: var(--bone); font-size: 0.8rem; }

/* staggered 2-column list */
.rst-shop-grid {
  max-width: var(--max-w); margin: 0 auto; padding: clamp(2rem,4vw,3rem) var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem;
}
/* nudge the right column down for the staggered "lanes" look */
.rst-shop-grid > .rst-lane:nth-child(even) { transform: translateY(2.25rem); }

/* lane row — horizontal product entry with a spec ledger */
.rst-lane {
  display: grid; grid-template-columns: 150px 1fr; gap: 1.1rem;
  background: var(--white); border: 1px solid var(--bone-3); border-radius: var(--radius-md);
  overflow: hidden; transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-lane:hover { box-shadow: var(--shadow-lift); border-color: var(--tan); transform: translateY(-3px); }
.rst-lane-img { position: relative; overflow: hidden; background: var(--bone-2); }
.rst-lane-img img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; transition: transform 0.45s ease; }
.rst-lane:hover .rst-lane-img img { transform: scale(1.06); }
.rst-lane-disc { position: absolute; top: 0.55rem; left: 0.55rem; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); background: rgba(21,40,31,0.82); padding: 0.18rem 0.45rem; border-radius: 3px; }
.rst-lane-body { padding: 1rem 1.15rem 1.1rem 0; display: flex; flex-direction: column; gap: 0.4rem; }
.rst-lane-cat { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tan-dk); }
.rst-lane-name { font-family: var(--ff-display); font-size: 1.06rem; font-weight: 600; color: var(--forest); line-height: 1.2; }
.rst-lane-name a:hover { color: var(--arrow); }
.rst-lane-short { font-size: 0.79rem; color: var(--ink-soft); line-height: 1.45; }
.rst-lane-ledger { display: grid; grid-template-columns: 1fr 1fr; gap: 0.1rem 0.85rem; margin: 0.15rem 0; }
.rst-lane-ledger .rst-spec-line { font-size: 0.68rem; }
.rst-lane-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.5rem; }
.rst-lane-foot .rst-price { font-size: 1.1rem; }

/* ── PDP — technical sheet ────────────────────────── */
.rst-pdp { max-width: var(--max-w); margin: 0 auto; padding: clamp(1.25rem,3vw,2.25rem) var(--gutter) clamp(2.5rem,5vw,4rem); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.75rem,4vw,3.5rem); }
.rst-pdp-gallery { display: flex; flex-direction: column; gap: 1rem; position: sticky; top: 90px; align-self: start; }
.rst-pdp-main-img { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; background: var(--bone-2); border: 1px solid var(--bone-3); }
.rst-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-thumbs { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.rst-pdp-thumb { width: 76px; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--bone-3); transition: border-color var(--anim); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-thumb.is-active { border-color: var(--arrow); }

.rst-pdp-right { display: flex; flex-direction: column; }
.rst-pdp-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tan-dk); margin-bottom: 0.5rem; }
.rst-pdp-name { font-family: var(--ff-display); font-size: clamp(1.6rem,3.2vw,2.3rem); font-weight: 600; color: var(--forest); line-height: 1.12; margin-bottom: 1rem; }

/* technical sheet */
.rst-pdp-specs { border: 1px solid var(--bone-3); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.4rem; }
.rst-pdp-specs-h { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); background: var(--forest); padding: 0.5rem 0.9rem; }
.rst-pdp-spec-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0.9rem; font-size: 0.84rem; }
.rst-pdp-spec-row:nth-child(odd) { background: var(--paper); }
.rst-pdp-spec-key { font-weight: 600; color: var(--ink-soft); letter-spacing: 0.02em; }
.rst-pdp-spec-val { color: var(--forest); font-weight: 500; text-align: right; }

.rst-pdp-notes-title, .rst-selector-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--forest); 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.5rem; }
.rst-selector-opt {
  font-size: 0.8rem; font-weight: 500; color: var(--forest);
  padding: 0.45rem 0.85rem; border-radius: var(--radius-sm); border: 1.5px solid var(--bone-3);
  background: var(--white); transition: all var(--anim);
}
.rst-selector-opt:hover { border-color: var(--tan); }
.rst-selector-opt.is-active { background: var(--forest); border-color: var(--forest); color: var(--bone); }

.rst-pdp-price-row { display: flex; align-items: baseline; gap: 0.7rem; margin: 1.5rem 0 0.5rem; }
.rst-pdp-price { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--forest); }
.rst-pdp-price-unit { font-size: 0.82rem; color: var(--ink-soft); }
.rst-pdp-qty-row { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; }
.rst-pdp-qty-ctrl, .rst-qty-ctrl { display: inline-flex; align-items: center; border: 1.5px solid var(--bone-3); border-radius: var(--radius-sm); overflow: hidden; }
.rst-pdp-qty-btn, .rst-qty-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--forest); transition: background var(--anim); }
.rst-pdp-qty-btn:hover, .rst-qty-btn:hover { background: var(--bone-2); }
.rst-pdp-qty-val, .rst-qty-val { min-width: 40px; text-align: center; font-weight: 600; font-size: 0.95rem; }
.rst-pdp-atc { width: 100%; justify-content: center; margin-top: 0.5rem; }
.rst-pdp-atc:disabled { opacity: 0.5; cursor: not-allowed; }

.rst-pdp-long { font-size: 0.95rem; color: var(--ink); line-height: 1.75; }
.rst-pdp-long p { margin-bottom: 1rem; }
.rst-pdp-brew-rec { border-left: 3px solid var(--arrow); background: var(--paper); padding: 1rem 1.2rem; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 0.5rem; }
.rst-pdp-brew-rec-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--arrow); margin-bottom: 0.4rem; }
.rst-pdp-brew-rec p { font-size: 0.86rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

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

/* ── PAGE HERO (about/contact) ────────────────────── */
.rst-page-hero { background: var(--forest); color: var(--bone); padding: clamp(2.5rem,5vw,4rem) var(--gutter); position: relative; overflow: hidden; }
.rst-page-hero::after { content: ""; position: absolute; right: -40px; top: 50%; transform: translateY(-50%); width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, transparent 0 30%, rgba(154,45,32,0.5) 30% 36%, transparent 36% 62%, rgba(185,138,82,0.4) 62% 68%, transparent 68%); }
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.rst-page-title { font-family: var(--ff-display); font-size: clamp(2rem,4.5vw,3rem); font-weight: 600; color: var(--white); margin-bottom: 0.6rem; }
.rst-page-sub { font-size: 1.05rem; color: var(--bone-2); max-width: 52ch; }

/* about */
.rst-about-hero { max-width: 820px; margin: clamp(2.5rem,5vw,4rem) auto 0; padding: 0 var(--gutter); }
.rst-about-lead { font-family: var(--ff-display); font-size: clamp(1.2rem,2.2vw,1.6rem); font-weight: 400; line-height: 1.5; color: var(--forest); font-style: italic; }
.rst-about-grid { max-width: var(--max-w); margin: clamp(2.5rem,5vw,3.5rem) auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem,4vw,3.5rem); }
.rst-about-text h2 { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 600; color: var(--forest); margin-bottom: 0.8rem; }
.rst-about-text p { color: var(--ink-soft); margin-bottom: 1rem; line-height: 1.7; }
.rst-about-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--bone-3); aspect-ratio: 4/3; }
.rst-about-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-about-values { background: var(--forest); color: var(--bone); padding: clamp(3rem,6vw,4.5rem) var(--gutter); }
.rst-about-values .rst-section-title { color: var(--white); }
.rst-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 1.75rem; max-width: var(--max-w); margin-inline: auto; }
.rst-value-card { border: 1px solid var(--forest-lt); border-radius: var(--radius-md); padding: 1.6rem; background: rgba(185,138,82,0.06); }
.rst-value-num { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 700; color: var(--tan); margin-bottom: 0.5rem; }
.rst-value-title { font-family: var(--ff-display); font-size: 1.12rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; }
.rst-value-body { font-size: 0.88rem; color: var(--bone-2); line-height: 1.6; }
.rst-about-process { padding: clamp(3rem,6vw,4.5rem) var(--gutter); max-width: var(--max-w); margin: 0 auto; }
.rst-process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 1.75rem; counter-reset: step; }
.rst-process-step { position: relative; padding: 1.4rem; border: 1px solid var(--bone-3); border-radius: var(--radius-md); background: var(--white); }
.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(--arrow); }
.rst-process-step h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 600; color: var(--forest); margin: 0.4rem 0 0.5rem; }
.rst-process-step p { font-size: 0.83rem; color: var(--ink-soft); line-height: 1.6; }
.rst-team-band { padding: clamp(2.5rem,5vw,4rem) var(--gutter); background: var(--bone-2); border-top: 1px solid var(--bone-3); }
.rst-team-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.rst-team-card { background: var(--white); border: 1px solid var(--bone-3); border-radius: var(--radius-md); padding: 1.5rem; }
.rst-team-role { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--arrow); margin-bottom: 0.45rem; }
.rst-team-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 600; color: var(--forest); }
.rst-team-bio { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.5rem; line-height: 1.6; }

/* ── CONTACT ──────────────────────────────────────── */
.rst-contact-wrap { max-width: var(--max-w); margin: clamp(2.5rem,5vw,3.5rem) auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.5rem); }
.rst-contact-title { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--forest); margin-bottom: 0.8rem; }
.rst-contact-intro { color: var(--ink-soft); margin-bottom: 1.6rem; line-height: 1.7; }
.rst-contact-meta h3 { font-family: var(--ff-display); font-size: 1rem; font-weight: 600; color: var(--forest); margin: 1.2rem 0 0.3rem; }
.rst-contact-meta p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.rst-contact-meta a { color: var(--arrow); font-weight: 500; }
.rst-form { background: var(--white); border: 1px solid var(--bone-3); border-radius: var(--radius-lg); padding: clamp(1.5rem,3vw,2.2rem); }
.rst-form-group { margin-bottom: 1.1rem; }
.rst-form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--forest); margin-bottom: 0.4rem; }
.rst-form-input, .rst-form-select, .rst-form-textarea { width: 100%; padding: 0.65rem 0.85rem; border: 1.5px solid var(--bone-3); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); }
.rst-form-input:focus, .rst-form-select:focus, .rst-form-textarea:focus { outline: none; border-color: var(--tan); }
.rst-form-textarea { min-height: 130px; resize: vertical; }
.rst-form-success { display: none; margin-top: 1rem; padding: 0.85rem 1rem; background: rgba(30,58,46,0.1); border-radius: var(--radius-sm); color: var(--forest); font-weight: 500; font-size: 0.9rem; }
.rst-form-success.is-visible { display: block; }

/* ── SEARCH OVERLAY ───────────────────────────────── */
.rst-search-overlay { position: fixed; inset: 0; background: rgba(21,40,31,0.55); backdrop-filter: blur(4px); z-index: 200; display: none; padding-top: 12vh; }
.rst-search-overlay.is-open { display: block; }
.rst-search-box { max-width: 560px; margin: 0 auto; background: var(--bone); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-lift); }
.rst-search-input { width: 100%; padding: 0.85rem 1rem; border: 1.5px solid var(--bone-3); border-radius: var(--radius-md); background: var(--white); font-size: 1rem; }
.rst-search-input:focus { outline: none; border-color: var(--tan); }
.rst-search-results { max-height: 50vh; overflow-y: auto; margin-top: 0.75rem; }
.rst-search-result { display: flex; gap: 0.75rem; padding: 0.6rem; border-radius: var(--radius-sm); transition: background var(--anim); align-items: center; }
.rst-search-result:hover { background: var(--bone-2); }
.rst-search-result img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius-sm); }
.rst-search-result-name { font-weight: 600; font-size: 0.88rem; color: var(--forest); }
.rst-search-result-meta { font-size: 0.74rem; color: var(--ink-soft); }

/* ── CART DRAWER + OVERLAY (engine) ───────────────── */
.rst-cart-overlay { position: fixed; inset: 0; background: rgba(21,40,31,0.5); backdrop-filter: blur(3px); z-index: 200; opacity: 0; visibility: hidden; transition: opacity var(--anim), visibility var(--anim); }
.rst-cart-overlay.is-visible { opacity: 1; visibility: visible; }
.rst-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); background: var(--bone); z-index: 201; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; box-shadow: var(--shadow-lift); }
.rst-drawer.is-open { transform: none; }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--bone-3); }
.rst-drawer-title { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; color: var(--forest); }
.rst-drawer-close { font-size: 1.6rem; color: var(--ink-soft); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.rst-drawer-close:hover { background: var(--bone-2); color: var(--forest); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.rst-drawer-empty { color: var(--ink-soft); font-size: 0.9rem; text-align: center; padding: 2rem 0; }
.rst-drawer-item { display: flex; gap: 0.8rem; padding: 0.85rem 0; border-bottom: 1px solid var(--bone-3); position: relative; }
.rst-drawer-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.rst-drawer-item-info { flex: 1; }
.rst-drawer-item-name { font-weight: 600; font-size: 0.85rem; color: var(--forest); line-height: 1.3; padding-right: 1.2rem; }
.rst-drawer-item-meta { font-size: 0.72rem; color: var(--ink-soft); margin: 0.2rem 0 0.4rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 0.3rem; }
.rst-drawer-item-price { font-family: var(--ff-display); font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.rst-drawer-remove { position: absolute; top: 0.85rem; right: 0; font-size: 1.1rem; color: var(--ink-soft); width: 24px; height: 24px; }
.rst-drawer-remove:hover { color: var(--arrow); }
.rst-drawer-foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--bone-3); background: var(--white); }
.rst-drawer-subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; font-size: 0.95rem; }
.rst-drawer-subtotal span:first-child { font-weight: 600; color: var(--forest); }
.rst-drawer-subtotal-val { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--forest); }

/* ── CART PAGE ────────────────────────────────────── */
.rst-cart-page { max-width: 960px; 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(1.6rem,3.5vw,2.4rem); font-weight: 600; color: var(--forest); margin-bottom: 1.5rem; }
.rst-cart-table { width: 100%; border-collapse: collapse; }
.rst-cart-table thead th { text-align: left; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); padding: 0.6rem 0.5rem; border-bottom: 2px solid var(--bone-3); }
.rst-cart-table tbody td { padding: 1rem 0.5rem; border-bottom: 1px solid var(--bone-3); vertical-align: middle; }
.rst-cart-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.rst-cart-item-name { font-weight: 600; font-size: 0.9rem; color: var(--forest); }
.rst-cart-item-name a:hover { color: var(--arrow); }
.rst-cart-item-meta { font-size: 0.74rem; color: var(--ink-soft); margin-top: 0.2rem; }
.rst-cart-totals { display: flex; justify-content: flex-end; margin-top: 1.5rem; }
.rst-cart-total-row { display: flex; gap: 2rem; align-items: baseline; font-size: 1rem; }
.rst-cart-total-row strong { font-family: var(--ff-display); font-size: 1.5rem; color: var(--forest); }
.rst-cart-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── 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(--forest-dk); color: var(--bone); padding: 0.7rem 1.2rem; border-radius: var(--radius-md); font-size: 0.85rem; font-weight: 500; box-shadow: var(--shadow-lift); opacity: 0; transform: translateY(12px); transition: opacity var(--anim), transform var(--anim); }
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ── LEGAL ────────────────────────────────────────── */
.rst-legal { max-width: 820px; margin: 0 auto; padding: clamp(2rem,4vw,3.5rem) var(--gutter) clamp(3rem,6vw,5rem); }
.rst-legal-title { font-family: var(--ff-display); font-size: clamp(1.7rem,3.5vw,2.4rem); font-weight: 600; color: var(--forest); margin-bottom: 0.4rem; }
.rst-legal-sub { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 0.4rem; }
.rst-legal-meta { font-size: 0.78rem; color: var(--ink-soft); padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--bone-3); }
.rst-legal h2 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; color: var(--forest); margin: 1.8rem 0 0.6rem; }
.rst-legal p, .rst-legal li { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.7rem; }
.rst-legal ul { padding-left: 1.2rem; list-style: disc; }
.rst-legal li { margin-bottom: 0.4rem; }
.rst-legal-foot { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--bone-3); font-size: 0.88rem; }

/* ── FOOTER ───────────────────────────────────────── */
.rst-foot { background: var(--forest-dk); color: var(--bone-2); padding: clamp(2.5rem,5vw,4rem) var(--gutter) 1.5rem; }
.rst-foot-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 1.5rem; }
.rst-foot-brand { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.rst-foot-tagline { font-size: 0.85rem; color: var(--bone-2); margin-bottom: 1rem; max-width: 30ch; }
.rst-foot-address { font-size: 0.8rem; color: var(--bone-2); line-height: 1.7; margin-bottom: 1rem; }
.rst-foot-address a { color: var(--tan); }
.rst-foot-hours { font-size: 0.78rem; color: var(--bone-2); line-height: 1.7; opacity: 0.85; }
.rst-foot-col h4 { font-family: var(--ff-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tan); margin-bottom: 0.85rem; }
.rst-foot-col ul li { margin-bottom: 0.5rem; }
.rst-foot-col ul li a { font-size: 0.83rem; color: var(--bone-2); transition: color var(--anim); }
.rst-foot-col ul li a:hover { color: var(--white); }
.rst-foot-lang { max-width: var(--max-w); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--forest-lt); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.rst-lang-btn { font-family: var(--ff-body); font-size: 0.72rem; font-weight: 600; color: var(--bone-2); padding: 0.3rem 0.7rem; border-radius: var(--radius-sm); border: 1px solid var(--forest-lt); transition: all var(--anim); }
.rst-lang-btn:hover { border-color: var(--tan); color: var(--white); }
.rst-lang-btn.is-active { background: var(--tan); border-color: var(--tan); color: var(--forest-dk); }
.rst-foot-fine { max-width: var(--max-w); margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.76rem; color: var(--bone-2); opacity: 0.8; }
.rst-foot-fine-links { display: flex; gap: 1rem; }
.rst-foot-fine-links a:hover { color: var(--white); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 980px) {
  .rst-foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .rst-foot-grid > div:first-child { grid-column: 1 / -1; }
  .rst-related-grid { grid-template-columns: repeat(2, 1fr); }
  .rst-process-steps { grid-template-columns: repeat(2, 1fr); }
  .rst-hero-photo { width: 48%; }
  .rst-hero-inner { max-width: 56%; }
}
@media (max-width: 860px) {
  /* hero stacks: photo becomes a full-width band above the copy */
  .rst-hero { display: flex; flex-direction: column; min-height: 0; }
  .rst-hero-photo { position: relative; width: 100%; height: clamp(260px, 42vh, 380px); flex-shrink: 0; }
  .rst-hero-photo::before { background: linear-gradient(0deg, var(--forest) 0%, rgba(30,58,46,0.35) 30%, transparent 70%); }
  .rst-hero-inner { max-width: 100%; width: 100%; padding: clamp(2rem,7vw,3rem) var(--gutter) clamp(2.25rem,7vw,3rem); }
  .rst-hero-stats { padding-top: 2rem; }
  .rst-hero::before { display: none; }
  .rst-pdp { grid-template-columns: 1fr; }
  .rst-pdp-gallery { position: static; }
  .rst-tracks-grid, .rst-about-grid, .rst-contact-wrap { grid-template-columns: 1fr; }
  .rst-featured-grid, .rst-craft-grid, .rst-journal-grid, .rst-values-grid { grid-template-columns: 1fr 1fr; }
  .rst-shop-grid { grid-template-columns: 1fr; }
  .rst-shop-grid > .rst-lane:nth-child(even) { transform: none; }
}
@media (max-width: 768px) {
  .rst-menu-label { display: none; }
  .rst-hamburger { padding: 0.5rem 0.7rem; }
  /* fix 1 : masquer le reticle (cible) sur mobile — il colle au header/hamburger */
  .rst-hero-photo::after { display: none; }
  /* fix 2 : stats en grille 3-colonnes propre (plus de 2+1 orphelin ni de trait vertical orphelin au retour à la ligne) */
  .rst-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .rst-hero-stat + .rst-hero-stat { padding-left: 0; }
  .rst-hero-stat + .rst-hero-stat::before { display: none; }
}
@media (max-width: 560px) {
  .rst-featured-grid, .rst-craft-grid, .rst-journal-grid, .rst-values-grid, .rst-related-grid, .rst-process-steps { grid-template-columns: 1fr; }
  .rst-lane { grid-template-columns: 110px 1fr; }
  .rst-lane-ledger { grid-template-columns: 1fr; }
  .rst-newsletter-form { flex-direction: column; }
  .rst-cart-table thead { display: none; }
  .rst-cart-table tbody td { padding: 0.5rem 0.25rem; }
  .rst-pdp-price { font-size: 1.6rem; }
  .rst-foot-grid { grid-template-columns: 1fr 1fr; }
}
