/* ==========================================================================
   FenceStainSprayer.com standalone stylesheet
   Theme: warm cedar brown + deep teal + cream. backyard-craft / stain-shop feel
   Type:  Bricolage Grotesque (display) + Inter (body), self-hosted via /img/fonts/fonts.css
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  --c-bg:        #2a1a12;   /* warm cedar brown */
  --c-bg-alt:    #3a2418;
  --c-surface:   #ffffff;
  --c-ink:       #231509;
  --c-ink-soft:  #6b5544;
  --c-line:      #e6dcce;
  --c-accent:    #1d6a6a;   /* deep teal */
  --c-accent-2:  #e8a952;   /* amber */
  --c-success:   #6b8f3a;
  --c-cream:     #faf6ef;

  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, sans-serif;
  --fs-1:        clamp(2.4rem, 5vw, 4rem);
  --fs-2:        clamp(1.7rem, 3.2vw, 2.4rem);
  --fs-3:        1.3rem;
  --fs-body:     1.0625rem;
  --lh-tight:    1.1;
  --lh-body:     1.7;

  --r:           10px;       /* softer, craft feel */
  --r-lg:        18px;
  --maxw:        1120px;
  --pad-x:       clamp(1rem, 4vw, 2rem);
}

/* ---------- Reset -------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-ink); }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  font-variation-settings: "wdth" 95;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--c-ink);
}
h1 {
  font-weight: 700;
  font-variation-settings: "wdth" 90;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2 { font-weight: 650; }
h1 { font-size: var(--fs-1); }
h2 { font-size: var(--fs-2); }
h3 { font-size: var(--fs-3); }
p  { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ---------- Masthead ----------------------------------------------------- */
.masthead {
  background: var(--c-bg);
  color: var(--c-cream);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
}
.masthead__row {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem; gap: 1rem;
  min-width: 0;
}
.masthead__row .wordmark { min-width: 0; flex: 0 1 auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.masthead__row .topnav { flex: 0 0 auto; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--c-cream);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.55rem;
  letter-spacing: -0.02em;
}
.wordmark__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-accent-2);
  box-shadow: 0 0 0 3px var(--c-accent);
}
.wordmark__tld { color: var(--c-accent-2); font-weight: 500; }

.topnav { position: relative; }
.topnav > summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.92rem; font-weight: 500;
  color: var(--c-cream); padding: 0.5rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r);
}
.topnav > summary::-webkit-details-marker { display: none; }
.topnav > summary:hover { border-color: var(--c-accent-2); }
.topnav nav a {
  color: var(--c-cream); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 0.55rem 0.75rem;
  border-radius: var(--r);
  transition: color .15s ease, background .15s ease;
}
.topnav nav a:hover { background: rgba(255,255,255,0.08); color: var(--c-accent-2); }

@media (max-width: 820px) {
  .topnav:not([open]) nav { display: none; }
  .topnav nav {
    position: absolute; top: calc(100% + 0.5rem); right: 0;
    background: var(--c-bg-alt);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 0.4rem; min-width: 220px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: flex; flex-direction: column;
  }
  .topnav nav a { padding: 0.65rem 0.9rem; font-size: 0.92rem; }
}
@media (min-width: 821px) {
  .topnav > summary { display: none; }
  .topnav nav {
    display: flex;
    flex-direction: row;
    gap: 0.1rem;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
}
@media (max-width: 480px) {
  .masthead__row { gap: 0.75rem; padding-block: 0.85rem; }
  .wordmark { font-size: 1rem; gap: 0.4rem; }
  .wordmark__dot { width: 8px; height: 8px; box-shadow: 0 0 0 2.5px var(--c-accent); }
  .topnav > summary { padding: 0.4rem 0.75rem; font-size: 0.85rem; }
}

/* ---------- Intro -------------------------------------------------------- */
.intro {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(232,169,82,0.12), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(29,106,106,0.18), transparent 50%),
    var(--c-cream);
  color: var(--c-ink);
  padding-block: clamp(3rem, 8vw, 5.5rem) 0;
  border-bottom: 1px solid var(--c-line);
  overflow: hidden;
}
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.2rem 3rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
/* Breadcrumb , real ontology path */
.crumbs {
  padding-block: 1rem 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}
.crumbs ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem;
}
.crumbs li { list-style: none; display: inline-flex; align-items: center; }
.crumbs li + li::before {
  content: "›";
  color: var(--c-accent);
  margin-right: 0.55rem;
  font-weight: 700;
}
.crumbs a {
  color: var(--c-ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.crumbs a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.crumbs li[aria-current="page"] { color: var(--c-ink); font-weight: 500; }

/* Byline under H1 */
.intro__byline {
  grid-column: 1 / -1;
  margin: -0.6em 0 1.8rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.intro__headline {
  grid-column: 1 / -1;
  font-size: clamp(2rem, 6.5vw, 5.2rem);
  max-width: 18ch;
  margin: 0 0 0.6em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}
.intro__headline::after {
  content: "";
  display: inline-block; width: 0.6ch; height: 0.9em;
  background: var(--c-accent);
  margin-left: 0.15ch; vertical-align: -0.08em;
  animation: introBlink 1.4s steps(2, end) infinite;
}
@keyframes introBlink { 50% { opacity: 0; } }
.intro__stats {
  grid-column: 1 / 2;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border-top: 1px solid var(--c-ink);
}
.intro__stats > div {
  margin: 0;
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  border-bottom: 1px solid var(--c-line);
}
.intro__stats dt {
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--c-ink-soft);
  line-height: 1.3;
  max-width: 22ch;
}
.intro__stats dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  font-variation-settings: "wdth" 88;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  text-align: right;
}
.intro__stats dd::first-letter { color: var(--c-accent); }

.intro__lede {
  grid-column: 2 / -1;
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 48ch;
}
.intro__lede p { margin: 0 0 0.9em; }
.intro__lede strong { color: var(--c-ink); font-weight: 600; }
.intro__actions {
  grid-column: 2 / -1;
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 0.5rem;
  align-self: end;
}

/* 6-rig lineup under the lede */
.intro__lineup {
  grid-column: 1 / -1;
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  counter-reset: rig;
}
.intro__lineup li { list-style: none; margin: 0; padding: 0; }
.rig-chip {
  display: block;
  text-decoration: none;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  counter-increment: rig;
  position: relative;
  height: 100%;
}
.rig-chip::before {
  content: counter(rig);
  position: absolute; top: 0.55rem; left: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  color: var(--c-ink);
  background: var(--c-cream);
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: grid; place-items: center;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.rig-chip:hover {
  transform: translateY(-3px);
  border-color: var(--c-accent);
  box-shadow: 0 10px 24px rgba(42,26,18,0.12);
}
.rig-chip__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rig-chip img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--c-cream);
}
.rig-chip__cap {
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.85rem 0.85rem;
  background: var(--c-surface);
  border-top: 1px solid var(--c-line);
}
.rig-chip__tag {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--c-accent);
  margin-bottom: 0.25rem;
}
.rig-chip__name {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 650;
  font-variation-settings: "wdth" 92;
  line-height: 1.2;
  color: var(--c-ink);
  letter-spacing: -0.005em;
}
@media (max-width: 900px) {
  .intro__lineup { grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
}
@media (max-width: 640px) {
  .intro__lineup { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; margin-top: 1.5rem; }
  .rig-chip__tag { font-size: 0.62rem; padding: 0.45rem 0.6rem 0.15rem; }
  .rig-chip__name { font-size: 0.8rem; padding: 0 0.6rem 0.6rem; }
  .rig-chip::before { width: 1.1rem; height: 1.1rem; font-size: 0.62rem; }
}
@media (max-width: 780px) {
  .intro { padding-block: clamp(2rem, 7vw, 3rem) 0; }
  .intro__grid { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 2rem; }
  .crumbs { padding-block: 0.85rem 0.1rem; font-size: 0.72rem; }
  .crumbs ol { gap: 0.35rem; }
  .intro__byline { font-size: 0.72rem; margin-bottom: 1.4rem; }
  .intro__headline { max-width: 100%; margin-bottom: 0.4em; }
  .intro__stats { grid-column: 1 / -1; border-top-color: var(--c-ink); }
  .intro__stats > div { padding: 0.85rem 0; }
  .intro__stats dt { font-size: 0.72rem; max-width: none; }
  .intro__stats dd { font-size: clamp(2.2rem, 11vw, 3rem); }
  .intro__lede { grid-column: 1 / -1; max-width: 100%; font-size: 0.98rem; }
  .intro__actions { grid-column: 1 / -1; align-self: auto; margin-top: 0.3rem; }
  .intro__actions .btn { flex: 1 1 auto; text-align: center; padding: 0.85rem 1rem; }
}
@media (max-width: 420px) {
  .intro__headline { font-size: clamp(1.75rem, 9vw, 2.2rem); }
}

/* Swatch strip , six signature stain colors */
.swatches__head {
  padding-block: clamp(3rem, 6vw, 4rem) 1.5rem;
}
.swatches__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.swatches__title {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 22ch;
  margin: 0 0 0.7rem;
}
.swatches__lede {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin: 0;
}
.swatch-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 100%;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.swatch-strip li { list-style: none; margin: 0; padding: 0; display: block; }
.swatch {
  background: var(--s);
  color: #faf6ef;
  text-decoration: none;
  padding: 2rem 1.1rem 1.4rem;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: flex-end;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: transform .2s ease, filter .2s ease;
  position: relative;
  overflow: hidden;
}
.swatch-strip li:last-child .swatch { border-right: 0; }
.swatch::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(0,0,0,0.09) 0 2px,
      transparent 2px 10px
    ),
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
  mix-blend-mode: multiply;
}
.swatch:hover { filter: brightness(1.12); transform: translateY(-3px); }
.swatch:hover .swatch__cta { opacity: 1; transform: translateY(0); }
.swatch__brand {
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  opacity: 0.82;
  position: relative;
  margin-bottom: 0.25rem;
}
.swatch__name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  font-variation-settings: "wdth" 92;
  line-height: 1.12;
  letter-spacing: -0.01em;
  position: relative;
  margin-bottom: 0.35rem;
}
.swatch__type {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  opacity: 0.72;
  position: relative;
}
.swatch__cta {
  font-family: var(--font-sans);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 0.9rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  position: relative;
  opacity: 0.6;
  transform: translateY(2px);
  transition: opacity .2s ease, transform .2s ease;
}
@media (max-width: 900px) {
  .swatch-strip { grid-template-columns: repeat(3, 1fr); }
  .swatch { min-height: 120px; padding: 1.8rem 0.85rem 1.4rem; }
  .swatch:nth-child(3) { border-right: 0; }
  .swatch:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.08); }
  .swatch__name { font-size: 0.88rem; }
}
@media (max-width: 520px) {
  .swatch-strip { grid-template-columns: repeat(2, 1fr); }
  .swatch {
    min-height: 100px; padding: 1.4rem 0.75rem 1.1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .swatch:nth-child(-n+2) { border-top: 0; }
  .swatch:nth-child(even) { border-right: 0; }
  .swatch:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .swatch__tag { font-size: 0.62rem; margin-bottom: 0.2rem; }
  .swatch__name { font-size: 0.82rem; }
}

/* ---------- Fences section ---------------------------------------------- */
.fences {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.fences__head {
  max-width: 780px;
  margin: 0 0 2.5rem;
}
.fences__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
}
.fences__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin-bottom: 0.8rem;
}
.fences__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 62ch;
  margin: 0;
}
.fences__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fences__grid li { list-style: none; margin: 0; padding: 0; }
.fence-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  height: 100%;
}
.fence-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 14px 36px rgba(42,26,18,0.14);
}
.fence-card__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.fence-card__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--c-bg-alt);
}
.fence-card__cap {
  padding: 1.2rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.fence-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  font-variation-settings: "wdth" 94;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.2;
}
.fence-card__sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin: 0;
}
.fence-card__body {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin: 0.3rem 0 0;
}
@media (max-width: 900px) {
  .fences__grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (max-width: 560px) {
  .fences__grid { grid-template-columns: 1fr; gap: 1rem; }
  .fences__head { margin-bottom: 2rem; }
  .fence-card__cap { padding: 1rem 1.1rem 1.15rem; }
}

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--r);
  border: 2px solid transparent;
  transition: transform .08s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--c-accent);
  color: var(--c-cream);
  border-color: var(--c-accent);
}
.btn--primary:hover { background: var(--c-bg); color: var(--c-cream); border-color: var(--c-bg); }
.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-cream); }

/* ---------- Section primitives ------------------------------------------ */
section { padding-block: clamp(3rem, 7vw, 5rem); }
.section-lede {
  max-width: 60ch;
  color: var(--c-ink-soft);
  margin-bottom: 2rem;
}

/* ---------- Matchmaker --------------------------------------------------- */
.matchmaker {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.matchmaker__head { max-width: 760px; margin: 0 0 2rem; }
.matchmaker__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.matchmaker__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  color: var(--c-cream);
  max-width: 22ch;
  margin: 0 0 0.8rem;
}
.matchmaker__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.78);
  max-width: 62ch;
  margin: 0;
}

.matchmaker__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.mm-field {
  background: rgba(255, 246, 235, 0.04);
  border: 1px solid rgba(255, 246, 235, 0.12);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.35rem 1.1rem;
  margin: 0;
  min-width: 0;
}
.mm-field legend {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 650;
  color: var(--c-cream);
  padding: 0;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.mm-field__num {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  background: rgba(232, 169, 82, 0.14);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}
.mm-field__hint {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.58);
  margin: 0 0 0.9rem;
  line-height: 1.5;
}
.mm-field__options {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mm-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  background: transparent;
  border: 1px solid rgba(255, 246, 235, 0.1);
  border-radius: var(--r);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.mm-opt:hover { background: rgba(255, 246, 235, 0.06); border-color: rgba(255, 246, 235, 0.2); }
.mm-opt input {
  margin: 0.22em 0 0;
  accent-color: var(--c-accent-2);
  width: 1rem; height: 1rem;
  flex: 0 0 auto;
}
.mm-opt span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.3;
}
.mm-opt span small {
  display: block;
  font-weight: 400;
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 0.15rem;
}
.mm-opt:has(input:checked) {
  background: rgba(232, 169, 82, 0.14);
  border-color: var(--c-accent-2);
}

.matchmaker__submit {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 246, 235, 0.1);
}
.matchmaker .btn--primary {
  background: var(--c-accent-2);
  color: var(--c-ink);
  border-color: var(--c-accent-2);
}
.matchmaker .btn--primary:hover {
  background: var(--c-cream);
  border-color: var(--c-cream);
  color: var(--c-bg);
}
.matchmaker .btn--ghost {
  color: var(--c-cream);
  border: 2px solid rgba(255, 246, 235, 0.3);
  background: transparent;
}
.matchmaker .btn--ghost:hover {
  background: rgba(255, 246, 235, 0.08);
  border-color: var(--c-cream);
}

/* Result card */
.matchmaker__result { display: block; margin-top: 2rem; }
.mm-result {
  background: var(--c-surface);
  color: var(--c-ink);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}
.mm-result__flag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 0.6rem;
}
.mm-result__card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.2rem;
  align-items: start;
}
.mm-result__card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--r);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.mm-result__type {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin: 0 0 0.2rem;
}
.mm-result__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--c-ink);
}
.mm-result__blurb {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  margin: 0 0 0.9rem;
}
.mm-result__bar {
  height: 8px;
  background: var(--c-cream);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}
.mm-result__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
  transition: width .5s ease;
}
.mm-result__score {
  font-size: 0.84rem;
  color: var(--c-ink-soft);
  margin: 0 0 1rem;
}
.mm-result__runner {
  padding-left: 1.5rem;
  border-left: 1px solid var(--c-line);
}
.mm-mini {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  padding: 0.7rem;
  border-radius: var(--r);
  transition: background .15s ease;
}
.mm-mini:hover { background: var(--c-cream); }
.mm-mini img {
  width: 70px; height: 70px;
  border-radius: 4px;
  object-fit: cover;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  flex: 0 0 auto;
}
.mm-mini span {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.mm-mini strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--c-ink);
}
.mm-mini em {
  font-style: normal;
  font-size: 0.76rem;
  color: var(--c-ink-soft);
}
.mm-result__rest {
  grid-column: 1 / -1;
  border-top: 1px solid var(--c-line);
  padding-top: 1rem;
}
.mm-result__rest summary {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  cursor: pointer;
  list-style: none;
  padding: 0.4rem 0;
}
.mm-result__rest summary::-webkit-details-marker { display: none; }
.mm-result__rest summary::before { content: "▸ "; color: var(--c-accent); margin-right: 0.2rem; }
.mm-result__rest[open] summary::before { content: "▾ "; }
.mm-result__rest ol {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.mm-result__rest li { margin: 0; }
.mm-result__rest a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0.75rem;
  background: var(--c-cream);
  border-radius: 4px;
  text-decoration: none;
  color: var(--c-ink);
  transition: background .15s ease;
}
.mm-result__rest a:hover { background: rgba(232, 169, 82, 0.14); }
.mm-rest__name { font-weight: 600; font-size: 0.92rem; }
.mm-rest__score {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--c-ink-soft);
  font-weight: 600;
}
.matchmaker__fallback {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: rgba(255, 246, 235, 0.08);
  border-radius: var(--r);
  color: rgba(250, 246, 239, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .matchmaker__form { grid-template-columns: 1fr; }
  .mm-result { grid-template-columns: 1fr; }
  .mm-result__runner { padding-left: 0; padding-top: 1.2rem; border-left: 0; border-top: 1px solid var(--c-line); }
}
@media (max-width: 560px) {
  .mm-result { padding: 1.2rem; }
  .mm-result__card { grid-template-columns: 1fr; }
  .mm-result__card img { max-width: 220px; }
  .mm-result__name { font-size: 1.3rem; }
}

/* ---------- Proof (Texan backyard test bench) -------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.proof {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.proof__head { max-width: 820px; margin: 0 0 2.5rem; }
.proof__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.proof__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.proof__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0;
}

/* Photo proof grid */
.proof__gallery {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.proof__gallery li { list-style: none; margin: 0; padding: 0; }
.proof__gallery figure {
  margin: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.proof__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--c-bg-alt);
}
.proof__gallery figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--c-ink-soft);
}
.proof__gallery figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 650;
  font-variation-settings: "wdth" 94;
  color: var(--c-ink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 900px) {
  .proof__gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .proof__gallery { grid-template-columns: 1fr; gap: 0.8rem; }
}

/* Trust pillars */
.proof__pillars {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.proof__pillars li {
  list-style: none;
  margin: 0;
  padding: 1.2rem 1.3rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
}
.proof__pillars h3 {
  font-size: 1rem;
  margin: 0 0 0.45rem;
  color: var(--c-ink);
}
.proof__pillars p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 900px) { .proof__pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proof__pillars { grid-template-columns: 1fr; gap: 0.8rem; } }

/* Data tables */
.proof__table-wrap {
  margin: 0 0 2.5rem;
}
.proof__table-cap {
  margin: 0 0 1rem;
  padding: 0;
}
.proof__table-cap h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 0.4rem;
}
.proof__table-cap p {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  max-width: 72ch;
  margin: 0;
}
.proof__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.proof__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  overflow: hidden;
  font-size: 0.92rem;
  min-width: 560px;
}
.proof__table thead th {
  text-align: left;
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof__table tbody th,
.proof__table tbody td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
}
.proof__table tbody th {
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--c-ink);
  font-size: 0.95rem;
  white-space: nowrap;
}
.proof__table tbody td strong {
  font-family: var(--font-display);
  color: var(--c-accent);
  font-size: 1.02rem;
  font-weight: 700;
}
.proof__table tfoot th,
.proof__table tfoot td {
  padding: 0.95rem 1rem;
  border-top: 2px solid var(--c-ink);
  background: var(--c-cream);
  text-align: left;
  font-size: 0.92rem;
}
.proof__table tfoot th { font-family: var(--font-display); font-weight: 700; color: var(--c-ink); }
.proof__table tfoot td strong { color: var(--c-ink); font-size: 1.15rem; }
.proof__table--compact { min-width: 420px; }

/* Mobile table , transform to stacked cards */
@media (max-width: 680px) {
  .proof__table { min-width: 0; border: 0; background: transparent; }
  .proof__table thead { position: absolute; left: -9999px; }
  .proof__table tr {
    display: block;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r);
    margin-bottom: 0.8rem;
    padding: 0.6rem 0.9rem;
  }
  .proof__table tbody th,
  .proof__table tbody td,
  .proof__table tfoot th,
  .proof__table tfoot td {
    display: block;
    border: 0;
    padding: 0.35rem 0;
    white-space: normal;
  }
  .proof__table tbody th,
  .proof__table tfoot th {
    font-size: 1.05rem;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-line);
    margin-bottom: 0.3rem;
    padding-bottom: 0.5rem;
  }
  .proof__table td::before {
    content: attr(data-label) ":  ";
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent);
    display: block;
    margin-bottom: 0.15rem;
  }
}

/* Numbers dl */
.proof__numbers h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  margin: 0 0 1.2rem;
}
.proof__numbers dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.proof__numbers dl > div {
  margin: 0;
  padding: 1.1rem 1.2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
}
.proof__numbers dt {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
  margin-bottom: 0.6rem;
}
.proof__numbers dd {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.proof__numbers dd strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  font-weight: 700;
  font-variation-settings: "wdth" 92;
  line-height: 1;
  color: var(--c-ink);
}
.proof__numbers dd span {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  line-height: 1.4;
}
@media (max-width: 900px) { .proof__numbers dl { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proof__numbers dl { grid-template-columns: 1fr; } }

/* ---------- Reviews (the 6 rigs) ---------------------------------------- */
.reviews {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.reviews__head {
  max-width: 820px;
  margin: 0 0 3rem;
}
.reviews__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.reviews__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.reviews__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0;
}

.review {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.8rem;
  position: relative;
  scroll-margin-top: 5rem;
}
.review__rank {
  position: absolute;
  top: -0.9rem; left: 2rem;
  background: var(--c-bg);
  color: var(--c-accent-2);
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(42,26,18,0.15);
}
.review__figure {
  margin: 0;
  align-self: start;
  position: sticky;
  top: 5rem;
}
.review__figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
}
.review__body { min-width: 0; }
.review__type {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin: 0 0 0.3rem;
}
.review__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  font-variation-settings: "wdth" 92;
  color: var(--c-ink);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.review__meta {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.review__meta small { font-size: 0.8em; opacity: 0.75; }
.review__bullet { color: var(--c-accent); font-weight: 700; }
.review__stars { color: var(--c-accent-2); font-size: 0.95rem; letter-spacing: 0.05em; }
.review__stars .star { color: var(--c-line); }
.review__stars .star.is-full,
.review__stars .star.is-half { color: var(--c-accent-2); }
.review__stars .star.is-half { opacity: 0.55; }

.review__pitch {
  font-size: 1rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.review__procons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.review__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.7rem;
  color: var(--c-accent);
}
.review__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.review__col li {
  position: relative;
  padding: 0 0 0 1.4rem;
  margin: 0 0 0.55rem;
  font-size: 0.92rem;
  color: var(--c-ink);
  line-height: 1.5;
}
.review__col:first-child li::before {
  content: "+";
  position: absolute; left: 0.2rem;
  color: var(--c-success);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.review__col:last-child li::before {
  content: "−";
  position: absolute; left: 0.2rem;
  color: var(--c-accent);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}

.review__ergo {
  margin: 0 0 1.5rem;
  padding: 1.2rem 1.4rem;
  background: var(--c-cream);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
}
.review__ergo h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  margin: 0 0 0.4rem;
  color: var(--c-ink);
}
.review__ergo p {
  font-size: 0.93rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin: 0;
}

.review__specs {
  margin-top: 0.5rem;
  border-top: 1px solid var(--c-line);
  padding-top: 1.4rem;
}
.review__specs > summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  align-items: baseline;
  padding: 0.6rem 0;
  font-family: var(--font-sans);
}
.review__specs > summary::-webkit-details-marker { display: none; }
.review__specs > summary::before {
  content: "▸";
  color: var(--c-accent);
  font-size: 0.95rem;
  line-height: 1;
  grid-row: 1 / span 2;
  align-self: center;
}
.review__specs[open] > summary::before { content: "▾"; }
.review__specs > summary span {
  grid-column: 2;
  font-weight: 650;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-ink);
  line-height: 1.25;
}
.review__specs > summary small {
  grid-column: 2;
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  font-family: var(--font-sans);
  margin-top: 0.15rem;
}
.review__specs-body {
  margin-top: 1rem;
}
.review__specs-list {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--c-cream);
  border-radius: var(--r);
  overflow: hidden;
}
.review__specs-list > div {
  margin: 0;
  padding: 0.65rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  border-bottom: 1px solid var(--c-line);
  align-items: baseline;
}
.review__specs-list > div:last-child { border-bottom: 0; }
.review__specs-list dt {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-ink-soft);
}
.review__specs-list dd {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c-ink);
  font-weight: 500;
}
.review__tested {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.3rem;
  background: var(--c-cream);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
}
.review__tested h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  color: var(--c-ink);
  margin: 0 0 0.7rem;
  line-height: 1.35;
}
.review__tested ul {
  list-style: none;
  margin: 0 0 0.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.review__tested li {
  padding: 0.4rem 0.75rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  font-size: 0.84rem;
  color: var(--c-ink);
  border-radius: 999px;
  font-weight: 500;
}
.review__tested-note {
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  font-style: italic;
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .review {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.3rem;
  }
  .review__figure { position: static; max-width: 260px; margin-inline: auto; }
  .review__rank { left: 1.5rem; }
  .review__specs-body { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .review { padding: 1.25rem 1.1rem; }
  .review__procons { grid-template-columns: 1fr; gap: 1.1rem; }
  .review__rank { left: 1rem; font-size: 0.66rem; padding: 0.45rem 0.8rem; }
  .review__specs-list > div { grid-template-columns: 1fr; gap: 0.2rem; padding: 0.75rem 0.9rem; }
  .review__specs-list dd { font-size: 0.92rem; }
}

/* ---------- Guide (buying guide) --------------------------------------- */
.guide {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.guide__head { max-width: none; margin: 0 0 2.5rem; }
.guide__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.guide__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 28ch;
  margin: 0 0 0.8rem;
}
.guide__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: none;
  margin: 0;
  line-height: 1.7;
}

/* Spec articles */
.spec {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.8rem 2rem;
  margin-bottom: 1.4rem;
}
.spec__head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 1.1rem;
  margin: 0 0 1rem;
}
.spec__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  color: var(--c-accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.spec__label {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 650;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.2;
}
.spec__rule {
  font-size: 0.98rem;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
  margin: 0 0 1.3rem;
  line-height: 1.55;
}
.spec__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin: 0 0 1.1rem;
}
.spec__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.65rem;
}
.spec__col--pass h4 { color: var(--c-success); }
.spec__col--fail h4 { color: var(--c-accent); }
.spec__col ul { list-style: none; margin: 0; padding: 0; }
.spec__col li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--c-ink);
}
.spec__col--pass li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--c-success);
  font-weight: 700;
}
.spec__col--fail li::before {
  content: "✗";
  position: absolute; left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.spec__verdict {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  font-style: italic;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--c-line);
  line-height: 1.6;
}

/* Scenarios */
.guide__scenarios-h {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 3rem 0 0.6rem;
  max-width: 30ch;
}
.guide__scenarios-lede {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 60ch;
  margin: 0 0 2rem;
}
.scenarios {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem;
  counter-reset: scenario;
}
.scenarios li { list-style: none; margin: 0; padding: 0; counter-increment: scenario; }
.scenario {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.7rem;
  height: 100%;
  position: relative;
}
.scenario::before {
  content: counter(scenario, decimal-leading-zero);
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  color: var(--c-line);
  letter-spacing: -0.02em;
}
.scenario__title {
  font-size: 1.1rem;
  font-weight: 650;
  margin: 0 3rem 0.8rem 0;
  color: var(--c-ink);
  line-height: 1.25;
}
.scenario__pick {
  font-size: 0.92rem;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
  margin: 0 0 0.9rem;
  line-height: 1.5;
}
.scenario__pick strong { color: var(--c-accent); }
.scenario__body {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin: 0 0 0.9rem;
}
.scenario__link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin: 0;
}
.scenario__link a {
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.scenario__link a:hover { border-bottom-color: var(--c-accent); }

@media (max-width: 820px) {
  .spec { padding: 1.5rem 1.3rem; }
  .spec__cols { grid-template-columns: 1fr; gap: 1rem; }
  .scenarios { grid-template-columns: 1fr; }
}

/* ---------- Before / After gallery ------------------------------------- */
.ba {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ba__head { max-width: 780px; margin: 0 0 2.5rem; }
.ba__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.ba__head h2 {
  color: var(--c-cream);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.ba__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.78);
  max-width: 62ch;
  margin: 0;
}

.ba__grid {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.ba__grid li { list-style: none; margin: 0; padding: 0; }
.ba__card {
  margin: 0;
  background: var(--c-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.ba__card:hover { transform: translateY(-3px); border-color: var(--c-accent-2); }
.ba__card img {
  display: block;
  width: 100%;
  aspect-ratio: 2000 / 1200;
  object-fit: cover;
}
.ba__card figcaption {
  padding: 1.1rem 1.3rem 1.25rem;
  color: var(--c-cream);
}
.ba__card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--c-cream);
  margin: 0 0 0.2rem;
  line-height: 1.2;
}
.ba__stain {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  margin: 0 0 0.6rem;
}
.ba__note {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.68);
  line-height: 1.55;
  margin: 0;
}

/* Stain swatch comparison , full width hero image */
.stain-swatches {
  margin: 0;
  background: var(--c-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stain-swatches img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.stain-swatches figcaption {
  padding: 1.5rem 1.8rem 1.8rem;
}
.stain-swatches h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  font-weight: 650;
  color: var(--c-cream);
  margin: 0 0 0.6rem;
  line-height: 1.25;
  max-width: 32ch;
}
.stain-swatches p {
  font-size: 0.93rem;
  color: rgba(250, 246, 239, 0.72);
  line-height: 1.6;
  margin: 0;
  max-width: 72ch;
}

@media (max-width: 760px) {
  .ba__grid { grid-template-columns: 1fr; }
  .stain-swatches figcaption { padding: 1.2rem 1.3rem 1.4rem; }
}

/* ---------- Spray Tips section ----------------------------------------- */
.tips-section {
  background: var(--c-bg);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tips-section__head { max-width: 780px; margin: 0 0 2.5rem; }
.tips-section__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.tips-section__head h2 {
  color: var(--c-cream);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 28ch;
  margin: 0 0 0.8rem;
}
.tips-section__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.78);
  max-width: 64ch;
  margin: 0;
}
.tips-section h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  color: var(--c-cream);
  margin: 2.5rem 0 1rem;
}
.tips-section__decoder {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin: 0 0 2rem;
}
.tips-section__decoder > div {
  background: rgba(255,246,235,0.06);
  border: 1px solid rgba(255,246,235,0.12);
  border-radius: var(--r-lg);
  padding: 1.2rem 1.4rem;
}
.tips-section__decoder dt {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.02rem;
  color: var(--c-accent-2);
  margin: 0 0 0.4rem;
}
.tips-section__decoder dd {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(250,246,239,0.78);
  line-height: 1.6;
}
.tips-section__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tips-section__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 600px;
}
.tips-section__table th,
.tips-section__table td {
  padding: 0.7rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,246,235,0.1);
  vertical-align: top;
}
.tips-section__table th {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2);
  white-space: nowrap;
}
.tips-section__table td { color: rgba(250,246,235,0.85); }
.tips-section__table td strong { color: var(--c-cream); }
.tips-section__table tbody tr:hover { background: rgba(255,246,235,0.04); }

/* Per-rig tip cards */
.tip-rig {
  background: rgba(255,246,235,0.04);
  border: 1px solid rgba(255,246,235,0.12);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.2rem;
}
.tip-rig__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-accent);
  margin: 0 0 0.5rem;
}
.tip-rig__system {
  font-size: 0.88rem;
  color: rgba(250,246,235,0.7);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.tip-rig__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tip-rig__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 500px;
}
.tip-rig__table th,
.tip-rig__table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,246,235,0.08);
  vertical-align: top;
}
.tip-rig__table th {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2);
  white-space: nowrap;
}
.tip-rig__table td { color: rgba(250,246,235,0.82); }
.tip-rig__table td strong { color: var(--c-cream); }
.tip-rig__table tbody tr:hover { background: rgba(255,246,235,0.04); }

@media (max-width: 560px) {
  .tips-section__decoder { grid-template-columns: 1fr; }
  .tip-rig { padding: 1.1rem; }
}

/* ---------- Routine (how-to) ------------------------------------------- */
.routine {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.routine__head { max-width: 820px; margin: 0 0 2.5rem; }
.routine__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.routine__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 22ch;
  margin: 0 0 0.8rem;
}
.routine__lede {
  font-size: 1.02rem;
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0;
}

/* Hero progression image */
.routine__hero {
  margin: 0 0 2.5rem;
  background: var(--c-bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
}
.routine__hero img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}
.routine__hero figcaption {
  padding: 1.3rem 1.6rem 1.5rem;
  color: var(--c-cream);
}
.routine__hero h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  color: var(--c-cream);
  margin: 0 0 0.5rem;
  max-width: 36ch;
  line-height: 1.25;
}
.routine__hero p {
  font-size: 0.95rem;
  color: rgba(250, 246, 239, 0.75);
  line-height: 1.6;
  margin: 0;
  max-width: 70ch;
}

/* 6 numbered steps */
.routine__steps {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.routine__steps li { list-style: none; margin: 0; padding: 0; }
.routine__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  height: 100%;
}
.routine__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  font-variation-settings: "wdth" 85;
  color: var(--c-accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
  align-self: start;
}
.routine__step h3 {
  font-size: 1.05rem;
  font-weight: 650;
  margin: 0 0 0.5rem;
  color: var(--c-ink);
  line-height: 1.25;
}
.routine__step p {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 780px) { .routine__steps { grid-template-columns: 1fr; } }

/* Weather / safety aside */
.routine__weather {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding: 1.8rem 2rem;
  border-radius: var(--r-lg);
  margin: 0 0 3rem;
}
.routine__weather h3 {
  color: var(--c-cream);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.routine__weather ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.routine__weather li {
  padding: 0.85rem 1.1rem;
  background: rgba(255, 246, 235, 0.05);
  border-left: 3px solid var(--c-accent-2);
  border-radius: var(--r);
}
.routine__weather strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  color: var(--c-accent-2);
  margin-bottom: 0.2rem;
}
.routine__weather span {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.78);
  line-height: 1.55;
}

/* Q&A collapsibles */
.routine__qa { display: grid; gap: 1rem; }
.qa {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  scroll-margin-top: 5rem;
}
.qa[open] { border-color: var(--c-accent); }
.qa > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: baseline;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary::before {
  content: "＋";
  color: var(--c-accent);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.qa[open] > summary::before { content: "−"; }
.qa > summary h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.1vw, 1.3rem);
  font-weight: 650;
  color: var(--c-ink);
  line-height: 1.3;
}
.qa__body {
  padding: 0 1.6rem 1.6rem;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}
.qa__body p { margin: 0 0 0.9em; }
.qa__body strong { color: var(--c-ink); }
.qa__body h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  font-weight: 700;
  margin: 1.5rem 0 0.6rem;
}
.qa__body ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}
.qa__body li {
  position: relative;
  padding: 0 0 0 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--c-ink);
}
.qa__body li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.qa__verdict {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: var(--c-cream);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
  font-size: 0.93rem;
}

.qa__table-wrap { margin: 1rem 0 1.4rem; }
.qa__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.qa__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-cream);
  border-radius: var(--r);
  overflow: hidden;
  font-size: 0.88rem;
  min-width: 620px;
}
.qa__table thead th {
  text-align: left;
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 0.75rem 0.95rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.qa__table tbody th,
.qa__table tbody td {
  padding: 0.75rem 0.95rem;
  border-top: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
}
.qa__table tbody th {
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--c-ink);
  font-size: 0.92rem;
}
.qa__table tbody td strong { color: var(--c-accent); font-weight: 700; }

@media (max-width: 680px) {
  .qa__table { min-width: 0; border: 0; background: transparent; }
  .qa__table thead { position: absolute; left: -9999px; }
  .qa__table tr {
    display: block;
    background: var(--c-cream);
    border-radius: var(--r);
    margin-bottom: 0.7rem;
    padding: 0.6rem 0.9rem;
  }
  .qa__table tbody th,
  .qa__table tbody td {
    display: block;
    border: 0;
    padding: 0.3rem 0;
  }
  .qa__table tbody th { font-size: 1rem; border-bottom: 1px solid var(--c-line); margin-bottom: 0.3rem; padding-bottom: 0.4rem; }
  .qa__table td::before {
    content: attr(data-label) ":  ";
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent);
    display: block;
    margin-bottom: 0.15rem;
  }
}

/* ---------- Estimator (stain calculator) ------------------------------- */
.estimator {
  background: var(--c-bg);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.estimator__head { max-width: 780px; margin: 0 0 2.5rem; }
.estimator__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.estimator__head h2 {
  color: var(--c-cream);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 28ch;
  margin: 0 0 0.8rem;
}
.estimator__lede {
  font-size: 1rem;
  color: rgba(250, 246, 239, 0.78);
  max-width: 64ch;
  margin: 0;
}

/* Split layout: inputs left, sticky result right */
.estimator__layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}
.estimator__inputs {
  display: grid;
  gap: 1.1rem;
}

.est-field {
  background: rgba(255,246,235,0.04);
  border: 1px solid rgba(255,246,235,0.12);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.4rem 1.2rem;
  margin: 0;
  min-width: 0;
}
.est-field legend {
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--c-cream);
  display: flex; align-items: baseline; gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.est-field__num {
  font-family: var(--font-sans);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  background: rgba(232, 169, 82, 0.14);
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}

/* Number slider field */
.est-field__slider {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.est-field__slider > span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.68);
}
.est-field__slider strong { color: var(--c-accent-2); }
.est-field__slider input[type="number"] {
  background: var(--c-bg-alt);
  border: 2px solid rgba(255,246,235,0.2);
  border-radius: var(--r);
  color: var(--c-cream);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  padding: 0.6rem 1rem;
  width: 100%;
  text-align: left;
  letter-spacing: -0.02em;
  outline: none;
  transition: border-color .15s ease;
}
.est-field__slider input[type="number"]:focus { border-color: var(--c-accent-2); }
.est-field__slider small {
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.5);
  line-height: 1.5;
}

/* Chip radios */
.est-field__chips {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}
.est-field__chips--two { grid-template-columns: repeat(2, 1fr); }
.est-chip {
  position: relative;
  cursor: pointer;
}
.est-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.est-chip span {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.8rem;
  background: rgba(255,246,235,0.03);
  border: 1.5px solid rgba(255,246,235,0.15);
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--c-cream);
  text-align: center;
  transition: border-color .15s ease, background .15s ease, transform .1s ease;
  height: 100%;
}
.est-chip span small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.est-chip:hover span { border-color: rgba(255,246,235,0.3); }
.est-chip input:checked + span {
  background: rgba(232, 169, 82, 0.18);
  border-color: var(--c-accent-2);
}
.est-chip input:focus-visible + span {
  outline: 2px solid var(--c-accent-2);
  outline-offset: 2px;
}

/* Full-width option radios */
.est-field__options {
  display: grid;
  gap: 0.5rem;
}
.est-opt {
  position: relative;
  cursor: pointer;
}
.est-opt input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.est-opt span {
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem;
  background: rgba(255,246,235,0.03);
  border: 1.5px solid rgba(255,246,235,0.12);
  border-radius: var(--r);
  transition: border-color .15s ease, background .15s ease;
}
.est-opt strong {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 650;
  color: var(--c-cream);
  line-height: 1.25;
}
.est-opt small {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.55);
  margin-top: 0.25rem;
  line-height: 1.45;
}
.est-opt:hover span { border-color: rgba(255,246,235,0.25); }
.est-opt input:checked + span {
  background: rgba(232, 169, 82, 0.18);
  border-color: var(--c-accent-2);
}
.est-opt input:focus-visible + span {
  outline: 2px solid var(--c-accent-2);
  outline-offset: 2px;
}

.estimator__submit {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.4rem;
}
.estimator__submit small {
  font-size: 0.76rem;
  color: rgba(250, 246, 239, 0.5);
}

/* Result card , sticky on desktop */
.estimator__result {
  position: sticky;
  top: 5.5rem;
  background: var(--c-cream);
  color: var(--c-ink);
  border-radius: var(--r-lg);
  padding: 1.8rem 1.9rem 2rem;
  border: 1px solid var(--c-line);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.est-result__flag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  margin: 0 0 0.8rem;
}
.est-result__hero {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  border-bottom: 2px solid var(--c-ink);
  padding-bottom: 1rem;
  margin: 0 0 1rem;
}
.est-result__big {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 6.5rem);
  font-weight: 800;
  font-variation-settings: "wdth" 80;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--c-ink);
}
.est-result__big::first-letter { color: var(--c-accent); }
.est-result__unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--c-ink);
}
.est-result__unit small {
  display: block;
  font-size: 0.84rem;
  color: var(--c-ink-soft);
  margin-top: 0.15rem;
}
.est-result__cost {
  margin: 0 0 1.2rem;
  line-height: 1.3;
}
.est-result__cost strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-accent);
}
.est-result__cost small {
  font-size: 0.82rem;
  color: var(--c-ink-soft);
}
.est-result__breakdown {
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  background: rgba(29, 106, 106, 0.08);
  border-radius: var(--r);
}
.est-result__breakdown > div {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  font-size: 0.82rem;
}
.est-result__breakdown dt {
  color: var(--c-ink-soft);
  font-family: var(--font-sans);
}
.est-result__breakdown dd {
  margin: 0;
  color: var(--c-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.est-result__cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 1.1rem;
}
.est-result__rig {
  border-top: 1px solid var(--c-line);
  padding-top: 1rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.est-result__rig-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-ink-soft);
}
.est-result__rig a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--c-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.est-result__rig a:hover { border-bottom-color: var(--c-accent); }
.est-result__rig small {
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

/* Reference table */
.estimator__table-wrap { margin: 2.5rem 0 2rem; }
.estimator__table-cap { margin: 0 0 1rem; }
.estimator__table-cap h3 {
  color: var(--c-cream);
  font-size: clamp(1.25rem, 2.3vw, 1.55rem);
  margin: 0 0 0.4rem;
}
.estimator__table-cap p {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.6);
  max-width: 72ch;
  margin: 0;
}
.estimator__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.estimator__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-bg-alt);
  border: 1px solid rgba(255,246,235,0.12);
  border-radius: var(--r);
  overflow: hidden;
  font-size: 0.9rem;
  min-width: 640px;
  color: var(--c-cream);
}
.estimator__table thead th {
  text-align: left;
  background: rgba(0,0,0,0.25);
  color: var(--c-accent-2);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.estimator__table tbody th,
.estimator__table tbody td {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(255,246,235,0.08);
  vertical-align: top;
  text-align: left;
}
.estimator__table tbody th {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.95rem;
}
.estimator__table tbody td strong {
  color: var(--c-accent-2);
  font-size: 1.02rem;
}

/* Notes accordion */
.estimator__notes {
  margin-top: 1rem;
  background: rgba(255,246,235,0.04);
  border: 1px solid rgba(255,246,235,0.12);
  border-radius: var(--r);
  padding: 0 1.3rem;
}
.estimator__notes > summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-weight: 650;
  color: var(--c-cream);
  font-size: 0.98rem;
}
.estimator__notes > summary::-webkit-details-marker { display: none; }
.estimator__notes > summary::before {
  content: "▸ ";
  color: var(--c-accent-2);
  margin-right: 0.4rem;
}
.estimator__notes[open] > summary::before { content: "▾ "; }
.estimator__notes-body {
  padding: 0 0 1.3rem;
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.75);
  line-height: 1.65;
}
.estimator__notes-body p { margin: 0 0 0.9rem; }
.estimator__notes-body dl {
  margin: 1rem 0;
  display: grid;
  gap: 0.4rem;
}
.estimator__notes-body dl > div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.8rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,246,235,0.08);
}
.estimator__notes-body dl > div:last-child { border-bottom: 0; }
.estimator__notes-body dt {
  color: var(--c-accent-2);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
}
.estimator__notes-body dd {
  margin: 0;
  color: rgba(250, 246, 239, 0.75);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .estimator__layout { grid-template-columns: 1fr; }
  .estimator__result { position: static; }
  .est-field__chips { grid-template-columns: repeat(3, 1fr); }
  .est-field__chips--two { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .estimator__table { min-width: 0; border: 0; background: transparent; }
  .estimator__table thead { position: absolute; left: -9999px; }
  .estimator__table tr {
    display: block;
    background: var(--c-bg-alt);
    border: 1px solid rgba(255,246,235,0.12);
    border-radius: var(--r);
    margin-bottom: 0.7rem;
    padding: 0.7rem 0.95rem;
  }
  .estimator__table tbody th,
  .estimator__table tbody td {
    display: block;
    border: 0;
    padding: 0.3rem 0;
  }
  .estimator__table tbody th { font-size: 1rem; border-bottom: 1px solid rgba(255,246,235,0.12); padding-bottom: 0.4rem; margin-bottom: 0.3rem; }
  .estimator__table td::before {
    content: attr(data-label) ":  ";
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent-2);
    display: block;
    margin-bottom: 0.15rem;
  }
}
@media (max-width: 540px) {
  .est-field__chips { grid-template-columns: repeat(2, 1fr); }
  .est-result__big { font-size: clamp(3.5rem, 15vw, 5rem); }
  .estimator__notes-body dl > div { grid-template-columns: 1fr; }
}

/* ---------- Trust -------------------------------------------------------- */

/* ---------- Workshop / testing ground ----------------------------------- */



/* The cardboard sprayer boxes overlaid on the workshop desk photo */


@media (max-width: 720px) {
  .workshop__tile--desk,
}

/* ---------- Picks (top sprayer cards) ----------------------------------- */
@media (max-width: 640px) {
}
.pick__price,

/* ---------- Tests accordion (paint workflow per sprayer) ---------------- */

@keyframes testsReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 820px) {
}
@media (max-width: 640px) {
}


@media (max-width: 640px) {
}
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }



/* Placeholder styling when image is missing */


@media (max-width: 820px) {
}

/* ---------- Guide -------------------------------------------------------- */
.guide { background: var(--c-surface); }
.guide h3 { margin-top: 2rem; color: var(--c-bg); }

/* ---------- Filter chips ------------------------------------------------ */

/* Tablet and smaller: label takes its own full-width line, chips wrap horizontally beneath */
@media (max-width: 820px) {
}
@media (max-width: 480px) {
}

/* ---------- Fence paints library ---------------------------------------- */
.picks h2,
.paints-lib h2,
.brushes h2,
.compare h2,
.lidl h2,
.picks .section-lede,
.paints-lib .section-lede,
.brushes .section-lede,
.compare .section-lede,
.lidl .section-lede,


/* ---------- You might also need cross-sell ----------------------------- */

/* ---------- Compare table ------------------------------------------------ */
.table-scroll { overflow-x: auto; }

/* ---------- "See more below" scroll cue --------------------------------- */
@keyframes morePulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (max-width: 640px) {
}

/* ---------- Catalogued (not tested) sprayers ---------------------------- */

@media (max-width: 720px) {
}

/* ---------- Lidl / Aldi section ----------------------------------------- */

/* ---------- Skip these callout ------------------------------------------ */
.skip { background: var(--c-bg-alt); color: var(--c-cream); }
.skip__box {
  background: rgba(255,255,255,.04);
  border-left: 4px solid var(--c-accent);
  padding: 2rem;
  border-radius: var(--r);
}
.skip__box h2 { color: var(--c-accent-2); margin-top: 0; }
.skip__box p { color: #cfd8d2; }
.skip__box strong { color: var(--c-cream); }

/* ---------- FAQ ---------------------------------------------------------- */
.faq { background: var(--c-surface); }
.faq details {
  border-bottom: 1px solid var(--c-line);
  padding: 1.1rem 0;
}
.faq summary {
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 1.5rem;
  color: var(--c-accent);
  font-weight: 400;
}
.faq details[open] summary::after { content: '−'; }
.faq details > p { margin-top: 0.6rem; color: var(--c-ink-soft); }

/* ---------- Footer ------------------------------------------------------- */
.site-footer {
  background: var(--c-bg);
  color: #cfd8d2;
  padding-block: 2rem;
  font-size: 0.9rem;
}
.site-footer p { margin: 0 0 0.5rem; }
.site-footer .disclosure { color: #8a9690; font-size: 0.82rem; }
.site-footer .footer__contact {
  margin: 0.85rem 0;
  padding: 0.85rem 1rem;
  background: rgba(243, 201, 138, 0.08);
  border-left: 3px solid #d97742;
  border-radius: 3px;
  color: #f3c98a;
  font-size: 0.92rem;
}
.site-footer .footer__contact a {
  color: #f3c98a;
  font-weight: 700;
  text-decoration: underline;
}
.site-footer .footer__contact a:hover { color: #fff; }

.spend__table tbody th,
.spend__table tfoot th,


@media (max-width: 820px) {
  .spend__table thead th,
  .spend__table tbody th,
}
@media (max-width: 640px) {
  /* Convert table to stacked cards on mobile */
  .spend__table tbody th,
  .spend__table tbody td,
  .spend__table tfoot th,
  .spend__table tbody td::before,
  .table-scroll:has(.spend__table) { overflow-x: visible; }
}

.affiliate-notice {
  background: #fff7ed;
  border-top: 1px solid #f3c98a;
  border-bottom: 1px solid #f3c98a;
  padding: 1.1rem 0;
}
.affiliate-notice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
}
.affiliate-notice__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 0;
}
.affiliate-notice__col + .affiliate-notice__col {
  border-left: 1px solid rgba(217, 119, 66, 0.25);
  padding-left: 1.5rem;
}
.affiliate-notice__badge {
  display: inline-block;
  background: #d97742;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
}
.affiliate-notice__badge--alt {
  background: #6b8e6f;
}
.affiliate-notice__body {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #5a3210;
}
.affiliate-notice__body strong { color: #b04a14; font-weight: 700; }
.affiliate-notice em {
  font-style: italic;
  color: #b04a14;
  font-weight: 600;
  background: rgba(217, 119, 66, 0.08);
  padding: 0 0.25rem;
  border-radius: 2px;
}
@media (max-width: 820px) {
  .affiliate-notice__grid { gap: 1.25rem; }
  .affiliate-notice__col + .affiliate-notice__col { padding-left: 1.25rem; }
}
@media (max-width: 720px) {
  .affiliate-notice__grid { grid-template-columns: 1fr; }
  .affiliate-notice__col + .affiliate-notice__col {
    border-left: 0;
    border-top: 1px solid rgba(217, 119, 66, 0.25);
    padding-left: 0;
    padding-top: 1rem;
  }
}
@media (max-width: 480px) {
  .affiliate-notice { padding: 0.95rem 0; }
  .affiliate-notice__body { font-size: 0.82rem; }
  .affiliate-notice__badge { font-size: 0.62rem; padding: 0.25rem 0.55rem; }
}

.skip { padding-block: 2.5rem; }
.faq { padding-block: 3.5rem; margin-top: 1rem; }
.faq h2 { margin-bottom: 1.25rem; }

.site-footer .footer__brand {
  font-style: normal;
  margin: 0 0 1rem;
  padding: 0;
}
.site-footer .footer__brandline {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: #f5f1e8;
}
.site-footer .footer__brandline strong { color: #f3c98a; }
.site-footer .footer__copy { margin: 0; }
.site-footer .footer__copy small { font-size: 0.82rem; color: #8a9690; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #d97742;
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #f3c98a;
}

.howto__compare tbody th,
@media (max-width: 720px) {
  .howto__compare tbody th,
}

@media (max-width: 900px) {
}
@media (max-width: 640px) {
}


.guide__list {
  margin: 0.6rem 0 0.8rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.guide__list li {
  background: #f7f8f4;
  border-left: 3px solid #6b8e6f;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  border-radius: 2px;
}
.guide__list strong { color: #1f3324; }

@media (max-width: 640px) {
}


/* ============ Fence paint calculator ============ */


.calc__field input[type="number"],
.calc__field input[type="number"]:focus,

/* Chips for binary radios */

/* Cards for paint and tool */

@media (max-width: 640px) {
}

@media (max-width: 820px) {
}
@media (max-width: 640px) {
  .calc__field input[type="number"],
}

/* ---------- Share FAB (floating action button) ------------------------- */
.share-fab {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: clamp(1rem, 2.5vw, 1.75rem);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  background: var(--c-bg);
  color: var(--c-cream);
  border: 1.5px solid var(--c-accent-2);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(42, 26, 18, 0.35), 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), opacity 0.2s ease, background 0.15s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}
.share-fab:hover { background: var(--c-bg-alt); transform: translateY(-3px); }
.share-fab:active { transform: translateY(0); }
.share-fab__icon { color: var(--c-accent-2); flex: 0 0 auto; }
.share-fab__label { white-space: nowrap; }

@keyframes fabShake {
  0%, 92%, 100% { transform: translate(0, 0) rotate(0); }
  93% { transform: translate(-2px, -1px) rotate(-2deg); }
  94% { transform: translate(2px, -1px) rotate(2deg); }
  95% { transform: translate(-2px, 1px) rotate(-2deg); }
  96% { transform: translate(2px, 0) rotate(1deg); }
  97% { transform: translate(-1px, -1px) rotate(-1deg); }
  98% { transform: translate(1px, 1px) rotate(1deg); }
  99% { transform: translate(0, 0) rotate(0); }
}
.share-fab.is-wiggling { animation: fabShake 20s ease-in-out infinite; }
.share-fab.is-copied { background: var(--c-accent); border-color: var(--c-accent); }

@media (max-width: 640px) {
  .share-fab {
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    gap: 0.45rem;
  }
  .share-fab.is-hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
  }
}

.share-toast {
  position: fixed;
  right: clamp(1rem, 2.5vw, 1.75rem);
  bottom: calc(clamp(1rem, 2.5vw, 1.75rem) + 60px);
  z-index: 101;
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 0.7rem 1rem;
  border-radius: var(--r);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: toastIn 0.3s ease-out;
  max-width: 260px;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .share-fab.is-wiggling { animation: none; }
  .share-fab { transition: none; }
  .share-toast { animation: none; }
}

/* ---------- Matrix (comparison table) ---------------------------------- */
.matrix {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 1px solid var(--c-line);
}
.matrix__head { max-width: 820px; margin: 0 0 2rem; }
.matrix__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.matrix__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 26ch;
  margin: 0 0 0.8rem;
}
.matrix__lede {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 64ch;
  margin: 0;
}

.matrix__table-wrap { margin: 0; }
.matrix__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
}
.matrix__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 1100px;
  background: var(--c-surface);
}
.matrix__table thead th {
  text-align: left;
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  position: sticky;
  top: 0;
}
.matrix__table thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--c-bg);
  border-right: 2px solid var(--c-accent);
}
.matrix__table tbody th {
  position: sticky;
  left: 0;
  background: var(--c-surface);
  z-index: 1;
  padding: 1rem 1rem;
  border-right: 2px solid var(--c-accent);
  text-align: left;
  vertical-align: top;
  min-width: 220px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--c-ink);
  border-top: 1px solid var(--c-line);
}
.matrix__table tbody th a {
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--c-line);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.matrix__table tbody th a:hover {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}
.matrix__table tbody td {
  padding: 1rem 1rem;
  border-top: 1px solid var(--c-line);
  text-align: left;
  vertical-align: top;
  color: var(--c-ink);
  white-space: nowrap;
}
.matrix__table tbody tr:nth-child(even) th,
.matrix__table tbody tr:nth-child(even) td {
  background: var(--c-cream);
}
.matrix__table tbody td strong {
  font-family: var(--font-display);
  color: var(--c-accent);
  font-size: 1.02rem;
  font-weight: 700;
}

.matrix__footnote {
  margin: 1.2rem 0 0;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  font-style: italic;
  line-height: 1.5;
}

/* Mobile: transform to stacked cards, no horizontal scroll */
@media (max-width: 820px) {
  .matrix__scroll { border: 0; background: transparent; }
  .matrix__table { min-width: 0; background: transparent; }
  .matrix__table thead { position: absolute; left: -9999px; }
  .matrix__table tr {
    display: block;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
    margin-bottom: 1rem;
    padding: 1.2rem 1.3rem;
  }
  .matrix__table tbody th {
    position: static;
    display: block;
    border: 0;
    border-bottom: 2px solid var(--c-accent);
    padding: 0 0 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    min-width: 0;
  }
  .matrix__table tbody th a { border-bottom: 0; }
  .matrix__table tbody td {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.8rem;
    padding: 0.45rem 0;
    border-top: 0;
    border-bottom: 1px dashed var(--c-line);
    white-space: normal;
  }
  .matrix__table tbody tr td:last-child { border-bottom: 0; }
  .matrix__table tbody td::before {
    content: attr(data-label);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--c-accent);
  }
  .matrix__table tbody tr:nth-child(even) th,
  .matrix__table tbody tr:nth-child(even) td { background: transparent; }
}

/* ---------- Stains catalog -------------------------------------------- */
.stains {
  background: var(--c-bg-alt);
  color: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stains__head { max-width: 800px; margin: 0 0 3rem; }
.stains__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent-2);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent-2);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.stains__head h2 {
  color: var(--c-cream);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  max-width: 24ch;
  margin: 0 0 0.8rem;
}
.stains__lede {
  font-size: 1rem;
  color: rgba(250,246,239,0.72);
  max-width: 64ch;
  margin: 0;
  line-height: 1.65;
}

/* Group wrapper */
.stain-group { margin-bottom: 2.8rem; }
.stain-group:last-child { margin-bottom: 0; }
.stain-group__head {
  margin: 0 0 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255,246,235,0.12);
}
.stain-group__head h3 {
  color: var(--c-cream);
  font-family: var(--font-display);
  font-weight: 650;
  font-variation-settings: "wdth" 94;
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin: 0 0 0.2rem;
}
.stain-group__head p {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--c-accent-2);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stain-group__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.1rem;
}
.stain-group__grid li { list-style: none; margin: 0; padding: 0; }

.stain-card {
  background: var(--c-bg);
  border: 1px solid rgba(255,246,235,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
  scroll-margin-top: 5rem;
}
.stain-card:hover { transform: translateY(-3px); border-color: var(--c-accent-2); }

.stain-card__img {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255,246,235,0.04), rgba(0,0,0,0.15)), var(--swatch);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.stain-card__img::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}
.stain-card__img img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
  position: relative;
  z-index: 1;
}
.stain-card__body {
  padding: 1.1rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.stain-card__brand {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2);
  margin: 0;
}
.stain-card__name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 650;
  color: var(--c-cream);
  margin: 0;
  line-height: 1.25;
}
.stain-card__stars {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(250,246,239,0.72);
  margin: 0.1rem 0 0.3rem;
}
.stain-card__starline { color: var(--c-line); letter-spacing: 0.04em; font-size: 0.9rem; }
.stain-card__starline .star { color: var(--c-line); }
.stain-card__starline .star.is-full,
.stain-card__starline .star.is-half { color: var(--c-accent-2); }
.stain-card__starline .star.is-half { opacity: 0.55; }
.stain-card__reviews { color: rgba(250,246,239,0.5); font-size: 0.78rem; }

.stain-card__specs {
  margin: 0.2rem 0 0.3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,246,235,0.08);
  border-bottom: 1px solid rgba(255,246,235,0.08);
}
.stain-card__specs > div {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stain-card__specs dt {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,246,239,0.5);
}
.stain-card__specs dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--c-cream);
}
.stain-card__best {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.68);
  line-height: 1.55;
  margin: 0.4rem 0 0;
  flex: 1;
}
.stain-card__cta {
  margin-top: 0.8rem;
  align-self: flex-start;
  color: var(--c-accent-2);
  border-color: var(--c-accent-2);
  background: transparent;
}
.stain-card__cta:hover {
  background: rgba(232,169,82,0.14);
  color: var(--c-cream);
  border-color: var(--c-accent-2);
}

@media (max-width: 540px) {
  .stain-group__grid { grid-template-columns: 1fr; }
  .stain-card__specs { grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; }
}

/* ---------- Mobile overflow hardening pass ----------------------------- */
/* Prevent any card or its contents from breaking out of the viewport padding */
@media (max-width: 760px) {
  /* Global: any long unbreakable string wraps cleanly */
  .review__body,
  .review__pitch,
  .review__col li,
  .review__ergo p,
  .review__tested li,
  .scenario__body,
  .scenario__pick,
  .fence-card__body,
  .stain-card__body,
  .stain-card__best,
  .ba__note,
  .spec__rule,
  .spec__col li,
  .spec__verdict,
  .qa__body p,
  .qa__body li,
  .routine__step p,
  .mm-result__blurb,
  .est-opt strong,
  .est-opt small {
    overflow-wrap: anywhere;
    word-wrap: break-word;
    min-width: 0;
  }

  /* Review card guard */
  .review,
  .fence-card,
  .stain-card,
  .scenario,
  .spec,
  .ba__card,
  .routine__step,
  .qa {
    max-width: 100%;
    min-width: 0;
  }

  /* Grid children often overflow if their content has long tokens */
  .review__specs-list,
  .stain-card__specs,
  .intro__stats,
  .proof__numbers dl,
  .est-result__breakdown {
    min-width: 0;
  }
  .review__specs-list > div,
  .stain-card__specs > div { min-width: 0; overflow-wrap: anywhere; }
  .stain-card__specs dd { font-size: 0.82rem; overflow-wrap: anywhere; }

  /* Estimator result card can never exceed parent */
  .estimator__result { max-width: 100%; }

  /* Fence card images already constrained, ensure no stray overflow */
  .fence-card__figure img,
  .ba__card img,
  .stain-card img { max-width: 100%; }
}

/* Full-bleed elements that should stay contained in the wrap */
.swatch-strip,
.intro__lineup {
  max-width: 100%;
}

/* ---------- FAQ aside ------------------------------------------------- */
.faq {
  background: var(--c-cream);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.faq__head { max-width: 760px; margin: 0 0 2.5rem; }
.faq__head .eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 0.9rem;
}
.faq__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  max-width: 30ch;
  margin: 0;
}
.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  margin: 0 0 0.8rem;
  overflow: hidden;
}
.faq__item[open] { border-color: var(--c-accent); }
.faq__item > summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--c-ink);
  line-height: 1.35;
}
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::before {
  content: "+";
  color: var(--c-accent);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.faq__item[open] > summary::before { content: "-"; }
.faq__answer {
  padding: 0 1.5rem 1.3rem 3.2rem;
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}
.faq__answer p { margin: 0; }

/* ---------- Footer ---------------------------------------------------- */
.site-footer {
  background: var(--c-bg);
  color: var(--c-cream);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  border-top: 3px solid var(--c-accent);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}
.site-footer__brand { min-width: 0; }
.wordmark--footer {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.site-footer__tag {
  font-size: 0.9rem;
  color: rgba(250,246,239,0.65);
  line-height: 1.65;
  margin: 0.8rem 0 0;
  max-width: 38ch;
}
.site-footer__nav h3,
.site-footer__meta h3 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2);
  margin: 0 0 1rem;
}
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-footer__nav li { list-style: none; margin: 0; }
.site-footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  background: rgba(255, 246, 235, 0.05);
  border: 1px solid rgba(255, 246, 235, 0.18);
  border-radius: 999px;
  color: var(--c-cream);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
  -webkit-tap-highlight-color: transparent;
}
.site-footer__nav a::before {
  content: "→";
  color: var(--c-accent-2);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform .15s ease;
}
.site-footer__nav a:hover {
  background: rgba(232, 169, 82, 0.14);
  border-color: var(--c-accent-2);
  color: var(--c-accent-2);
  transform: translateY(-1px);
}
.site-footer__nav a:hover::before { transform: translateX(2px); }
.site-footer__nav a:active { transform: translateY(0); }
.site-footer__meta p {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.6);
  line-height: 1.65;
  margin: 0 0 0.9rem;
  max-width: 38ch;
}
.site-footer__meta code {
  font-family: 'Courier New', monospace;
  background: rgba(232,169,82,0.14);
  color: var(--c-accent-2);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  font-size: 0.82rem;
}
.site-footer__copy {
  margin-top: 1.3rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,246,235,0.1);
  font-size: 0.78rem !important;
  color: rgba(250,246,239,0.45) !important;
}

@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .faq__item > summary { padding: 1rem 1.2rem; font-size: 0.98rem; }
  .faq__answer { padding: 0 1.2rem 1.2rem 2.6rem; }
}

/* Footer contact block , sits under the brand column */
.site-footer__contact-h {
  margin: 1.6rem 0 0.7rem !important;
  font-family: var(--font-sans);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2) !important;
}
.site-footer__contact {
  margin: 0 !important;
  padding: 0.95rem 1.1rem;
  background: rgba(232, 169, 82, 0.08);
  border-left: 3px solid var(--c-accent-2);
  border-radius: var(--r);
  font-size: 0.88rem !important;
  color: rgba(250, 246, 239, 0.82) !important;
  line-height: 1.6 !important;
  max-width: 42ch !important;
}
.site-footer__contact a {
  color: var(--c-accent-2);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 169, 82, 0.4);
}
.site-footer__contact a:hover { border-bottom-color: var(--c-accent-2); }

/* Proof table collapsibles, save vertical space on desktop */
.proof__collapse {
  margin: 0;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-surface);
  overflow: hidden;
}
.proof__collapse > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-accent);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background .15s ease;
}
.proof__collapse > summary::-webkit-details-marker { display: none; }
.proof__collapse > summary::before {
  content: "+";
  color: var(--c-accent);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
  width: 1.1rem;
  text-align: center;
}
.proof__collapse[open] > summary::before { content: "-"; }
.proof__collapse > summary:hover { background: var(--c-cream); }
.proof__collapse[open] > summary {
  background: var(--c-cream);
  border-bottom: 1px solid var(--c-line);
}
.proof__collapse__label,
.proof__collapse-label { letter-spacing: 0.02em; }
.proof__collapse[open] .proof__collapse-label::after { content: " (click to hide)"; opacity: 0.55; font-weight: 400; }
.proof__collapse:not([open]) .proof__collapse-label::after { content: " (click to expand)"; opacity: 0.55; font-weight: 400; }
.proof__collapse .proof__scroll { border: 0; border-radius: 0; }

/* Swatch strip, constrain to wrap + 3x2 grid on desktop */
.swatch-strip {
  max-width: var(--maxw);
  margin: 0 auto 0;
  padding: 0 var(--pad-x);
  border-top: 0;
  border-bottom: 0;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.8rem;
}
.swatch-strip li { border-radius: var(--r-lg); overflow: hidden; }
.swatch-strip .swatch {
  border-right: 0;
  border-radius: var(--r-lg);
  min-height: 180px;
}
@media (max-width: 760px) {
  .swatch-strip { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
  .swatch-strip { grid-template-columns: 1fr !important; }
}

/* Stain group collapsibles */
.stain-group {
  margin-bottom: 1rem;
  background: rgba(255,246,235,0.03);
  border: 1px solid rgba(255,246,235,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stain-group > .stain-group__head {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 0;
  margin: 0;
  transition: background .15s ease;
}
.stain-group > .stain-group__head::-webkit-details-marker { display: none; }
.stain-group > .stain-group__head:hover { background: rgba(255,246,235,0.05); }
.stain-group[open] > .stain-group__head {
  border-bottom: 1px solid rgba(255,246,235,0.12);
}
.stain-group__text { min-width: 0; }
.stain-group__text h3 {
  margin: 0 0 0.15rem;
  border-bottom: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
}
.stain-group__text p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--c-accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.stain-group__count {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,246,239,0.6);
  background: rgba(232,169,82,0.12);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.stain-group__chevron {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-accent-2);
  line-height: 0.8;
  transition: transform .2s ease;
  transform: rotate(90deg);
  display: inline-block;
}
.stain-group[open] .stain-group__chevron { transform: rotate(-90deg); }
.stain-group__grid {
  padding: 1.3rem;
}
@media (max-width: 540px) {
  .stain-group > .stain-group__head { padding: 0.9rem 1rem; gap: 0.6rem; }
  .stain-group__text h3 { font-size: 1.05rem; }
  .stain-group__text p { font-size: 0.68rem; }
  .stain-group__count { font-size: 0.65rem; padding: 0.3rem 0.5rem; }
  .stain-group__grid { padding: 1rem; }
}

/* Stain category Q&A blocks */
.stain-group__qa {
  padding: 0 1.3rem 1.3rem;
  border-top: 1px solid rgba(255, 246, 235, 0.08);
  margin-top: 0.2rem;
  padding-top: 1.2rem;
}
.stain-group__qa-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent-2);
  margin: 0 0 0.8rem;
}
.stain-qa {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 246, 235, 0.08);
  border-radius: var(--r);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.stain-qa[open] {
  border-color: rgba(232, 169, 82, 0.4);
  background: rgba(0, 0, 0, 0.28);
}
.stain-qa > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.8rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-cream);
  line-height: 1.35;
  transition: background 0.15s ease;
}
.stain-qa > summary::-webkit-details-marker { display: none; }
.stain-qa > summary:hover { background: rgba(255, 246, 235, 0.04); }
.stain-qa > summary::before {
  content: "+";
  color: var(--c-accent-2);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.stain-qa[open] > summary::before { content: "-"; }
.stain-qa__answer {
  padding: 0 1.1rem 1rem 2.7rem;
}
.stain-qa__answer p {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.78);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 540px) {
  .stain-group__qa { padding: 1rem 1rem 1rem; }
  .stain-qa > summary { padding: 0.75rem 0.9rem; font-size: 0.9rem; }
  .stain-qa__answer { padding: 0 0.9rem 0.9rem 2.4rem; }
}

/* Intro eyebrow pill (hero contextual vector) */
.intro__eyebrow {
  grid-column: 1 / -1;
  display: inline-block;
  justify-self: start;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--c-accent);
  border-radius: 999px;
  margin: 0 0 1rem;
}

/* TL;DR top picks block under H1 */
.intro__tldr {
  grid-column: 1 / -1;
  margin: 0 0 1.2rem;
  padding: 1.2rem 1.4rem 1.3rem;
  background: rgba(29, 106, 106, 0.06);
  border: 1px solid rgba(29, 106, 106, 0.2);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-lg);
}
.intro__tldr-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin: 0 0 0.7rem;
}
.intro__tldr-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.intro__tldr-list li {
  list-style: none;
  margin: 0;
  padding-left: 1.3rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--c-ink);
  position: relative;
}
.intro__tldr-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.intro__tldr-list a {
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.intro__tldr-list a:hover {
  color: var(--c-accent);
  border-bottom-color: var(--c-accent);
}
.intro__tldr-list strong {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.005em;
}

/* FAQ intro lede */
.faq__lede {
  font-size: 1rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  max-width: 66ch;
  margin: 0.9rem 0 0;
}

@media (max-width: 760px) {
  .intro__tldr { padding: 1rem 1.1rem 1.1rem; }
  .intro__tldr-list li { font-size: 0.88rem; padding-left: 1.1rem; }
}

/* Review match-notes: per-fence compatibility block */
.review__match {
  margin: 0 0 1.5rem;
  padding: 1.1rem 1.3rem;
  background: rgba(29, 106, 106, 0.05);
  border-left: 3px solid var(--c-accent);
  border-radius: var(--r);
}
.review__match h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  color: var(--c-ink);
  margin: 0 0 0.8rem;
  line-height: 1.3;
}
.review__match-list {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.review__match-list > div {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) 1.4fr;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--c-line);
}
.review__match-list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.review__match-list dt {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.review__match-list dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .review__match-list > div { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* Stain group selection rationale */
.stain-group__rationale {
  margin: 0 1.3rem 0;
  padding: 0.95rem 1.1rem;
  background: rgba(232, 169, 82, 0.06);
  border-left: 3px solid var(--c-accent-2);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.78);
  line-height: 1.65;
  max-width: 78ch;
}
.stain-group__rationale::before {
  content: "Why these products: ";
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent-2);
  display: block;
  margin-bottom: 0.3rem;
}
@media (max-width: 540px) {
  .stain-group__rationale { margin: 0 1rem 0; padding: 0.8rem 0.95rem; font-size: 0.82rem; }
}

/* Review secondary blocks , default full-width, column 2 only on desktop so the sticky figure can scroll alongside */
.review > .review__ergo,
.review > .review__tested,
.review > .review__match,
.review > .review__cta,
.review > .review__specs {
  grid-column: 1 / -1;
}
@media (min-width: 821px) {
  .review > .review__ergo,
  .review > .review__tested,
  .review > .review__match,
  .review > .review__cta,
  .review > .review__specs {
    grid-column: 2;
  }
}
.review > .review__cta {
  justify-self: start;
  margin: 0.3rem 0 0;
}
/* When the image stops sticking (grid row ends), the full-width blocks take over */
.review {
  grid-template-rows: auto auto auto auto auto auto;
  align-items: start;
}

/* Review CTA: dual-button (desktop under sticky image, mobile after pitch) */
.review__figure { display: flex; flex-direction: column; gap: 0.9rem; }
.review__cta--desktop { display: none; }
.review__cta--mobile { display: block; align-self: start; margin: 0.3rem 0 1rem; }

@media (min-width: 821px) {
  .review__cta--desktop {
    display: block;
    text-align: center;
    width: 100%;
  }
  .review__cta--mobile { display: none; }
}

/* Remove the old grid-column: 1 / -1 treatment for .review__cta since the button is now column-scoped */
.review > .review__cta { grid-column: auto; }

/* Savings vs contractor callout inside the estimator section */
.estimator__savings {
  margin: 1.4rem 0 0;
  padding: 1.1rem 1.3rem;
  background: rgba(29, 106, 106, 0.12);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-lg);
  max-width: 72ch;
}
.estimator__savings-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin: 0 0 0.55rem;
}
.estimator__savings-body {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(250, 246, 239, 0.9);
  line-height: 1.7;
}
.estimator__savings-body strong { color: var(--c-accent-2); }

/* Estimator result flash on async update */
.estimator__result {
  transition: box-shadow 0.35s ease;
}
.estimator__result.is-updated {
  box-shadow: 0 0 0 3px var(--c-accent-2), 0 20px 50px rgba(0,0,0,0.35);
}
