@font-face {
  font-family: "Afacad Flux";
  src: url("fonts/AfacadFlux-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("fonts/AfacadFlux-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("fonts/AfacadFlux-SemiBold.woff2") format("woff2");
  font-weight: 600 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Afacad Flux";
  src: url("fonts/AfacadFlux-Bold.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #21313a;
  --muted: #586a72;
  --teal: #1f6f78;
  --teal-dark: #174f59;
  --teal-soft: #dff1ee;
  --gold: #f0a72f;
  --amber-bright: #ffc247;
  --amber-hover: #f4ad18;
  --gold-soft: #fff3dc;
  --gold-dark: #5f3a08;
  --sage: #6f8f83;
  --clay: #b96348;
  --blue-soft: #e8f0f5;
  --paper: #fbfdfb;
  --paper-warm: #f7f9f8;
  --mist: #f4faf8;
  --sage-soft: #eef4f1;
  --teal-wash: #dfeeea;
  --line: #d6e1de;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 63, 66, 0.13);
  --card-shadow: 0 10px 28px rgba(22, 63, 66, 0.08);
  --card-radius: 8px;
  --card-padding: clamp(1.15rem, 1.8vw, 1.45rem);
  --section-space: clamp(3.5rem, 4.4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f4f7f6;
  color: var(--ink);
  font-family: "Afacad Flux", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0a403d;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--teal-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--white);
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.brand strong {
  display: block;
  font-size: 1.24rem;
  line-height: 1.1;
}

.brand span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.55rem 0.72rem;
  border-radius: 8px;
  font-size: 0.98rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.nav-links a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.page-hero,
.section,
.band {
  padding: var(--section-space) 0;
}

.page-hero {
  background-color: #e5f1ed;
  background-image: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: visible;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

main > .section:not(.band):not(.soft-section):nth-of-type(even) {
  background: #ffffff;
}

main > .section:not(.band):not(.soft-section):nth-of-type(odd) {
  background: #f4f7f6;
}

.hero-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.3rem 0.68rem;
  border: 1px solid rgba(240, 167, 47, 0.48);
  border-radius: 999px;
  background: rgba(255, 243, 220, 0.92);
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero p {
  color: var(--ink);
}

.page-hero .eyebrow {
  color: var(--gold-dark);
}

h1,
h2,
h3 {
  color: var(--teal-dark);
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  line-height: 1.16;
  max-width: 880px;
}

.page-hero > .container:not(.hero-grid) h1,
.page-hero > .container:not(.hero-grid) .lead,
.page-hero > .container:not(.hero-grid) p:not(.eyebrow) {
  max-width: none;
}

.home-hero-title {
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.16;
  max-width: 850px;
}

h2 {
  font-size: clamp(1.3rem, 1.75vw, 1.55rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.08rem, 1.4vw, 1.16rem);
  color: #33464e;
  max-width: 46rem;
}

.offer-strand-note {
  max-width: 780px;
  color: var(--muted);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}

.hero-card,
.info-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: var(--card-padding);
}

.info-panel {
  background: #fbfdfc;
}

.hero-card img {
  display: block;
  width: clamp(118px, 14vw, 150px);
  margin: 0 auto 1.2rem;
}

.hero-message {
  text-align: center;
}

.hero-message img {
  width: clamp(120px, 15vw, 158px);
  margin-bottom: 1.3rem;
}

.hero-message h2 {
  font-size: 1.22rem;
  margin-bottom: 0.75rem;
}

.hero-message p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.hero-tags span {
  background: var(--teal-soft);
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-tags span:nth-child(2n) {
  background: var(--gold-soft);
  border-color: rgba(240, 167, 47, 0.42);
  color: var(--gold-dark);
}

.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--amber-bright);
  background: var(--amber-bright);
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(22, 63, 66, 0.12);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  color: var(--teal-dark);
  box-shadow: 0 12px 24px rgba(22, 63, 66, 0.18);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--white);
  color: var(--teal-dark);
  border-color: rgba(255, 194, 71, 0.76);
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--gold-soft);
  color: var(--teal-dark);
  border-color: var(--amber-bright);
  box-shadow: inset 0 0 0 1px rgba(255, 194, 71, 0.28);
}

.button:focus-visible {
  outline: 3px solid rgba(255, 194, 71, 0.58);
  outline-offset: 3px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.download-card,
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
}

.card:hover,
.download-card:hover,
.step:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(22, 63, 66, 0.11);
}

.card,
.download-card,
.step {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-card {
  display: flex;
  flex-direction: column;
}

.card p,
.download-card p,
.step p {
  margin-bottom: 0;
}

.card p + p,
.download-card p + p {
  margin-top: 0.85rem;
}

.section > .container > p:not(.eyebrow),
.band > .container > p:not(.eyebrow),
.page-hero .hero-grid > div > p:not(.eyebrow) {
  max-width: 50rem;
}

.accent-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.accent-list li {
  position: relative;
  padding-left: 1.35rem;
}

.accent-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--gold);
}

.band {
  background: var(--teal-dark);
  color: var(--white);
  position: relative;
}

.band h2,
.band p,
.band a {
  color: var(--white);
}

.band .button {
  background: var(--amber-bright);
  color: var(--teal-dark);
  border-color: var(--amber-bright);
}

.band .button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 194, 71, 0.82);
}

.steps {
  display: grid;
  gap: 1rem;
  counter-reset: steps;
  margin-top: 1.5rem;
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  content: counter(steps);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(240, 167, 47, 0.38);
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.notice {
  border: 1px solid rgba(240, 167, 47, 0.38);
  border-radius: var(--card-radius);
  background: var(--gold-soft);
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-card a {
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
}

.faq-item h2 {
  font-size: 1.25rem;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--card-shadow);
}

.contact-note {
  color: var(--muted);
  max-width: 32rem;
}

.faq-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
  background: var(--gold-soft);
  border-color: rgba(240, 167, 47, 0.38);
  box-shadow: none;
}

.faq-contact h2 {
  margin-bottom: 0.35rem;
}

.faq-contact p {
  max-width: 720px;
  margin-bottom: 0;
}

.family-snapshot {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: var(--card-padding);
}

.snapshot-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.snapshot-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.snapshot-brand strong {
  display: block;
  color: var(--teal-dark);
}

.snapshot-brand span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.snapshot-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.snapshot-row b {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.snapshot-row strong {
  display: block;
  color: var(--teal-dark);
  line-height: 1.2;
}

.snapshot-row span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  margin-top: 0.2rem;
}

.soft-section {
  background: #ecf2f0;
  border-top: 1px solid #d7e1de;
  border-bottom: 1px solid #d7e1de;
}

.home-ed-page {
  background: #eef5f6;
}

.home-ed-page .page-hero {
  background: #ddecef;
  border-bottom-color: #bfd4d9;
}

.home-ed-page h1,
.home-ed-page h2,
.home-ed-page h3,
.home-ed-page .snapshot-brand strong,
.home-ed-page .snapshot-row strong {
  color: #315e6a;
}

.pilot-label {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.38rem 0.78rem;
  border: 1px solid #315e6a;
  border-radius: 999px;
  background: #315e6a;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
}

.home-ed-page .pilot-label {
  color: #ffffff;
}

.home-ed-page .family-snapshot,
.home-ed-page .contact-panel {
  border-color: #bfd4d9;
  background: #fbfefe;
}

.home-ed-page .snapshot-brand {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #d7e4e7;
}

.home-ed-page .snapshot-row b {
  background: #e3ecee;
  color: #315e6a;
}

.home-ed-page .snapshot-row {
  margin-top: 0.7rem;
  padding: 0.85rem;
  border: 1px solid #d7e4e7;
  border-radius: 8px;
  background: #f5faf9;
}

.home-ed-page .info-panel {
  border-color: #bfd4d9;
}

.home-ed-page .soft-section {
  background: #e6f0f1;
  border-color: #cbdfe2;
}

.home-ed-page .card {
  background: #fbfefe;
  border-color: #cbdfe2;
  box-shadow: 0 10px 28px rgba(49, 94, 106, 0.08);
}

.pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.pathway-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: var(--card-padding);
  position: relative;
}

.pathway-step::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(240, 167, 47, 0.42);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 243, 220, 0.85);
  margin-bottom: 0.9rem;
}

.pathway-step h3 {
  color: var(--teal-dark);
}

.quote-panel {
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.quote-panel p,
.quote-panel h3 {
  color: var(--white);
}

.quote-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: #e8f0ed;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 700;
}

.contact-social {
  margin-top: 0.8rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  body {
    font-size: 17px;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    padding: 0 0 1rem;
  }

  .site-header.is-open .nav-links {
    display: grid;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .nav-links a {
    padding: 0.75rem;
  }

  .hero-grid,
  .two-column,
  .card-grid,
  .download-list,
  .pathway {
    grid-template-columns: 1fr;
  }

  .card-grid.two-up {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .section,
  .band {
    padding: clamp(2.5rem, 7vw, 3.25rem) 0;
  }

  h2 {
    font-size: clamp(1.28rem, 4vw, 1.45rem);
  }

  .lead {
    font-size: 1.1rem;
  }

  .hero-grid {
    gap: 1.75rem;
  }

  .hero-message img {
    width: 112px;
    margin-bottom: 0.9rem;
  }

  .faq-contact {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem;
  background: rgba(255, 248, 238, 0.98);
  border: 1px solid rgba(31, 111, 120, 0.24);
  border-radius: var(--card-radius);
  box-shadow: 0 20px 45px rgba(18, 54, 59, 0.18);
}

.cookie-copy {
  max-width: 38rem;
}

.cookie-copy p {
  margin: 0;
}

.cookie-copy p + p {
  margin-top: 0.25rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cookie-settings {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 19;
  border: 1px solid rgba(31, 111, 120, 0.25);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.94);
  color: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(18, 54, 59, 0.14);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.48rem 0.75rem;
}

.cookie-settings:hover {
  background: var(--gold-soft);
  border-color: rgba(240, 167, 47, 0.6);
}

@media (max-width: 1100px) {
  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .cookie-banner {
    padding: 0.9rem;
  }

  .cookie-actions,
  .cookie-actions .button {
    width: 100%;
  }
}

