:root {
  /* Neutral stone chrome + true wine burgundy (no blush pink) */
  --ink: #f1efec;
  --ink-2: #e6e4e0;
  --ink-deep: #f7f6f4;
  --wine: #6E1A24;
  --wine-mid: #8B1E2D;
  --panel: rgba(255, 255, 254, 0.92);
  --panel-solid: #ffffff;
  --line: rgba(42, 36, 34, 0.11);
  --line-strong: rgba(42, 36, 34, 0.2);
  --text: #171412;
  --muted: #5a534f;
  --accent: #9B2332;
  --accent-soft: #A82A3A;
  --accent-dim: rgba(155, 35, 50, 0.08);
  --metal: #6b635e;
  --warn: #8a6418;
  --on-accent: #fffaf8;
  --hero-void: #070305;
  --hero-text: #f4f1ef;
  --hero-muted: #b9aea9;
  --font-brand: "Unbounded", system-ui, sans-serif;
  --font-display: "Source Serif 4", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 76rem;
  --prose-max: min(92ch, 100%);
  --wrap-pad: clamp(1.25rem, 3.2vw, 2.75rem);
  --shot-max: 58rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Self-hosted fonts (no Google Fonts request) */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic-400-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-cyrillic-600-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/unbounded-cyrillic-600-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/unbounded-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-serif-4-cyrillic-600-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/source-serif-4-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--ink-deep);
  background-image:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(155, 35, 50, 0.045), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(110, 26, 36, 0.035), transparent 50%),
    linear-gradient(175deg, #f7f6f4 0%, #f2f0ed 52%, var(--ink) 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

.site-nav,
main,
.site-footer {
  position: relative;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--wine);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--wrap-pad);
  top: 0.75rem;
  z-index: 100;
  padding: 0.55rem 0.9rem;
  background: var(--panel-solid);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--line-strong);
  border-radius: 0.35rem;
}

.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
  white-space: normal;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: rgba(255, 255, 254, 0.72);
  cursor: pointer;
  color: var(--text);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

body:has(.hero) .nav-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--hero-text);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(100% - 2 * var(--wrap-pad), var(--max));
  margin-inline: auto;
}

/* Nav — stone chrome on inner pages; light-on-wine over homepage hero */
.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 80;
  padding: 1.4rem 0;
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

body:has(.hero) .site-nav .brand {
  color: var(--hero-text);
}

body:has(.hero) .nav-links a {
  color: rgba(185, 174, 169, 0.82);
}

body:has(.hero) .nav-links a:hover,
body:has(.hero) .nav-links a[aria-current="page"] {
  color: var(--hero-text);
}

/* Hero — dark wine signal field, one composition */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  align-content: center;
  padding: 5.5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--hero-text);
}

.hero-bg {
  position: absolute;
  inset: -5%;
  z-index: -1;
  overflow: hidden;
  contain: paint;
  background:
    radial-gradient(ellipse 68% 58% at 74% 36%, rgba(155, 35, 50, 0.34), transparent 60%),
    radial-gradient(ellipse 42% 38% at 16% 82%, rgba(110, 26, 36, 0.22), transparent 58%),
    linear-gradient(168deg, #16090e 0%, #0b0507 40%, var(--hero-void) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(7, 3, 5, 0.72) 0%, rgba(7, 3, 5, 0.28) 22%, transparent 48%),
    linear-gradient(to right, rgba(7, 3, 5, 0.7) 0%, rgba(7, 3, 5, 0.28) 32%, transparent 54%),
    radial-gradient(ellipse 55% 50% at 18% 42%, rgba(7, 3, 5, 0.45), transparent 70%);
}

/* Soft glows via large radial gradients — no CSS blur filter */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.85;
}

.hero-glow--a {
  width: min(82vw, 50rem);
  height: min(82vw, 50rem);
  top: -22%;
  right: -14%;
  background: radial-gradient(circle, rgba(155, 35, 50, 0.38) 0%, rgba(90, 20, 30, 0.12) 42%, transparent 70%);
}

.hero-glow--b {
  width: min(42vw, 26rem);
  height: min(42vw, 26rem);
  bottom: 6%;
  left: -6%;
  background: radial-gradient(circle, rgba(110, 26, 36, 0.34) 0%, transparent 68%);
}

.hero-signal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-field {
  opacity: 0.62;
}

.field-ring {
  stroke-width: 0.85;
  stroke-opacity: 0.32;
}

.field-ring--1 { stroke-opacity: 0.62; stroke-width: 1.35; }
.field-ring--2 { stroke-opacity: 0.42; }
.field-ring--3 { stroke-opacity: 0.22; }

.field-core {
  opacity: 1;
}

.field-sweep {
  opacity: 0.62;
}

.field-cross {
  stroke: #9B2332;
  stroke-width: 1.1;
  stroke-opacity: 0.5;
}

.hero-circuit {
  opacity: 0.22;
}

.circuit-path {
  stroke-width: 1.05;
  stroke-opacity: 0.5;
  stroke-dasharray: 8 10;
}

.circuit-path--2 { stroke-dasharray: 6 12; }

.circuit-pad {
  fill: rgba(155, 35, 50, 0.35);
  stroke: rgba(196, 60, 78, 0.4);
  stroke-width: 1;
}

/* Opacity-only entrance — stroke-dashoffset is not compositor-friendly */
.sig-line {
  opacity: 0;
  animation: sigFade 1.1s var(--ease-out) forwards;
}

.sig-line--1 { stroke-width: 1.7; stroke-opacity: 0.7; animation-delay: 0.2s; }
.sig-line--2 { stroke-width: 1.15; stroke-opacity: 0.45; animation-delay: 0.45s; }

.sig-node {
  opacity: 0;
  animation: sigFade 0.65s var(--ease) forwards;
}
.sig-node--1 { animation-delay: 1.0s; }
.sig-node--2 { animation-delay: 1.2s; }
.sig-node--3 { animation-delay: 1.35s; }

@keyframes sigFade {
  from { opacity: 0; }
  to { opacity: 0.95; }
}

.brand::after {
  content: none;
}

.section-kicker {
  font-family: var(--font-brand);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

.section-guides .section-head--row::before {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-bottom: 1.1rem;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero-inner {
  padding: 1.25rem 0 2.75rem;
  max-width: 40rem;
  margin-top: -4vh;
}

.hero-brand {
  font-family: var(--font-brand);
  font-size: clamp(3.85rem, 12vw, 7.35rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 1.35rem;
  opacity: 0;
  animation: riseStrong 1s var(--ease-out) 0.08s forwards;
}

.hero-brand::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin-top: 1.15rem;
  background: linear-gradient(90deg, var(--accent), rgba(155, 35, 50, 0.15));
}

.brand-dot,
.hero-brand em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.1vw, 2.15rem);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.22;
  max-width: 16ch;
  margin: 0 0 1.05rem;
  letter-spacing: -0.018em;
  color: rgba(244, 241, 239, 0.94);
  opacity: 0;
  animation: riseStrong 1s var(--ease-out) 0.26s forwards;
}

.hero-lead {
  max-width: 36ch;
  color: var(--hero-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 2.5rem;
  opacity: 0;
  animation: riseStrong 1s var(--ease-out) 0.44s forwards;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.05rem;
  opacity: 0;
  animation: riseStrong 1s var(--ease-out) 0.62s forwards;
}

@keyframes riseStrong {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.25rem;
  height: 2.4rem;
  display: flex;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  animation: riseStrong 0.9s var(--ease-out) 1s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(185, 174, 169, 0.55), transparent);
  transform-origin: top;
  animation: scrollCue 2.2s ease-in-out 1.6s infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.5rem;
  border-radius: 0.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.3s var(--ease);
}

.btn:hover {
  box-shadow: 0 8px 24px rgba(55, 32, 36, 0.1);
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn-primary:hover {
  background: var(--accent-soft);
  color: var(--on-accent);
  box-shadow: 0 14px 36px rgba(155, 35, 50, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: rgba(155, 35, 50, 0.5);
  color: var(--accent);
  box-shadow: none;
}

.hero .btn-ghost {
  color: var(--hero-text);
  border-color: rgba(185, 174, 169, 0.28);
  background: rgba(255, 250, 248, 0.06);
  padding: 0.9rem 1.4rem;
}

.hero .btn-ghost:hover {
  border-color: rgba(196, 60, 78, 0.5);
  color: #f0e8e4;
  background: rgba(255, 250, 248, 0.07);
  box-shadow: none;
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
}

.hero .btn-primary {
  padding: 0.95rem 1.55rem;
  box-shadow: 0 12px 32px rgba(155, 35, 50, 0.32);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.section-head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: none;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.text-link {
  color: var(--metal);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.text-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(155, 35, 50, 0.45);
}

/* Featured asymmetric */
.feature-split {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.feature-lead,
.feature-side {
  display: block;
  padding: clamp(2rem, 4.5vw, 3rem);
  text-decoration: none;
  color: inherit;
  transition: background 0.35s var(--ease);
}

.feature-lead {
  border-right: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(155, 35, 50, 0.06), transparent 58%);
}

.feature-lead:hover,
.feature-side:hover {
  background: rgba(155, 35, 50, 0.055);
  color: inherit;
}

.feature-kicker {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.feature-lead h2,
.feature-side h2 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.8rem;
  letter-spacing: -0.02em;
  transition: color 0.25s var(--ease);
}

.feature-lead h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
}

.feature-side h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.feature-lead:hover h2,
.feature-side:hover h2 {
  color: var(--accent);
}

.feature-lead p,
.feature-side p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 38ch;
}

.feature-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: letter-spacing 0.25s var(--ease);
}

.feature-lead:hover .feature-link,
.feature-side:hover .feature-link {
  letter-spacing: 0.04em;
}

/* Homepage: curated starter picks */
.guide-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.guide-pick {
  display: flex;
  flex-direction: column;
  padding: 1.55rem 1.4rem 1.6rem 0;
  margin-right: 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition:
    background 0.3s var(--ease),
    padding-left 0.3s var(--ease);
}

.guide-pick:nth-child(3n) {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.guide-pick:nth-child(n + 4) {
  border-bottom: 0;
  padding-bottom: 0.2rem;
}

.guide-pick-num {
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--metal);
  margin-bottom: 0.75rem;
  opacity: 0.7;
  transition: color 0.25s, opacity 0.25s;
}

.guide-pick:hover {
  color: inherit;
  padding-left: 0.45rem;
  background: linear-gradient(90deg, rgba(155, 35, 50, 0.055), transparent 55%);
}

.guide-pick h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.45rem;
  line-height: 1.25;
  transition: color 0.25s var(--ease);
}

.guide-pick p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 28ch;
}

.guide-pick:hover h3 {
  color: var(--accent);
}

.guide-pick:hover .guide-pick-num {
  color: var(--accent);
  opacity: 1;
}

.guides-more {
  margin: 2rem 0 0;
  padding-top: 0.25rem;
}

/* More strip */
.more-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.more-item {
  display: block;
  padding: 1.75rem 1.5rem 1.85rem 0;
  margin-right: 1.5rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease), padding-left 0.3s var(--ease);
}

.more-item:last-child {
  border-right: 0;
  margin-right: 0;
}

.more-item:hover {
  color: inherit;
  padding-left: 0.35rem;
  background: linear-gradient(90deg, rgba(155, 35, 50, 0.04), transparent 50%);
}

.more-num {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--metal);
  margin-bottom: 0.7rem;
  opacity: 0.65;
  transition: color 0.25s, opacity 0.25s;
}

.more-item h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  margin: 0 0 0.55rem;
  transition: color 0.25s var(--ease);
}

.more-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 28ch;
}

.more-item:hover h3 {
  color: var(--accent);
}

.more-item:hover .more-num {
  color: var(--accent);
  opacity: 1;
}

/* Guides catalog — start paths + sectioned index */
.guides-catalog {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.guides-start {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.guides-start-title {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}

.guides-start-lead {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 42ch;
  line-height: 1.5;
}

.guides-section {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.guides-section:not(:has(.guide-entry:not([hidden]))) {
  display: none;
}

.guides-section-title {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}

.guides-section-lead {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 48ch;
}

.guides-section--sheets .guides-section-title {
  color: var(--wine);
}

.guides-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.guides-featured:not(:has(.guide-feature:not([hidden]))) {
  display: none;
}

.guides-start:not(:has(.guide-feature:not([hidden]))) {
  display: none;
}

.guide-feature {
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.35rem 1.55rem 0;
  margin-right: 1.35rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 9.5rem;
  transition: background 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.guide-feature:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.guide-feature:hover {
  color: inherit;
  padding-left: 0.45rem;
  background: linear-gradient(90deg, rgba(155, 35, 50, 0.06), transparent 60%);
}

.guide-feature-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.guide-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
}

.guide-feature--lead h3 {
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  max-width: 14ch;
}

.guide-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34ch;
  flex: 1;
}

.guide-feature:hover h3 {
  color: var(--accent);
}

.guide-feature[hidden],
.guide-entry[hidden] {
  display: none;
}

.guides-index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  column-gap: 2rem;
  row-gap: 0;
  border-top: 1px solid var(--line-strong);
}

.guides-index:not(:has(.guide-entry:not([hidden]))) {
  display: none;
}

.guide-entry {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0.3rem;
  padding: 1.05rem 0 1.15rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.25s var(--ease), background 0.25s;
}

.guide-entry:hover {
  color: inherit;
  padding-left: 0.4rem;
  background: linear-gradient(90deg, rgba(155, 35, 50, 0.05), transparent 50%);
}

.guide-entry h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}

.guide-entry p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.guide-entry:hover h3 {
  color: var(--accent);
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin-top: 0.45rem;
}

.guide-tags span {
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  color: var(--metal);
  opacity: 0.85;
}

.guide-tags span::before {
  content: "#";
  opacity: 0.55;
}

/* Tag filters */
.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding-top: 0.15rem;
}

.tag-filter {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: 0.15rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.tag-filter:hover {
  color: var(--text);
  border-color: rgba(155, 35, 50, 0.4);
}

.tag-filter.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.tag-empty {
  display: none;
  color: var(--muted);
  margin: 1rem 0 0;
}

.tag-empty.is-visible {
  display: block;
}

/* Page hero */
.page-hero {
  padding: 7.5rem 0 2.25rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1.08rem;
}

.page-hero p a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

.page-hero p a:hover {
  color: var(--wine);
}

.page-hero.article-hero h1 {
  max-width: 28ch;
}

/* Feedback form */
.feedback-section {
  padding-bottom: 3.5rem;
}

.feedback-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
}

.feedback-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.02rem;
  line-height: 1.55;
}

.feedback-status {
  margin: 0 0 1.1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line-strong);
  font-size: 0.95rem;
  max-width: 36rem;
}

.feedback-status.is-ok {
  border-color: rgba(155, 35, 50, 0.35);
  color: var(--text);
  background: rgba(155, 35, 50, 0.06);
}

.feedback-status.is-err {
  border-color: rgba(155, 35, 50, 0.55);
  color: var(--wine);
}

.feedback-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  max-width: 36rem;
}

.feedback-label {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.feedback-optional {
  font-weight: 500;
  color: var(--muted);
}

.feedback-input {
  width: 100%;
  appearance: none;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.45;
  padding: 0.65rem 0.75rem;
  border-radius: 0.15rem;
  transition: border-color 0.2s, background 0.2s;
}

.feedback-input:focus {
  outline: 2px solid rgba(155, 35, 50, 0.35);
  outline-offset: 1px;
  border-color: var(--accent);
}

.feedback-textarea {
  resize: vertical;
  min-height: 8rem;
}

.feedback-submit {
  margin-top: 1.1rem;
}

.feedback-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.article-date {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.article-date time {
  font-variant-numeric: tabular-nums;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

.article-meta time {
  font-variant-numeric: tabular-nums;
}

.article-meta-sep {
  opacity: 0.45;
}

.article-read {
  color: var(--text);
  font-weight: 550;
}

.article-sheet {
  color: var(--accent);
  text-decoration: none;
  font-weight: 550;
}

.article-sheet:hover {
  text-decoration: underline;
}

.crumb {
  margin: 0 0 1rem;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.crumb a {
  color: var(--muted);
  text-decoration: none;
}

.crumb a:hover {
  color: var(--accent);
}

/* Article */
.article {
  padding: 1.75rem clamp(1.15rem, 3vw, 2.35rem) 3.25rem;
  margin-bottom: 4.5rem;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  box-shadow: 0 12px 40px rgba(55, 32, 36, 0.06);
}

.article article {
  max-width: none;
  width: 100%;
}

.article-toc {
  margin: 2.25rem 0 2.5rem;
  padding: 0 0 0 1.1rem;
  border-left: 2px solid var(--accent);
  max-width: var(--prose-max);
}

.article-toc-title {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.85rem;
}

.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.15rem 1.75rem;
}

.article-toc--cols ol {
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .article-toc--cols ol {
    grid-template-columns: 1fr 1fr;
  }
}

.article-toc li {
  margin: 0;
  max-width: none;
}

.article-toc a {
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.55rem;
  align-items: baseline;
  padding: 0.38rem 0.35rem 0.38rem 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 0;
  border-radius: 0.15rem;
  transition: color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.article-toc-num {
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.article-toc-label {
  color: inherit;
}

.article-toc a:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.article-toc a:hover .article-toc-num {
  color: var(--wine);
}

.article-toc a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.article h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.55rem);
  font-weight: 600;
  margin: 2.85rem 0 0.9rem;
  scroll-margin-top: 1.5rem;
  color: var(--text);
  letter-spacing: -0.015em;
}

.article h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  margin: 1.75rem 0 0.65rem;
  color: var(--text);
}

.article p,
.article li {
  color: var(--text);
  font-size: clamp(1.08rem, 1.15vw, 1.16rem);
  line-height: 1.78;
  max-width: var(--prose-max);
}

.article p + p {
  margin-top: 1rem;
}

.article ul,
.article ol {
  padding-left: 1.25rem;
  margin: 0.85rem 0 1.1rem;
  max-width: var(--prose-max);
}

.article li + li {
  margin-top: 0.55rem;
}

.article .article-toc ol {
  padding-left: 0;
  margin: 0;
  max-width: none;
}

.article .article-toc li {
  font-size: inherit;
  line-height: inherit;
  max-width: none;
}

.article .article-toc li + li {
  margin-top: 0;
}

.article strong {
  color: var(--text);
  font-weight: 600;
}

.article code {
  font-size: 0.9em;
  padding: 0.1em 0.35em;
  border-radius: 0.2rem;
  background: rgba(155, 35, 50, 0.08);
  color: var(--wine);
}

.shot {
  margin: 1.75rem auto 2.25rem;
  max-width: var(--shot-max);
  width: 100%;
}

.shot img {
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  border: 1px solid var(--line);
  background: var(--panel-solid);
  box-shadow: 0 14px 36px rgba(55, 32, 36, 0.1);
}

.shot figcaption {
  margin-top: 0.65rem;
  margin-inline: auto;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: var(--prose-max);
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1.75rem auto 2.25rem;
  max-width: var(--shot-max);
}

.shot-grid .shot {
  margin: 0;
}

.callout {
  margin: 1.75rem 0;
  padding: 1.05rem 1.15rem;
  border-left: 2px solid var(--accent);
  background: var(--accent-dim);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: var(--prose-max);
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.article-nav a {
  display: block;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.article-nav a:hover {
  transform: none;
  color: inherit;
}

.article-nav .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.article-nav .title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
}

.article-nav a:hover .title {
  color: var(--accent);
}

.article-nav .next {
  text-align: right;
  grid-column: 2;
}

.article-nav .prev {
  grid-column: 1;
}

/* Self-test quiz */
.quiz {
  max-width: 40rem;
  margin: 0;
}

.quiz-panel {
  padding: 0 0 1rem;
}

.quiz-panel.is-enter {
  animation: quizEnter 0.45s var(--ease-out) both;
}

@keyframes quizEnter {
  from {
    opacity: 0;
    transform: translateY(0.65rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.quiz-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.quiz-intro-title,
.quiz-verdict {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.quiz-intro-title {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}

.quiz-intro-lead,
.quiz-verdict-text,
.quiz-recs-lead,
.quiz-note {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 48ch;
  line-height: 1.7;
}

.quiz-note {
  margin-top: 1.35rem;
  font-size: 0.88rem;
}

.quiz-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.quiz-step {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quiz-step strong {
  color: var(--accent);
  font-family: var(--font-brand);
  font-weight: 550;
}

.quiz-topic {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--metal);
  font-weight: 600;
}

.quiz-track {
  height: 2px;
  background: var(--line);
  margin-bottom: 1.6rem;
  overflow: hidden;
}

.quiz-track-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--wine), var(--accent));
  transition: width 0.4s var(--ease);
}

.quiz-question {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 1.35rem;
  max-width: 28ch;
  color: var(--text);
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.quiz-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  width: 100%;
  text-align: left;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.2rem;
  background: rgba(255, 255, 254, 0.72);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.45;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease);
}

.quiz-option:hover:not(:disabled) {
  border-color: rgba(155, 35, 50, 0.5);
  background: #fff;
}

.quiz-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.quiz-option-mark {
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-top: 0.12rem;
  min-width: 1.1rem;
}

.quiz-option-text {
  display: block;
}

.quiz-option.is-selected {
  border-color: rgba(155, 35, 50, 0.55);
  background: var(--accent-dim);
}

.quiz-option.is-correct {
  border-color: rgba(155, 35, 50, 0.55);
  background: var(--accent-dim);
}

.quiz-option.is-wrong {
  border-color: rgba(90, 70, 60, 0.35);
  background: rgba(90, 70, 60, 0.06);
}

.quiz-option.is-dim {
  opacity: 0.45;
}

.quiz-option:disabled {
  cursor: default;
}

.quiz-feedback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 1.1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
}

.quiz-feedback strong {
  font-weight: 600;
}

.quiz-feedback.is-ok strong {
  color: var(--accent);
}

.quiz-feedback.is-bad strong {
  color: var(--warn);
}

.quiz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.quiz-actions .btn:disabled,
.quiz-actions .btn[disabled] {
  opacity: 0.4;
  pointer-events: none;
  transform: none;
}

.quiz-score-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.75rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.quiz-score {
  margin: 0;
  line-height: 1;
}

.quiz-score-num {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.quiz-score-of {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.quiz-verdict {
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
}

.quiz-recs-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.quiz-recs-lead {
  margin-bottom: 1.1rem;
}

.quiz-recs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.quiz-recs li + li {
  margin-top: 0.5rem;
}

.quiz-rec {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.quiz-rec:hover {
  border-bottom-color: rgba(155, 35, 50, 0.45);
}

.quiz-rec-title {
  grid-column: 1;
  font-weight: 600;
  color: var(--text);
  font-size: 1.02rem;
}

.quiz-rec:hover .quiz-rec-title {
  color: var(--accent);
}

.quiz-rec-blurb {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.92rem;
}

.quiz-rec-cta {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.quiz-recs-empty {
  margin: 0;
  color: var(--muted);
}

.quiz-share {
  margin: 1.75rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  max-width: var(--prose-max);
}

.quiz-share-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}

.quiz-share-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.quiz-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.sheet-link {
  margin: 1.25rem 0 0;
}

/* One-screen cheat sheets */
body:has(.cheat-sheet) .skip-link {
  display: none !important;
}

body:has(.cheat-sheet) .site-nav {
  position: relative;
  inset: auto;
  z-index: 10;
  padding: 1rem 0;
  background: var(--panel-solid);
  border-bottom: 1px solid var(--line);
}

body:has(.cheat-sheet) .site-nav .wrap {
  width: min(100% - 2 * var(--wrap-pad), 40rem);
}

body:has(.cheat-sheet) .site-footer .wrap {
  width: min(100% - 2 * var(--wrap-pad), 40rem);
}

body:has(.cheat-sheet) .nav-links {
  gap: 0.35rem 0.85rem;
}

body:has(.cheat-sheet) .nav-links a {
  font-size: 0.8rem;
}

body:has(.cheat-sheet) .site-footer {
  border-top: 1px solid var(--line);
  margin-top: 0;
}

.cheat-sheet {
  width: min(100% - 2 * var(--wrap-pad), 40rem);
  margin: 1.75rem auto 3rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  box-shadow: 0 12px 40px rgba(55, 32, 36, 0.06);
}

.cheat-kicker {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.cheat-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.5vw, 2rem);
  font-weight: 600;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cheat-lead {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.cheat-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: cheat;
}

.cheat-steps li {
  counter-increment: cheat;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.35rem 0.85rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  max-width: none;
}

.cheat-steps li::before {
  content: counter(cheat, decimal-leading-zero);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  padding-top: 0.2rem;
}

.cheat-steps strong {
  display: block;
  grid-column: 2;
  font-size: 1.02rem;
  color: var(--text);
}

.cheat-steps span {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cheat-rules {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
}

.cheat-rules-title {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.55rem;
}

.cheat-rules ul {
  margin: 0;
  padding-left: 1.1rem;
  max-width: none;
}

.cheat-rules li {
  margin: 0.35rem 0;
  color: var(--text);
  font-size: 0.95rem;
  max-width: none;
}

.cheat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.15rem;
}

.cheat-more {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.cheat-more a {
  color: var(--accent);
  text-decoration: none;
}

.cheat-more a:hover {
  text-decoration: underline;
}

.cheat-url {
  margin: 0;
  font-size: 0.82rem;
  color: var(--metal);
}

@media (max-width: 560px) {
  .quiz-score-block {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quiz-question {
    max-width: none;
  }

  .quiz-rec {
    grid-template-columns: 1fr;
  }

  .quiz-rec-cta {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .quiz-panel.is-enter {
    animation: none;
  }

  .quiz-track-fill {
    transition: none;
  }
}

@media print {
  body {
    background: #fff !important;
  }

  .site-nav,
  .site-footer,
  .skip-link,
  .no-print {
    display: none !important;
  }

  .cheat-sheet {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .cheat-steps li,
  .cheat-rules {
    break-inside: avoid;
  }
}

/* About / prose */
.prose {
  max-width: none;
}

.prose p {
  color: var(--text);
  font-size: clamp(1.08rem, 1.2vw, 1.18rem);
  line-height: 1.78;
  max-width: var(--prose-max);
}

.prose p + p {
  margin-top: 1rem;
}

.support-h {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.5rem 0 0.85rem;
  max-width: var(--prose-max);
}

.support-note {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: var(--prose-max);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 48rem;
  margin-top: 1rem;
}

.support-card {
  padding: 1.35rem 1.25rem 1.5rem 0;
  margin-right: 1.5rem;
  border-right: 1px solid var(--line);
}

.support-card:last-child {
  border-right: 0;
}

.support-card h3 {
  font-family: var(--font-display);
  margin: 0.35rem 0 0.45rem;
  font-size: 1.15rem;
}

.support-card p {
  margin: 0 0 1rem;
  max-width: 28ch;
}

.support-card .tag {
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.support-list {
  max-width: var(--prose-max);
  color: var(--muted);
}

/* Tools */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
}

.tool-card {
  padding: 1.4rem 1.3rem 1.5rem;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.tool-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.tool-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.tool-card .tag {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.tool-card .tool-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tool-note {
  margin-top: 2.25rem;
  max-width: var(--prose-max);
  color: var(--muted);
  font-size: 0.92rem;
}

.tool-start {
  margin: 0 0 2.5rem;
  padding: 1.35rem 1.4rem 1.5rem;
  max-width: 42rem;
  border: 1px solid var(--line-strong);
  border-left: 3px solid var(--accent);
  background: linear-gradient(135deg, rgba(155, 35, 50, 0.06), transparent 55%);
}

.tool-start-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.tool-start-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.tool-start-lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 48ch;
}

.quiz-noscript {
  margin: 0;
  padding: 1.25rem 1.35rem;
  max-width: 42rem;
  color: var(--text);
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 0.2rem;
  line-height: 1.55;
}

.quiz-noscript a {
  color: var(--accent);
}

.faq details {
  margin-bottom: 0;
  padding: 1rem 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.faq summary {
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--text);
  max-width: var(--prose-max);
}

.faq-next {
  margin: 1.75rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer — neutral stone + burgundy */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.15rem 0 2.65rem;
  margin-top: 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(42, 36, 34, 0.02));
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-lead {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .more-strip {
    grid-template-columns: 1fr;
  }

  .more-item {
    border-right: 0;
    margin-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
  }

  .guide-picks {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-pick {
    margin-right: 1rem;
    padding-right: 1rem;
  }

  .guide-pick:nth-child(3n) {
    border-right: 1px solid var(--line);
    margin-right: 1rem;
    padding-right: 1rem;
  }

  .guide-pick:nth-child(2n) {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .guide-pick:nth-child(n + 4) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.35rem;
  }

  .guide-pick:nth-child(n + 5) {
    border-bottom: 0;
    padding-bottom: 0.15rem;
  }

  .guides-featured {
    grid-template-columns: 1fr;
  }

  .guide-feature {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
    padding-bottom: 1.35rem;
  }

  .guide-feature:last-child {
    border-bottom: 0;
  }

  .guides-section-lead,
  .guides-start-lead {
    max-width: none;
  }

  .guides-index {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.5rem;
  }

  .section-head--row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .site-nav .wrap {
    flex-wrap: wrap;
  }

  .site-nav .brand {
    order: 1;
  }

  .site-nav nav {
    order: 3;
    width: 100%;
    display: none;
    margin-top: 0.75rem;
    padding: 0.85rem 1rem 1rem;
    background: var(--panel-solid);
    border: 1px solid var(--line-strong);
    border-radius: 0.35rem;
    box-shadow: 0 16px 40px rgba(23, 20, 18, 0.14);
  }

  .site-nav.is-open nav {
    display: block;
  }

  .site-nav.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(7, 3, 5, 0.42);
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links a,
  body:has(.hero) .nav-links a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    padding: 0.7rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }

  .nav-links a:hover,
  .nav-links a[aria-current="page"],
  body:has(.hero) .nav-links a:hover,
  body:has(.hero) .nav-links a[aria-current="page"] {
    color: var(--accent);
  }

  body:has(.hero) .site-nav.is-open .nav-toggle {
    background: rgba(255, 255, 254, 0.95);
    border-color: var(--line-strong);
    color: var(--text);
  }

  .hero {
    padding: 5rem 0 4.25rem;
  }

  .hero-inner {
    padding: 0.75rem 0 2.5rem;
    margin-top: -2vh;
  }

  .hero-brand::after {
    width: 2rem;
    margin-top: 1rem;
  }

  .hero-circuit,
  .hero-scroll-line {
    display: none;
  }

  .sig-line,
  .sig-node {
    animation: none;
    opacity: 0.85;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav .next,
  .article-nav .prev {
    grid-column: 1;
    text-align: left;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .guide-picks,
  .guides-index {
    grid-template-columns: 1fr;
  }

  .guide-pick {
    margin-right: 0;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.15rem;
  }

  .guide-pick:nth-child(n),
  .guide-pick:nth-child(2n),
  .guide-pick:nth-child(3n),
  .guide-pick:nth-child(n + 4),
  .guide-pick:nth-child(n + 5) {
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.15rem;
  }

  .guide-pick:last-child {
    border-bottom: 0;
    padding-bottom: 0.15rem;
  }

  .guides-catalog {
    gap: 1.75rem;
  }

  .footer-links {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand,
  .hero h1,
  .hero-lead,
  .cta-row,
  .hero-scroll,
  .hero-scroll-line,
  .sig-line,
  .sig-node {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .btn:hover,
  .guide-pick:hover,
  .guide-feature:hover,
  .guide-entry:hover,
  .more-item:hover {
    transform: none;
    padding-left: 0;
  }
}
