/* ==========================================================================
   Kayaking.co — Production stylesheet
   Premium outdoor editorial design system
   ========================================================================== */

:root {
  --c-deep-water: #0B3D4A;
  --c-river: #1F7A8C;
  --c-mist: #EAF4F4;
  --c-sand: #F4E8D0;
  --c-pine: #1F4D3A;
  --c-sun: #F5B85B;
  --c-ink: #102027;
  --c-slate: #5F6C72;
  --c-slate-light: #97A2A8;
  --c-white: #FFFFFF;
  --c-cream: #FBF8F1;
  --c-line: #E3ECEE;
  --c-line-soft: #F1F5F6;
  --c-danger: #B5341B;
  --c-success: #2E7D5B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(16, 32, 39, 0.04), 0 1px 3px rgba(16, 32, 39, 0.06);
  --shadow-md: 0 4px 14px rgba(16, 32, 39, 0.06), 0 2px 4px rgba(16, 32, 39, 0.04);
  --shadow-lg: 0 16px 40px rgba(16, 32, 39, 0.08), 0 4px 10px rgba(16, 32, 39, 0.04);
  --shadow-glow: 0 20px 60px rgba(11, 61, 74, 0.18);

  --max-w: 1200px;
  --max-w-narrow: 760px;
  --max-w-wide: 1400px;

  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Source Serif 4', 'Source Serif Pro', Georgia, 'Times New Roman', serif;

  --t-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; padding: 0; }
a { color: var(--c-river); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-deep-water); }
ul, ol { padding-left: 1.25rem; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--c-ink);
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.625rem, 2vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1vw + 0.75rem, 1.625rem); }
h4 { font-size: 1.125rem; }
p { color: var(--c-ink); }
.lede { font-size: 1.25rem; color: var(--c-slate); line-height: 1.55; }
.eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-river);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }
.section { padding: 4rem 0; }
.section--lg { padding: 6rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--alt { background: var(--c-cream); }
.section--dark { background: var(--c-deep-water); color: var(--c-mist); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-white); }
.section--mist { background: var(--c-mist); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header .eyebrow { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--c-slate); font-size: 1.125rem; }
.text-center { text-align: center; }

/* Grid */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--6 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 960px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--6 { grid-template-columns: repeat(6, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--t-base);
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--c-deep-water); color: var(--c-white); }
.btn--primary:hover { background: var(--c-river); color: var(--c-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--secondary { background: var(--c-white); color: var(--c-deep-water); border-color: var(--c-line); }
.btn--secondary:hover { background: var(--c-mist); color: var(--c-deep-water); border-color: var(--c-river); }
.btn--ghost { background: transparent; color: var(--c-deep-water); }
.btn--ghost:hover { background: var(--c-mist); color: var(--c-deep-water); }
.btn--sun { background: var(--c-sun); color: var(--c-ink); }
.btn--sun:hover { background: #e8a73e; color: var(--c-ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.125rem 2rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.625rem 1rem; font-size: 0.875rem; }
.btn--block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform var(--t-base); }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.125rem; color: var(--c-deep-water); letter-spacing: -0.02em; }
.brand svg { width: 28px; height: 28px; }
.brand:hover { color: var(--c-river); }
.brand-tag { font-weight: 500; color: var(--c-slate); font-size: 0.75rem; letter-spacing: 0.04em; margin-left: 0.25rem; }
.nav-links { display: none; gap: 1.75rem; align-items: center; }
.nav-links a { color: var(--c-ink); font-weight: 500; font-size: 0.95rem; }
.nav-links a:hover { color: var(--c-river); }
.nav-cta { display: none; }
.menu-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: var(--radius-sm); border: 1px solid var(--c-line); background: var(--c-white); }
.menu-btn svg { width: 22px; height: 22px; }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 61, 74, 0.55);
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px); background: var(--c-white);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.mobile-drawer__panel a { font-size: 1.125rem; color: var(--c-ink); padding: 0.6rem 0; border-bottom: 1px solid var(--c-line-soft); }
.mobile-drawer__close { align-self: flex-end; }

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  background:
    radial-gradient(1200px 400px at 80% -10%, rgba(31, 122, 140, 0.18), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, rgba(245, 184, 91, 0.10), transparent 60%),
    linear-gradient(180deg, var(--c-mist) 0%, var(--c-white) 100%);
  overflow: hidden;
}
.hero__inner { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 960px) { .hero__inner { grid-template-columns: 1.05fr 1fr; padding-top: 1rem; } }
.hero h1 { margin-bottom: 1.25rem; }
.hero .lede { margin-bottom: 2rem; max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.hero__trust { display: flex; align-items: center; gap: 0.75rem; color: var(--c-slate); font-size: 0.875rem; }
.hero__trust svg { width: 18px; height: 18px; color: var(--c-pine); flex-shrink: 0; }

/* Hero artwork */
.hero__art {
  position: relative; aspect-ratio: 4 / 5; max-width: 560px; margin-left: auto; width: 100%;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(11,61,74,0.05), rgba(11,61,74,0.35)),
    linear-gradient(160deg, #1F7A8C 0%, #0B3D4A 100%);
  overflow: hidden; box-shadow: var(--shadow-glow);
}
.hero__art::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.18), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(245,184,91,0.35), transparent 25%);
}
.hero__art-svg { position: absolute; inset: 0; }
.hero__cards {
  position: absolute; left: -1rem; bottom: -1rem; right: 1rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  pointer-events: none;
}
.hero-card {
  background: var(--c-white); border-radius: var(--radius-md);
  padding: 0.85rem 1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; font-weight: 600; color: var(--c-ink);
  max-width: 280px;
}
.hero-card:nth-child(2) { align-self: center; }
.hero-card:nth-child(3) { align-self: flex-end; }
.hero-card__icon { width: 36px; height: 36px; border-radius: 10px; background: var(--c-mist); color: var(--c-river); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card__icon svg { width: 20px; height: 20px; }

/* Stat strip */
.stat-strip {
  background: var(--c-deep-water); color: var(--c-mist);
  padding: 2.5rem 0; border-radius: var(--radius-lg);
  margin-top: -3rem; position: relative; z-index: 2;
}
.stat-strip .container { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .stat-strip .container { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat__num { font-size: 1.75rem; font-weight: 800; color: var(--c-white); letter-spacing: -0.02em; line-height: 1.1; }
.stat__label { color: var(--c-mist); font-size: 0.875rem; margin-top: 0.25rem; }

/* Cards */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--t-base);
  display: flex; flex-direction: column;
  height: 100%;
}
.card:hover { border-color: var(--c-river); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--c-mist); color: var(--c-deep-water);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.card p { color: var(--c-slate); font-size: 0.95rem; }
.card__link { margin-top: auto; padding-top: 1rem; color: var(--c-river); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.4rem; }
.card__link:hover { color: var(--c-deep-water); }
.card__link .arrow { transition: transform var(--t-base); }
.card:hover .card__link .arrow { transform: translateX(3px); }
.card--featured { background: linear-gradient(160deg, var(--c-deep-water), var(--c-river)); color: var(--c-white); border-color: transparent; }
.card--featured h3, .card--featured p { color: var(--c-white); }
.card--featured p { color: rgba(255,255,255,0.85); }
.card--featured .card__icon { background: rgba(255,255,255,0.18); color: var(--c-white); }
.card--featured .card__link { color: var(--c-sun); }

/* Goal cards */
.goal-cards { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .goal-cards { grid-template-columns: repeat(3, 1fr); } }
.goal-card {
  background: var(--c-cream); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 1.5rem; text-align: left;
  display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none; color: inherit;
  transition: all var(--t-base);
  min-height: 170px;
}
.goal-card:hover { background: var(--c-white); border-color: var(--c-river); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.goal-card__icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--c-mist);
  color: var(--c-river); display: inline-flex; align-items: center; justify-content: center;
}
.goal-card__icon svg { width: 22px; height: 22px; }
.goal-card h3 { font-size: 1.0625rem; }
.goal-card p { color: var(--c-slate); font-size: 0.9rem; }

/* Article / content */
.prose { max-width: 760px; margin: 0 auto; color: var(--c-ink); }
.prose > * + * { margin-top: 1rem; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.5rem; }
.prose p { font-size: 1.0625rem; line-height: 1.75; color: var(--c-ink); }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.4rem; line-height: 1.65; }
.prose a { color: var(--c-river); border-bottom: 1px solid rgba(31, 122, 140, 0.3); }
.prose a:hover { color: var(--c-deep-water); border-color: var(--c-deep-water); }
.prose blockquote {
  border-left: 3px solid var(--c-sun);
  padding: 0.75rem 1.25rem;
  background: var(--c-sand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--c-ink);
  margin: 1.5rem 0;
}
.prose code { background: var(--c-mist); padding: 0.15rem 0.4rem; border-radius: 6px; font-size: 0.9em; color: var(--c-deep-water); }
.prose img { border-radius: var(--radius-md); }

/* Callouts */
.callout {
  background: var(--c-mist); border-left: 4px solid var(--c-river);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem; margin: 1.5rem 0;
}
.callout--warning { background: #FFF5E5; border-color: #E8A73E; }
.callout--safety { background: #FFEFE9; border-color: var(--c-danger); }
.callout--success { background: #E8F5EE; border-color: var(--c-success); }
.callout__title { font-weight: 700; margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.callout p { font-size: 0.95rem; color: var(--c-ink); }

/* Tables */
.tbl-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--c-line); margin: 1.5rem 0; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.tbl th, .tbl td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.tbl thead { background: var(--c-cream); }
.tbl th { font-weight: 700; color: var(--c-deep-water); font-size: 0.875rem; letter-spacing: 0.02em; }
.tbl tbody tr:last-child td { border-bottom: none; }
.tbl tbody tr:hover { background: var(--c-line-soft); }
.tbl--compact th, .tbl--compact td { padding: 0.6rem 0.85rem; font-size: 0.875rem; }

/* Footer */
.site-footer {
  background: var(--c-deep-water); color: var(--c-mist);
  padding: 4rem 0 2rem;
}
.site-footer h4 { color: var(--c-white); margin-bottom: 1rem; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; }
.site-footer a { color: var(--c-mist); display: block; padding: 0.3rem 0; font-size: 0.95rem; }
.site-footer a:hover { color: var(--c-sun); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-brand p { color: rgba(234, 244, 244, 0.78); font-size: 0.95rem; max-width: 360px; }
.footer-brand .brand { color: var(--c-white); margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem; margin-top: 3rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.85rem; color: rgba(234, 244, 244, 0.65);
}

/* Forms */
.form-row { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
.form-row label { font-weight: 600; font-size: 0.875rem; color: var(--c-ink); }
.input, .textarea, .select {
  width: 100%; padding: 0.75rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  background: var(--c-white);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--c-river);
  box-shadow: 0 0 0 4px rgba(31, 122, 140, 0.12);
}
.textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-note { font-size: 0.85rem; color: var(--c-slate); }

/* Newsletter band */
.newsletter-band {
  background: linear-gradient(135deg, var(--c-deep-water), var(--c-river));
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  color: var(--c-white);
  display: grid; gap: 1.5rem; align-items: center;
}
@media (min-width: 768px) { .newsletter-band { grid-template-columns: 1.4fr 1fr; padding: 3.5rem 3rem; } }
.newsletter-band h2 { color: var(--c-white); margin-bottom: 0.5rem; }
.newsletter-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 480px) { .newsletter-form { flex-direction: row; } }
.newsletter-form .input { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: var(--c-white); }
.newsletter-form .input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-form .input:focus { background: rgba(255, 255, 255, 0.18); border-color: var(--c-sun); box-shadow: 0 0 0 4px rgba(245, 184, 91, 0.25); }

/* Acquisition CTA strip */
.acq-strip {
  background: var(--c-ink); color: var(--c-mist);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  position: relative; overflow: hidden;
}
.acq-strip::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(245, 184, 91, 0.18), transparent 60%);
  pointer-events: none;
}
.acq-strip__inner { display: grid; gap: 1.5rem; align-items: center; position: relative; }
@media (min-width: 768px) { .acq-strip__inner { grid-template-columns: 1.4fr 1fr; padding: 1rem; } }
.acq-strip h2 { color: var(--c-white); margin-bottom: 0.75rem; }
.acq-strip p { color: rgba(234, 244, 244, 0.85); }

/* Breadcrumbs */
.crumbs { font-size: 0.875rem; color: var(--c-slate); margin-bottom: 1.5rem; }
.crumbs a { color: var(--c-slate); }
.crumbs a:hover { color: var(--c-river); }
.crumbs span { margin: 0 0.4rem; opacity: 0.5; }

/* Tags / pills */
.pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.7rem; border-radius: 999px;
  background: var(--c-mist); color: var(--c-deep-water);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.02em;
}
.pill--sun { background: #FFF1D6; color: #8B5A0D; }
.pill--pine { background: #E2EFE7; color: var(--c-pine); }
.pill--danger { background: #FFE5DE; color: var(--c-danger); }
.pill--ghost { background: transparent; border: 1px solid var(--c-line); color: var(--c-slate); }

/* Affiliate disclosure */
.disclosure {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: var(--c-sand); border-radius: var(--radius-md);
  padding: 0.85rem 1rem; font-size: 0.875rem; color: var(--c-ink);
  margin: 1.5rem 0;
}
.disclosure svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--c-pine); margin-top: 2px; }

/* Pros / Cons */
.proscons { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .proscons { grid-template-columns: 1fr 1fr; } }
.proscons__col { padding: 1.25rem; border-radius: var(--radius-md); border: 1px solid var(--c-line); background: var(--c-white); }
.proscons__col h4 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; font-size: 0.95rem; }
.proscons--pros h4 { color: var(--c-pine); }
.proscons--cons h4 { color: var(--c-danger); }
.proscons ul { list-style: none; padding: 0; }
.proscons li { display: flex; gap: 0.5rem; padding: 0.3rem 0; font-size: 0.95rem; }
.proscons li::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-top: 0.6rem; flex-shrink: 0; }
.proscons--pros li::before { background: var(--c-pine); }
.proscons--cons li::before { background: var(--c-danger); }

/* Featured product card */
.product-card {
  display: grid; gap: 1.25rem; grid-template-columns: 1fr;
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 1.5rem; background: var(--c-white);
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .product-card { grid-template-columns: 200px 1fr; } }
.product-card__img {
  aspect-ratio: 1 / 1; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--c-mist), var(--c-sand));
  display: flex; align-items: center; justify-content: center;
}
.product-card__img svg { width: 60%; height: 60%; opacity: 0.7; color: var(--c-deep-water); }
.product-card__body h3 { margin-bottom: 0.4rem; }
.product-card__meta { color: var(--c-slate); font-size: 0.875rem; margin-bottom: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* Quiz */
.quiz { max-width: 720px; margin: 0 auto; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-md); }
.quiz__progress { height: 6px; background: var(--c-mist); border-radius: 999px; overflow: hidden; margin-bottom: 1.5rem; }
.quiz__progress-bar { height: 100%; background: linear-gradient(90deg, var(--c-river), var(--c-sun)); transition: width var(--t-slow); }
.quiz__step { display: none; }
.quiz__step.is-active { display: block; }
.quiz__counter { font-size: 0.875rem; color: var(--c-slate); margin-bottom: 0.5rem; }
.quiz__q { margin-bottom: 1.5rem; }
.quiz__opts { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .quiz__opts { grid-template-columns: 1fr 1fr; } }
.quiz__opt {
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  border: 2px solid var(--c-line); background: var(--c-white);
  cursor: pointer; text-align: left; transition: all var(--t-base);
  font-weight: 500;
  display: flex; align-items: center; gap: 0.6rem;
}
.quiz__opt:hover { border-color: var(--c-river); background: var(--c-mist); }
.quiz__opt.is-selected { border-color: var(--c-deep-water); background: var(--c-deep-water); color: var(--c-white); }
.quiz__nav { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 1.5rem; }
.quiz__result { display: none; }
.quiz__result.is-active { display: block; }
.quiz__result-head { padding: 2rem; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--c-deep-water), var(--c-river)); color: var(--c-white); margin-bottom: 1.5rem; }
.quiz__result-head h2 { color: var(--c-white); margin-bottom: 0.5rem; }
.quiz__result-head p { color: rgba(255,255,255,0.85); }

/* Checklist */
.checklist { max-width: 760px; margin: 0 auto; }
.checklist__head { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.checklist__meter { font-size: 1rem; font-weight: 600; color: var(--c-deep-water); }
.checklist__meter-bar { display: inline-block; vertical-align: middle; width: 200px; height: 8px; background: var(--c-mist); border-radius: 999px; overflow: hidden; margin-right: 0.5rem; }
.checklist__meter-bar div { height: 100%; background: linear-gradient(90deg, var(--c-pine), var(--c-sun)); transition: width var(--t-slow); }
.checklist__cat { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-bottom: 1rem; }
.checklist__cat h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.check-item { display: flex; gap: 0.75rem; padding: 0.5rem 0; cursor: pointer; user-select: none; }
.check-item input { appearance: none; width: 22px; height: 22px; min-width: 22px; border-radius: 6px; border: 2px solid var(--c-line); background: var(--c-white); cursor: pointer; position: relative; transition: all var(--t-fast); }
.check-item input:hover { border-color: var(--c-river); }
.check-item input:checked { background: var(--c-pine); border-color: var(--c-pine); }
.check-item input:checked::after { content: '✓'; color: var(--c-white); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; }
.check-item input:checked + span { color: var(--c-slate); text-decoration: line-through; }
.check-item span { line-height: 1.45; }
.checklist__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }

/* Acquire page specific */
.acq-hero {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(245, 184, 91, 0.22), transparent 60%),
    linear-gradient(180deg, #07303A 0%, #0B3D4A 100%);
  color: var(--c-mist);
  padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.acq-hero h1 { color: var(--c-white); font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); margin-bottom: 1.25rem; }
.acq-hero .lede { color: rgba(255,255,255,0.85); max-width: 720px; font-size: 1.25rem; }
.acq-hero .eyebrow { color: var(--c-sun); }
.acq-pricebox {
  display: inline-flex; flex-wrap: wrap; gap: 1.5rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 1.5rem; border-radius: var(--radius-md);
  margin-top: 2rem; align-items: center;
}
.acq-pricebox__price { font-size: 2rem; font-weight: 800; color: var(--c-sun); letter-spacing: -0.02em; }
.acq-pricebox__label { color: rgba(255,255,255,0.7); font-size: 0.875rem; }
.acq-pricebox__divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

.kpi-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); margin-top: 2rem; }
@media (min-width: 768px) { .kpi-grid { grid-template-columns: repeat(4, 1fr); } }
.kpi {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md); padding: 1.25rem;
}
.kpi__num { font-size: 1.75rem; font-weight: 800; color: var(--c-sun); letter-spacing: -0.02em; line-height: 1; }
.kpi__label { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin-top: 0.4rem; line-height: 1.3; }

/* Chart styles for acquire page */
.chart-box { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-sm); }
.chart-box h3 { margin-bottom: 0.25rem; }
.chart-box__sub { color: var(--c-slate); font-size: 0.9rem; margin-bottom: 1.25rem; }
.bar-chart { display: flex; flex-direction: column; gap: 0.85rem; }
.bar-row { display: grid; grid-template-columns: 100px 1fr 90px; align-items: center; gap: 0.75rem; }
.bar-row__label { font-size: 0.85rem; color: var(--c-slate); font-weight: 600; }
.bar-row__track { height: 14px; background: var(--c-mist); border-radius: 999px; overflow: hidden; }
.bar-row__fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--c-river), var(--c-deep-water)); transition: width var(--t-slow); }
.bar-row__fill--sun { background: linear-gradient(90deg, var(--c-sun), #d99a3c); }
.bar-row__fill--pine { background: linear-gradient(90deg, #3a8c6b, var(--c-pine)); }
.bar-row__value { font-size: 0.85rem; font-weight: 700; color: var(--c-deep-water); text-align: right; }
.chart-source { font-size: 0.75rem; color: var(--c-slate-light); margin-top: 1rem; }

/* Reasoning grid (Why kayaking?) */
.reason-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .reason-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .reason-grid { grid-template-columns: repeat(3, 1fr); } }
.reason {
  background: var(--c-white); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.reason__num {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--c-river); width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--c-line); border-radius: 12px; margin-bottom: 0.4rem;
}
.reason h3 { font-size: 1.0625rem; }
.reason p { color: var(--c-slate); font-size: 0.95rem; }

/* Buyer personas table */
.persona-card {
  border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 1.5rem; background: var(--c-white);
}
.persona-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--c-deep-water); }
.persona-card p { color: var(--c-slate); font-size: 0.95rem; }
.persona-card .pill { margin-bottom: 0.75rem; }

/* FAQ */
.faq-item {
  border-top: 1px solid var(--c-line);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--c-line); }
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 1.0625rem;
  display: flex; justify-content: space-between; gap: 1rem; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--c-river); font-weight: 300; transition: transform var(--t-fast); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin-top: 0.75rem; color: var(--c-slate); font-size: 0.975rem; line-height: 1.65; }

/* Map placeholder */
.map-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(31, 122, 140, 0.85), rgba(11, 61, 74, 0.85)),
    radial-gradient(circle at 30% 40%, rgba(245, 184, 91, 0.45), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2), transparent 30%);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-white); position: relative; overflow: hidden;
  border: 1px solid var(--c-line);
}
.map-placeholder svg { width: 80px; height: 80px; opacity: 0.7; }
.map-placeholder__label { position: absolute; bottom: 1rem; left: 1rem; right: 1rem; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.85); background: rgba(0,0,0,0.35); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); backdrop-filter: blur(4px); }

/* Destination preview */
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end;
  padding: 1.25rem; color: var(--c-white); text-decoration: none;
  border: 1px solid var(--c-line); background: var(--c-mist);
}
.dest-card::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.6));
}
.dest-card__bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--c-river), var(--c-deep-water));
}
.dest-card__bg--fl { background: linear-gradient(135deg, #1F7A8C, #0B3D4A); }
.dest-card__bg--ca { background: linear-gradient(135deg, #F5B85B, #B5641B); }
.dest-card__bg--tx { background: linear-gradient(135deg, #B5341B, #0B3D4A); }
.dest-card__bg--co { background: linear-gradient(135deg, #1F4D3A, #0B3D4A); }
.dest-card__bg--wa { background: linear-gradient(135deg, #5F6C72, #0B3D4A); }
.dest-card__bg--or { background: linear-gradient(135deg, #1F4D3A, #1F7A8C); }
.dest-card__bg--mi { background: linear-gradient(135deg, #1F7A8C, #1F4D3A); }
.dest-card__bg--wi { background: linear-gradient(135deg, #1F7A8C, #5F6C72); }
.dest-card__bg--nc { background: linear-gradient(135deg, #1F4D3A, #F5B85B); }
.dest-card__bg--me { background: linear-gradient(135deg, #102027, #1F7A8C); }
.dest-card__body { position: relative; z-index: 2; }
.dest-card h3 { color: var(--c-white); margin-bottom: 0.25rem; }
.dest-card p { color: rgba(255,255,255,0.85); font-size: 0.875rem; }
.dest-card .pill { margin-bottom: 0.5rem; background: rgba(255,255,255,0.18); color: var(--c-white); backdrop-filter: blur(4px); }

/* Misc utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.text-slate { color: var(--c-slate); }
.text-deep { color: var(--c-deep-water); }
.text-sun { color: var(--c-sun); }
.text-pine { color: var(--c-pine); }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.hidden { display: none; }
.divider { height: 1px; background: var(--c-line); margin: 2rem 0; border: none; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* Print */
@media print {
  .site-header, .site-footer, .checklist__actions, .btn { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .checklist__cat { break-inside: avoid; border-color: #ccc; }
  a { color: #000; text-decoration: none; }
}

/* Focus-visible */
:focus-visible { outline: 3px solid var(--c-sun); outline-offset: 2px; border-radius: 4px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
