:root {
  --ink: #0a1f2e;
  --ink-soft: #2a4456;
  --mist: #e8f1f5;
  --mist-deep: #c8dde6;
  --sky: #4a9bb8;
  --sky-deep: #2c6e85;
  --breath: #f4f9fb;
  --pulse: #d97757;
  --pulse-deep: #b85c3e;
  --paper: #fdfbf7;
  --line: rgba(10, 31, 46, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { color: inherit; }

/* ───── NAV ───── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink) 30%, var(--sky-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: filter 0.25s;
}
.logo:hover { filter: brightness(1.1); }

/* Layered breath-orb mark. Radial highlight on the orb, two outer
   rings expanding via box-shadow, plus a slow pulse that ripples out
   then resets. Sized larger than the old 10px dot for actual presence. */
.logo-dot {
  width: 30px; height: 30px;
  background: url('/assets/logo-mark.svg') center/contain no-repeat;
  flex-shrink: 0;
  animation: purhaven-breathe 3.6s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, filter;
}
.logo-dot::after { content: none; }
@keyframes purhaven-breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(44, 110, 133, 0));
  }
  50% {
    transform: scale(1.07);
    filter: drop-shadow(0 0 6px rgba(74, 155, 184, 0.45));
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-dot { animation: none; }
}
@keyframes pulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.4) inset,
      0 0 0 3px rgba(74, 155, 184, 0.22),
      0 0 0 7px rgba(74, 155, 184, 0.08),
      0 4px 12px -3px rgba(44, 110, 133, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.4) inset,
      0 0 0 6px rgba(74, 155, 184, 0.15),
      0 0 0 14px rgba(74, 155, 184, 0.04),
      0 4px 12px -3px rgba(44, 110, 133, 0.5);
  }
}

/* Dark backgrounds (admin nav, threats, footer) — keep wordmark light */
.threats .logo, .cta-band .logo, footer .logo, .admin-nav .logo {
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper) 30%, #cfe5ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sky-deep); }
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.7rem 1.4rem;
  border-radius: 100px;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--sky-deep);
  transform: translateY(-1px);
}

/* ───── BUTTONS ───── */
.btn {
  padding: 1rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--sky-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(44, 110, 133, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

/* ───── HERO (landing) ───── */
.hero {
  min-height: 100vh;
  padding: 5rem 4rem 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, rgba(74, 155, 184, 0.12) 0%, transparent 60%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(217, 119, 87, 0.1);
  color: var(--pulse-deep);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pulse);
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  margin-bottom: 1.5rem;
}
h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky-deep);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--sky-deep);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  max-width: 520px;
  justify-self: center;
}
.orb {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--mist) 40%, var(--mist-deep) 100%);
  box-shadow:
    0 30px 80px -20px rgba(44, 110, 133, 0.3),
    inset -20px -30px 60px rgba(44, 110, 133, 0.1);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(74, 155, 184, 0.3);
  animation: spin 20s linear infinite;
}
.ring-1 { inset: -8%; border-style: dashed; }
.ring-2 { inset: -16%; animation-duration: 30s; animation-direction: reverse; opacity: 0.5; }
@keyframes spin {
  to { transform: rotate(360deg); }
}
.particle {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px var(--sky);
  animation: orbit 8s linear infinite;
}
.p1 { top: 10%; left: 50%; animation-delay: 0s; }
.p2 { top: 50%; right: 8%; animation-delay: -2s; background: var(--pulse); box-shadow: 0 0 12px var(--pulse); }
.p3 { bottom: 15%; left: 20%; animation-delay: -4s; }
@keyframes orbit {
  0%, 100% { transform: scale(1) translateY(0); opacity: 1; }
  50% { transform: scale(1.5) translateY(-20px); opacity: 0.6; }
}
.breathe-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--ink);
}
.breathe-label .big {
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  font-style: italic;
}
.breathe-label .small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ───── THREATS SECTION ───── */
.threats {
  padding: 4.5rem 4rem;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.threats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 119, 87, 0.15), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(74, 155, 184, 0.15), transparent 50%);
}
.section-head {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.section-eyebrow {
  color: var(--pulse);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.threats h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 1.2rem;
}
.threats h2 em {
  font-style: italic;
  color: var(--pulse);
  font-weight: 400;
}
.threats-sub {
  color: rgba(253, 251, 247, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.threat-card {
  background: rgba(253, 251, 247, 0.04);
  border: 1px solid rgba(253, 251, 247, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.threat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 119, 87, 0.4);
  background: rgba(253, 251, 247, 0.06);
}
.threat-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(217, 119, 87, 0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--pulse);
}
.threat-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--paper);
}
.threat-card p {
  color: rgba(253, 251, 247, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
}
.threat-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky);
  font-weight: 600;
}

/* ───── HOW IT WORKS ───── */
.how {
  padding: 4.5rem 4rem;
  background: var(--breath);
  position: relative;
}
.how-container { max-width: 1200px; margin: 0 auto; }
.how .section-head h2 { color: var(--ink); }
.how .section-head h2 em { color: var(--sky-deep); font-style: italic; font-weight: 400; }
.how .section-eyebrow { color: var(--sky-deep); }
.how .threats-sub { color: var(--ink-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.step {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  transition: transform 0.3s;
  box-shadow: 0 2px 20px rgba(10, 31, 46, 0.04);
}
.step:hover { transform: translateY(-4px); }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--mist-deep);
  line-height: 1;
  font-style: italic;
}
.step h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.6rem;
}
.step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.how-callout {
  margin-top: 4rem;
  padding: 2.5rem;
  background: white;
  border-radius: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 4px 30px rgba(10, 31, 46, 0.06);
}
.callout-badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--sky-deep));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.8rem;
}
.callout-text h4 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.callout-text p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ───── PRODUCTS (landing teaser) ───── */
.products {
  padding: 4.5rem 4rem;
  background: var(--paper);
}
.products .section-head h2 { color: var(--ink); }
.products .section-head h2 em { color: var(--pulse-deep); font-style: italic; font-weight: 400; }
.products .section-eyebrow { color: var(--pulse-deep); }
.products .threats-sub { color: var(--ink-soft); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-card {
  background: white;
  border-radius: 28px;
  padding: 3rem;
  border: 1px solid var(--line);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(10, 31, 46, 0.15);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(40px);
  transform: translate(40%, -40%);
}
.product-card.medicair::before { background: var(--sky); }
.product-card.maxvax::before, .product-card.maxvac::before { background: var(--pulse); }

.product-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.medicair .product-badge {
  background: rgba(74, 155, 184, 0.12);
  color: var(--sky-deep);
}
.maxvax .product-badge, .maxvac .product-badge {
  background: rgba(217, 119, 87, 0.12);
  color: var(--pulse-deep);
}
.product-card h3 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}
.product-tag {
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 2rem;
  font-family: 'Fraunces', serif;
}
.product-features {
  list-style: none;
  margin-bottom: 2rem;
}
.product-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
}
.product-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}
.maxvax .product-features li::before, .maxvac .product-features li::before { background: var(--pulse); }

/* ───── CATALOG (products/index.html) ───── */
.catalog-header {
  padding: 5rem 4rem 2rem;
  background: var(--breath);
  text-align: center;
}
.catalog-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.catalog-header p {
  color: var(--ink-soft);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}
.catalog-section {
  padding: 4rem 4rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.catalog-section h2 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.catalog-section h2 em {
  font-style: italic;
  color: var(--sky-deep);
  font-weight: 400;
}
.catalog-section.maxvac h2 em { color: var(--pulse-deep); }
.catalog-section p.brand-blurb {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 720px;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.catalog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(10, 31, 46, 0.18);
}
.catalog-card-image {
  background: var(--breath);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.catalog-card-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}
.catalog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.catalog-card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.catalog-card-body .product-tag {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.spec-pills {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.spec-pill {
  background: var(--mist);
  color: var(--sky-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.maxvac .spec-pill {
  background: rgba(217, 119, 87, 0.12);
  color: var(--pulse-deep);
}
.catalog-card-price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
.catalog-card-price .price {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
}
.catalog-card-price .ex-vat {
  font-size: 0.75rem;
  color: var(--ink-soft);
}
.catalog-card-price .arrow {
  margin-left: 0.4rem;
  font-weight: 700;
  color: var(--sky-deep);
  transition: transform 0.3s;
}
.catalog-card:hover .arrow { transform: translateX(4px); }

/* ───── PRODUCT DETAIL ───── */
.product-detail {
  padding: 4.5rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.product-image {
  background: var(--breath);
  border-radius: 28px;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: sticky;
  top: 6rem;
}
.product-image img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
}
.product-info .product-badge {
  margin-bottom: 1rem;
}
.product-info h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  margin-bottom: 0.6rem;
  line-height: 1.05;
}
.product-info .product-tag {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.product-price-ex {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.product-blurb {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.product-cta {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.product-cta .btn { padding-inline: 2.2rem; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.5rem;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.spec-table th {
  width: 42%;
  color: var(--ink-soft);
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
}
.spec-table td {
  color: var(--ink);
  font-weight: 500;
}
.cert-line {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--breath);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border-left: 3px solid var(--sky);
}
.maxvac .cert-line { border-left-color: var(--pulse); }

/* ───── CTA BAND ───── */
.cta-band {
  padding: 4.5rem 4rem;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--ink) 100%);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 119, 87, 0.2), transparent 60%);
}
.cta-band-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.cta-band h2 em { font-style: italic; font-weight: 400; color: var(--pulse); }
.cta-band p {
  color: rgba(253, 251, 247, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.cta-form {
  display: flex;
  gap: 0.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(253, 251, 247, 0.1);
  padding: 0.5rem;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(253, 251, 247, 0.15);
}
.cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  color: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.cta-form input::placeholder { color: rgba(253, 251, 247, 0.5); }
.cta-form button {
  background: var(--paper);
  color: var(--ink);
  border: none;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}
.cta-form button:hover {
  background: var(--pulse);
  color: var(--paper);
}

/* ───── FOOTER ───── */
footer {
  background: var(--ink);
  color: rgba(253, 251, 247, 0.6);
  padding: 4rem 4rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand .logo { color: var(--paper); margin-bottom: 0.4rem; }
.footer-brand .brand-tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--mist-deep);
  margin: 0 0 0.9rem;
}
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
footer h5,
footer .footer-heading {
  color: var(--paper);
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul a {
  color: rgba(253, 251, 247, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ───── PARTS CATALOG ───── */
.parts-catalog {
  padding: 3rem 4rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.parts-group {
  margin-bottom: 3rem;
}
.parts-group:last-child { margin-bottom: 0; }
.parts-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.parts-group-head h2 {
  font-size: 1.5rem;
  margin: 0;
}
.parts-group-head h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky-deep);
}
.parts-group-head .for-link {
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-decoration: none;
}
.parts-group-head .for-link:hover { color: var(--sky-deep); text-decoration: underline; }
.parts-group.maxvac .parts-group-head h2 em { color: var(--pulse-deep); }

.parts-empty {
  background: var(--breath);
  border: 1px dashed var(--mist-deep);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.parts-empty a {
  color: var(--sky-deep);
  font-weight: 600;
  text-decoration: none;
}
.parts-empty a:hover { text-decoration: underline; }

/* Restock strip on main catalog */
.restock-strip {
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  flex-wrap: wrap;
}
.restock-strip .copy strong {
  color: var(--paper);
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}
.restock-strip .copy span {
  color: rgba(253, 251, 247, 0.75);
  font-size: 0.92rem;
}
.restock-strip .btn {
  background: var(--pulse);
  color: var(--paper);
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}
.restock-strip .btn:hover { background: var(--pulse-deep); }

@media (max-width: 900px) {
  .parts-catalog { padding: 2rem 1.5rem 3rem; }
  .restock-strip { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ───── PRODUCT-PAGE PARTS SECTION ───── */
.product-parts {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.product-parts h3,
.product-parts .parts-heading {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.parts-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.part-card {
  background: var(--breath);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.part-card-image {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
}
.part-card-image[src=""], .part-card-image:not([src]) { visibility: hidden; }
.part-card-info { flex: 1; min-width: 200px; }
.part-card-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.part-card-meta {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.part-card-price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.part-card .btn-buy {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.part-card .btn-buy:hover { background: var(--sky-deep); }

/* ───── CHECKOUT MODAL ───── */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 46, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem 2rem;
  z-index: 200;
  overflow-y: auto;
}
.checkout-overlay.show { display: flex; }
.checkout-card {
  background: var(--paper);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  padding: 2rem 2.25rem 2.25rem;
  position: relative;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
.checkout-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--ink-soft);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background 0.2s;
}
.checkout-close:hover { background: var(--mist); }
.checkout-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.checkout-card .summary {
  background: var(--breath);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-card .summary .label {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.checkout-card .summary .price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.checkout-card form { display: flex; flex-direction: column; gap: 1rem; }
.checkout-card .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.checkout-card .field { display: flex; flex-direction: column; gap: 0.4rem; }
.checkout-card label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.checkout-card label .opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-left: 0.4rem;
}
.checkout-card input {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.checkout-card input:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(74, 155, 184, 0.15);
}
.checkout-card input.error { border-color: var(--pulse); box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.15); }
.checkout-card .error-msg {
  background: rgba(217, 119, 87, 0.1);
  color: var(--pulse-deep);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.checkout-card .error-msg.show { display: block; }
.checkout-card .submit-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.checkout-card .submit-row .btn { flex: 1; }
.checkout-card .submit-row .btn-primary { padding: 1rem; }
.checkout-card .submit-row .btn-secondary { padding: 1rem; }
.checkout-card .legal {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ───── HERO SKY + CLOUDS ───── */
.hero {
  background:
    linear-gradient(180deg,
      #6cb1cb 0%,
      #8ec1d3 25%,
      #b0d0db 50%,
      #d5e3e9 75%,
      var(--paper) 100%);
}
.hero-sky {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-sky .cloud {
  position: absolute;
  filter: blur(2px) drop-shadow(0 4px 12px rgba(74, 155, 184, 0.15));
  opacity: 1;
  will-change: transform;
  animation: cloudDrift linear infinite;
}
.hero-sky .cloud-1 { top:  8%; width: 220px; animation-duration: 85s;  animation-delay:   0s; }
.hero-sky .cloud-2 { top: 18%; width: 300px; animation-duration: 130s; animation-delay: -40s; opacity: 0.95; }
.hero-sky .cloud-3 { top:  4%; width: 160px; animation-duration: 65s;  animation-delay: -25s; opacity: 0.85; }
.hero-sky .cloud-4 { top: 30%; width: 240px; animation-duration: 105s; animation-delay: -75s; }
.hero-sky .cloud-5 { top: 12%; width: 180px; animation-duration: 95s;  animation-delay: -60s; opacity: 0.85; }
.hero-sky .cloud-6 { top: 38%; width: 200px; animation-duration: 115s; animation-delay: -100s; opacity: 0.8; }

@keyframes cloudDrift {
  from { transform: translateX(-35vw); }
  to   { transform: translateX(135vw); }
}
/* Hero content sits above the sky */
.hero-content, .hero-visual { position: relative; z-index: 2; }
.hero::before { z-index: 1; }

/* ───── SEASONAL BANNER ───── */
.season-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 101;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 1.25rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.88rem;
  text-align: center;
  border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}
.season-banner.show { display: flex; }
.season-banner .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.25);
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}
.season-banner strong { color: var(--paper); margin-right: 0.3rem; }
.season-banner span { color: rgba(253, 251, 247, 0.75); }
.season-banner a {
  color: var(--pulse);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.season-banner a:hover { text-decoration: underline; }
.season-banner button {
  background: none;
  border: none;
  color: rgba(253, 251, 247, 0.55);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.3rem;
  font-family: inherit;
  transition: color 0.2s;
}
.season-banner button:hover { color: var(--paper); }
body.has-banner nav { top: 44px; }
body.has-banner .hero { padding-top: 10.5rem; }

/* ───── LIVE AIR QUALITY ───── */
.aq {
  padding: 5rem 4rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 155, 184, 0.1), transparent 55%),
    var(--paper);
}
.aq-container { max-width: 980px; margin: 0 auto; }
.aq-intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.aq-intro .section-eyebrow { color: var(--sky-deep); }
.aq-intro h2 { color: var(--ink); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.6rem; }
.aq-intro h2 em { color: var(--sky-deep); font-style: italic; font-weight: 400; }
.aq-intro p { color: var(--ink-soft); }

.aq-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin: 0 auto 2rem;
  background: white;
  border: 1px solid var(--line);
  padding: 0.4rem;
  border-radius: 100px;
  box-shadow: 0 4px 24px -10px rgba(10, 31, 46, 0.1);
}
.aq-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  outline: none;
}
.aq-form button {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 0.65rem 1.2rem;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.aq-form button:hover { background: var(--sky-deep); }
.aq-form button:disabled { opacity: 0.5; cursor: wait; }

.aq-status { text-align: center; color: var(--ink-soft); min-height: 1.5rem; }
.aq-status.error { color: var(--pulse-deep); font-weight: 500; }

.aq-results {
  display: none;
  margin-top: 2rem;
}
.aq-results.show { display: block; }
.aq-where {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.aq-where strong { color: var(--ink); }
.aq-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.aq-tile {
  background: white;
  border: 1px solid var(--line);
  border-left: 4px solid #888;
  border-radius: 14px;
  padding: 1.25rem;
  text-align: left;
}
.aq-tile.lvl-good   { border-left-color: #2c8a5a; }
.aq-tile.lvl-fair   { border-left-color: #b8a32a; }
.aq-tile.lvl-poor   { border-left-color: #d97757; }
.aq-tile.lvl-bad    { border-left-color: #b85c3e; }
.aq-tile.lvl-vbad   { border-left-color: #7a2e2e; }
.aq-tile .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.aq-tile .value {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
}
.aq-tile .unit {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-left: 0.2rem;
}
.aq-tile .verdict {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.aq-tile.lvl-good  .verdict { color: #2c8a5a; }
.aq-tile.lvl-fair  .verdict { color: #b8a32a; }
.aq-tile.lvl-poor  .verdict { color: #d97757; }
.aq-tile.lvl-bad   .verdict { color: #b85c3e; }
.aq-tile.lvl-vbad  .verdict { color: #7a2e2e; }
.aq-verdict {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.55;
}
.aq-verdict strong { color: var(--pulse); }
.aq-verdict a {
  color: var(--pulse);
  font-weight: 600;
  text-decoration: none;
}
.aq-verdict a:hover { text-decoration: underline; }
.aq-attribution {
  text-align: center;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
  opacity: 0.7;
}

/* ───── PERSONAS ───── */
.personas {
  padding: 4.5rem 4rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(74, 155, 184, 0.07), transparent 55%),
    radial-gradient(ellipse at 85% 100%, rgba(217, 119, 87, 0.05), transparent 60%),
    var(--paper);
}
.personas-container { max-width: 1200px; margin: 0 auto; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.persona-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px -25px rgba(10, 31, 46, 0.16);
}
.persona-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mist), var(--mist-deep));
  display: flex; align-items: center; justify-content: center;
  color: var(--sky-deep);
  margin-bottom: 1.25rem;
}
.persona-card:nth-child(even) .persona-icon {
  background: linear-gradient(135deg, rgba(217, 119, 87, 0.15), rgba(217, 119, 87, 0.3));
  color: var(--pulse-deep);
}
.persona-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.persona-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.persona-link {
  color: var(--sky-deep);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
.persona-link:hover { gap: 0.6rem; }
.persona-card:nth-child(even) .persona-link { color: var(--pulse-deep); }

/* ───── COMPARISON ───── */
.comparison {
  padding: 4.5rem 4rem;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(74, 155, 184, 0.12), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(74, 155, 184, 0.08), transparent 55%),
    var(--breath);
}
.comparison-container { max-width: 1200px; margin: 0 auto; }
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}
.compare-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.compare-col.compare-best {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 30px 80px -30px rgba(10, 31, 46, 0.4);
}
.compare-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pulse);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 100px;
}
.compare-header { margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.compare-best .compare-header { border-bottom-color: rgba(253, 251, 247, 0.15); }
.compare-header h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.compare-header p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
}
.compare-best .compare-header p { color: rgba(253, 251, 247, 0.7); }
.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.compare-col li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
}
.compare-best li { color: rgba(253, 251, 247, 0.92); }
.compare-col li em { font-style: italic; }
.compare-col li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
}
.compare-col li.yes::before { content: '✓'; color: #2c8a5a; }
.compare-col li.no::before { content: '✗'; color: var(--pulse); }
.compare-col li.partial::before { content: '~'; color: #b58a2a; }
.compare-best li.yes::before { color: #6dd6a0; }

/* ───── TRUST ───── */
.trust {
  padding: 4.5rem 4rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 155, 184, 0.08), transparent 50%),
    var(--paper);
}
.trust-container { max-width: 1200px; margin: 0 auto; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.trust-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  text-align: left;
}
.trust-stat {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--sky-deep);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.trust-card:nth-child(2) .trust-stat { color: var(--pulse-deep); }
.trust-card:nth-child(4) .trust-stat { color: var(--pulse-deep); }
.trust-card h3 {
  font-size: 1.05rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.trust-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}
.trust-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.trust-note a {
  color: var(--sky-deep);
  font-weight: 600;
  text-decoration: none;
}
.trust-note a:hover { text-decoration: underline; }

/* ───── QUIZ ───── */
.quiz-page {
  padding: 4.5rem 4rem 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.quiz-page .lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.quiz-progress {
  height: 4px;
  background: var(--mist);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.quiz-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
  width: 0%;
  transition: width 0.3s ease;
}
.quiz-q {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 16px rgba(10, 31, 46, 0.04);
}
.quiz-q legend {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--ink);
}
.quiz-q .options {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.quiz-q label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--breath);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.98rem;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s;
}
.quiz-q label:hover { background: var(--mist); }
.quiz-q label.selected {
  background: rgba(74, 155, 184, 0.1);
  border-color: var(--sky);
}
.quiz-q input[type="radio"] { display: none; }
.quiz-q label::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--mist-deep);
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.quiz-q label.selected::before {
  border-color: var(--sky-deep);
  background: radial-gradient(circle, var(--sky-deep) 35%, transparent 40%);
}
.quiz-submit {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin: 1.5rem auto 0;
  display: block;
  transition: background 0.2s;
}
.quiz-submit:hover { background: var(--sky-deep); }
.quiz-submit:disabled { opacity: 0.4; cursor: not-allowed; }

.quiz-result {
  display: none;
  background: var(--ink);
  color: var(--paper);
  border-radius: 24px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  box-shadow: 0 30px 80px -30px rgba(10, 31, 46, 0.5);
}
.quiz-result.show { display: block; }
.quiz-result h2 {
  color: var(--paper);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.quiz-result h2 em { font-style: italic; }
.quiz-result .band {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1rem;
}
.quiz-result .band.low    { background: rgba(108, 218, 161, 0.2); color: #6ddaa1; }
.quiz-result .band.mod    { background: rgba(255, 213, 89, 0.2); color: #ffd559; }
.quiz-result .band.high   { background: rgba(217, 119, 87, 0.2); color: var(--pulse); }
.quiz-result .band.vhigh  { background: rgba(217, 119, 87, 0.3); color: var(--pulse); }
.quiz-result .band.critical { background: rgba(232, 70, 70, 0.25); color: #e84646; }
.quiz-result .score {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.quiz-result .score small {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-style: normal;
  color: rgba(253, 251, 247, 0.55);
  margin-left: 0.5rem;
}
.quiz-result .blurb {
  color: rgba(253, 251, 247, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.quiz-result h3 {
  color: var(--paper);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.quiz-factors {
  list-style: none;
  padding: 1.25rem;
  background: rgba(253, 251, 247, 0.06);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}
.quiz-factors li {
  padding: 0.5rem 0;
  color: rgba(253, 251, 247, 0.9);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(253, 251, 247, 0.08);
}
.quiz-factors li:last-child { border: none; }
.quiz-factors li strong { color: var(--pulse); }
.quiz-rec {
  background: rgba(217, 119, 87, 0.1);
  border: 1px solid rgba(217, 119, 87, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.quiz-rec strong { color: var(--pulse); display: block; font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 0.3rem; font-style: italic; }
.quiz-rec p { color: rgba(253, 251, 247, 0.85); font-size: 0.95rem; line-height: 1.55; }
.quiz-rec a {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--pulse);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.quiz-rec a:hover { background: var(--pulse-deep); }

/* ───── COST OF INACTION ───── */
.coi {
  background: linear-gradient(180deg, var(--ink) 0%, #122c3d 100%);
  color: var(--paper);
  padding: 5rem 4rem;
  margin: 4rem 0 0;
}
.coi-container { max-width: 1100px; margin: 0 auto; }
.coi-intro { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.coi-intro .section-eyebrow { color: var(--pulse); }
.coi-intro h2 { color: var(--paper); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.6rem; }
.coi-intro h2 em { color: var(--pulse); font-style: italic; font-weight: 400; }
.coi-intro p { color: rgba(253, 251, 247, 0.75); }

.coi-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: stretch;
}
.coi-inputs {
  background: rgba(253, 251, 247, 0.06);
  border: 1px solid rgba(253, 251, 247, 0.12);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.coi-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(253, 251, 247, 0.7);
  margin-bottom: 0.5rem;
}
.coi-field .row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.coi-field input[type="range"] {
  flex: 1;
  accent-color: var(--pulse);
}
.coi-field input[type="number"] {
  width: 7.5rem;
  background: rgba(253, 251, 247, 0.1);
  border: 1px solid rgba(253, 251, 247, 0.15);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--paper);
  text-align: right;
  outline: none;
}
.coi-field input[type="number"]:focus { border-color: var(--pulse); }
.coi-field .help { font-size: 0.78rem; color: rgba(253, 251, 247, 0.55); margin-top: 0.4rem; }

.coi-output {
  background: rgba(217, 119, 87, 0.08);
  border: 1px solid rgba(217, 119, 87, 0.3);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coi-output h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pulse);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.coi-total {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  font-style: italic;
  color: var(--paper);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.coi-sub {
  color: rgba(253, 251, 247, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.coi-breakdown {
  font-size: 0.88rem;
  color: rgba(253, 251, 247, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
}
.coi-breakdown div { display: flex; justify-content: space-between; }
.coi-breakdown strong { color: var(--paper); }
.coi-pitch {
  font-size: 0.95rem;
  color: rgba(253, 251, 247, 0.85);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.coi-pitch strong { color: var(--pulse); }
.coi-cta {
  background: var(--pulse);
  color: var(--paper);
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  align-self: flex-start;
  transition: background 0.2s;
}
.coi-cta:hover { background: var(--pulse-deep); }

/* ───── CONTACT PAGE ───── */
.contact-page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}
.contact-details h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.contact-details h2:not(:first-child) { margin-top: 1.75rem; }
.contact-details .addr {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.contact-details .phone {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
}
.contact-details .phone:hover { color: var(--sky-deep); }
.contact-details .free {
  display: inline-block;
  background: rgba(108, 218, 161, 0.18);
  color: #2c8a5a;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.contact-details .email-link {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  color: var(--sky-deep);
  text-decoration: none;
  word-break: break-all;
}
.contact-details .email-link:hover { text-decoration: underline; }
.contact-details .hours {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.contact-details .hours strong { color: var(--ink); display: block; margin-bottom: 0.25rem; }

.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
}
.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.contact-form .lead {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.contact-form .field { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.contact-form label .opt { font-weight: 500; opacity: 0.7; text-transform: none; letter-spacing: 0; margin-left: 0.3rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  background: var(--breath);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--sky);
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.contact-form button[type="submit"] {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  width: 100%;
  transition: background 0.2s;
}
.contact-form button[type="submit"]:hover { background: var(--sky-deep); }
.contact-form button[type="submit"]:disabled { opacity: 0.5; cursor: wait; }
.contact-form .status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}
.contact-form .status.success { display: block; background: rgba(108, 218, 161, 0.15); color: #2c8a5a; }
.contact-form .status.error { display: block; background: rgba(217, 119, 87, 0.12); color: var(--pulse-deep); }

/* Footer brand address (added to every page footer) */
.footer-brand .footer-address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(253, 251, 247, 0.55);
  margin-top: 1rem;
  line-height: 1.6;
}
.footer-brand .footer-address a {
  color: rgba(253, 251, 247, 0.75);
  text-decoration: none;
}
.footer-brand .footer-address a:hover { color: var(--paper); }

@media (max-width: 900px) {
  .contact-page { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem 1.5rem 3rem; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ───── LEGAL PAGES (privacy / returns / terms / modern slavery) ───── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}
.legal-page .draft-note {
  background: rgba(217, 119, 87, 0.08);
  border-left: 3px solid var(--pulse);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}
.legal-page .draft-note strong { color: var(--ink); }
.legal-page h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--ink);
}
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.legal-page p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.9rem; font-size: 1rem; }
.legal-page p strong { color: var(--ink); font-weight: 600; }
.legal-page ul, .legal-page ol {
  color: var(--ink-soft);
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-page li { margin-bottom: 0.35rem; }
.legal-page a {
  color: var(--sky-deep);
  text-decoration: underline;
}
.legal-page a:hover { color: var(--ink); }
.legal-page .last-updated {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  margin-top: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* footer-bottom legal links */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
.footer-bottom .footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.25rem;
}
.footer-bottom .footer-legal-links a {
  color: rgba(253, 251, 247, 0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-bottom .footer-legal-links a:hover { color: var(--paper); }

/* ───── FAQ ───── */
.faq {
  padding: 4.5rem 4rem;
  background: var(--breath);
}
.faq-container { max-width: 920px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--mist-deep);
  box-shadow: 0 12px 30px -20px rgba(10, 31, 46, 0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--sky-deep);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--sky-deep); }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq-answer p { margin-bottom: 0.8rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--sky-deep);
  text-decoration: underline;
  font-weight: 500;
}
.faq-answer strong { color: var(--ink); }
.faq-more {
  text-align: center;
  margin-top: 2.5rem;
}

/* ───── CALCULATOR ───── */
.calculator-page {
  padding: 5rem 4rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.calculator-page .calc-eyebrow {
  color: var(--sky-deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.calculator-page h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.calculator-page h1 em {
  font-style: italic; font-weight: 400; color: var(--sky-deep);
}
.calculator-page .lead {
  color: var(--ink-soft);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 720px;
}
.calc-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 30px rgba(10, 31, 46, 0.04);
}
.calc-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calc-input label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.calc-input input, .calc-input select {
  background: var(--breath);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.calc-input input:focus, .calc-input select:focus {
  border-color: var(--sky);
}
.calc-summary {
  background: var(--breath);
  border-left: 4px solid var(--sky);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.calc-summary .stat {
  display: flex;
  flex-direction: column;
}
.calc-summary .stat .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.calc-summary .stat .value {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--sky-deep);
  line-height: 1;
}
.calc-summary .stat .value small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 0.3rem;
}
.calc-results-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.calc-results-head h2 {
  font-size: 1.5rem;
}
.calc-results-head .count {
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.calc-result {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
.calc-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -16px rgba(10, 31, 46, 0.18);
  border-color: var(--mist-deep);
}
.calc-result.maxvac:hover { border-color: rgba(217, 119, 87, 0.4); }
.calc-result-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.calc-result h3 {
  font-size: 1.3rem;
  margin: 0;
}
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.tag-best {
  background: var(--ink);
  color: var(--paper);
}
.tag-quiet {
  background: rgba(74, 155, 184, 0.15);
  color: var(--sky-deep);
}
.tag-overspec {
  background: var(--breath);
  color: var(--ink-soft);
}
.calc-stats {
  display: flex;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.calc-stats span strong { color: var(--ink); font-weight: 600; }
.calc-coverage-bar {
  height: 6px;
  background: var(--mist);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 0.25rem;
}
.calc-coverage-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.calc-result.maxvac .calc-coverage-bar > span {
  background: linear-gradient(90deg, var(--pulse), var(--pulse-deep));
}
.calc-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}
.calc-price-row .price {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.calc-price-row .arrow {
  color: var(--sky-deep);
  font-weight: 700;
  transition: transform 0.25s;
}
.calc-result:hover .arrow { transform: translateX(4px); }
.calc-empty {
  background: var(--breath);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: var(--ink-soft);
}

/* ───── ADMIN ───── */
.admin-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}
.admin-nav .logo { color: var(--paper); font-size: 1.15rem; }
.admin-nav .logo small {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pulse);
  margin-left: 0.5rem;
  border-left: 1px solid rgba(253, 251, 247, 0.2);
  padding-left: 0.5rem;
}
.admin-nav-links { display: flex; gap: 1.75rem; align-items: center; }
.admin-nav-links a {
  color: rgba(253, 251, 247, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.admin-nav-links a:hover, .admin-nav-links a.active { color: var(--paper); }
.admin-nav-links .logout {
  background: rgba(253, 251, 247, 0.1);
  color: var(--paper);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
}
.admin-nav-links .logout:hover { background: rgba(253, 251, 247, 0.18); }

.admin-page {
  padding: 5rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}
.admin-page h1 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.admin-page .subtitle {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.admin-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.3rem;
}
.admin-stat .label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.admin-stat .value {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.admin-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-card h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

/* Login */
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--breath) 0%, var(--mist) 100%);
  padding: 2rem;
}
.login-card {
  background: white;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 30px 80px -30px rgba(10, 31, 46, 0.25);
}
.login-card .brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.login-card .brand .logo-dot {
  width: 28px; height: 28px;
  background: url('/assets/logo-mark.svg') center/contain no-repeat;
  box-shadow: none;
}
.login-card h1 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}
.login-card .sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.login-card .field { margin-bottom: 1rem; }
.login-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.login-card input {
  width: 100%;
  background: var(--breath);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.login-card input:focus { border-color: var(--sky); }
.login-card button {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 100px;
  padding: 0.9rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.login-card button:hover { background: var(--sky-deep); }
.login-card button:disabled { opacity: 0.5; cursor: wait; }
.login-error {
  background: rgba(217, 119, 87, 0.1);
  color: var(--pulse-deep);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
}
.login-error.show { display: block; }

/* Tables */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.admin-table th {
  text-align: left;
  padding: 0.75rem 0.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.admin-table td {
  padding: 0.85rem 0.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.admin-table tr:hover td { background: var(--breath); }
.admin-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--ink-soft);
}

/* ───── RESPONSIVE ───── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 2rem; }
  .hero-visual { max-width: 320px; }
  .breathe-label .big { font-size: 2.8rem; }
  .threats, .how, .products, .cta-band, .personas, .comparison, .trust { padding: 5rem 1.5rem; }
  .threat-grid, .steps, .product-grid, .footer-grid, .persona-grid, .trust-grid {
    grid-template-columns: 1fr;
  }
  .compare-table { grid-template-columns: 1fr; gap: 1rem; }
  .compare-col.compare-best { transform: none; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .how-callout { grid-template-columns: 1fr; text-align: center; }
  .cta-form { flex-direction: column; border-radius: 24px; }
  .cta-form button { width: 100%; }
  footer { padding: 3rem 1.5rem 2rem; }

  .catalog-header { padding: 7rem 1.5rem 2rem; }
  .catalog-section { padding: 2.5rem 1.5rem 3rem; }
  .catalog-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 2rem; }
  .product-image { position: static; }

  .calculator-page { padding: 7rem 1.5rem 3rem; }
  .calc-form { grid-template-columns: 1fr; padding: 1.5rem; }
  .calc-summary { flex-direction: column; gap: 1rem; }
  .calc-results { grid-template-columns: 1fr; }
  .coi { padding: 4rem 1.5rem; }
  .coi-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .quiz-page { padding: 7rem 1.5rem 3rem; }
  .quiz-q { padding: 1.5rem; }
  .quiz-result { padding: 1.75rem; }

  .admin-nav { padding: 1rem 1.5rem; }
  .admin-nav-links { gap: 1rem; }
  .admin-page { padding: 4.5rem 1.5rem 2rem; }
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .login-card { padding: 2.25rem 1.75rem; }
}

/* ============ FEATURED-PRODUCTS STRIP (homepage) ============ */
.featured-strip {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.featured-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px -18px rgba(10, 31, 46, 0.18);
  border-color: var(--sky);
}
.featured-image {
  background: linear-gradient(180deg, #f6fbfd, #eaf4f7);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.featured-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.featured-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.featured-body .product-badge {
  align-self: flex-start;
  margin-bottom: 0.25rem;
}
.featured-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.featured-tag {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-style: italic;
  font-family: 'Fraunces', serif;
  margin: 0;
}
.featured-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.featured-pills span {
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(74, 155, 184, 0.10);
  color: var(--sky-deep);
  font-weight: 500;
}
.featured-card.maxvac .featured-pills span {
  background: rgba(217, 119, 87, 0.10);
  color: var(--pulse-deep);
}
.featured-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
}
.featured-vat {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-soft);
  font-family: 'Manrope', sans-serif;
}

/* ============ HOMEPAGE INQUIRY FORM ============ */
.cta-form-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 640px;
  margin: 0 auto;
}
.cta-form-detailed input,
.cta-form-detailed textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
}
.cta-form-detailed input:focus,
.cta-form-detailed textarea:focus {
  outline: none;
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 3px rgba(74, 155, 184, 0.18);
}
.cta-form-detailed textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 90px;
}
.cta-form-detailed .cta-form-submit-wrap {
  grid-column: 1 / -1;
  text-align: center;
}
.cta-form-detailed button {
  background: var(--ink);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-form-detailed button:hover { background: var(--sky-deep); }
.contact-alternatives {
  text-align: center;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.contact-alternatives a {
  color: var(--sky-deep);
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 600px) {
  .cta-form-detailed { grid-template-columns: 1fr; }
}

/* ============ PRODUCT-IMAGE GALLERY (detail pages) ============ */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.product-thumbs .thumb {
  width: 72px;
  height: 72px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, transform 0.15s;
}
.product-thumbs .thumb:hover { border-color: var(--sky); transform: translateY(-2px); }
.product-thumbs .thumb.active {
  border-color: var(--sky-deep);
  box-shadow: 0 0 0 2px rgba(74, 155, 184, 0.18);
}
.product-thumbs .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ============ TESTIMONIALS / VOICES ============ */
.testimonials {
  padding: 5rem 4rem;
  background: linear-gradient(180deg, var(--paper), #f4f9fb);
  border-bottom: 1px solid var(--line);
}
.testimonials .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 38px -18px rgba(10, 31, 46, 0.18);
}
.testimonial-card .stars {
  color: #f1b94a;
  font-size: 1rem;
  letter-spacing: 0.15em;
  line-height: 1;
}
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  flex: 1;
}
.testimonial-source {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}
.testimonial-source strong { color: var(--ink); font-weight: 600; }
.testimonial-source span { color: var(--ink-soft); font-size: 0.78rem; }
.testimonials-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.testimonials-note a { color: var(--sky-deep); text-decoration: underline; font-weight: 500; }
@media (max-width: 600px) {
  .testimonials { padding: 3.5rem 1.5rem; }
}

/* ============ FILTRATION EXPLAINER (product pages) ============ */
.filtration-explainer {
  padding: 5rem 4rem;
  background: linear-gradient(180deg, #f4f9fb, var(--paper));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.filtration-container {
  max-width: 1100px;
  margin: 0 auto;
}
.filtration-stages {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.filtration-stages li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.filtration-stages li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-deep));
}
.stage-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky-deep);
  color: white;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stage-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.stage-body p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
@media (max-width: 600px) {
  .filtration-explainer { padding: 3.5rem 1.5rem; }
}

/* ============ ACCESSIBILITY — CONTRAST FIXES ============ */
/* Per Lighthouse audit: badges, eyebrows, helper text and calculator output
   links failed WCAG AA in places. These overrides darken the foreground or
   strengthen weight to push ratios above 4.5:1. */

/* Product badges: deepen text and bump background opacity from 0.12 -> 0.18
   for stronger separation from the page background. */
.medicair .product-badge {
  background: rgba(74, 155, 184, 0.18);
  color: #1f5468;
}
.maxvax .product-badge, .maxvac .product-badge {
  background: rgba(217, 119, 87, 0.20);
  color: #8a3f25;
}

/* Section eyebrows: ensure strong-enough contrast on light + dark backgrounds */
.section-eyebrow {
  font-weight: 700;
}

/* Featured-strip "inc VAT" small print: was --ink-soft (#2a4456) at 0.75rem,
   borderline at small size — use full --ink for better contrast. */
.featured-vat { color: var(--ink); opacity: 0.7; }

/* Contact alternatives helper line below the homepage form */
.contact-alternatives { color: var(--ink); opacity: 0.8; }

/* Calculator output links (.coi-result a) */
.coi-result a,
.coi-result a:visited { color: var(--sky-deep); text-decoration: underline; font-weight: 600; }
