@charset "UTF-8";
/* ═══════════════════════════════════════════════════
   style.css — TYPOVOX · Mechanical keyboards
   Prefix: rst-  (kept for engine compatibility)
   DA: engineered / crisp technical hardware brand
   Light off-white canvas · near-black ink · ONE coral accent · cool-grey scale
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  /* ── palette ── */
  --paper:    #f5f6f8;  /* off-white canvas */
  --paper-2:  #eceef2;  /* panel */
  --paper-3:  #e3e6ec;  /* deeper panel */
  --ink:      #15171c;  /* near-black */
  --ink-2:    #2a2e37;
  --coral:    #ff5a36;  /* electric accent (used sparingly) */
  --coral-d:  #e0421f;
  --grey:     #9aa1ad;  /* cool grey */
  --grey-2:   #c2c8d2;
  --grey-d:   #6b727e;
  --line:     #d4d8e0;  /* 1px rules */
  --white:    #ffffff;

  --text:       #15171c;
  --text-muted: #6b727e;

  --ff-display: 'Inter', system-ui, sans-serif;          /* tight bold display */
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif; /* clean grotesk body */
  --ff-mono:    'IBM Plex Mono', ui-monospace, 'Courier New', monospace; /* labels/specs/SKUs */

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

  --shadow-card: 0 1px 0 var(--line), 0 10px 30px rgba(21,23,28,0.07);
  --shadow-lift: 0 2px 0 var(--coral), 0 18px 44px rgba(21,23,28,0.14);

  --max-w: 1320px;
  --gutter: clamp(1rem, 4vw, 2.75rem);
  --anim: 0.2s 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.55vw + 0.78rem, 1.0625rem);
  line-height: 1.62;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  /* faint engineering grid texture on the canvas */
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 52px 52px, 52px 52px;
  background-position: -1px -1px;
  background-attachment: fixed;
}
body::before {
  /* soften the grid so it reads as texture, not a table */
  content: ""; position: fixed; inset: 0; z-index: -1;
  background: radial-gradient(120% 90% at 70% 0%, rgba(245,246,248,0.4), var(--paper) 60%);
  pointer-events: none;
}
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(--coral); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .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(20px); transition: opacity .5s ease, transform .5s ease; }
.rst-reveal.is-visible { opacity: 1; transform: none; }

.rst-section-label {
  font-family: var(--ff-mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--coral);
  display: inline-flex; align-items: center; gap: .55rem;
}
.rst-section-label::before { content: ""; width: 18px; height: 1px; background: var(--coral); }
.rst-section-title {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.05;
  letter-spacing: -0.025em; color: var(--ink);
}

/* ── TICKER (spec marquee) ── */
.rst-ticker {
  background: var(--ink); color: var(--paper);
  font-family: var(--ff-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  overflow: hidden; height: 34px; display: flex; align-items: center; white-space: nowrap;
}
.rst-ticker-track { display: flex; animation: rst-ticker 30s linear infinite; }
.rst-ticker-track:hover { animation-play-state: paused; }
.rst-ticker-item { padding: 0 2.4rem; color: var(--grey-2); }
.rst-ticker-item::before { content: '◇'; margin-right: 2.4rem; color: var(--coral); }
@keyframes rst-ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── HEADER ── */
.rst-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,246,248,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--anim);
}
.rst-head--stuck { box-shadow: 0 1px 0 var(--line), 0 12px 28px rgba(21,23,28,0.06); }
.rst-head-inner {
  display: flex; align-items: center; gap: 1.5rem; height: 64px;
  padding: 0 var(--gutter); max-width: var(--max-w); margin: 0 auto;
}
.rst-head--stuck .rst-head-inner { height: 56px; }

/* brand wordmark */
.rst-brandslot {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: -0.04em;
  color: var(--ink); white-space: nowrap; flex-shrink: 0; position: relative;
  padding-left: 1.7rem;
}
.rst-brandslot::before {
  /* keycap glyph mark */
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 21px; height: 21px; border-radius: 5px;
  background: var(--ink);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.35), inset 0 2px 0 rgba(255,255,255,.12);
}
.rst-brandslot::after {
  content: "K"; position: absolute; left: 0; top: 50%; transform: translateY(-52%);
  width: 21px; text-align: center; font-size: .72rem; font-weight: 800; color: var(--coral);
}
.rst-brandslot:hover::before { background: var(--coral); }
.rst-brandslot:hover::after { color: #fff; }

/* nav */
.rst-nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.rst-nav-link {
  font-family: var(--ff-mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .04em; color: var(--text-muted); text-transform: uppercase;
  position: relative; padding: .2rem 0; transition: color var(--anim);
}
.rst-nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--coral); transition: width 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 { width: 100%; }

.rst-head-actions { display: flex; align-items: center; gap: .4rem; margin-left: 1.2rem; }
.rst-head-btn {
  width: 40px; height: 40px; display: grid; place-items: center; position: relative;
  border-radius: var(--radius-md); color: var(--ink); transition: background var(--anim);
}
.rst-head-btn:hover { background: var(--paper-2); }
.rst-head-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.rst-cart-badge {
  position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--coral); color: #fff; border-radius: 9px;
  font-family: var(--ff-mono); font-size: .62rem; font-weight: 600;
  display: grid; place-items: center;
}

/* hamburger */
.rst-hamburger { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.rst-hamburger span { width: 21px; height: 2px; background: var(--ink); transition: 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 {
  position: fixed; inset: 64px 0 auto 0; background: var(--paper);
  border-bottom: 1px solid var(--line); padding: 1rem var(--gutter) 1.5rem;
  display: flex; flex-direction: column; gap: .25rem;
  transform: translateY(-130%); transition: transform .32s cubic-bezier(.2,.7,.3,1);
  z-index: 99; visibility: hidden;
}
.rst-mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.rst-mobile-nav-link {
  font-family: var(--ff-mono); font-size: .92rem; padding: .85rem 0;
  border-bottom: 1px solid var(--line); color: var(--ink); text-transform: uppercase; letter-spacing: .03em;
}

/* search overlay */
.rst-search-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(21,23,28,0.45);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: var(--anim);
  display: flex; justify-content: center; align-items: flex-start; padding-top: 14vh;
}
.rst-search-overlay.is-open { opacity: 1; visibility: visible; }
.rst-search-box { width: min(640px, 92vw); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); overflow: hidden; }
.rst-search-input {
  width: 100%; padding: 1.2rem 1.4rem; border: none; background: transparent;
  font-family: var(--ff-mono); font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line);
}
.rst-search-input:focus { outline: none; }
.rst-search-results { max-height: 52vh; overflow-y: auto; }
.rst-search-result { display: flex; align-items: center; gap: 1rem; padding: .7rem 1.4rem; border-bottom: 1px solid var(--line); transition: background var(--anim); }
.rst-search-result:hover { background: var(--paper-2); }
.rst-search-result img { width: 56px; height: 42px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.rst-search-result-name { font-weight: 600; font-size: .92rem; }
.rst-search-result-meta { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-muted); }

/* ── BUTTONS ── */
.rst-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-mono); font-size: .8rem; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; padding: .82rem 1.5rem; border-radius: var(--radius-md);
  transition: var(--anim); white-space: nowrap; border: 1px solid transparent; line-height: 1;
}
.rst-btn-primary { background: var(--ink); color: var(--paper); }
.rst-btn-primary:hover { background: var(--coral); color: #fff; transform: translateY(-1px); }
.rst-btn-accent { background: var(--coral); color: #fff; }
.rst-btn-accent:hover { background: var(--coral-d); transform: translateY(-1px); }
.rst-btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.rst-btn-ghost:hover { background: var(--ink); color: var(--paper); }
.rst-btn-white { background: var(--paper); color: var(--ink); border-color: var(--line); }
.rst-btn-white:hover { background: var(--coral); color: #fff; border-color: var(--coral); }
.rst-btn-sm { padding: .55rem 1rem; font-size: .72rem; }

/* ── HERO (exploded view) ── */
.rst-hero {
  display: grid; grid-template-columns: 0.92fr 1.18fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; max-width: var(--max-w); margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(2rem, 5vw, 4rem);
}
.rst-hero-left { position: relative; }
.rst-hero-badge {
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--coral); display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid var(--line); border-radius: 100px; padding: .35rem .9rem; margin-bottom: 1.4rem; background: var(--white);
}
.rst-hero-badge::before { content: ""; width: 7px; height: 7px; border-radius: 2px; background: var(--coral); }
.rst-hero-headline {
  font-family: var(--ff-display); font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 0.98; letter-spacing: -0.04em; color: var(--ink);
}
.rst-hero-headline em { font-style: normal; color: var(--coral); }
.rst-hero-lede {
  margin-top: 1.3rem; font-size: clamp(1rem, 1.3vw, 1.15rem); color: var(--text-muted);
  max-width: 42ch; line-height: 1.6;
}
.rst-hero-ctas { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
/* spec rail under hero copy */
.rst-hero-left::after {
  content: "QMK / VIA  ·  HOT-SWAP  ·  GASKET MOUNT";
  display: block; margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid var(--line);
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .1em; color: var(--grey-d);
}
.rst-hero-right {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--white); overflow: hidden; box-shadow: var(--shadow-card);
}
.rst-hero-right img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rst-hero-caption {
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); background: rgba(245,246,248,0.9); border: 1px solid var(--line);
  padding: .3rem .65rem; border-radius: var(--radius-sm);
}

/* ── SECTION: this week / featured grids ── */
.rst-thisweek { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.rst-thisweek-header { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.rst-thisweek-grid, .rst-featured-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem;
}

/* ── PRODUCT CARD ── */
.rst-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform var(--anim), box-shadow var(--anim), border-color var(--anim);
}
.rst-card::before {
  /* corner index tick */
  content: ""; position: absolute; top: 10px; right: 10px; width: 8px; height: 8px;
  border-top: 1px solid var(--grey); border-right: 1px solid var(--grey); z-index: 2;
}
.rst-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); border-color: var(--grey-2); }
.rst-card-img-wrap {
  aspect-ratio: 4 / 3; background: var(--paper-2);
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.rst-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rst-card:hover .rst-card-img-wrap img { transform: scale(1.03); }
.rst-card-body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.rst-card-cat {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 500; letter-spacing: .07em;
  text-transform: uppercase; color: var(--coral);
}
.rst-card-name {
  font-family: var(--ff-display); font-weight: 700; font-size: 1.16rem; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--ink);
}
.rst-card-name a:hover { color: var(--coral); }
.rst-card-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.rst-card-short { font-size: .86rem; color: var(--text-muted); line-height: 1.5; }
.rst-card-footer {
  margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}

/* chips */
.rst-chip {
  font-family: var(--ff-mono); font-size: .68rem; font-weight: 500; letter-spacing: .02em;
  color: var(--grey-d); background: var(--paper-2); border: 1px solid var(--line);
  padding: .22rem .5rem; border-radius: var(--radius-sm);
}
.rst-chip-accent { color: var(--coral-d); background: rgba(255,90,54,0.08); border-color: rgba(255,90,54,0.25); }

/* price */
.rst-price { font-family: var(--ff-mono); font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.rst-price-sub { font-family: var(--ff-mono); font-size: .7rem; color: var(--text-muted); }

/* ── "tier" meter (reuses roast-meter classes) ── */
.rst-roast-meter { display: flex; align-items: center; gap: .6rem; }
.rst-roast-label {
  font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--grey-d); min-width: 78px;
}
.rst-roast-track { flex: 1; height: 4px; background: var(--paper-3); border-radius: 2px; overflow: hidden; max-width: 130px; }
.rst-roast-fill { height: 100%; background: linear-gradient(90deg, var(--ink), var(--coral)); border-radius: 2px; }
.rst-roast-fill[data-level="1"] { width: 38%; }
.rst-roast-fill[data-level="2"] { width: 66%; }
.rst-roast-fill[data-level="3"] { width: 100%; }

/* ── ORIGINS → "specs strip" reuse (build pillars) ── */
.rst-origins { padding: clamp(2rem, 5vw, 4rem) 0; }
.rst-origins-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; margin-top: 1.8rem;
}
.rst-origin-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--anim), box-shadow var(--anim);
}
.rst-origin-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.rst-origin-img { aspect-ratio: 16/10; background: var(--paper-2); 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-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; margin-bottom: .5rem; }
.rst-origin-meta { font-family: var(--ff-mono); font-size: .76rem; color: var(--text-muted); line-height: 1.9; }
.rst-origin-meta span { color: var(--ink); }

/* ── BREW → "use-case selector" reuse ── */
.rst-brew { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rst-brew-tabs { display: flex; gap: .5rem; margin: 1.4rem 0 1.8rem; flex-wrap: wrap; }
.rst-brew-tab {
  font-family: var(--ff-mono); font-size: .78rem; font-weight: 500; letter-spacing: .03em; text-transform: uppercase;
  padding: .6rem 1.1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white);
  color: var(--text-muted); transition: var(--anim);
}
.rst-brew-tab:hover { border-color: var(--grey); color: var(--ink); }
.rst-brew-tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rst-brew-panel { display: none; }
.rst-brew-panel.is-active { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2rem; align-items: start; }
.rst-brew-desc { font-size: 1rem; color: var(--text-muted); line-height: 1.65; }
.rst-brew-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .8rem; }
.rst-brew-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1rem 1.1rem; transition: var(--anim);
}
.rst-brew-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.rst-brew-card-name { font-family: var(--ff-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.rst-brew-card-origin { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-muted); margin-top: .25rem; }

/* ── SUBSCRIPTION BAND → "build promise" ── */
.rst-sub-band { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.rst-sub-inner {
  background: var(--ink); color: var(--paper); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem); position: relative; overflow: hidden;
}
.rst-sub-inner::before {
  /* faint grid on the dark band */
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: linear-gradient(var(--grey) 1px, transparent 1px), linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(120% 100% at 90% 0%, #000, transparent 70%);
          mask-image: radial-gradient(120% 100% at 90% 0%, #000, transparent 70%);
}
.rst-sub-headline { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.05; position: relative; }
.rst-sub-lede { margin-top: 1rem; color: var(--grey-2); max-width: 56ch; position: relative; }
.rst-sub-details { display: flex; flex-wrap: wrap; gap: 1.4rem; margin: 1.6rem 0; position: relative; }
.rst-sub-detail { font-family: var(--ff-mono); font-size: .78rem; color: var(--paper); display: flex; align-items: center; gap: .5rem; }
.rst-sub-detail::before { content: "+"; color: var(--coral); font-weight: 700; }

/* ── FEATURED ── */
.rst-featured { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.rst-featured-header { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }

/* ── JOURNAL → "field notes" ── */
.rst-journal { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--paper-2); border-top: 1px solid var(--line); }
.rst-journal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1.8rem; }
.rst-article-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: var(--anim); }
.rst-article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.rst-article-img { aspect-ratio: 16/9; 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-mono); font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--coral); }
.rst-article-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.18rem; line-height: 1.18; letter-spacing: -0.02em; margin: .5rem 0 .55rem; }
.rst-article-excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.55; }
.rst-article-link { font-family: var(--ff-mono); font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: .35rem; margin-top: .9rem; }
.rst-article-link::after { content: "→"; transition: transform var(--anim); }
.rst-article-link:hover { color: var(--coral); }
.rst-article-link:hover::after { transform: translateX(3px); }

/* ── NEWSLETTER ── */
.rst-newsletter { padding: clamp(3rem, 6vw, 5rem) var(--gutter); }
.rst-newsletter-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem); box-shadow: var(--shadow-card);
}
.rst-newsletter-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.03em; }
.rst-newsletter-desc { color: var(--text-muted); margin: .9rem auto 1.6rem; max-width: 48ch; }
.rst-newsletter-form { display: flex; gap: .6rem; max-width: 440px; margin: 0 auto; }
.rst-newsletter-input { flex: 1; padding: .82rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); font-family: var(--ff-mono); font-size: .9rem; }
.rst-newsletter-input:focus { outline: none; border-color: var(--coral); }
.rst-newsletter-privacy { font-family: var(--ff-mono); font-size: .7rem; color: var(--text-muted); margin-top: 1rem; }

/* ── FOOTER ── */
.rst-foot { background: var(--ink); color: var(--grey-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 repeat(4, 1fr); gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rst-foot-brand { font-family: var(--ff-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.04em; color: var(--paper); }
.rst-foot-tagline { font-family: var(--ff-mono); font-size: .76rem; color: var(--grey); margin: .6rem 0 1.1rem; max-width: 28ch; }
.rst-foot-address { font-family: var(--ff-mono); font-size: .76rem; color: var(--grey-2); line-height: 1.8; }
.rst-foot-hours { font-family: var(--ff-mono); font-size: .73rem; color: var(--grey); margin-top: 1rem; line-height: 1.8; }
.rst-foot-col h4 { font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.rst-foot-col ul { display: flex; flex-direction: column; gap: .55rem; }
.rst-foot-col a { font-size: .85rem; color: var(--grey-2); transition: color var(--anim); }
.rst-foot-col a:hover { color: var(--paper); }
.rst-foot-lang { max-width: var(--max-w); margin: 1.5rem auto 0; display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.rst-lang-btn {
  font-family: var(--ff-mono); font-size: .72rem; font-weight: 500; letter-spacing: .04em;
  color: var(--grey); padding: .35rem .6rem; border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); transition: var(--anim);
}
.rst-lang-btn:hover { color: var(--paper); border-color: var(--grey); }
.rst-lang-btn.is-active { background: var(--coral); color: #fff; border-color: var(--coral); }
.rst-foot-fine {
  max-width: var(--max-w); margin: 1.5rem auto 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: .72rem; color: var(--grey);
}
.rst-foot-fine-links { display: flex; gap: 1.2rem; }
.rst-foot-fine-links a:hover { color: var(--paper); }

/* ── CART DRAWER ── */
.rst-cart-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(21,23,28,0.45); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: 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); z-index: 160;
  background: var(--paper); border-left: 1px solid var(--line); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .34s cubic-bezier(.2,.7,.3,1);
}
.rst-drawer.is-open { transform: translateX(0); }
.rst-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; border-bottom: 1px solid var(--line); }
.rst-drawer-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; }
.rst-drawer-close { width: 34px; height: 34px; display: grid; place-items: center; font-size: 1.5rem; border-radius: var(--radius-md); color: var(--ink); }
.rst-drawer-close:hover { background: var(--paper-2); }
.rst-drawer-items { flex: 1; overflow-y: auto; padding: 1rem 1.4rem; }
.rst-drawer-empty { font-family: var(--ff-mono); font-size: .86rem; color: var(--text-muted); padding: 2rem 0; text-align: center; }
.rst-drawer-item { display: grid; grid-template-columns: 56px 1fr auto; gap: .8rem; padding: .9rem 0; border-bottom: 1px solid var(--line); align-items: start; }
.rst-drawer-item-img { width: 56px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.rst-drawer-item-name { font-weight: 600; font-size: .9rem; line-height: 1.25; }
.rst-drawer-item-meta { font-family: var(--ff-mono); font-size: .7rem; color: var(--text-muted); margin-top: .2rem; }
.rst-drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.rst-drawer-item-price { font-family: var(--ff-mono); font-size: .85rem; font-weight: 600; }
.rst-drawer-remove { font-size: 1.2rem; color: var(--grey); align-self: start; padding: 0 .2rem; }
.rst-drawer-remove:hover { color: var(--coral); }
.rst-drawer-foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); }
.rst-drawer-subtotal { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; font-family: var(--ff-mono); font-size: .9rem; }
.rst-drawer-subtotal-val { font-weight: 600; font-size: 1.05rem; }
.rst-drawer-lock { overflow: hidden; }
.rst-pdp-atc { width: 100%; }

/* qty controls */
.rst-qty-ctrl, .rst-pdp-qty-ctrl { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.rst-qty-btn, .rst-pdp-qty-btn { width: 30px; height: 30px; display: grid; place-items: center; font-size: 1rem; color: var(--ink); transition: background var(--anim); }
.rst-qty-btn:hover, .rst-pdp-qty-btn:hover { background: var(--paper-2); }
.rst-qty-val, .rst-pdp-qty-val { min-width: 34px; text-align: center; font-family: var(--ff-mono); font-size: .85rem; }
.rst-pdp-qty-btn { width: 38px; height: 38px; }

/* ── TOASTS ── */
#rst-toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 300; display: flex; flex-direction: column; gap: .5rem; }
.rst-toast {
  background: var(--ink); color: var(--paper); font-family: var(--ff-mono); font-size: .8rem;
  padding: .7rem 1.1rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lift);
  opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s;
  border-left: 3px solid var(--coral);
}
.rst-toast.is-visible { opacity: 1; transform: none; }

/* ── BREADCRUMB ── */
.rst-breadcrumb { font-family: var(--ff-mono); font-size: .74rem; color: var(--text-muted); padding: .85rem 0; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.rst-breadcrumb a:hover { color: var(--coral); }
.rst-breadcrumb-sep { color: var(--grey); }

/* ── SHOP ── */
.rst-shop-header { border-bottom: 1px solid var(--line); padding: 1.2rem 0 1.6rem; }
.rst-shop-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.035em; margin: .4rem 0 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: .45rem; flex-wrap: wrap; }
.rst-filter-chip {
  font-family: var(--ff-mono); font-size: .74rem; font-weight: 500; letter-spacing: .03em; text-transform: uppercase;
  padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 100px; background: var(--white); color: var(--text-muted); transition: var(--anim);
}
.rst-filter-chip:hover { border-color: var(--grey); color: var(--ink); }
.rst-filter-chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rst-sort-select { font-family: var(--ff-mono); font-size: .8rem; padding: .5rem .7rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); color: var(--ink); }
.rst-shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; padding: 2rem 0 4rem; max-width: var(--max-w); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ── PDP (product detail) ── */
.rst-pdp { max-width: var(--max-w); margin: 0 auto; padding: 1rem var(--gutter) 3rem; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.rst-pdp-gallery { position: sticky; top: 84px; }
.rst-pdp-main-img { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); aspect-ratio: 4/3; box-shadow: var(--shadow-card); }
.rst-pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-thumbs { display: flex; gap: .6rem; margin-top: .8rem; }
.rst-pdp-thumb { width: 84px; aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: var(--anim); }
.rst-pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rst-pdp-thumb.is-active { border-color: var(--coral); box-shadow: 0 0 0 1px var(--coral); }
.rst-pdp-cat { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .07em; text-transform: uppercase; color: var(--coral); }
.rst-pdp-name { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.6rem); line-height: 1.04; letter-spacing: -0.035em; margin: .4rem 0 1.2rem; color: var(--ink); }
.rst-pdp-specs { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 1.2rem; background: var(--white); }
.rst-pdp-spec-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1rem; padding: .7rem 1rem; border-bottom: 1px solid var(--line); }
.rst-pdp-spec-row:last-child { border-bottom: none; }
.rst-pdp-spec-key { font-family: var(--ff-mono); font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); }
.rst-pdp-spec-val { font-family: var(--ff-mono); font-size: .82rem; color: var(--ink); }
.rst-pdp-notes-title { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .55rem; }
.rst-pdp-notes-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1.4rem; }
.rst-selector-label { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .5rem; }
.rst-selector-options { display: flex; flex-wrap: wrap; gap: .5rem; }
.rst-selector-opt {
  font-family: var(--ff-mono); font-size: .78rem; padding: .55rem .9rem;
  border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); color: var(--ink); transition: var(--anim);
}
.rst-selector-opt:hover { border-color: var(--grey); }
.rst-selector-opt.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.rst-pdp-price-row { display: flex; align-items: baseline; gap: .6rem; margin: 1.4rem 0 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.rst-pdp-price { font-family: var(--ff-mono); font-size: 1.9rem; font-weight: 600; color: var(--ink); }
.rst-pdp-price-unit { font-family: var(--ff-mono); font-size: .8rem; color: var(--text-muted); }
.rst-pdp-qty-row { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.2rem; }
.rst-pdp-qty-row .rst-selector-label { margin-bottom: 0; }
.rst-pdp-long { font-size: .94rem; color: var(--text-muted); line-height: 1.7; }
.rst-pdp-long p { margin-bottom: 1rem; }
.rst-pdp-brew-rec { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--coral); border-radius: var(--radius-md); padding: 1rem 1.2rem; margin-top: 1rem; }
.rst-pdp-brew-rec-label { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--coral); margin-bottom: .4rem; }
.rst-pdp-brew-rec p { color: var(--ink); margin: 0; font-size: .88rem; }

/* ── RELATED ── */
.rst-related { padding: 2.5rem 0 4rem; border-top: 1px solid var(--line); }
.rst-related .rst-section-title { margin-bottom: 1.6rem; }
.rst-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }

/* ── CART PAGE ── */
.rst-cart-page { max-width: var(--max-w); margin: 0 auto; padding: 1rem var(--gutter) 4rem; }
.rst-cart-page-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.035em; margin: .4rem 0 1.6rem; }
.rst-cart-table { width: 100%; border-collapse: collapse; }
.rst-cart-table th { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--ink); }
.rst-cart-table td { padding: 1rem .8rem; border-bottom: 1px solid var(--line); vertical-align: middle; }
.rst-cart-item-img { width: 60px; height: 46px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--line); }
.rst-cart-item-name { font-weight: 600; font-size: .92rem; }
.rst-cart-item-name a:hover { color: var(--coral); }
.rst-cart-item-meta { font-family: var(--ff-mono); font-size: .72rem; color: var(--text-muted); margin-top: .25rem; }
.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-mono); font-size: 1rem; padding-top: 1rem; border-top: 1px solid var(--ink); min-width: 280px; justify-content: space-between; }
.rst-cart-total-row strong { font-size: 1.3rem; }
.rst-cart-actions { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ── PAGE HERO (about/contact/legal) ── */
.rst-page-hero { border-bottom: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--paper-2); }
.rst-page-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.rst-page-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.04em; line-height: 1.02; margin-top: .6rem; }
.rst-page-sub { color: var(--text-muted); margin-top: 1rem; max-width: 56ch; font-size: 1.05rem; }

/* ── ABOUT ── */
.rst-about-hero { max-width: var(--max-w); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) var(--gutter); }
.rst-about-lead { font-family: var(--ff-display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 1.85rem); line-height: 1.3; letter-spacing: -0.02em; max-width: 30ch; color: var(--ink); }
.rst-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; max-width: var(--max-w); margin: 0 auto; padding: 2rem var(--gutter); }
.rst-about-img { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.rst-about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.rst-about-process { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(2.5rem,5vw,4rem) 0; }
.rst-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.rst-process-step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; position: relative; }
.rst-process-step::before { content: ""; position: absolute; top: 1.4rem; right: 1.4rem; width: 8px; height: 8px; border-top: 1px solid var(--grey); border-right: 1px solid var(--grey); }
.rst-about-values { max-width: var(--max-w); margin: 0 auto; padding: clamp(2.5rem,5vw,4rem) var(--gutter); }
.rst-values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.25rem; margin-top: 2rem; }
.rst-value-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; background: var(--white); }
.rst-value-num { font-family: var(--ff-mono); font-size: .8rem; color: var(--coral); font-weight: 600; }
.rst-value-title { font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.02em; margin: .6rem 0 .55rem; }
.rst-value-body { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

/* shared section heading marker used by about/process step titles */
.rst-process-step h3 { font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -0.02em; margin-bottom: .5rem; }
.rst-process-step p { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

/* ── CONTACT ── */
.rst-contact-wrap { max-width: var(--max-w); margin: 0 auto; padding: clamp(2rem,5vw,4rem) var(--gutter); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: start; }
.rst-contact-title { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem,3.6vw,2.5rem); letter-spacing: -0.035em; }
.rst-contact-intro { color: var(--text-muted); margin: 1rem 0 1.6rem; }
.rst-contact-meta { font-family: var(--ff-mono); font-size: .82rem; color: var(--ink); line-height: 2; }
.rst-contact-meta strong { color: var(--coral); }

/* forms */
.rst-form { display: flex; flex-direction: column; gap: 1rem; }
.rst-form-group { display: flex; flex-direction: column; gap: .4rem; }
.rst-form-label { font-family: var(--ff-mono); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); }
.rst-form-input, .rst-form-textarea, .rst-form-select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--white); font-size: .92rem; color: var(--ink); transition: var(--anim);
}
.rst-form-input:focus, .rst-form-textarea:focus, .rst-form-select:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 1px var(--coral); }
.rst-form-textarea { resize: vertical; min-height: 130px; font-family: var(--ff-body); }
.rst-form-success { background: rgba(255,90,54,0.08); border: 1px solid rgba(255,90,54,0.3); border-radius: var(--radius-md); padding: 1rem 1.2rem; font-family: var(--ff-mono); font-size: .86rem; color: var(--coral-d); }

/* ── LEGAL ── */
.rst-legal-wrap { max-width: 820px; margin: 0 auto; padding: clamp(2rem,5vw,4rem) var(--gutter); }
.rst-legal-meta { font-family: var(--ff-mono); font-size: .76rem; color: var(--text-muted); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.rst-legal-section { margin-bottom: 2rem; }
.rst-legal-section h2 { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; margin-bottom: .8rem; display: flex; align-items: baseline; gap: .7rem; }
.rst-legal-section h2::before { content: attr(data-num); font-family: var(--ff-mono); font-size: .8rem; color: var(--coral); font-weight: 600; }
.rst-legal-section p, .rst-legal-section li { color: var(--text-muted); font-size: .92rem; line-height: 1.7; margin-bottom: .7rem; }
.rst-legal-section ul { padding-left: 1.2rem; list-style: none; }
.rst-legal-section li::before { content: "—"; color: var(--coral); margin-right: .6rem; margin-left: -1.2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .rst-hero { grid-template-columns: 1fr; }
  .rst-hero-right { order: -1; }
  .rst-pdp { grid-template-columns: 1fr; }
  .rst-pdp-gallery { position: static; }
  .rst-brew-panel.is-active { grid-template-columns: 1fr; }
  .rst-about-grid, .rst-contact-wrap { grid-template-columns: 1fr; }
  .rst-foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .rst-nav { display: none; }
  .rst-hamburger { display: flex; }
  .rst-foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .rst-cart-table thead { display: none; }
  .rst-cart-table, .rst-cart-table tbody, .rst-cart-table tr, .rst-cart-table td { display: block; width: 100%; }
  .rst-cart-table tr { border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 1rem; padding: .5rem; }
  .rst-cart-table td { border: none; padding: .4rem .6rem; }
  .rst-featured-header { flex-direction: column; align-items: start; }
}
@media (max-width: 480px) {
  .rst-hero-ctas { flex-direction: column; }
  .rst-hero-ctas .rst-btn { width: 100%; }
  .rst-newsletter-form { flex-direction: column; }
}
