/* ==========================================================================
   FencePaintSprayer.uk. standalone stylesheet
   Theme: dark forest green + warm wood + cream. tool-shop / workshop feel
   Type:  Inter (sans, geometric, technical)
   ========================================================================== */

/* ---------- Tokens ------------------------------------------------------- */
:root {
  --c-bg:        #0f1d16;
  --c-bg-alt:    #16271d;
  --c-surface:   #ffffff;
  --c-ink:       #0f1d16;
  --c-ink-soft:  #4a5a52;
  --c-line:      #d8e0db;
  --c-accent:    #d97742;   /* warm wood orange */
  --c-accent-2:  #f3c98a;   /* sand */
  --c-success:   #5a8f4a;
  --c-cream:     #f5f1e8;

  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-1:        clamp(2.2rem, 4.5vw, 3.6rem);
  --fs-2:        clamp(1.6rem, 3vw, 2.2rem);
  --fs-3:        1.25rem;
  --fs-body:     1.0625rem;
  --lh-tight:    1.15;
  --lh-body:     1.65;

  --r:           4px;        /* square-ish. workshop feel */
  --r-lg:        6px;
  --maxw:        1080px;
  --pad-x:       clamp(1rem, 4vw, 2rem);
}

/* ---------- Reset -------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
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;
}
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-weight: 800;
  letter-spacing: -0.015em;
  line-height: var(--lh-tight);
  margin: 0 0 0.6em;
}
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); }

/* ---------- Header ------------------------------------------------------- */
.site-header {
  background: var(--c-bg);
  color: var(--c-cream);
  border-bottom: 1px solid #000;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-cream);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.brand__mark { color: var(--c-accent); font-size: 1.4rem; line-height: 1; }
.brand__tld  { color: var(--c-accent-2); font-weight: 600; }
.site-nav { position: relative; }
.site-nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.site-nav__list a {
  color: var(--c-cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav__list a:hover { color: var(--c-accent); }
.site-nav__hamburger { display: none; }

@media (max-width: 980px) {
  .site-nav__list { gap: 1.1rem; }
  .site-nav__list a { font-size: 0.88rem; }
}
@media (max-width: 820px) {
  .site-header .wrap { position: relative; }
  .site-nav__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
  }
  .site-nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--c-cream);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.15s ease;
  }
  .site-nav__toggle:checked ~ .site-nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-nav__toggle:checked ~ .site-nav__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .site-nav__toggle:checked ~ .site-nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-nav__list {
    position: absolute;
    top: calc(100% + 0.85rem);
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-bg);
    border: 1px solid rgba(243, 201, 138, 0.18);
    border-radius: 6px;
    padding: 0.5rem 0;
    min-width: 220px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 100;
  }
  .site-nav__toggle:checked ~ .site-nav__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__list li { display: block; }
  .site-nav__list a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
  }
  .site-nav__list a:hover {
    background: rgba(217, 119, 66, 0.12);
    border-left-color: #d97742;
    color: #f3c98a;
  }
}

/* ---------- Hero --------------------------------------------------------- */
.hero {
  background: var(--c-bg);
  color: var(--c-cream);
  padding-block: clamp(3rem, 9vw, 6rem);
  border-bottom: 4px solid var(--c-accent);
  overflow: hidden;
}
.hero__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero__text { min-width: 0; }
.hero__gallery {
  position: relative;
  min-height: 380px;
}
.hero__shot {
  position: absolute;
  margin: 0;
  background: #fff;
  padding: 0.7rem 0.7rem 2.3rem;
  box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 4px 10px rgba(0,0,0,.3);
  border-radius: 2px;
  transition: transform .25s ease;
}
.hero__shot img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.hero__shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2a1a0a;
  letter-spacing: 0.02em;
}
.hero__shot--before {
  width: 56%;
  top: 0;
  left: 4%;
  transform: rotate(-5deg);
  z-index: 1;
}
.hero__shot--after {
  width: 60%;
  top: 18%;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.hero__shot--before:hover { transform: rotate(-3deg) translateY(-4px); }
.hero__shot--after:hover  { transform: rotate(2deg) translateY(-4px); }

.hero__cta { margin-top: 0.5rem; }
.hero__tier-label {
  margin: 1.5rem 0 0.6rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-accent-2);
}
.hero__tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.6rem;
  max-width: 640px;
}
.hero__tier {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(243, 201, 138, 0.25);
  border-left: 3px solid var(--c-accent);
  padding: 0.7rem 0.85rem;
  text-decoration: none;
  border-radius: 3px;
  transition: background .15s ease, transform .12s ease;
}
.hero__tier:hover {
  background: rgba(217, 119, 66, 0.18);
  transform: translateY(-2px);
}
.hero__tier-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 0.2rem;
}
.hero__tier-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .hero__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hero__gallery {
    min-height: 340px;
    max-width: 460px;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .hero__gallery { min-height: 280px; max-width: 100%; }
  .hero__shot img { height: 200px; }
}
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent-2);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--c-cream); max-width: 22ch; }
.hero .lede {
  font-size: 1.15rem;
  max-width: 56ch;
  color: #cfd8d2;
  margin-block: 1.5rem 2rem;
}
.hero .hero__lede {
  grid-column: 1 / -1;
  max-width: 75ch;
  margin-block: 0;
}
.hero .hero__lede p {
  font-size: 1.05rem;
  color: #cfd8d2;
  line-height: 1.6;
  margin: 0 0 1rem;
  max-width: 75ch;
}
.hero .hero__lede p:last-child { margin-bottom: 0; }
.hero .hero__lede strong { color: #f3c98a; font-weight: 700; }
.hero__wrap { align-items: start; }

/* ---------- 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-bg);
  border-color: var(--c-accent);
}
.btn--primary:hover { background: var(--c-accent-2); color: var(--c-bg); border-color: var(--c-accent-2); }
.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;
}

/* ---------- Picker ------------------------------------------------------- */
.picker { background: var(--c-cream); }
.picker h2 { max-width: none; }
.picker .section-lede { max-width: none; }
.picker__app {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-lg);
  padding: 2rem;
  min-height: 320px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.picker__progress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.picker__step {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
}
.picker__bar {
  display: block;
  height: 6px;
  width: 100%;
  background: var(--c-cream);
  border-radius: 999px;
  overflow: hidden;
}
.picker__bar-fill {
  display: block;
  height: 100%;
  background: var(--c-accent);
  transition: width .25s ease;
}
.picker__app h3 {
  font-size: 1.35rem;
  color: var(--c-bg);
  margin: 0 0 0.5rem;
}
.picker__hint {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.picker__options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.picker__option {
  font: inherit;
  text-align: left;
  background: var(--c-cream);
  color: var(--c-bg);
  border: 1.5px solid var(--c-line);
  padding: 0.95rem 1.15rem;
  border-radius: var(--r);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.35;
  transition: background .12s ease, border-color .12s ease, transform .08s ease;
}
.picker__option:hover {
  background: var(--c-surface);
  border-color: var(--c-accent);
  transform: translateY(-1px);
}
.picker__option:active { transform: translateY(0); }

/* ---------- Trust -------------------------------------------------------- */
.trust { background: var(--c-bg-alt); color: var(--c-cream); }
.trust h2 { color: var(--c-cream); }
.trust__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.trust__grid li {
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--c-accent);
  padding: 1rem 1.25rem;
}
.trust__grid--inline {
  margin-block: 1.5rem 1.75rem;
}
.trust__grid strong {
  display: block;
  color: var(--c-accent-2);
  margin-bottom: 0.25rem;
}
.trust__grid span { color: #cfd8d2; font-size: 0.95rem; }

/* ---------- Workshop / testing ground ----------------------------------- */
.workshop { background: var(--c-bg); color: var(--c-cream); }
.workshop h2 { color: var(--c-cream); }
.workshop .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-accent-2);
  margin-bottom: 0.75rem;
}
.workshop .section-lede { color: #cfd8d2; max-width: 70ch; }

.workshop__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas:
    "desk desk"
    "fence bike"
    "brush brush";
  margin-block: 2rem;
}
.workshop__tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
  min-height: 260px;
}
.workshop__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.workshop__tile--desk  { grid-area: desk;  aspect-ratio: 16 / 9; }
.workshop__tile--fence { grid-area: fence; aspect-ratio: 4 / 5; }
.workshop__tile--bike  { grid-area: bike;  aspect-ratio: 4 / 5; }
.workshop__tile--brush { grid-area: brush; aspect-ratio: 16 / 9; }

.workshop__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1.75rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,0) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.workshop__cap strong {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-accent-2);
  letter-spacing: -0.01em;
}
.workshop__cap span { font-size: 0.92rem; color: #e8ede9; }
.workshop__cap--top {
  bottom: auto;
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,0) 100%);
}

/* The cardboard sprayer boxes overlaid on the workshop desk photo */
.workshop__boxes {
  position: absolute;
  left: 8%;
  top: 38%;
  display: flex;
  gap: 0.6rem;
  align-items: flex-end;
  pointer-events: none;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.55));
}
.workshop__box {
  background: #c9a06b;
  color: #2a1a0a;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  padding: 1.1rem 0.9rem 1rem;
  text-align: center;
  border: 2px solid #8a6338;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 72px;
  position: relative;
  transform: rotate(-2deg);
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.15) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,.15) 100%),
    repeating-linear-gradient(0deg, #c9a06b 0px, #c9a06b 3px, #bf965f 3px, #bf965f 4px);
}
.workshop__box span {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  margin-top: 0.25rem;
  color: #5a3a14;
  letter-spacing: 0.02em;
}
.workshop__box--wagner { transform: rotate(-4deg) translateY(-8px); background-color: #d4a574; }
.workshop__box--bosch  { transform: rotate(1deg) translateY(4px);   background-color: #c49968; }
.workshop__box--ryobi  { transform: rotate(-1deg) translateY(-2px); background-color: #cfa06d; }

.workshop__mission {
  background: rgba(255,255,255,.04);
  border-left: 4px solid var(--c-accent);
  padding: 1.5rem 1.75rem;
  border-radius: var(--r);
  margin-top: 1rem;
}
.workshop__mission h3 { color: var(--c-accent-2); margin-top: 0; }
.workshop__mission p { color: #cfd8d2; margin-bottom: 0; }

@media (max-width: 720px) {
  .workshop__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "desk"
      "fence"
      "bike"
      "brush";
  }
  .workshop__tile--desk,
  .workshop__tile--brush { aspect-ratio: 4 / 3; }
  .workshop__boxes { left: 4%; top: 45%; gap: 0.4rem; }
  .workshop__box { min-width: 58px; font-size: 0.68rem; padding: 0.9rem 0.6rem 0.8rem; }
}

/* ---------- Picks (top sprayer cards) ----------------------------------- */
.picks { background: var(--c-cream); }
.pick {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.pick__img {
  background: #faf7ee;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 0.85rem;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pick__img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: scale(1.05);
}
.pick__img--placeholder {
  color: var(--c-ink-soft);
  font-size: 0.78rem;
  text-align: center;
  font-weight: 600;
}
.pick__body { min-width: 0; }
@media (max-width: 640px) {
  .pick { grid-template-columns: 1fr; }
  .pick__img { max-width: 220px; margin-inline: auto; }
}
.pick__rank {
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  background: var(--c-accent);
  color: var(--c-bg);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r);
}
.pick__price,
.pick__meta { font-weight: 600; color: var(--c-ink-soft); margin: 0.25rem 0 1rem; font-size: 0.92rem; }
.pick__pros { padding-left: 1.1rem; margin: 0.5rem 0 1.25rem; }
.pick__pros li { margin-bottom: 0.3rem; }

/* ---------- Tests accordion (paint workflow per sprayer) ---------------- */
.tests {
  grid-column: 1 / -1; /* span both image + body columns full width */
  margin: 1.5rem -1.75rem -1.75rem; /* break out of pick padding to true edge */
  padding: 0 1.75rem;
  border-top: 1px solid var(--c-line);
  background: var(--c-surface);
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
}
.tests[open] {
  padding-bottom: 1.75rem;
}
.tests__toggle {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
  padding-right: 2.5rem;
  user-select: none;
}
.tests__toggle::-webkit-details-marker { display: none; }
.tests__toggle::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0.9rem;
  width: 2rem;
  height: 2rem;
  line-height: 1.8rem;
  text-align: center;
  font-size: 1.6rem;
  color: var(--c-cream);
  background: var(--c-accent);
  border-radius: 50%;
  transition: transform .2s ease;
}
.tests[open] .tests__toggle::after { content: '-'; transform: rotate(0deg); }
.tests__toggle-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-bg);
  letter-spacing: -0.01em;
}
.tests__toggle-hint {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  font-weight: 500;
}

.tests__body {
  padding-top: 0.5rem;
  animation: testsReveal .25s ease-out;
}
@keyframes testsReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tests__intro {
  background: var(--c-cream);
  border-left: 4px solid var(--c-bg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  margin-bottom: 1.5rem;
}
.tests__intro h4 { margin: 0 0 0.75rem; color: var(--c-bg); font-size: 1.05rem; }
.tests__facts {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem 0.85rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  padding: 0.85rem 1rem;
}
.tests__facts li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.25;
  border-left: 2px solid var(--c-accent);
  padding-left: 0.6rem;
}
.tests__facts strong {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  margin-bottom: 0.15rem;
}
.tests__facts span { color: var(--c-bg); font-weight: 700; }
@media (max-width: 820px) {
  .tests__facts { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
}
@media (max-width: 640px) {
  .tests__facts { grid-template-columns: 1fr; padding: 0.75rem; }
  .tests__facts li { font-size: 0.9rem; }
  .tests__facts strong { font-size: 0.7rem; }
}
.tests__steps {
  margin: 0;
  padding-left: 1.3rem;
  counter-reset: step;
}
.tests__steps li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.tests__steps strong { color: var(--c-bg); }

.tests__paints {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.paint {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 0;
  position: relative;
}
.paint__img {
  background: #faf7ee;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  border-right: 1px solid var(--c-line);
}
.paint__img img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}
.paint__buy {
  width: 100%;
  text-align: center;
}
.paint__img .paint__use {
  margin: 0;
  font-size: 0.78rem;
  text-align: left;
  width: 100%;
}
.paint__paa {
  grid-column: 1 / -1;
  margin: 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
  font-size: 0.92rem;
}
.paint__paa summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.5rem;
  position: relative;
  padding-right: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: var(--c-surface);
}
.paint__paa summary::-webkit-details-marker { display: none; }
.paint__paa summary::after {
  content: '+';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  line-height: 1.7rem;
  text-align: center;
  font-size: 1.4rem;
  color: var(--c-cream);
  background: var(--c-accent);
  border-radius: 50%;
}
.paint__paa[open] summary::after { content: '-'; }
.paint__paa-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-accent);
}
.paint__paa-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-bg);
  letter-spacing: -0.01em;
}
.paint__paa dl {
  display: block;
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  background: var(--c-cream);
}
.paint__paa[open] dl {
  padding: 1.25rem 1.5rem 1.5rem;
}
.paint__paa dt {
  font-weight: 800;
  color: var(--c-bg);
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 1.1rem 0 0.35rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--c-accent);
}
.paint__paa dt:first-of-type { margin-top: 0; }
.paint__paa dd {
  margin: 0 0 0 0.85rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  font-size: 0.9rem;
  max-width: 70ch;
}
@media (max-width: 640px) {
  .paint__paa summary { padding: 0.85rem 1rem; padding-right: 3rem; }
  .paint__paa dl { padding: 0 1rem 1.1rem; }
  .paint__paa[open] dl { padding: 1rem; }
  .paint__paa dt { font-size: 0.92rem; }
  .paint__paa dd { font-size: 0.88rem; }
}
.paint__info {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.paint__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--c-accent);
}
.paint__info h5 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--c-bg);
  line-height: 1.25;
}
.paint__meta {
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  margin: 0;
  font-weight: 600;
}
.paint__specs {
  margin: 0.4rem 0 0.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1rem;
}
.paint__specs div { display: flex; flex-direction: column; }
.paint__specs dt {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  font-weight: 700;
}
.paint__specs dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--c-bg);
  font-weight: 700;
}
.btn--sm { padding: 0.6rem 1rem; font-size: 0.85rem; }

.paint__test {
  list-style: none;
  margin: 0.6rem 0 0.6rem;
  padding: 0.7rem 0.85rem;
  background: var(--c-bg);
  color: var(--c-cream);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 0.85rem;
  font-size: 0.78rem;
  border-left: 3px solid var(--c-accent-2);
}
.paint__test li {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.paint__test strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a9690;
  font-weight: 800;
  margin-bottom: 0.1rem;
}
.paint__test span { color: var(--c-accent-2); font-weight: 700; }

.paint__use {
  font-size: 0.85rem;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: 0.7rem 0.9rem;
  border-left: 3px solid var(--c-accent);
  border-radius: 2px;
  margin: 0.3rem 0 0.6rem;
  line-height: 1.45;
}
.paint__use strong { color: var(--c-bg); }

.paint__strip {
  margin: 0;
  background: var(--c-bg);
  position: relative;
  border-left: 1px solid var(--c-line);
  overflow: hidden;
  min-height: 360px;
  align-self: stretch;
  height: 100%;
}
.paint__strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  background: var(--c-bg-alt);
}
.paint__strip figcaption {
  z-index: 2;
}
.paint__strip figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}
/* Placeholder styling when image is missing */
.paint__strip img[src*=".jpg"]:not([src^="http"]) {
  background: repeating-linear-gradient(45deg, #1a2a20 0 12px, #16271d 12px 24px);
}

.tests__summary {
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--c-accent);
}
.tests__summary h4 { margin: 0 0 0.6rem; color: var(--c-accent-2); font-size: 1.05rem; }
.tests__summary p { margin: 0 0 1rem; color: #cfd8d2; font-size: 0.95rem; }
.tests__summary p:last-child { margin-bottom: 0; }
.cost__title {
  margin: 1.75rem 0 0.5rem;
  color: var(--c-accent-2);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cost__intro {
  color: #cfd8d2;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.cost__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.cost__card {
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--c-accent-2);
}
.cost__card--sprayer { border-left-color: var(--c-accent); }
.cost__card h6 {
  margin: 0 0 0.75rem;
  color: var(--c-cream);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}
.cost__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.cost__card li {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
}
.cost__card strong {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #8a9690;
  font-weight: 800;
}
.cost__card span {
  color: var(--c-cream);
  font-weight: 700;
  line-height: 1.3;
}
.cost__verdict {
  background: rgba(217, 119, 66, 0.12);
  border-left: 3px solid var(--c-accent);
  padding: 1.1rem 1.25rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  color: #e8ede9;
}
.cost__verdict strong { color: var(--c-accent-2); }
.cost__perpanel {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem 1rem;
  background: var(--c-bg-alt);
  padding: 0.85rem 1rem;
  border-radius: var(--r);
}
.cost__perpanel li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
}
.cost__perpanel strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a9690;
  font-weight: 800;
}
.cost__perpanel span { color: var(--c-accent-2); font-weight: 800; }

@media (max-width: 820px) {
  .paint {
    grid-template-columns: 1fr;
  }
  .paint__img { border-right: none; border-bottom: 1px solid var(--c-line); padding: 1.5rem; }
  .paint__img img { max-width: 160px; }
  .paint__strip { border-left: none; border-top: 1px solid var(--c-line); }
  .paint__strip img { min-height: 240px; }
  .paint__specs { grid-template-columns: 1fr 1fr; }
}

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

/* ---------- Filter chips ------------------------------------------------ */
.filter {
  margin-block: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 1rem 1.1rem;
}
.filter__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}
.filter__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--c-ink-soft);
  min-width: 64px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.filter__chip {
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--c-cream);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease, border-color .12s ease, transform .08s ease;
}
.filter__chip:hover {
  background: var(--c-surface);
  border-color: var(--c-bg);
}
.filter__chip.is-active {
  background: var(--c-bg);
  color: var(--c-cream);
  border-color: var(--c-bg);
}
.paint-card.is-hidden { display: none; }

/* Tablet and smaller: label takes its own full-width line, chips wrap horizontally beneath */
@media (max-width: 820px) {
  .filter { padding: 0.85rem 0.9rem; gap: 0.95rem; }
  .filter__row {
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.35rem;
  }
  .filter__label {
    flex: 0 0 100%;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 0.15rem;
  }
  .filter__chip {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }
}
@media (max-width: 480px) {
  .filter__chip { font-size: 0.7rem; padding: 0.28rem 0.6rem; }
}

/* ---------- Fence paints library ---------------------------------------- */
.paints-lib { background: var(--c-cream); }
.picks h2,
.paints-lib h2,
.brushes h2,
.compare h2,
.lidl h2,
.workshop h2 {
  max-width: none;
  margin-bottom: 1rem;
}
.picks .section-lede,
.paints-lib .section-lede,
.brushes .section-lede,
.compare .section-lede,
.lidl .section-lede,
.workshop .section-lede {
  max-width: none;
  margin-bottom: 1.5rem;
}
.brushes { background: var(--c-cream); }
.paints-lib__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-block: 1.5rem 1.5rem;
}
.paint-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .12s ease, box-shadow .15s ease;
}
.paint-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.paint-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7ee;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--c-line);
  min-height: 180px;
}
.paint-card__img img {
  max-width: 130px;
  width: 100%;
  height: auto;
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.1));
}
.paint-card__use {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--c-ink);
  background: var(--c-cream);
  padding: 0.65rem 0.8rem;
  border-left: 3px solid var(--c-accent);
  border-radius: 2px;
  margin: 0 0 0.85rem;
}
.paint-card__use strong { color: var(--c-bg); }
.paint-card__body {
  padding: 1rem 1.1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.paint-card__brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--c-accent);
  margin-bottom: 0.2rem;
}
.paint-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--c-bg);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.paint-card__meta {
  font-size: 0.78rem;
  color: var(--c-ink-soft);
  margin: 0 0 0.7rem;
  font-weight: 600;
  line-height: 1.3;
}
.paint-card__specs {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0.6rem 0.8rem;
  background: var(--c-cream);
  border-radius: var(--r);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0.8rem;
}
.paint-card__specs li {
  display: flex;
  flex-direction: column;
  font-size: 0.78rem;
  line-height: 1.2;
}
.paint-card__specs strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink-soft);
  font-weight: 800;
  margin-bottom: 0.1rem;
}
.paint-card__specs span { color: var(--c-bg); font-weight: 700; }
.paint-card .btn { margin-top: auto; align-self: stretch; text-align: center; }
.paint-card--featured { border-left: 4px solid var(--c-accent); }
.paint-card--budget { border-left: 4px solid var(--c-success); }

.paints-lib__note {
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  border-left: 4px solid var(--c-accent);
  font-size: 0.9rem;
  line-height: 1.55;
}
.paints-lib__note strong { color: var(--c-accent-2); }

/* ---------- You might also need cross-sell ----------------------------- */
.cross-sell__h {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--c-bg);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cross-sell__lede {
  color: var(--c-ink-soft);
  margin: 0 0 1.25rem;
  max-width: 70ch;
}
.cross-sell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1rem;
}
.cross-sell__card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-accent);
  border-radius: var(--r-lg);
  padding: 1.1rem 1.25rem 1.25rem;
}
.cross-sell__card h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-bg);
}
.cross-sell__pair {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  font-weight: 600;
  line-height: 1.35;
}
.cross-sell__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cross-sell__card li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  line-height: 1.35;
  border-bottom: 1px dashed var(--c-line);
  padding-bottom: 0.4rem;
}
.cross-sell__card li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0.3rem;
  background: var(--c-cream);
  padding: 0.5rem 0.7rem;
  border-radius: 3px;
}
.cross-sell__card strong {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-ink-soft);
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.cross-sell__card a { color: var(--c-accent); font-weight: 700; text-decoration: none; }
.cross-sell__card a:hover { text-decoration: underline; }
.cross-sell__card li:last-child span { color: var(--c-bg); font-weight: 800; }
.cross-sell__img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 4px;
  padding: 0.85rem;
  margin-bottom: 0.85rem;
  aspect-ratio: 1 / 1;
  max-height: 180px;
  overflow: hidden;
}
.cross-sell__img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Compare table ------------------------------------------------ */
.compare { background: var(--c-cream); }
.table-scroll { overflow-x: auto; }
.compare table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  font-size: 0.97rem;
}
.compare th, .compare td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--c-line);
}
.compare th {
  background: var(--c-bg);
  color: var(--c-cream);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.compare tbody tr:last-child td { border-bottom: none; }
.compare tbody tr:nth-child(even) { background: #faf7ee; }

/* ---------- "See more below" scroll cue --------------------------------- */
.more-cue {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 0;
  padding: 1.25rem 1.75rem;
  background: var(--c-bg);
  color: var(--c-cream);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--c-accent);
  text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.more-cue:hover {
  background: var(--c-bg-alt);
  transform: translateY(2px);
}
.more-cue__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: var(--c-accent-2);
  flex-shrink: 0;
}
.more-cue__title {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-cream);
  line-height: 1.4;
}
.more-cue__arrow {
  font-size: 1.6rem;
  color: var(--c-accent);
  font-weight: 700;
  animation: morePulse 1.6s ease-in-out infinite;
}
@keyframes morePulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (max-width: 640px) {
  .more-cue { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .more-cue__arrow { align-self: center; }
}

/* ---------- Catalogued (not tested) sprayers ---------------------------- */
.catalogued { background: var(--c-cream); padding-top: 2.5rem; }
.catalogued h2 { max-width: none; margin-bottom: 1rem; }
.catalogued .section-lede { max-width: none; margin-bottom: 1.5rem; }
.catalogued__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  margin-bottom: 2rem;
}
.catalogued__card {
  background: var(--c-surface);
  border: 1.5px dashed #b8c1bc;
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  position: relative;
}
.catalogued__tag {
  position: absolute;
  top: -0.65rem;
  left: 1.2rem;
  background: #6a7670;
  color: var(--c-cream);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}
.catalogued__img {
  background: #faf7ee;
  border: 1px solid var(--c-line);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  aspect-ratio: 1 / 1;
  align-self: start;
}
.catalogued__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalogued__body { min-width: 0; display: flex; flex-direction: column; }
.catalogued__brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #6a7670;
  margin-bottom: 0.2rem;
}
.catalogued__card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-bg);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.catalogued__meta {
  font-size: 0.82rem;
  color: var(--c-ink-soft);
  font-weight: 600;
  margin: 0 0 0.7rem;
}
.catalogued__pitch {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-ink);
  margin: 0 0 0.75rem;
}
.catalogued__meta-row {
  font-size: 0.82rem;
  background: var(--c-cream);
  border-left: 3px solid #6a7670;
  padding: 0.55rem 0.75rem;
  margin: 0 0 0.85rem;
  border-radius: 2px;
  line-height: 1.45;
}
.catalogued__meta-row strong { color: var(--c-bg); }
.catalogued .btn { align-self: flex-start; }
.catalogued h3 { margin-top: 1.5rem; color: var(--c-bg); font-size: 1.05rem; }
.catalogued__list {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-surface);
  border: 1px dashed var(--c-line);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
}
.catalogued__list strong { color: var(--c-bg); }

@media (max-width: 720px) {
  .catalogued__card { grid-template-columns: 1fr; }
  .catalogued__img { max-width: 200px; margin-inline: auto; }
}

/* ---------- Lidl / Aldi section ----------------------------------------- */
.lidl { background: var(--c-surface); padding-block: 3rem; margin-top: 2rem; }
.lidl__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-block: 1.5rem 2rem;
}
.lidl__card {
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-success);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
}
.lidl__card h3 { margin-top: 0; color: var(--c-bg); }
.lidl__meta {
  font-size: 0.85rem;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 1rem;
}
.lidl__honest {
  background: var(--c-bg);
  color: var(--c-cream);
  padding: 1.5rem 1.75rem;
  border-radius: var(--r);
  border-left: 4px solid var(--c-accent);
}
.lidl__honest strong { color: var(--c-accent-2); }

/* ---------- 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; }

.workshop__spend {
  margin-top: 2rem;
  padding: 1.75rem 1.85rem;
  background: rgba(243, 201, 138, 0.06);
  border-left: 4px solid #d97742;
  border-radius: 4px;
}
.workshop__spend h3 {
  margin: 0 0 0.65rem;
  color: #f3c98a;
  font-size: 1.25rem;
}
.workshop__spend-lede {
  color: #cfd8d2;
  font-size: 0.95rem;
  max-width: 70ch;
  margin: 0 0 1.5rem;
}
.workshop__spend-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.workshop__spend-grid li {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #6b8e6f;
  padding: 0.95rem 1.1rem;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.workshop__spend--total {
  background: rgba(217, 119, 66, 0.18) !important;
  border-left-color: #d97742 !important;
  grid-column: 1 / -1;
}
.workshop__spend-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f3c98a;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.workshop__spend--total .workshop__spend-num { color: #fff; font-size: 2rem; }
.workshop__spend-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: #f5f1e8;
  margin-top: 0.2rem;
}
.workshop__spend-sub {
  font-size: 0.82rem;
  color: #8a9690;
  line-height: 1.4;
}
.spend__table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.spend__table caption {
  caption-side: top;
  text-align: left;
  color: #8a9690;
  font-size: 0.82rem;
  padding: 0 0 0.6rem;
  font-style: italic;
}
.spend__table thead th {
  background: rgba(217, 119, 66, 0.18);
  color: #f3c98a;
  text-align: left;
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(243, 201, 138, 0.2);
}
.spend__table tbody th,
.spend__table tbody td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  vertical-align: top;
  color: #cfd8d2;
}
.spend__table tbody th {
  font-weight: 800;
  color: #f5f1e8;
  width: 22%;
}
.spend__table tbody td strong { color: #f3c98a; font-size: 1.05rem; font-weight: 800; }
.spend__table tfoot th,
.spend__table tfoot td {
  padding: 0.85rem;
  background: rgba(217, 119, 66, 0.22);
  color: #fff;
  font-weight: 700;
  border-top: 2px solid #d97742;
  vertical-align: top;
  text-align: left;
}
.spend__table tfoot td strong { color: #fff; font-size: 1.2rem; }

.workshop__spend-subhead {
  margin: 1.5rem 0 0.85rem;
  color: #f3c98a;
  font-size: 1.05rem;
}
.workshop__spo {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.workshop__spo > div {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #6b8e6f;
  padding: 0.65rem 0.9rem;
  border-radius: 3px;
}
.workshop__spo dt {
  font-weight: 700;
  font-size: 0.82rem;
  color: #8a9690;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.workshop__spo dd {
  margin: 0;
  font-size: 0.92rem;
  color: #cfd8d2;
  line-height: 1.45;
}
.workshop__spo dd strong { color: #f3c98a; }

@media (max-width: 820px) {
  .workshop__spend { padding: 1.4rem 1.25rem; }
  .spend__table { font-size: 0.85rem; }
  .spend__table thead th,
  .spend__table tbody th,
  .spend__table tbody td { padding: 0.55rem 0.6rem; }
  .spend__table tbody th { width: 32%; }
}
@media (max-width: 640px) {
  .workshop__spend { padding: 1.1rem 0.9rem; }
  .workshop__spend h3 { font-size: 1.1rem; }
  .workshop__spend-lede { font-size: 0.9rem; }
  /* Convert table to stacked cards on mobile */
  .spend__table { border-collapse: separate; border-spacing: 0; background: transparent; }
  .spend__table caption { padding-bottom: 0.85rem; }
  .spend__table thead { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .spend__table tr {
    display: block;
    background: rgba(255,255,255,0.04);
    border-left: 3px solid #6b8e6f;
    border-radius: 4px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.7rem;
  }
  .spend__table tbody th,
  .spend__table tbody td,
  .spend__table tfoot th,
  .spend__table tfoot td {
    display: block;
    width: auto;
    padding: 0.25rem 0;
    border: 0;
    background: transparent;
  }
  .spend__table tbody th {
    font-size: 1rem;
    color: #f3c98a;
    margin-bottom: 0.3rem;
  }
  .spend__table tbody td::before,
  .spend__table tfoot td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8a9690;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }
  .spend__table tfoot tr {
    background: rgba(217, 119, 66, 0.22);
    border-left-color: #d97742;
    border-top: 2px solid #d97742;
    margin-top: 0.5rem;
  }
  .spend__table tfoot th {
    color: #fff;
    font-size: 1.05rem;
  }
  .spend__table tfoot td strong { font-size: 1.4rem; }
  .table-scroll:has(.spend__table) { overflow-x: visible; }
  .workshop__spo { grid-template-columns: 1fr; }
}

.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 {
  background: var(--c-cream);
  padding-block: 3.5rem;
}
.howto h2 { max-width: none; margin-bottom: 0.75rem; }
.howto .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #b04a14;
  margin-bottom: 0.75rem;
}
.howto .section-lede {
  max-width: 75ch;
  margin-bottom: 1.75rem;
}
.howto__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}
.howto__video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: #0f1d16;
  box-shadow: 0 6px 24px rgba(15,29,22,0.18);
}
.howto__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.howto__video-credit {
  font-size: 0.78rem;
  color: #5a6660;
  margin: 0.6rem 0 0;
  font-style: italic;
}
.howto__steps {
  list-style: none;
  counter-reset: howto-step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.howto__steps li {
  counter-increment: howto-step;
  background: #fff;
  border: 1px solid #e2dccd;
  border-left: 4px solid #d97742;
  border-radius: 4px;
  padding: 0.95rem 1.1rem 0.95rem 3.25rem;
  position: relative;
}
.howto__steps li::before {
  content: counter(howto-step);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 1.85rem;
  height: 1.85rem;
  background: #d97742;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}
.howto__steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #1f3324;
  line-height: 1.3;
}
.howto__steps p {
  margin: 0;
  font-size: 0.9rem;
  color: #2a3d2f;
  line-height: 1.55;
}
.howto__safety {
  margin-top: 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(217, 119, 66, 0.08);
  border-left: 4px solid #d97742;
  border-radius: 4px;
}
.howto__safety h3 {
  margin: 0 0 0.85rem;
  color: #1f3324;
  font-size: 1.1rem;
}
.howto__qa {
  margin-top: 2.5rem;
}
.howto__qa h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.25rem;
  color: #1f3324;
  scroll-margin-top: 5rem;
}
.howto__qa h3:first-child { margin-top: 0; }
.howto__qa h4 {
  margin: 1.25rem 0 0.6rem;
  font-size: 1rem;
  color: #1f3324;
}
.howto__qa p {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2a3d2f;
  max-width: 75ch;
}
.howto__compare {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.9rem;
  margin: 0.85rem 0 1rem;
}
.howto__compare caption {
  caption-side: top;
  text-align: left;
  color: #5a6660;
  font-size: 0.8rem;
  padding: 0 0 0.6rem;
  font-style: italic;
}
.howto__compare thead th {
  background: #fff7ed;
  color: #b04a14;
  text-align: left;
  padding: 0.7rem 0.85rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #e2dccd;
}
.howto__compare tbody th,
.howto__compare tbody td {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid #ece6d6;
  text-align: left;
  vertical-align: top;
  color: #2a3d2f;
}
.howto__compare tbody th {
  font-weight: 800;
  color: #1f3324;
  width: 26%;
}
@media (max-width: 720px) {
  .howto__compare { font-size: 0.82rem; border-collapse: separate; border-spacing: 0; background: transparent; }
  .howto__compare thead { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  .howto__compare tr {
    display: block;
    background: #fff;
    border: 1px solid #e2dccd;
    border-left: 3px solid #d97742;
    border-radius: 4px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.7rem;
  }
  .howto__compare tbody th,
  .howto__compare tbody td {
    display: block;
    width: auto;
    padding: 0.25rem 0;
    border: 0;
  }
  .howto__compare tbody th {
    font-size: 1rem;
    color: #1f3324;
    margin-bottom: 0.4rem;
  }
  .howto__compare tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5a6660;
    font-weight: 700;
    margin-bottom: 0.1rem;
  }
}

@media (max-width: 900px) {
  .howto__layout { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 640px) {
  .howto { padding-block: 2.5rem; }
  .howto__steps li { padding: 0.85rem 1rem 0.85rem 3rem; }
  .howto__safety { padding: 1.1rem 1.1rem; }
}

.situation__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 0.85rem;
}
.situation__card {
  background: #fff;
  border: 1px solid #e2dccd;
  border-left: 4px solid #6b8e6f;
  border-radius: 4px;
  padding: 1.2rem 1.35rem;
}
.situation__card h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  color: #1f3324;
  line-height: 1.35;
}
.situation__pick {
  margin: 0 0 0.7rem;
  padding: 0.55rem 0.75rem;
  background: #fff7ed;
  border-left: 3px solid #d97742;
  border-radius: 3px;
  font-size: 0.92rem;
  color: #5a3210;
}
.situation__pick strong { color: #b04a14; }
.situation__card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #2a3d2f;
}
.situation__link { margin: 0; }
.situation__link a {
  color: #b04a14;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
}
.situation__link a:hover { text-decoration: underline; }

.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; }

.tests__mfr {
  background: #fff;
  border: 1px solid #e2dccd;
  border-left: 4px solid #6b8e6f;
  border-radius: 3px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
}
.tests__mfr summary {
  cursor: pointer;
  font-size: 0.92rem;
  color: #2a3d2f;
  list-style: none;
  outline: none;
}
.tests__mfr summary::-webkit-details-marker { display: none; }
.tests__mfr summary::before {
  content: "▸ ";
  display: inline-block;
  margin-right: 0.3rem;
}
.tests__mfr[open] summary::before { content: "▾ "; }
.tests__mfr summary strong { color: #1f3324; }
.tests__facts--mfr {
  margin-top: 0.85rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.tests__facts--mfr li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: #f7f8f4;
  border-left: 2px solid #6b8e6f;
  padding: 0.45rem 0.7rem;
  font-size: 0.88rem;
  border-radius: 2px;
}
.tests__facts--mfr strong { font-weight: 700; color: #2a3d2f; }
.tests__facts--mfr span { font-weight: 600; color: #0f1d16; text-align: right; }
@media (max-width: 640px) {
  .tests__facts--mfr { grid-template-columns: 1fr; }
  .tests__facts--mfr li { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
  .tests__facts--mfr span { text-align: left; }
}

.picks__jump {
  background: #fff7ed;
  border-left: 4px solid #d97742;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.95rem;
  border-radius: 3px;
}
.picks__jump a { color: #b04a14; }

/* ============ Fence paint calculator ============ */
.calc { background: var(--c-cream); padding-block: 3.5rem; }
.calc .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #b04a14;
  margin-bottom: 0.75rem;
}
.calc h2 { max-width: none; margin-bottom: 0.75rem; }
.calc .section-lede { max-width: 70ch; margin-bottom: 1.75rem; }
.calc__form {
  background: #fff;
  border: 1px solid #e2dccd;
  border-radius: 6px;
  padding: 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 12px rgba(15,29,22,0.04);
  overflow: hidden;
}

.calc__step {
  border: 0;
  border-top: 1px solid #ece6d6;
  margin: 0;
  padding: 1.5rem 1.75rem;
}
.calc__step:first-of-type { border-top: 0; }
.calc__steplabel {
  display: block;
  width: 100%;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f1d16;
  margin-bottom: 1rem;
  padding: 0;
  float: none;
}
.calc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: #d97742;
  color: #fff;
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 800;
  margin-right: 0.6rem;
  vertical-align: middle;
}
.calc__hint {
  color: #5a6660;
  font-size: 0.88rem;
  margin: 0 0 0.85rem;
  max-width: 62ch;
}

.calc__row {
  display: grid;
  gap: 1.1rem 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.calc__field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; border: 0; padding: 0; margin: 0; }
.calc__label {
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f1d16;
}
.calc__field input[type="number"],
.calc__field select {
  font: inherit;
  padding: 0.6rem 0.75rem;
  border: 1px solid #cfc8b8;
  border-radius: 4px;
  background: #fff;
  color: #0f1d16;
  width: 100%;
}
.calc__field input[type="number"]:focus,
.calc__field select:focus { outline: 2px solid #d97742; outline-offset: 1px; border-color: #d97742; }
.calc__field small { color: #5a6660; font-size: 0.78rem; }

/* Chips for binary radios */
.calc__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }
.calc__chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border: 1.5px solid #cfc8b8;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0f1d16;
  transition: all 0.12s ease;
}
.calc__chip input { position: absolute; opacity: 0; pointer-events: none; }
.calc__chip:hover { border-color: #d97742; }
.calc__chip:has(input:checked) {
  background: #d97742;
  border-color: #d97742;
  color: #fff;
}

/* Cards for paint and tool */
.calc__cards {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 1rem;
}
.calc__card {
  position: relative;
  display: block;
  border: 1.5px solid #e2dccd;
  border-radius: 5px;
  padding: 0.9rem 1rem;
  background: #fff;
  cursor: pointer;
  transition: all 0.12s ease;
}
.calc__card input { position: absolute; opacity: 0; pointer-events: none; }
.calc__card:hover { border-color: #d97742; transform: translateY(-1px); }
.calc__card:has(input:checked) {
  border-color: #d97742;
  background: #fff7ed;
  box-shadow: 0 0 0 2px rgba(217,119,66,0.18);
}
.calc__card-body { display: flex; flex-direction: column; gap: 0.2rem; }
.calc__card-title {
  font-weight: 800;
  font-size: 0.98rem;
  color: #0f1d16;
}
.calc__card-meta {
  font-size: 0.82rem;
  color: #b04a14;
  font-weight: 700;
}
.calc__card-sub {
  font-size: 0.78rem;
  color: #5a6660;
  line-height: 1.35;
}

.calc__submit {
  margin: 0 1.75rem 1.75rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 800;
}
.calc__result {
  background: #0f1d16;
  color: #f5f1e8;
  border-radius: 4px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.75rem;
}
.calc__result h3 { color: #f5f1e8; font-size: 1.15rem; margin: 0 0 1rem; }
.calc__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.calc__stats li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #d97742;
  padding: 0.55rem 0.8rem;
  font-size: 0.92rem;
}
.calc__stats strong { font-weight: 700; color: #f3c98a; }
.calc__stats span { font-weight: 800; text-align: right; }
.calc__cta { margin: 1rem 0 0.75rem; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.calc__sprayer-rec { margin: 0.5rem 0 0; font-size: 0.95rem; color: #cfd8d2; }
.calc__sprayer-rec a { color: #f3c98a; }
.calc__sub { margin: 1.5rem 0 0.5rem; font-size: 1.1rem; }
.calc__intro { color: #5a6660; max-width: 70ch; margin-bottom: 0.75rem; font-size: 0.95rem; }
.calc__table { width: 100%; border-collapse: collapse; background: #fff; }
.calc__table th, .calc__table td { padding: 0.6rem 0.8rem; border-bottom: 1px solid #ece6d6; text-align: left; font-size: 0.92rem; }
.calc__table th { background: #f7f2e3; font-weight: 800; }
.calc__notes {
  margin-top: 1.25rem;
  background: #fff;
  border: 1px solid #e2dccd;
  border-left: 4px solid #6b8e6f;
  border-radius: 4px;
  padding: 0.85rem 1.1rem;
  max-width: 100%;
}
.calc__notes summary {
  cursor: pointer;
  font-size: 0.95rem;
  color: #1f3324;
  list-style: none;
  outline: none;
  padding: 0.1rem 0;
}
.calc__notes summary::-webkit-details-marker { display: none; }
.calc__notes summary::before {
  content: "▸ ";
  display: inline-block;
  margin-right: 0.3rem;
}
.calc__notes[open] summary::before { content: "▾ "; }
.calc__notes-body {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #5a6660;
  line-height: 1.55;
}
.calc__notes-body p { margin: 0 0 0.85rem; max-width: 75ch; }
.calc__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.calc__notes-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: #f7f8f4;
  border-left: 2px solid #6b8e6f;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  border-radius: 2px;
}
.calc__notes-list strong { color: #1f3324; font-weight: 700; }
.calc__notes-list span { color: #0f1d16; font-weight: 600; text-align: right; }
@media (max-width: 640px) {
  .calc__notes-list { grid-template-columns: 1fr; }
  .calc__notes-list li { flex-direction: column; align-items: flex-start; gap: 0.1rem; }
  .calc__notes-list span { text-align: left; }
}

@media (max-width: 820px) {
  .calc { padding-block: 2.5rem; }
  .calc__step { padding: 1.25rem 1.25rem; }
  .calc__row { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
  .calc__cards { grid-template-columns: 1fr 1fr; }
  .calc__result { padding: 1.25rem 1.1rem; }
  .calc__stats { grid-template-columns: 1fr; }
  .calc__stats li { font-size: 0.9rem; }
}
@media (max-width: 640px) {
  .calc { padding-block: 2rem; }
  .calc__step { padding: 1.1rem 1rem; }
  .calc__row { grid-template-columns: 1fr; }
  .calc__cards { grid-template-columns: 1fr; }
  .calc__field input[type="number"],
  .calc__field select { font-size: 16px; padding: 0.75rem 0.85rem; } /* 16px stops iOS zoom-on-focus */
  .calc__chip { padding: 0.65rem 1.1rem; min-height: 44px; }
  .calc__submit { width: calc(100% - 2rem); margin: 0 1rem 1rem; }
  .calc__result h3 { font-size: 1rem; }
  .calc__stats li { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .calc__stats span { text-align: left; }
  .calc__cta { flex-direction: column; align-items: flex-start; }
  .calc__cta .btn { width: 100%; text-align: center; }
  .calc__table th, .calc__table td { padding: 0.5rem 0.55rem; font-size: 0.85rem; }
  .picks__jump { font-size: 0.9rem; padding: 0.7rem 0.85rem; }
}
