:root {
  --ink: #12231f;
  --forest: #143c34;
  --forest-2: #0b2b25;
  --paper: #f7f4ed;
  --white: #ffffff;
  --sand: #ede7da;
  --muted: #64706c;
  --line: rgba(18, 35, 31, 0.14);
  --apricot: #ff956f;
  --apricot-2: #ffb28e;
  --cyan: #00afd1;
  --magenta: #ee2677;
  --yellow: #f3ca28;
  --green: #55b78a;
  --shadow: 0 24px 70px rgba(20, 60, 52, 0.13);
  --shadow-soft: 0 16px 42px rgba(20, 60, 52, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.15rem, 6.7vw, 7.1rem);
  font-weight: 850;
}

h2 {
  font-size: clamp(2.45rem, 4.7vw, 5rem);
  font-weight: 830;
}

h3 {
  font-weight: 790;
}

.shell {
  width: min(calc(100% - 56px), 1240px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.ownership {
  position: relative;
  z-index: 41;
  background: var(--forest-2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.ownership::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  content: "";
  background:
    linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, #111 75%);
  opacity: 0.12;
}

.ownership-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ownership p {
  margin: 0;
}

.ownership strong {
  color: var(--white);
}

.ownership a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-weight: 750;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 38px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  width: 64px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--forest);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, #111 75%);
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0.09em;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav nav a {
  position: relative;
  padding-block: 8px;
  color: #30443f;
  font-size: 0.78rem;
  font-weight: 740;
}

.nav nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--apricot);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav nav a:hover::after,
.nav nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.header-call small {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-call strong {
  color: var(--magenta);
  font-size: 1.02rem;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--paper);
}

.hero-image-wrap {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 35%;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}

.hero-gradient {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, var(--paper) 34%, rgba(247, 244, 237, 0.96) 43%, rgba(247, 244, 237, 0.22) 66%, transparent 100%),
    linear-gradient(0deg, rgba(20, 60, 52, 0.08), transparent 30%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 780px;
  display: flex;
  align-items: center;
  padding-block: 78px 105px;
}

.hero-copy {
  width: min(650px, 54%);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(85, 183, 138, 0.15);
}

.hero h1 em {
  display: block;
  color: var(--forest);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 34px;
  color: #53615d;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.72;
}

.hero-actions,
.inline-actions,
.local-actions,
.final-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 790;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(20, 60, 52, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-2);
  box-shadow: 0 18px 34px rgba(20, 60, 52, 0.25);
}

.button-light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-apricot {
  background: var(--apricot);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-trust {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #5c6965;
  font-size: 0.75rem;
  font-weight: 680;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust b {
  color: var(--magenta);
  font-size: 0.65rem;
}

.cmyk-edge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cmyk-edge i:nth-child(1) { background: var(--cyan); }
.cmyk-edge i:nth-child(2) { background: var(--magenta); }
.cmyk-edge i:nth-child(3) { background: var(--yellow); }
.cmyk-edge i:nth-child(4) { background: var(--ink); }

.choice-section,
.guide-section,
.audience-section,
.school-section,
.questions-section,
.local-section,
.faq-section {
  padding-block: 112px;
}

.choice-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2 {
  max-width: 780px;
}

.section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.kicker {
  color: #197d8e;
}

.kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.kicker-light {
  color: var(--yellow);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.choice-card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.25s ease, background 0.25s ease;
}

.choice-card:last-child {
  border-right: 0;
}

.choice-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: var(--card-color);
}

.choice-card:hover,
.choice-card:focus-visible {
  z-index: 1;
  background: var(--white);
  transform: translateY(-8px);
}

.card-cyan { --card-color: var(--cyan); }
.card-magenta { --card-color: var(--magenta); }
.card-yellow { --card-color: var(--yellow); }
.card-green { --card-color: var(--green); }

.choice-no {
  margin-bottom: 58px;
  color: var(--card-color);
  font-size: 0.75rem;
  font-weight: 900;
}

.choice-card small {
  color: var(--muted);
  font-size: 0.72rem;
}

.choice-card h3 {
  margin: 10px 0 14px;
  font-size: 1.45rem;
  line-height: 1.18;
}

.choice-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.choice-card b {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
}

.guide-buy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 15%, rgba(0, 175, 209, 0.15), transparent 23%),
    var(--paper);
}

.guide-buy::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 52px solid rgba(238, 38, 119, 0.09);
  border-radius: 50%;
  content: "";
}

.guide-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.guide-copy h2 {
  max-width: 750px;
}

.lead {
  margin: 28px 0 36px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.steps {
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.steps li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 175, 209, 0.12);
  color: #087f91;
  font-size: 0.76rem;
  font-weight: 850;
}

.steps strong,
.steps p {
  display: block;
}

.steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 780;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.answer-panel {
  position: relative;
  padding: clamp(32px, 5vw, 58px);
  border-radius: 32px 32px 90px 32px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.answer-panel::before {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border: 10px solid var(--apricot);
  border-radius: 50%;
  content: "";
}

.answer-label {
  margin-bottom: 74px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-panel h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.answer-panel > p:not(.answer-label) {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.72);
}

.answer-contact {
  padding: 20px 0;
  display: grid;
  gap: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.answer-contact a:first-child {
  color: var(--apricot);
  font-size: 1.45rem;
  font-weight: 850;
}

.answer-panel small {
  margin-top: 20px;
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.65;
}

.service-section {
  padding-block: 112px;
  overflow: hidden;
  background: var(--forest-2);
  color: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(55px, 7vw, 100px);
}

.photo-frame {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 26px;
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-frame figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-size: 0.83rem;
}

.photo-frame figcaption span {
  display: block;
  color: var(--magenta);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-copy h2 {
  max-width: 650px;
}

.service-copy .lead {
  color: rgba(255, 255, 255, 0.7);
}

.symptom-grid {
  margin: 38px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.symptom-grid article {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.symptom-grid article > span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 850;
}

.symptom-grid strong {
  margin: 18px 0 5px;
  display: block;
  font-size: 0.92rem;
}

.symptom-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.audience-section {
  background: var(--white);
}

.audience-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  overflow: hidden;
  border-radius: 32px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.audience-image {
  position: relative;
  min-height: 650px;
  margin: 0;
}

.audience-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audience-content {
  padding: clamp(38px, 5vw, 70px);
  display: flex;
  flex-direction: column;
}

.audience-tag {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 99px;
  background: rgba(85, 183, 138, 0.16);
  color: var(--forest);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audience-content h3 {
  margin: 26px 0 30px;
  font-size: clamp(2rem, 3.7vw, 3.6rem);
}

.audience-content ul {
  margin: 0 0 34px;
  padding: 0;
  display: grid;
  list-style: none;
}

.audience-content li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 15px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.audience-content li:last-child {
  border-bottom: 1px solid var(--line);
}

.audience-content li span {
  color: var(--muted);
}

.school-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.school-section::before {
  position: absolute;
  top: 60px;
  left: -80px;
  width: 220px;
  height: 220px;
  border-radius: 42% 58% 57% 43%;
  content: "";
  background: rgba(255, 149, 111, 0.18);
}

.school-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 115px);
}

.school-copy h2 {
  max-width: 700px;
}

.school-points {
  margin: 34px 0;
  display: grid;
}

.school-points > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.school-points > div:last-child {
  border-bottom: 1px solid var(--line);
}

.school-points span {
  color: var(--magenta);
  font-size: 0.68rem;
  font-weight: 850;
}

.school-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.school-points strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
}

.school-photo {
  min-height: 680px;
  border-radius: 110px 26px 26px 26px;
}

.questions-section {
  background: var(--white);
}

.question-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}

.question-column {
  --question-color: var(--cyan);
  padding: 34px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.question-column:last-child {
  border-right: 0;
}

.question-column.magenta { --question-color: var(--magenta); }
.question-column.yellow { --question-color: #c99a00; }

.question-column h3 {
  padding-bottom: 28px;
  border-bottom: 5px solid var(--question-color);
  font-size: 1.45rem;
}

.question-column ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.question-column li {
  min-height: 96px;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.question-column li span {
  color: var(--question-color);
  font-size: 0.65rem;
  font-weight: 850;
}

.question-column li p {
  margin: 0;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.4;
}

.research-note {
  margin-top: 24px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 0.32fr 1fr;
  gap: 30px;
  border-radius: 16px;
  background: var(--forest);
  color: var(--white);
}

.research-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
}

.ecosystem-section {
  padding-block: 112px;
  background: var(--forest-2);
  color: var(--white);
}

.center-heading {
  display: block;
  text-align: center;
}

.center-heading .kicker {
  justify-content: center;
}

.center-heading h2 {
  max-width: 900px;
  margin-inline: auto;
}

.center-heading > p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.64);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
}

.ecosystem-card {
  min-height: 310px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.2s ease;
}

.ecosystem-card:last-child {
  border-right: 0;
}

.ecosystem-card:hover,
.ecosystem-card:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.ecosystem-card.current {
  background: var(--apricot);
  color: var(--ink);
}

.ecosystem-card > span {
  align-self: flex-start;
  padding: 6px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--yellow);
  font-size: 0.59rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.ecosystem-card.current > span {
  background: var(--ink);
  color: var(--white);
}

.ecosystem-card small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.66rem;
}

.ecosystem-card.current small {
  color: rgba(18, 35, 31, 0.62);
}

.ecosystem-card h3 {
  margin: 8px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.ecosystem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.ecosystem-card.current p {
  color: rgba(18, 35, 31, 0.7);
}

.local-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 202, 40, 0.24), transparent 24%),
    var(--paper);
}

.local-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 90px;
}

.local-layout h2 {
  max-width: 760px;
}

.local-layout > div:first-child > p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0 34px;
  color: var(--muted);
}

.area-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.area-card > small {
  color: var(--magenta);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.area-tags {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tags span {
  padding: 8px 11px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro h2 {
  max-width: 480px;
}

.faq-intro > p:not(.kicker) {
  margin: 26px 0 32px;
  color: var(--muted);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--magenta);
  font-size: 0.65rem;
}

.faq-list summary b {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--paper);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -2px 44px 28px 56px;
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta {
  padding-block: 88px;
  background: var(--forest);
  color: var(--white);
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-inner h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
}

.footer {
  padding-top: 80px;
  background: #0a1c18;
  color: var(--white);
}

.footer-grid {
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 0.8fr;
  gap: 55px;
}

.footer .brand-mark {
  background: var(--white);
  color: var(--forest);
}

.footer .brand small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand > p {
  max-width: 410px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: var(--apricot);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-style: normal;
}

.footer-column address {
  display: flex;
  flex-direction: column;
}

.footer-column address strong {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-bar {
  display: none;
}

@media (max-width: 1180px) {
  .shell {
    width: min(calc(100% - 44px), 1120px);
  }

  .nav nav a:nth-child(4),
  .nav nav a:nth-child(5) {
    display: none;
  }

  .hero-copy {
    width: min(610px, 58%);
  }

  .choice-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choice-card:nth-child(2) {
    border-right: 0;
  }

  .choice-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .ecosystem-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ecosystem-card:nth-child(3) {
    border-right: 0;
  }

  .ecosystem-card:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
  .ownership-inner {
    min-height: 48px;
    text-align: center;
    justify-content: center;
  }

  .ownership a {
    display: none;
  }

  .nav {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .nav nav {
    display: none;
  }

  .hero {
    min-height: 900px;
  }

  .hero-image-wrap {
    inset: 46% 0 0;
  }

  .hero-gradient {
    background:
      linear-gradient(180deg, var(--paper) 0%, var(--paper) 44%, rgba(247, 244, 237, 0.94) 54%, rgba(247, 244, 237, 0.08) 78%),
      linear-gradient(0deg, rgba(20, 60, 52, 0.08), transparent);
  }

  .hero-inner {
    min-height: 900px;
    align-items: flex-start;
    padding-block: 72px;
  }

  .hero-copy {
    width: 100%;
    max-width: 720px;
  }

  .section-heading,
  .guide-layout,
  .service-layout,
  .school-layout,
  .local-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading {
    align-items: start;
  }

  .answer-panel {
    max-width: 660px;
  }

  .photo-frame,
  .school-photo {
    min-height: 580px;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-image {
    min-height: 540px;
  }

  .question-columns {
    grid-template-columns: 1fr;
  }

  .question-column {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .question-column:last-child {
    border-bottom: 0;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ecosystem-card,
  .ecosystem-card:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .ecosystem-card:nth-child(even) {
    border-right: 0;
  }

  .ecosystem-card:last-child {
    border-bottom: 0;
  }

  .faq-intro {
    position: static;
  }

  .final-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 64px;
  }

  .shell {
    width: calc(100% - 30px);
  }

  .ownership {
    font-size: 0.66rem;
  }

  .ownership-inner {
    min-height: 54px;
  }

  .nav {
    min-height: 70px;
  }

  .brand > span:last-child {
    display: none;
  }

  .brand-mark {
    width: 58px;
    height: 46px;
  }

  .header-call {
    padding-left: 0;
    border-left: 0;
  }

  .header-call small {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-image-wrap {
    inset: 60% 0 0;
  }

  .hero-gradient {
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 58%, rgba(247, 244, 237, 0.8) 70%, transparent 88%);
  }

  .hero-inner {
    min-height: 920px;
    padding-block: 54px;
  }

  h1 {
    font-size: clamp(3rem, 14.8vw, 4.65rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hero-lead {
    margin-block: 24px 28px;
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .local-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: none;
  }

  .choice-section,
  .guide-section,
  .audience-section,
  .school-section,
  .questions-section,
  .local-section,
  .faq-section,
  .service-section,
  .ecosystem-section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
    gap: 24px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .choice-card,
  .choice-card:nth-child(2) {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .choice-card:last-child {
    border-bottom: 0;
  }

  .choice-no {
    margin-bottom: 34px;
  }

  .answer-panel {
    padding: 32px;
    border-radius: 24px 24px 70px 24px;
  }

  .answer-label {
    margin-bottom: 58px;
  }

  .photo-frame,
  .school-photo {
    min-height: 430px;
    border-radius: 20px;
  }

  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    border-radius: 20px;
  }

  .audience-image {
    min-height: 390px;
  }

  .audience-content {
    padding: 30px 24px;
  }

  .audience-content li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .question-columns {
    border-radius: 20px;
  }

  .question-column {
    padding: 26px 22px;
  }

  .research-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-card,
  .ecosystem-card:nth-child(3),
  .ecosystem-card:nth-child(even) {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .area-card {
    padding: 26px;
  }

  .faq-list summary {
    min-height: 100px;
    grid-template-columns: 32px 1fr auto;
    font-size: 0.88rem;
  }

  .faq-list details > p {
    margin-right: 0;
    margin-left: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    padding-block: 20px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .mobile-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    padding: 8px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 7px;
    background: var(--white);
    box-shadow: 0 -8px 28px rgba(18, 35, 31, 0.15);
  }

  .mobile-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--forest);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .mobile-bar a:last-child {
    background: var(--apricot);
    color: var(--ink);
  }
}

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