/* ==========================================================================
   PawPicks UK — modern premium redesign
   Audience: 25-35 urban professional dog owners. Light, airy, bold type,
   fern green + amber accents, glass sticky header, chunky rounded cards.
   Plain CSS, zero external requests (system font stacks only).
   ========================================================================== */

:root {
  /* Palette — light neutrals + fern green + amber (AA against pairings) */
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-tint: #f1f4ec;
  --ink: #16241d;
  --ink-soft: #52625a;
  --line: #e3e7dd;
  --line-strong: #cfd6cb;

  --brand-950: #0b2b1e;
  --brand-900: #0e3826;
  --brand-700: #0d5c38;
  --brand-600: #12744a; /* primary action — white text = AA */
  --brand-500: #1d9c64;
  --brand-100: #dcf2e5;
  --brand-50: #eef7f1;

  --amber: #f6b73c;
  --amber-soft: #fdf3dd;
  --star: #b45309; /* AA on white for small text */
  --rust: #b4430e; /* top-pick badge — white text = AA */
  --rust-deep: #8f3308;

  /* Legacy aliases (older templates/inline styles reference these) */
  --color-primary: var(--brand-600);
  --color-primary-light: var(--brand-500);
  --color-accent: var(--rust);
  --color-bg: var(--bg);
  --color-bg-alt: var(--surface);
  --color-surface: var(--surface-tint);
  --color-text: var(--ink);
  --color-text-light: var(--ink-soft);
  --color-border: var(--line);
  --color-star: var(--star);
  --green-900: var(--brand-900);
  --green-800: var(--brand-700);
  --green-700: var(--brand-600);
  --green-600: var(--brand-500);
  --green-100: var(--brand-100);
  --cream: var(--bg);
  --cream-deep: var(--surface-tint);
  --paper: var(--surface);
  --terracotta: var(--rust);
  --terracotta-deep: var(--rust-deep);
  --honey: var(--amber);
  --border: var(--line);

  /* Fluid type scale */
  --step-5: clamp(2.35rem, 1.55rem + 3.2vw, 3.6rem); /* hero display */
  --step-4: clamp(1.85rem, 1.45rem + 1.6vw, 2.5rem); /* page h1 */
  --step-3: clamp(1.45rem, 1.25rem + 0.8vw, 1.75rem); /* h2 */
  --step-2: clamp(1.15rem, 1.08rem + 0.3vw, 1.3rem); /* h3 */

  --max-width: 1160px;
  --radius-lg: 20px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-soft:
    0 1px 2px rgba(22, 36, 29, 0.05),
    0 6px 20px rgba(22, 36, 29, 0.06);
  --shadow-lift:
    0 2px 4px rgba(22, 36, 29, 0.06),
    0 16px 40px rgba(14, 56, 38, 0.14);
  --header-h: 68px;

  --font-body:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-heading: var(--font-body);
  /* Handwritten accents — captions, stickers, Milo's notes. System stacks only. */
  --font-hand:
    "Segoe Print", "Bradley Hand", "Chalkboard SE", "Comic Sans MS", casual,
    cursive;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--brand-100);
  color: var(--brand-900);
}

a {
  color: var(--brand-700);
  text-decoration: none;
}
a:hover {
  color: var(--brand-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  /* Two-layer ring: light inner layer keeps focus visible on the dark
     footer where the brand ring alone falls under 3:1 contrast. */
  outline: 3px solid var(--brand-600);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 2px var(--bg);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.18;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}

/* Anchor jumps land below the sticky header */
[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand-900);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 300;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ==========================================================================
   Header — light glass, sticky
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 253, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.site-logo:hover {
  color: var(--ink);
  text-decoration: none;
}
.site-logo:hover .logo-mark {
  transform: rotate(-10deg) scale(1.05);
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex: none;
  transition: transform 0.25s ease;
}
.logo-word {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-word em {
  font-style: normal;
  color: var(--brand-600);
}
.logo-tag {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

/* Primary links — desktop only */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-primary a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-primary a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  text-decoration: none;
}

/* Menu disclosure — "More" on desktop, full menu on mobile. Pure CSS. */
.nav-menu {
  position: relative;
}
.nav-menu > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.nav-menu > summary::-webkit-details-marker {
  display: none;
}
.nav-menu > summary:hover {
  border-color: var(--brand-500);
  background: var(--brand-50);
}
.nav-menu > summary svg {
  width: 16px;
  height: 16px;
}
.nav-menu[open] > summary svg.icon-burger {
  display: none;
}
.nav-menu > summary svg.icon-close {
  display: none;
}
.nav-menu[open] > summary svg.icon-close {
  display: block;
}

.nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(680px, calc(100vw - 2rem));
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 1.4rem 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  z-index: 150;
}
.nav-group h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.nav-group a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0.6rem;
  margin: 0 -0.6rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-group a:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  text-decoration: none;
}

/* ==========================================================================
   Hero — light, split layout
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 88% -10%, rgba(29, 156, 100, 0.12), transparent 65%),
    radial-gradient(520px 380px at -8% 30%, rgba(246, 183, 60, 0.14), transparent 60%),
    var(--bg);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--brand-100);
  color: var(--brand-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-kicker svg {
  width: 15px;
  height: 15px;
}
.hero h1 {
  font-size: var(--step-5);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  color: var(--brand-600);
}
.hero p {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.6rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero-actions .cta {
  margin-top: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  gap: 1.5rem;
}
.hero-stats div {
  border-left: 3px solid var(--brand-100);
  padding-left: 0.85rem;
}
.hero-stats strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-900);
  line-height: 1.2;
}
.hero-stats span {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.hero-photo {
  position: relative;
  margin: 0;
}
.hero-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.hero-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.hero-photo figcaption svg {
  width: 15px;
  height: 15px;
  color: var(--brand-600);
  flex: none;
}

.hero .hero-polaroid {
  max-width: 480px;
  width: 100%;
  justify-self: center;
  margin: 0;
}

/* Legacy hero decorations (kept for any page still using them) */
.hero-paws,
.hero-dog {
  display: none;
}

/* ==========================================================================
   Main / sections
   ========================================================================== */
main {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1rem;
}

.section-title {
  font-size: var(--step-3);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.section-lede {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 640px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head .text-link {
  flex: none;
  margin-bottom: 1.75rem;
}
.text-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-700);
}

.paw-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 2.5rem;
  color: var(--brand-500);
}
.paw-divider::before,
.paw-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.paw-divider svg {
  width: 22px;
  height: 22px;
  flex: none;
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
  border-color: var(--brand-500);
}

.product-card h3 {
  font-size: var(--step-2);
  margin: 0.5rem 0 0.45rem;
  letter-spacing: -0.015em;
}
.product-card h3 a {
  color: var(--ink);
}
.product-card h3 a:hover {
  color: var(--brand-700);
}
.product-card .meta {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0.3rem 0 0.6rem;
}
.product-card .price {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: auto;
  padding-top: 0.9rem;
}

/* Star ratings */
.rating {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  color: var(--star);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--amber-soft);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 0.5rem;
}

.product-card .pros-cons,
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1rem 0;
}
.pros-cons h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.pros h4 {
  color: var(--brand-700);
}
.cons h4 {
  color: var(--rust);
}
.pros ul,
.cons ul,
.product-card .pros,
.product-card .cons {
  list-style: none;
  font-size: 0.9rem;
  margin: 0;
}
.pros li,
.cons li,
.product-card .pros li,
.product-card .cons li {
  margin-bottom: 0.3rem;
  padding-left: 1.3rem;
  position: relative;
}
.pros li::before,
.product-card .pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-600);
  font-weight: 800;
}
.cons li::before,
.product-card .cons li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--rust);
  font-weight: 800;
}

/* CTA buttons */
.cta,
.affiliate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 44px;
  background: var(--brand-600);
  color: #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.85rem;
  border: 1.5px solid transparent;
  box-shadow: 0 2px 8px rgba(18, 116, 74, 0.28);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.cta:hover,
.affiliate-btn:hover {
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 92, 56, 0.32);
}
.cta:active,
.affiliate-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(13, 92, 56, 0.3);
}

/* ASA link-level ad identifier — must stay legible, never hidden.
   Inherits the button's text colour so it contrasts on both the solid
   and ghost CTA variants; opacity kept high enough to remain readable. */
.ad-marker {
  font-size: 0.78rem;
  font-weight: 600;
  color: inherit;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

.cta--ghost {
  background: transparent;
  color: var(--brand-700);
  border-color: var(--line-strong);
  box-shadow: none;
}
.cta--ghost:hover {
  background: var(--brand-50);
  color: var(--brand-700);
  border-color: var(--brand-500);
  box-shadow: none;
  transform: translateY(-2px);
}

/* ==========================================================================
   Badges & tags
   ========================================================================== */
.badge {
  display: inline-block;
  background: var(--amber);
  color: var(--brand-950);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-right: 0.35rem;
}
.badge--top {
  background: var(--rust);
  color: #fff;
}
.badge--value {
  background: var(--brand-100);
  color: var(--brand-900);
}
.badge--oos {
  background: var(--surface-tint);
  color: var(--ink-soft);
  border: 1px solid var(--line-strong);
}

.tag {
  display: inline-block;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0.3rem 0.4rem 0;
}
.tag-top {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

/* "Milo tested" badge */
.milo-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.45rem;
  background: var(--brand-100);
  color: var(--brand-900);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0.35rem 0;
}
.milo-badge svg {
  width: 15px;
  height: 15px;
  flex: none;
}

/* ==========================================================================
   Comparison tables — sticky first column on mobile
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  min-width: 640px;
  font-size: 0.92rem;
}
.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.comparison-table thead th {
  background: var(--surface-tint);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table tbody tr:hover td {
  background: var(--brand-50);
}
/* First column stays visible while the rest scrolls on small screens */
.comparison-table th:first-child,
.comparison-table td:first-child {
  position: sticky;
  left: 0;
  background: var(--surface);
  box-shadow: inset -1px 0 0 var(--line);
}
.comparison-table thead th:first-child {
  background: var(--surface-tint);
}
.comparison-table tbody tr:hover td:first-child {
  background: var(--brand-50);
}

/* ==========================================================================
   Articles
   ========================================================================== */
.article,
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.article-content {
  padding: 0;
}

.article h1,
.article-content h1 {
  font-size: var(--step-4);
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.article h2,
.article-content h2 {
  font-size: var(--step-3);
  margin: 2.5rem 0 0.85rem;
  color: var(--ink);
}
.article h3,
.article-content h3 {
  font-size: var(--step-2);
  margin: 1.6rem 0 0.5rem;
}
.article p,
.article-content p {
  margin-bottom: 1rem;
}
.article ul,
.article ol,
.article-content ul,
.article-content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.article li,
.article-content li {
  margin-bottom: 0.4rem;
}
.article .meta,
.article-content .meta {
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
}
.article hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

.product-review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
}
.product-review h3 {
  margin-top: 0;
}

/* Verdict / quick-answer box */
.info-box {
  position: relative;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 1.02rem;
}
.info-box strong {
  color: var(--brand-900);
}

/* Quick-picks strip on review pages */
.quick-picks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin: 1.25rem 0 1.75rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}
.quick-picks .qp-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-right: 0.25rem;
}
.quick-picks a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.quick-picks a:hover {
  background: var(--brand-50);
  border-color: var(--brand-500);
  color: var(--brand-900);
  text-decoration: none;
}
.quick-picks a .qp-flag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rust);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 1rem 0 1.5rem;
}
.breadcrumbs a {
  color: var(--ink-soft);
}
.breadcrumbs a:hover {
  color: var(--brand-700);
}

/* Affiliate disclosure */
.affiliate-disclosure {
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* How-we-test CTA */
.how-we-test-cta {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 2.5rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.how-we-test-cta svg {
  width: 28px;
  height: 28px;
  flex: none;
  color: var(--brand-600);
  margin-top: 0.15rem;
}
.how-we-test-cta p {
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 0.9rem 1.15rem;
  margin-bottom: 0.6rem;
  transition: border-color 0.15s ease;
}
.faq-item[open],
.faq-item:hover {
  border-color: var(--brand-500);
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 28px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand-600);
  line-height: 1;
  flex: none;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  color: var(--brand-700);
}
.faq-item h3 {
  font-size: 1rem;
}
.faq-item p {
  margin-top: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ==========================================================================
   Homepage extras: trust cards + breed grid
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.trust-card {
  padding: 1.6rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.trust-card h3::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  background:
    var(--brand-600)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 12.5c-2.6 0-5.5 1.9-5.5 4.4 0 1.7 1.2 2.6 2.7 2.6 1 0 1.8-.4 2.8-.4s1.8.4 2.8.4c1.5 0 2.7-.9 2.7-2.6 0-2.5-2.9-4.4-5.5-4.4zM7 8.2c-.9-.3-1.9.4-2.2 1.5s.2 2.2 1.1 2.5 1.9-.4 2.2-1.5S7.9 8.5 7 8.2zm10 0c-.9.3-1.4 1.4-1.1 2.5s1.3 1.8 2.2 1.5 1.4-1.4 1.1-2.5S17.9 7.9 17 8.2zM9.8 4.1c-1 .2-1.6 1.4-1.4 2.6s1.2 2 2.2 1.8 1.6-1.4 1.4-2.6-1.2-2-2.2-1.8zm4.4 0c-1-.2-2 .6-2.2 1.8s.4 2.4 1.4 2.6 2-.6 2.2-1.8-.4-2.4-1.4-2.6z'/%3E%3C/svg%3E")
    center / 16px no-repeat;
}
.trust-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.breed-card {
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.breed-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-500);
}
.breed-card strong {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.breed-card span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.guides-list {
  list-style: none;
  margin: 1rem 0 !important;
}
.guides-list li {
  padding: 0.65rem 0 0.65rem 1.8rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.guides-list li a {
  font-weight: 600;
}
.guides-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 15px;
  height: 15px;
  background: var(--brand-500);
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12.5c-2.6 0-5.5 1.9-5.5 4.4 0 1.7 1.2 2.6 2.7 2.6 1 0 1.8-.4 2.8-.4s1.8.4 2.8.4c1.5 0 2.7-.9 2.7-2.6 0-2.5-2.9-4.4-5.5-4.4zM7 8.2c-.9-.3-1.9.4-2.2 1.5s.2 2.2 1.1 2.5 1.9-.4 2.2-1.5S7.9 8.5 7 8.2zm10 0c-.9.3-1.4 1.4-1.1 2.5s1.3 1.8 2.2 1.5 1.4-1.4 1.1-2.5S17.9 7.9 17 8.2zM9.8 4.1c-1 .2-1.6 1.4-1.4 2.6s1.2 2 2.2 1.8 1.6-1.4 1.4-2.6-1.2-2-2.2-1.8zm4.4 0c-1-.2-2 .6-2.2 1.8s.4 2.4 1.4 2.6 2-.6 2.2-1.8-.4-2.4-1.4-2.6z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12.5c-2.6 0-5.5 1.9-5.5 4.4 0 1.7 1.2 2.6 2.7 2.6 1 0 1.8-.4 2.8-.4s1.8.4 2.8.4c1.5 0 2.7-.9 2.7-2.6 0-2.5-2.9-4.4-5.5-4.4zM7 8.2c-.9-.3-1.9.4-2.2 1.5s.2 2.2 1.1 2.5 1.9-.4 2.2-1.5S7.9 8.5 7 8.2zm10 0c-.9.3-1.4 1.4-1.1 2.5s1.3 1.8 2.2 1.5 1.4-1.4 1.1-2.5S17.9 7.9 17 8.2zM9.8 4.1c-1 .2-1.6 1.4-1.4 2.6s1.2 2 2.2 1.8 1.6-1.4 1.4-2.6-1.2-2-2.2-1.8zm4.4 0c-1-.2-2 .6-2.2 1.8s.4 2.4 1.4 2.6 2-.6 2.2-1.8-.4-2.4-1.4-2.6z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.home-cta-row {
  text-align: center;
  margin: 2rem 0;
}

/* ==========================================================================
   Footer — dark, multi-column
   ========================================================================== */
.site-footer {
  background: var(--brand-950);
  color: #b9cec2;
  padding: 3rem 0 2.5rem;
  margin-top: 4rem;
  font-size: 0.9rem;
}
.site-footer a {
  color: #e8f2ec;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--amber);
  text-decoration: underline;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-brand .logo-word {
  color: #fff;
  font-size: 1.3rem;
}
.footer-brand .logo-word em {
  color: var(--amber);
}
.footer-brand p {
  margin-top: 0.75rem;
  max-width: 34em;
}
.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8fae9c;
  margin-bottom: 0.75rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 0.15rem;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.25rem;
  padding-top: 1.5rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #8fae9c;
}
.footer-signoff {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 400px;
}
.footer-signoff svg {
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--amber);
}
.footer-signoff p {
  margin: 0;
  font-style: italic;
  font-size: 0.88rem;
  color: #d4e4da;
}
.footer-signoff .signoff-by {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  color: #8fae9c;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .nav-primary {
    display: none;
  }
  .nav-menu {
    position: static;
  }
  .nav-panel {
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    top: calc(var(--header-h) + 6px);
    width: auto;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-height: calc(100dvh - var(--header-h) - 1.5rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    order: -1;
    max-width: 560px;
  }
  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .site-footer .container {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .logo-tag {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons,
  .product-card .pros-cons {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.6rem 0.75rem;
  }
  .hero-actions .cta {
    flex: 1 1 auto;
  }
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* ==========================================================================
   Bare-page typography — pages that render raw headings/paragraphs straight
   into main .container (hub/index pages) get proper vertical rhythm.
   Direct-child selectors so components and .article pages are untouched.
   ========================================================================== */
main > .container > h1 {
  font-size: var(--step-4);
  margin: 0.5rem 0 1rem;
}
main > .container > h2 {
  font-size: var(--step-3);
  margin: 2.75rem 0 0.6rem;
}
main > .container > h3 {
  font-size: var(--step-2);
  margin: 1.6rem 0 0.5rem;
}
main > .container > p {
  margin-bottom: 1rem;
  max-width: 70ch;
}
main > .container > ul,
main > .container > ol {
  margin: 1rem 0 1.5rem 1.5rem;
  max-width: 70ch;
}
main > .container > ul li,
main > .container > ol li {
  margin-bottom: 0.45rem;
}

/* ==========================================================================
   Hand-crafted personality layer
   ========================================================================== */

/* Marker-pen highlight swipe */
.marker {
  background: linear-gradient(
    100deg,
    transparent 1%,
    rgba(246, 183, 60, 0.5) 4%,
    rgba(246, 183, 60, 0.38) 96%,
    transparent 99%
  );
  border-radius: 0.3em;
  padding: 0 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* Wavy hand-drawn underline for headings */
.doodle {
  position: relative;
  display: inline-block;
  padding-bottom: 0.3em;
}
.doodle::after {
  content: "";
  position: absolute;
  left: 0.05em;
  right: 0.4em;
  bottom: 0;
  height: 0.28em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 12 3 24 7 T 46 7 T 68 5 T 90 8 T 118 5' fill='none' stroke='%23f6b73c' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center / 100% 100%;
}

/* Polaroid photo frame with washi tape */
.polaroid {
  background: #fff;
  padding: 0.8rem 0.8rem 0.9rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  transform: rotate(2deg);
  position: relative;
  margin: 1rem auto;
  transition: transform 0.25s ease;
}
.polaroid:hover {
  transform: rotate(0.5deg) scale(1.01);
}
.polaroid--left {
  transform: rotate(-2.25deg);
}
.polaroid--left:hover {
  transform: rotate(-0.5deg) scale(1.01);
}
.polaroid::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 116px;
  height: 28px;
  transform: translateX(-50%) rotate(-3.5deg);
  background: rgba(246, 183, 60, 0.72);
  border-left: 1px dashed rgba(255, 255, 255, 0.65);
  border-right: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 2px;
  z-index: 1;
}
.polaroid img {
  border-radius: 3px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.polaroid figcaption {
  font-family: var(--font-hand);
  text-align: center;
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.35;
}

/* Milo's note — handwritten aside from the Chief Taste-Tester */
.milo-note {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  background: var(--amber-soft);
  border: 1.5px dashed var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin: 2.25rem 0;
  max-width: 620px;
  transform: rotate(-0.4deg);
}
.milo-note svg {
  width: 34px;
  height: 34px;
  flex: none;
  color: var(--brand-700);
  margin-top: 0.1rem;
  transform: rotate(-8deg);
}
.milo-note p {
  margin: 0;
  font-family: var(--font-hand);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}
.milo-note .note-by {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

/* Hub page hero — intro copy + tilted polaroid */
.hub-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  margin: 1.25rem 0 2.5rem;
}
.hub-hero h1 {
  font-size: var(--step-4);
  margin-bottom: 1rem;
}
.hub-hero > div > p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  max-width: 38em;
}
.hub-hero .polaroid {
  max-width: 400px;
  justify-self: center;
  margin: 0.5rem 0;
}

/* Breed size chart — dog silhouettes climbing in size */
.size-band {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  color: var(--brand-500);
  margin-top: 2.75rem;
}
.size-band + h2 {
  margin-top: 0.25rem;
}
.size-band svg {
  flex: none;
}
.size-band svg:nth-child(even) {
  transform: scaleX(-1);
}

/* ==========================================================================
   Hub card grids (.article-list / .article-card)
   ========================================================================== */
.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 1.1rem;
  margin: 1.5rem 0 2.75rem;
}
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.article-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  border-color: var(--brand-500);
}
.article-card h2,
.article-card h3 {
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin: 0;
}
.article-card h2 a,
.article-card h3 a {
  color: var(--ink);
}
.article-card h2 a:hover,
.article-card h3 a:hover {
  color: var(--brand-700);
  text-decoration: none;
}
.article-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}
/* CTA inside a hub card renders as an arrow text-link, not a heavy button */
.article-card .cta {
  background: none;
  box-shadow: none;
  border: none;
  color: var(--brand-700);
  padding: 0;
  min-height: 44px;
  justify-content: flex-start;
  margin-top: auto;
  font-size: 0.92rem;
}
.article-card .cta:hover {
  background: none;
  color: var(--brand-500);
  transform: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-card .card-links {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.9rem;
  font-size: 0.88rem;
}
.article-card .card-links .cta {
  margin-top: 0;
  min-height: 40px;
}
.chip-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.7rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-soft);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.chip-link:hover {
  border-color: var(--brand-500);
  background: var(--brand-50);
  color: var(--brand-700);
  text-decoration: none;
}
.breed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.breed-meta span {
  display: inline-block;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hub-hero {
    grid-template-columns: 1fr;
  }
  .hub-hero .polaroid {
    max-width: 340px;
    order: -1;
  }
}

/* ==========================================================================
   Shop
   ========================================================================== */
.shop-intro {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.shop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.shop-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.shop-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.shop-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.shop-card-body h2 {
  font-size: 1.15rem;
  margin: 0;
}
.shop-badge {
  align-self: flex-start;
  background: var(--rust);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
.shop-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: auto;
}
.shop-price-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.shop-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  text-align: center;
  background: var(--brand-600);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}
.shop-order-btn:hover {
  background: var(--brand-700);
  color: #fff;
  text-decoration: none;
}
.shop-story {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
}
.shop-size-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}
.shop-size-buttons {
  display: flex;
  gap: 0.5rem;
}
.shop-order-btn-size {
  flex: 1;
  padding: 0.7rem 0.5rem;
}
.shop-size-hint {
  font-size: 0.8rem;
  margin: 0;
}
.shop-milo {
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin: 2.5rem 0;
}
.shop-milo .content-photo {
  margin: 0.25rem 0 1rem;
}
.shop-sizes {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.shop-sizes th,
.shop-sizes td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.9rem;
  text-align: left;
}
.shop-sizes th {
  background: var(--surface-tint);
}
.shop-size-tip {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Photos
   ========================================================================== */
.content-photo {
  margin: 1.5rem 0 2rem;
}
.content-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.content-photo figcaption {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ==========================================================================
   Email capture — flag-gated newsletter partial (footer + end-of-guide)
   Matches the card/footer visual language: fern green, soft radii, mobile-first.
   ========================================================================== */
.email-capture {
  background: var(--brand-900);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  margin: 2.5rem 0 0;
  color: #e8f2ec;
}
.site-footer .email-capture {
  /* Sits inside the dark footer; lift it a touch off the brand-950 backdrop. */
  background: var(--brand-700);
  margin: 1rem auto 0;
  max-width: var(--max-width);
}
.email-capture-inner {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}
.email-capture-title {
  color: #fff;
  font-size: var(--step-3);
  line-height: 1.2;
  margin: 0 0 0.5rem;
}
.email-capture-blurb {
  color: #cfe3d7;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}
.email-capture-form {
  margin: 0;
}
/* Honeypot — off-screen, out of tab order, hidden from assistive tech. */
.ec-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.ec-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.email-capture-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.email-capture-input {
  flex: 1 1 auto;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.email-capture-input::placeholder {
  color: var(--ink-soft);
}
.email-capture-input:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-color: var(--amber);
}
.email-capture-btn {
  min-height: 46px;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand-600);
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.05s ease;
}
.email-capture-btn:hover {
  background: var(--brand-500);
}
.email-capture-btn:active {
  transform: translateY(1px);
}
.email-capture-btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
.email-capture-reassure {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
  color: #a9c6b5;
}
.email-capture-success {
  margin: 0.85rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

@media (min-width: 560px) {
  .email-capture-row {
    flex-direction: row;
    align-items: stretch;
  }
}
