@charset "utf-8";
/* =========================================================================
   Three16 Benefits — design system
   Palette sampled directly from Tessa's marketing banner.
   Built for an audience that includes people over 65: large type,
   strong contrast, big tap targets, no hover-only interactions.
   ========================================================================= */

/* ---------------------------------------------------------------- fonts */
@font-face {
  font-family: "Source Sans 3";
  src: url("/assets/fonts/sans-var.woff2") format("woff2-variations");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Three16 Script";
  src: url("/assets/fonts/script.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------- tokens */
:root {
  /* brand — sampled from banner-cropped.png */
  --navy: #021e3e;
  --navy-800: #0a2d55;
  --navy-700: #14406f;
  --green: #026a21;          /* 6.9:1 on white — safe for text and buttons */
  --green-700: #01571a;
  --green-bright: #45ae1d;   /* accent only, never text */

  /* neutrals */
  --ink: #12181f;
  --body: #333e49;
  --muted: #4a5560;          /* 7.6:1 on white */
  --paper: #ffffff;
  --paper-alt: #f4f8f3;
  --paper-warm: #f7f9fb;
  --line: #dde5dd;
  --line-strong: #c3d1c4;

  /* type */
  --font: "Source Sans 3", ui-sans-serif, system-ui, -apple-system,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --script: "Three16 Script", "Segoe Script", cursive;

  --step--1: clamp(0.94rem, 0.92rem + 0.1vw, 1rem);
  --step-0: clamp(1.0625rem, 1.03rem + 0.18vw, 1.175rem);
  --step-1: clamp(1.2rem, 1.14rem + 0.3vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.33rem + 0.6vw, 1.85rem);
  --step-3: clamp(1.75rem, 1.5rem + 1.1vw, 2.5rem);
  --step-4: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  --step-5: clamp(2.5rem, 1.7rem + 3.4vw, 4.4rem);

  /* space */
  --gutter: clamp(1rem, 0.55rem + 2.2vw, 2.5rem);
  --section: clamp(3.25rem, 2rem + 5vw, 6rem);
  --measure: 62ch;
  --wrap: 1180px;
  --wrap-narrow: 780px;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(2, 30, 62, 0.05), 0 2px 8px rgba(2, 30, 62, 0.05);
  --shadow: 0 2px 4px rgba(2, 30, 62, 0.05), 0 12px 32px rgba(2, 30, 62, 0.09);
  --ring: 0 0 0 3px #fff, 0 0 0 6px var(--green-bright);
}

/* ---------------------------------------------------------------- reset */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--font);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

img, picture, video, svg, iframe { max-width: 100%; }
img, video { height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p, ul, ol, dl { margin: 0 0 1.1em; }
p { max-width: var(--measure); text-wrap: pretty; }

a { color: var(--green); text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--green-700); }

strong, b { font-weight: 700; color: var(--navy); }

/*
 * ...but not on a dark ground, where navy-on-navy makes bold text vanish while
 * still taking up its width — which reads as a broken, half-centred layout
 * rather than as missing text, so it is easy to misdiagnose. Anywhere the
 * surface is navy, bold simply takes the colour of the text around it.
 */
.section--navy strong, .section--navy b,
.callout--navy strong, .callout--navy b,
.cta-band strong, .cta-band b,
.site-footer strong, .site-footer b { color: inherit; }

:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

/* ---------------------------------------------------------------- layout */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(2.25rem, 1.5rem + 3vw, 3.75rem); }
.section--alt { background: var(--paper-alt); }
.section--warm { background: var(--paper-warm); }
.section--navy { background: var(--navy); color: #e4ecf5; }
.section--navy h2,
.section--navy h3 { color: #fff; }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.4rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 74px;
  padding-block: 0.6rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 138px; height: auto; }
@media (min-width: 26rem) { .brand img { width: 160px; } }
@media (min-width: 60rem) { .brand img { width: 200px; } }

.nav { display: none; }
.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 0.1rem + 1vw, 1.35rem);
  margin: 0;
  padding: 0;
}
.nav__link {
  display: block;
  padding: 0.55rem 0.15rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}
.nav__link:hover { color: var(--green); border-bottom-color: var(--green-bright); }
.nav__link[aria-current="page"] { color: var(--green); border-bottom-color: var(--green); }

.header__actions { display: flex; align-items: center; gap: 0.45rem; }
@media (min-width: 62rem) { .header__actions { gap: 0.9rem; } }
.header__phone {
  display: none;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.header__phone:hover { color: var(--green); }

@media (min-width: 62rem) {
  .nav { display: block; }
  .header__phone { display: inline-block; }
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.5rem 0.9rem;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: 10px;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}
.nav-toggle [data-nav-label] { display: none; }
@media (min-width: 26rem) { .nav-toggle [data-nav-label] { display: inline; } }

.nav-toggle__bars { display: block; width: 20px; height: 2px; background: currentColor; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }

@media (min-width: 62rem) {
  .site-header .nav-toggle { display: none; }
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: #fff;
  padding-block: 0.5rem 1.25rem;
}
.mobile-nav[data-open="true"] { display: block; }
@media (min-width: 62rem) { .mobile-nav { display: none !important; } }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list a {
  display: block;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
}
.mobile-nav__list a[aria-current="page"] { color: var(--green); }
.mobile-nav .btn { margin-top: 1.1rem; width: 100%; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.8rem 1.6rem;
  border: 2px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--green); border-color: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-700); border-color: var(--green-700); color: #fff; }

.btn--navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.btn--outline { background: #fff; border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--ghost-light { background: transparent; border-color: rgba(255, 255, 255, 0.6); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn--sm { min-height: 44px; padding: 0.5rem 1rem; font-size: 0.93rem; }
.header__actions .btn { white-space: nowrap; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.btn-row .btn { flex: 1 1 auto; min-width: 15rem; }
@media (min-width: 34rem) { .btn-row .btn { flex: 0 0 auto; } }

/* ---------------------------------------------------------------- hero */
.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4.5vw, 5.25rem);
  background:
    radial-gradient(60rem 32rem at 82% -10%, #eef6ec 0%, rgba(255, 255, 255, 0) 62%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 60rem) {
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--script);
  font-size: var(--step-2);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero h1 { font-size: var(--step-5); margin-bottom: 0.35em; }
.hero__script {
  display: block;
  font-family: var(--script);
  font-size: clamp(2.2rem, 1.3rem + 3.6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--green);
  line-height: 1.05;
  margin-top: 0.12em;
}
.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: clamp(0.72rem, 0.63rem + 0.35vw, 0.82rem);
  color: var(--navy);
}
.hero__pillars li { display: inline-flex; align-items: center; gap: 0.9rem; }
.hero__pillars li + li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-bright);
}
.hero__lede { font-size: var(--step-1); color: var(--body); max-width: 40ch; }

/* portrait with the green arc lifted from her banner */
.portrait {
  position: relative;
  margin-inline: auto;
  max-width: 19rem;
}
@media (min-width: 60rem) { .portrait { max-width: 24rem; } }
.portrait::before {
  content: "";
  position: absolute;
  inset: -14px -14px -14px -14px;
  border-radius: 999px 999px 26px 26px;
  background: linear-gradient(150deg, var(--green-bright), var(--green) 55%, var(--navy));
  z-index: 0;
}
.portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 380 / 478;
  object-fit: cover;
  object-position: 50% 12%;
  border-radius: 999px 999px 18px 18px;
  background: var(--paper-alt);
}
.portrait__plate {
  position: relative;
  z-index: 2;
  margin: -1.75rem auto 0;
  width: min(100%, 20rem);
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.portrait__name {
  display: block;
  font-family: var(--script);
  font-size: 1.85rem;
  line-height: 1.1;
}
.portrait__role {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7e3a6;
}

/* ---------------------------------------------------------------- page head */
.page-head {
  background: var(--navy);
  color: #dfe8f2;
  padding-block: clamp(2.5rem, 1.6rem + 4vw, 4.5rem);
}
.page-head h1 { color: #fff; margin-bottom: 0.3em; }
.page-head__eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ed98a;
  margin-bottom: 0.9rem;
}
.page-head__lede {
  font-size: var(--step-1);
  color: #d5e2ef;
  max-width: 52ch;
  margin-bottom: 0;
}

/* ---------------------------------------------------------------- breadcrumbs */
.crumbs { font-size: 0.9rem; padding-block: 0.9rem; border-bottom: 1px solid var(--line); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0; padding: 0; }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 0.4rem; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--green); text-decoration: underline; }
.crumbs [aria-current] { color: var(--navy); font-weight: 600; }

/* ---------------------------------------------------------------- headings */
.section-head { max-width: 46rem; margin-bottom: clamp(1.75rem, 1rem + 2vw, 2.75rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center p { margin-inline: auto; }
.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section--navy .eyebrow { color: #9ed98a; }

/* ---------------------------------------------------------------- cards */
.cards {
  display: grid;
  gap: clamp(1rem, 0.5rem + 1.6vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17.5rem), 1fr));
}
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr)); }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 1rem + 1vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: -1px -1px auto;
  height: 4px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  opacity: 0;
  transition: opacity 0.15s ease;
}
.card:hover,
.card:focus-within {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card:hover::after,
.card:focus-within::after { opacity: 1; }

.card__num {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.card h2, .card h3 { font-size: var(--step-1); margin-bottom: 0.4em; }
.card p { font-size: var(--step--1); color: var(--body); margin-bottom: 1rem; max-width: none; }
.card__more {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
  text-decoration: none;
}
.card__more::after { content: " →"; }
/* Whole card clickable, link still the accessible target */
.card--link .card__more::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

.card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #eaf4e7;
  color: var(--green);
  margin-bottom: 1rem;
}
.card__icon svg { width: 24px; height: 24px; }

/* ---------------------------------------------------------------- prose */
.prose { max-width: var(--measure); }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.25em; font-size: var(--step-2); }
.prose h3 { margin-top: 1.9em; font-size: var(--step-1); }
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: 0.45em; }
.prose li::marker { color: var(--green); }
.prose blockquote {
  margin: 1.75em 0;
  padding: 0.25em 0 0.25em 1.35em;
  border-left: 4px solid var(--green-bright);
  color: var(--navy);
  font-size: var(--step-1);
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { border-radius: var(--radius); margin-block: 1.75em; }
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.75em; font-size: var(--step--1); }
.prose th, .prose td { text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); }
.prose th { background: var(--paper-alt); color: var(--navy); font-weight: 700; }

/* ---------------------------------------------------------------- Q&A blocks
   The repeating shape of every service page:
   What is it? → Who is it for? → What options? → What to know →  CTA        */
.qa { border-top: 1px solid var(--line); padding-block: clamp(2rem, 1.4rem + 2vw, 3rem); }
.qa:first-of-type { border-top: 0; padding-top: 0; }
.qa__grid { display: grid; gap: clamp(1rem, 0.5rem + 2vw, 2.5rem); }
@media (min-width: 56rem) {
  .qa__grid { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); }
}
.qa__label { margin: 0; }
.qa__label h2 {
  font-size: var(--step-2);
  margin: 0;
  position: sticky;
  top: 7rem;
}
@media (max-width: 55.99rem) { .qa__label h2 { position: static; } }

/* option list — used for plan types, coverage types, considerations */
.options { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.options > li {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green-bright);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
}
.options h3 { font-size: var(--step-1); margin-bottom: 0.35em; }
.options p { margin-bottom: 0; font-size: var(--step--1); max-width: none; }
.options p + p { margin-top: 0.6em; }
.section--alt .options > li { background: #fff; }

/* plain checklist */
.ticks { list-style: none; margin: 0 0 1.25em; padding: 0; display: grid; gap: 0.6rem; }
.ticks li { display: grid; grid-template-columns: 1.6rem 1fr; gap: 0.35rem; align-items: start; }
.ticks li::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.42em;
  border-radius: 4px;
  background: var(--green-bright);
  clip-path: polygon(14% 46%, 0 60%, 40% 100%, 100% 22%, 86% 8%, 38% 66%);
}

/* two-up definition grid */
.deflist { display: grid; gap: 0.9rem 1.75rem; margin: 0 0 1.25em; }
@media (min-width: 46rem) { .deflist { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.deflist > div { border-top: 2px solid var(--line); padding-top: 0.75rem; }
.deflist dt { font-weight: 700; color: var(--navy); margin-bottom: 0.15rem; }
.deflist dd { margin: 0; font-size: var(--step--1); }

/* ---------------------------------------------------------------- callouts */
.callout {
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1vw, 1.9rem);
  margin-block: 1.75rem;
  background: var(--paper-alt);
  border: 1px solid var(--line);
}
.callout h3 { font-size: var(--step-1); margin-bottom: 0.45em; }
.callout p:last-child { margin-bottom: 0; }
/* Lists inside a callout were falling back to the browser's 40px indent. */
.callout ul, .callout ol { padding-left: 1.3em; }
.callout li { margin-bottom: 0.45em; }
.callout li:last-child { margin-bottom: 0; }

/* the "these are not the same thing" callout — deliberately loud, not fine print */
.callout--important {
  background: #fff6ec;
  border: 2px solid #e9a13b;
  border-left-width: 6px;
}
.callout--important h3 { color: #8a4b06; }
.callout--important p { color: #5d3a10; }

.callout--navy { background: var(--navy); border-color: var(--navy); color: #dbe6f2; }
.callout--navy h3 { color: #fff; }

/* regulated wording that has to come from Tessa / her carriers */
.tbc {
  border: 2px dashed #b0651b;
  background: #fffaf3;
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  margin-block: 1.75rem;
  color: #5d3a10;
  font-size: var(--step--1);
}
.tbc__tag {
  display: inline-block;
  background: #b0651b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}
.tbc p:last-child { margin-bottom: 0; }
.tbc p { max-width: none; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { background: var(--navy); color: #dce7f3; }
.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding-block: clamp(2.5rem, 1.8rem + 3vw, 4rem);
}
@media (min-width: 56rem) {
  .cta-band__inner { grid-template-columns: 1.3fr 0.7fr; gap: 3rem; }
}
.cta-band h2 { color: #fff; font-size: var(--step-3); }
.cta-band p { color: #cddcec; margin-bottom: 0; }
.cta-band .btn-row { margin-top: 0; }
@media (min-width: 56rem) {
  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band .btn-row .btn { width: 100%; }
}

/* ---------------------------------------------------------------- story */
.story { display: grid; gap: clamp(1.75rem, 1rem + 3vw, 3.25rem); align-items: center; }
@media (min-width: 58rem) { .story { grid-template-columns: 0.85fr 1.15fr; } }
.story__media img { border-radius: var(--radius-lg); width: 100%; }
.verse {
  font-family: var(--script);
  font-size: var(--step-3);
  color: var(--green);
  line-height: 1.2;
  margin: 0 0 0.35em;
}
.verse__ref {
  display: block;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------------- quotes */
.quotes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); }
.quote {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.quote__stars { color: var(--green-bright); letter-spacing: 0.1em; margin-bottom: 0.75rem; font-size: 1.05rem; }
.quote blockquote { margin: 0 0 1.1rem; padding: 0; border: 0; font-size: var(--step-0); color: var(--body); }
.quote blockquote p:last-child { margin-bottom: 0; }
.quote figcaption { margin-top: auto; font-size: var(--step--1); color: var(--muted); }
.quote__name { display: block; font-weight: 700; color: var(--navy); }

/* ---------------------------------------------------------------- videos */
.video-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.video-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.video-card__frame { position: relative; aspect-ratio: 16 / 9; background: var(--navy); }
.video-card__frame iframe,
.video-card__frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card__body { padding: 1.15rem 1.25rem 1.35rem; }
.video-card h3 { font-size: var(--step-1); margin-bottom: 0.3em; }
.video-card p { font-size: var(--step--1); margin-bottom: 0; max-width: none; }
.video-card__meta { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; margin-bottom: 0.5rem; }

/* click-to-load poster, so no third-party request until the visitor asks */
.video-lite { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; cursor: pointer; background: var(--navy); }
.video-lite img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.video-lite__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.video-lite__play span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(2, 106, 33, 0.95);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
.video-lite__play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.video-lite:hover .video-lite__play span { background: var(--green-700); }

/* ---------------------------------------------------------------- posts */
.post-list { display: grid; gap: 1.35rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr)); }
.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.post-card__img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; background: var(--paper-alt); }
.post-card__body { padding: 1.25rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: var(--step-1); margin-bottom: 0.4em; }
.post-card h3 a { color: var(--navy); text-decoration: none; }
.post-card h3 a::after { content: ""; position: absolute; inset: 0; }
.post-card:hover h3 a { color: var(--green); }
.post-card p { font-size: var(--step--1); max-width: none; }
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}
.post-meta__tag { color: var(--green); }
.post-card__body .post-meta:last-of-type { margin-top: auto; margin-bottom: 0; }

.post-header { border-bottom: 1px solid var(--line); padding-bottom: 1.75rem; margin-bottom: 2rem; }
.post-hero { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; margin-bottom: 2rem; background: var(--paper-alt); }

/* ---------------------------------------------------------------- forms */
.form { max-width: 42rem; }
.field { margin-bottom: 1.4rem; }
.field > label,
.fieldset__legend {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.45rem;
  font-size: var(--step-0);
}
.field__hint { display: block; font-size: var(--step--1); color: var(--muted); font-weight: 400; margin-bottom: 0.5rem; }

.input,
.textarea,
.select {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}
.textarea { min-height: 9rem; resize: vertical; line-height: 1.55; }
.input:focus,
.textarea:focus,
.select:focus { border-color: var(--green); outline: 3px solid rgba(69, 174, 29, 0.35); outline-offset: 0; }
.input[aria-invalid="true"],
.textarea[aria-invalid="true"] { border-color: #b3261e; }

fieldset { border: 0; margin: 0 0 1.4rem; padding: 0; }
.fieldset__legend { padding: 0; }

.choices { display: grid; gap: 0.6rem; }
@media (min-width: 40rem) { .choices--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.75rem 0.95rem;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: var(--step-0);
  line-height: 1.4;
}
.choice:hover { border-color: var(--green); }
.choice input { width: 1.4rem; height: 1.4rem; margin: 0.12rem 0 0; accent-color: var(--green); flex: 0 0 auto; }
.choice:has(input:checked) { border-color: var(--green); background: #f1f8ef; }
.choice:has(input:focus-visible) { outline: 3px solid var(--green-bright); outline-offset: 2px; }

.choices--inline { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.choices--inline .choice { flex: 1 1 8rem; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-note {
  font-size: var(--step--1);
  color: var(--muted);
  background: var(--paper-alt);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}
.form-note p { max-width: none; }
.form-note p:last-child { margin-bottom: 0; }

.form-error {
  border: 2px solid #b3261e;
  background: #fdf3f2;
  color: #8c1d18;
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.form-error ul { margin: 0.5rem 0 0; padding-left: 1.2rem; font-weight: 400; }
.form-success {
  border: 2px solid var(--green);
  background: #f1f8ef;
  color: var(--green-700);
  border-radius: 10px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* ---------------------------------------------------------------- booking */
.booking-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: 620px;
}
.booking-embed iframe { width: 100%; min-height: 620px; border: 0; display: block; }
.booking-placeholder {
  display: grid;
  place-items: center;
  min-height: 620px;
  padding: 2rem;
  text-align: center;
  background: var(--paper-alt);
}
.booking-placeholder > div { max-width: 34rem; }

/* ---------------------------------------------------------------- contact strip */
.contact-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr)); }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-item__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item dt { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.contact-item dd { margin: 0; font-size: var(--step-0); font-weight: 600; color: var(--navy); }
.contact-item dd a { color: var(--navy); text-decoration: none; }
.contact-item dd a:hover { color: var(--green); text-decoration: underline; }
.section--navy .contact-item dt { color: #9fb3ca; }
.section--navy .contact-item dd,
.section--navy .contact-item dd a { color: #fff; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--navy); color: #c2d2e4; padding-block: clamp(2.75rem, 2rem + 3vw, 4rem) 2rem; font-size: var(--step--1); }
.site-footer a { color: #dce8f5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 2rem; }
@media (min-width: 46rem) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 66rem) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }
.footer__brand img { width: 190px; margin-bottom: 1rem; }
.footer__script { font-family: var(--script); font-size: 1.6rem; color: #9ed98a; line-height: 1.1; margin-bottom: 0.4rem; }
.footer h2 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 0.9rem; }
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.16); margin-top: 2.5rem; padding-top: 1.5rem; display: grid; gap: 1rem; }
.footer__legal p { font-size: 0.85rem; color: #9db1c8; max-width: none; margin-bottom: 0; }
.footer__meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: center; justify-content: space-between; }

/* ---------------------------------------------------------------- share kit */
.share-kit { display: grid; gap: 1.25rem; }
@media (min-width: 56rem) { .share-kit { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.share-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.share-card__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 1.15rem; background: var(--paper-alt); border-bottom: 1px solid var(--line); }
.share-card__head h3 { margin: 0; font-size: var(--step-0); }
.share-card pre {
  margin: 0;
  padding: 1.15rem;
  font: inherit;
  font-size: var(--step--1);
  white-space: pre-wrap;
  max-height: 32rem;
  overflow: auto;
  line-height: 1.6;
}
.copy-btn { min-height: 40px; padding: 0.35rem 0.9rem; font-size: 0.88rem; }
.copy-btn[data-copied="true"] { background: var(--green); border-color: var(--green); color: #fff; }

/* ---------------------------------------------------------------- utilities */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lede { font-size: var(--step-1); color: var(--body); }
.small { font-size: var(--step--1); }
.muted { color: var(--muted); }
.stack > * + * { margin-top: 1.1rem; }

@media print {
  .site-header, .site-footer, .cta-band, .btn, .nav-toggle { display: none !important; }
  body { font-size: 11pt; }
}

/* ------------------------------------------------------- guided questions
   Built for the audience this site is for: large tap targets, no hover-only
   states, real focus rings, and an explanation that appears in place rather
   than in a tooltip. The whole thing works with JavaScript off — the styles
   below never assume otherwise. */
.quiz {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.3rem, 1rem + 1.6vw, 2.4rem);
}
.section--alt .quiz { background: #fff; }
.quiz__head { max-width: 46rem; margin-bottom: 1.6rem; }
.quiz__head h2 { margin-bottom: 0.35em; }
.quiz__intro { color: var(--ink-soft); margin: 0; }

.quiz__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.quiz__item { margin: 0; }
.quiz__fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 1.1rem 1.15rem 1.15rem;
  margin: 0;
}
.section--alt .quiz__fieldset { background: var(--paper-alt); }
.quiz__legend { padding: 0; margin-bottom: 0.9rem; display: block; width: 100%; }
.quiz__num {
  display: block;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.25rem;
}
.quiz__q { display: block; font-weight: 700; color: var(--navy); font-size: var(--step-1); line-height: 1.3; }

.quiz__options { display: grid; gap: 0.6rem; }
.quiz__opt { position: relative; }
.quiz__opt input {
  position: absolute;
  top: 1.15rem;
  left: 1rem;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--green-700);
}
.quiz__opt label {
  display: block;
  min-height: 52px;
  padding: 0.85rem 1rem 0.85rem 2.9rem;
  border: 2px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}
.section--alt .quiz__opt label { background: #fff; }
.quiz__opt input:checked + label {
  border-color: var(--green-700);
  background: #f2f8f2;
  font-weight: 700;
  color: var(--navy);
}
.quiz__opt input:focus-visible + label {
  outline: 3px solid var(--green-700);
  outline-offset: 2px;
}

.quiz__reply {
  margin: 0.9rem 0 0;
  padding: 0.85rem 1rem;
  background: #f2f8f2;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--ink);
  font-size: var(--step--1);
  line-height: 1.55;
}
.quiz__reply[hidden] { display: none; }

.quiz__closing { margin: 1.5rem 0 0; font-weight: 700; color: var(--navy); }

.quiz__send { margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.quiz__send h3 { margin-bottom: 0.3em; }
.quiz__fields { display: grid; gap: 0.9rem; margin: 1.1rem 0 0; }
@media (min-width: 40rem) {
  .quiz__fields { grid-template-columns: repeat(3, 1fr); }
}
/* the honeypot: present for bots, gone for everyone else */
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quiz__msg {
  margin: 1.1rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: #f2f8f2;
  border-left: 4px solid var(--green);
  font-weight: 600;
}
.quiz__msg--bad { background: #fdf3f3; border-left-color: #a32020; color: #7d1b1b; }
.quiz__msg[hidden] { display: none; }
.quiz__send .btn-row { margin-top: 1.3rem; }

/* one-question-at-a-time: progress, navigation, and the closing summary */
.quiz__progress { margin-bottom: 1.1rem; }
.quiz__progress[hidden] { display: none; }
.quiz__progress-text {
  margin: 0 0 0.45rem;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
}
.quiz__bar {
  height: 10px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.quiz__bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.3s ease;
}
@media (prefers-reduced-motion: reduce) { .quiz__bar > span { transition: none; } }

.quiz__item:focus { outline: none; }
.quiz__item:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 4px; border-radius: 12px; }

.quiz__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.1rem;
}
.quiz__nav[hidden] { display: none; }
.quiz__nav .btn { min-width: 8.5rem; }
.quiz__nav button[disabled] { opacity: 0.45; cursor: not-allowed; }
.quiz__skip { flex-basis: 100%; margin: 0.1rem 0 0; }

.quiz__summary {
  margin: 1.5rem 0 0;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.section--alt .quiz__summary { background: var(--paper-alt); }
.quiz__summary dt {
  font-weight: 700;
  color: var(--navy);
  font-size: var(--step--1);
}
.quiz__summary dd {
  margin: 0.15rem 0 0.9rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--green);
  color: var(--body);
}
.quiz__summary dd:last-child { margin-bottom: 0; }
.quiz__closing[hidden], .quiz__send[hidden] { display: none; }
/* With the stepper running, the bar above already says which question this is. */
.quiz--stepped .quiz__num { display: none; }
.quiz__optout { margin: 0.9rem 0 0; }
