:root {
  --ink: #193047;
  --ink-soft: #405365;
  --forest: #355c35;
  --forest-dark: #284829;
  --sage: #dfe8d6;
  --sage-light: #f1f5ed;
  --cream: #f7f2e8;
  --sand: #eadbc7;
  --white: #ffffff;
  --line: rgba(25, 48, 71, 0.14);
  --shadow: 0 24px 70px rgba(22, 42, 32, 0.13);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shell: min(1160px, calc(100% - 40px));
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.centered {
  text-align: center;
}

.eyebrow.light {
  color: #dce8d4;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.8vw, 6.15rem);
  max-width: 900px;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.4vw, 4.25rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  color: var(--ink-soft);
}

.section-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.75;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--forest-dark);
  border-radius: 6px;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: var(--ink);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--forest);
  border: 1px solid rgba(53, 92, 53, 0.35);
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--forest-dark);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.site-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  padding: 7px;
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 14px 22px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 30px rgba(53, 92, 53, 0.24);
}

.button-primary:hover {
  background: var(--forest-dark);
}

.button-secondary {
  color: var(--forest-dark);
  background: transparent;
  border-color: rgba(53, 92, 53, 0.42);
}

.button-secondary:hover {
  background: var(--sage-light);
}

.button-text {
  padding-inline: 6px;
  color: var(--forest-dark);
  background: transparent;
}

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

.text-link,
.card-link {
  color: var(--forest-dark);
  font-weight: 700;
  text-decoration: none;
}

.microcopy {
  margin-top: 14px;
  font-size: 0.8rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: var(--cream);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 42%;
  background-image: url("assets/images/family-hero.jpg");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fbf7ef 0%, #fbf7ef 36%, rgba(251, 247, 239, 0.86) 50%, rgba(251, 247, 239, 0.08) 77%),
    linear-gradient(0deg, rgba(255,255,255,0.22), transparent 42%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 790px;
  padding-top: 145px;
  align-items: center;
  grid-template-columns: minmax(0, 760px) 1fr;
}

.hero-copy {
  padding-bottom: 46px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-support {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* Recognition */
.recognition {
  background: var(--white);
}

.recognition h2 {
  text-align: center;
}

.recognition-grid {
  display: grid;
  max-width: 760px;
  margin: 48px auto;
  gap: 12px 18px;
  grid-template-columns: repeat(2, 1fr);
}

.recognition-grid p {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 50px;
  color: var(--ink);
  background: var(--sage-light);
  border-radius: var(--radius-sm);
}

.recognition-grid p::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--forest);
  content: "✓";
  font-weight: 700;
}

.recognition-close {
  max-width: 720px;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  text-align: center;
}

/* Index */
.index-feature {
  background: linear-gradient(135deg, var(--sage-light), #f8f3e8);
}

.index-grid {
  display: grid;
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
}

.check-list {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--forest);
  content: "✓";
  background: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.profile-card {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(53, 92, 53, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.profile-card-top,
.profile-intro,
.dimension {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-card-top {
  padding-bottom: 20px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}

.profile-kicker {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-intro {
  gap: 18px;
  padding: 26px 0;
  justify-content: flex-start;
}

.profile-intro h3 {
  margin-bottom: 6px;
}

.profile-intro p {
  margin-bottom: 0;
}

.profile-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.5rem;
}

.profile-dimensions {
  display: grid;
  gap: 8px;
}

.dimension {
  min-height: 48px;
  padding: 8px 12px;
  background: #fbfcf9;
  border-radius: 9px;
}

.dimension > span:first-child {
  color: var(--ink);
  font-weight: 600;
}

.status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.status-strong,
.status-flourishing {
  color: #2a5a31;
  background: #e4f0df;
}

.status-growing {
  color: #75600d;
  background: #f4ecc4;
}

.status-developing {
  color: #8a5428;
  background: #f5dfcc;
}

.profile-note {
  padding: 20px;
  margin-top: 22px;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.profile-note p {
  margin: 6px 0 0;
  font-size: 0.88rem;
}

/* Guides */
.section-heading {
  display: flex;
  margin-bottom: 42px;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
}

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

.guide-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.guide-card {
  display: flex;
  min-height: 330px;
  padding: 30px;
  flex-direction: column;
  color: inherit;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.guide-card:nth-child(2) {
  background: var(--sage-light);
}

.guide-card:nth-child(3) {
  background: #edf2f5;
}

.guide-card:hover {
  border-color: rgba(53, 92, 53, 0.24);
  box-shadow: 0 18px 42px rgba(25, 48, 71, 0.1);
  transform: translateY(-5px);
}

.guide-number {
  color: var(--forest);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.guide-card h3 {
  margin: 52px 0 18px;
}

.guide-card p {
  margin-bottom: 28px;
}

.card-link {
  margin-top: auto;
}

/* Book */
.book-preview {
  background: var(--cream);
}

.book-grid {
  display: grid;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  grid-template-columns: 0.75fr 1.25fr;
}

.book-art {
  display: grid;
  min-height: 520px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.95), transparent 35%),
    linear-gradient(140deg, var(--sand), #e9efe2);
  border-radius: var(--radius-lg);
}

.book-placeholder {
  display: flex;
  width: min(280px, 76%);
  aspect-ratio: 0.67;
  padding: 30px;
  flex-direction: column;
  justify-content: space-between;
  color: var(--forest-dark);
  background: #fffdfa;
  border: 1px solid rgba(53, 92, 53, 0.18);
  box-shadow: 16px 24px 45px rgba(25, 48, 71, 0.18);
  transform: rotate(2deg);
}

.book-placeholder span,
.book-placeholder small {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.book-placeholder strong {
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  line-height: 1.05;
}

.book-copy .button {
  margin-top: 16px;
}

/* About */
.about-preview {
  background: var(--white);
}

.about-grid {
  display: grid;
  overflow: hidden;
  background: var(--sage-light);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.85fr 1.15fr;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.about-copy {
  padding: clamp(38px, 7vw, 88px);
  align-self: center;
}

/* Closing CTA */
.closing-cta {
  padding: clamp(84px, 10vw, 140px) 0;
  color: var(--white);
  background:
    linear-gradient(rgba(31, 66, 34, 0.88), rgba(31, 66, 34, 0.92)),
    url("assets/images/family-hero.jpg") center / cover;
}

.closing-inner {
  max-width: 920px;
  text-align: center;
}

.closing-inner h2,
.closing-inner p {
  color: var(--white);
}

.closing-inner p {
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  color: rgba(255,255,255,0.8);
  background: #173047;
}

.footer-grid {
  display: grid;
  gap: 30px;
  align-items: end;
  grid-template-columns: 1.2fr 1fr auto;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.site-footer p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.84rem;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: rgba(255,255,255,0.84);
  font-size: 0.82rem;
  text-decoration: none;
}

.copyright {
  white-space: nowrap;
}

/* Modal */
.modal {
  width: min(560px, calc(100% - 32px));
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal::backdrop {
  background: rgba(19, 33, 38, 0.7);
  backdrop-filter: blur(4px);
}

.modal h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.modal p {
  max-width: 470px;
  margin-inline: auto;
}

.modal-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.6rem;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  padding: 4px 8px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
}

.modal-note {
  padding: 14px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.86rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal,
  .question-form,
  .question-form.is-transitioning,
  .question-form.is-entering {
    opacity: 1;
    transform: none;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .site-header {
    position: relative;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--line);
  }

  .nav-shell {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 22px;
    gap: 18px;
    align-items: stretch;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    inset: 0;
    background-image: url("assets/images/hero-family.jpg");
    background-position: center bottom;
    background-size: cover;
    opacity: 0.16;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(251, 247, 239, 0.96) 0%,
        rgba(251, 247, 239, 0.91) 48%,
        rgba(251, 247, 239, 0.84) 100%
      );
  }

  .hero-grid {
    min-height: 680px;
    padding-top: 70px;
    grid-template-columns: 1fr;
  }

  .index-grid,
  .book-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .index-grid {
    gap: 46px;
  }

  .book-art {
    min-height: 430px;
  }

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

  .guide-card {
    min-height: 280px;
  }

  .about-image img {
    min-height: 340px;
  }

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

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .section {
    padding: 70px 0;
  }

  .hero-grid {
    min-height: 660px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-text {
    width: auto;
    align-self: flex-start;
  }

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

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-card {
    padding: 22px;
    border-radius: 20px;
  }

  .profile-card-top {
    gap: 10px;
    align-items: flex-start;
  }

  .dimension {
    gap: 10px;
  }

  .about-grid {
    border-radius: 20px;
  }

  .modal {
    padding: 38px 22px 28px;
  }
}


/* Shared interior-page shell */
.inner-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.inner-page .site-header {
  position: relative;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.inner-page .site-header + main {
  flex: 1;
}

.placeholder-page {
  display: grid;
  min-height: 620px;
  padding: clamp(90px, 12vw, 160px) 20px;
  place-items: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--sage-light));
  text-align: center;
}

.placeholder-card {
  width: min(780px, 100%);
  padding: clamp(42px, 7vw, 78px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(53, 92, 53, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.placeholder-page h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 8vw, 6rem);
}

.placeholder-page .section-lede {
  max-width: 680px;
  margin: 0 auto 34px;
}

.placeholder-page .button {
  min-width: 180px;
}

@media (max-width: 900px) {
  .inner-page .site-header {
    position: relative;
  }
}

@media (max-width: 620px) {
  .placeholder-card {
    padding: 38px 22px;
    border-radius: 20px;
  }

  .placeholder-page .button {
    width: 100%;
  }
}


/* =========================================================
   Resource page
   ========================================================= */

.resource-hero {
  padding: clamp(92px, 12vw, 150px) 0 clamp(72px, 9vw, 110px);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--sage-light));
  text-align: center;
}

.resource-hero-inner {
  max-width: 900px;
}

.resource-hero h1 {
  max-width: 860px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.resource-hero .section-lede {
  max-width: 720px;
  margin: 0 auto;
}

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

.resource-feature-card {
  display: grid;
  overflow: hidden;
  background: var(--sage-light);
  border: 1px solid rgba(53, 92, 53, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.resource-feature-copy {
  padding: clamp(38px, 7vw, 80px);
}

.resource-profile-preview {
  display: flex;
  padding: clamp(34px, 6vw, 64px);
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.75), transparent 25%),
    linear-gradient(145deg, #e9ddca, #dce8d6);
}

.resource-preview-kicker {
  margin-bottom: 20px;
  color: var(--forest-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-dimension-list {
  display: grid;
  gap: 10px;
}

.resource-dimension-list span {
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(53, 92, 53, 0.12);
  border-radius: 10px;
  font-weight: 600;
}

/* =========================================================
   Family Quality of Life Assessment
   ========================================================= */

.assessment-page {
  background: var(--cream);
}

.assessment-main {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding: clamp(50px, 7vw, 90px) 0 clamp(76px, 9vw, 120px);
}

.assessment-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.92), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(223,232,214,.9), transparent 30%),
    linear-gradient(145deg, var(--cream), #eef3e9);
}

.assessment-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.assessment-card {
  min-height: 650px;
  padding: clamp(30px, 6vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(53, 92, 53, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.assessment-view {
  display: none;
}

.assessment-view.is-active {
  display: block;
  animation: assessmentFadeIn 380ms ease both;
}

@keyframes assessmentFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.assessment-welcome,
.results-preview,
.results-header {
  text-align: center;
}

.assessment-symbol,
.preview-symbol,
.results-symbol {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.65rem;
}

.assessment-welcome h1,
.results-preview > h1,
.results-header h1 {
  max-width: 790px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.assessment-intro,
.preview-description,
.results-overall {
  max-width: 730px;
  margin: 0 auto 32px;
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
}

.assessment-facts {
  display: grid;
  max-width: 700px;
  margin: 40px auto;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.assessment-facts div {
  padding: 22px 16px;
  background: var(--sage-light);
  border-radius: 14px;
}

.assessment-facts strong,
.assessment-facts span {
  display: block;
}

.assessment-facts strong {
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.assessment-facts span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.assessment-reassurance {
  max-width: 720px;
  padding: 20px 24px;
  margin: 0 auto 30px;
  background: var(--cream);
  border-radius: 14px;
  text-align: left;
}

.assessment-reassurance p {
  margin-bottom: 8px;
}

.assessment-reassurance p:last-child {
  margin-bottom: 0;
}

.assessment-start {
  min-width: 230px;
}

.assessment-resume-link {
  display: block;
  padding: 8px;
  margin: 14px auto 0;
  color: var(--forest-dark);
  background: transparent;
  border: 0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.assessment-progress-wrap {
  margin-bottom: clamp(38px, 6vw, 66px);
}

.assessment-progress-copy {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-progress {
  height: 9px;
  overflow: hidden;
  background: #e8ece4;
  border-radius: 999px;
}

.assessment-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--forest);
  border-radius: inherit;
  transition: width 260ms ease;
}

.question-form {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.question-form.is-transitioning {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.question-form.is-entering {
  opacity: 0;
  transform: translateY(15px);
}

.question-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.question-dimension {
  margin-bottom: 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.question-prompt {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
}

.question-guidance {
  margin-bottom: 30px;
}

.answer-options {
  display: grid;
  gap: 10px;
}

.answer-option {
  display: grid;
  min-height: 66px;
  padding: 12px 18px;
  gap: 14px;
  align-items: center;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  grid-template-columns: auto 1fr;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.answer-option:hover {
  border-color: rgba(53, 92, 53, 0.4);
  transform: translateY(-1px);
}

.answer-option.is-selected {
  background: var(--sage-light);
  border-color: var(--forest);
  box-shadow: 0 8px 24px rgba(53, 92, 53, 0.12);
}

.answer-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-option:focus-within {
  outline: 3px solid rgba(53, 92, 53, 0.2);
  outline-offset: 2px;
}

.answer-option-marker {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--forest-dark);
  background: var(--white);
  border: 1px solid rgba(53, 92, 53, 0.25);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
}

.answer-option.is-selected .answer-option-marker {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.answer-option-label {
  color: var(--ink);
  font-weight: 600;
}

.question-error {
  padding: 12px 14px;
  margin: 16px 0 0;
  color: #8b2d2d;
  background: #fff1f1;
  border-radius: 8px;
  font-size: 0.88rem;
}

.assessment-controls {
  display: flex;
  margin-top: 34px;
  gap: 14px;
  justify-content: space-between;
}

.assessment-controls-single {
  justify-content: flex-start;
}

.assessment-controls .button {
  min-width: 140px;
}

.assessment-controls button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.results-preview > h1 span {
  color: var(--forest);
}

.preview-lock-card {
  display: grid;
  max-width: 760px;
  padding: 24px;
  margin: 36px auto 28px;
  gap: 18px;
  align-items: center;
  background: var(--sage-light);
  border-radius: 16px;
  grid-template-columns: auto 1fr;
  text-align: left;
}

.preview-lock-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.preview-lock-card p {
  margin-bottom: 0;
}

.lock-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
}

.assessment-signup {
  max-width: 760px;
  padding: clamp(24px, 4vw, 36px);
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(53, 92, 53, 0.14);
  border-radius: 16px;
  text-align: left;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 0.8fr 1.2fr;
}

.form-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-field input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(53, 92, 53, 0.12);
  outline: 0;
}

.consent-field {
  display: grid;
  margin: 20px 0;
  gap: 12px;
  align-items: start;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 0.86rem;
  grid-template-columns: auto 1fr;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.signup-submit {
  width: 100%;
}

.signup-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-fine-print {
  margin: 12px 0 0;
  font-size: 0.75rem;
  text-align: center;
}

.form-status {
  min-height: 0;
  margin: 0 0 12px;
  font-size: 0.86rem;
}

.form-status.error {
  padding: 12px 14px;
  color: #8b2d2d;
  background: #fff1f1;
  border-radius: 8px;
}

.results-header {
  margin-bottom: 42px;
}

.results-highlight-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}

.results-highlight {
  padding: 30px;
  background: var(--sage-light);
  border-radius: 18px;
}

.results-highlight-opportunity {
  background: var(--cream);
}

.highlight-label {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.results-highlight h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.results-highlight p {
  margin-bottom: 0;
}

.dimension-results-section {
  padding-top: clamp(62px, 8vw, 90px);
}

.results-section-heading {
  display: grid;
  margin-bottom: 28px;
  gap: 30px;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
}

.results-section-heading h2 {
  margin-bottom: 0;
}

.results-section-heading > p {
  margin-bottom: 6px;
}

.dimension-results {
  display: grid;
  gap: 14px;
}

.dimension-result-card {
  padding: 24px;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.dimension-result-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.dimension-result-heading h3 {
  margin-bottom: 0;
}

.dimension-result-question {
  margin: 10px 0 8px;
  color: var(--ink);
  font-weight: 700;
}

.dimension-result-card p:last-child {
  margin-bottom: 0;
}

.results-next-step {
  padding: clamp(30px, 5vw, 50px);
  margin-top: 48px;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  border-radius: 20px;
  text-align: center;
}

.results-next-step h2 {
  max-width: 720px;
  margin-inline: auto;
}

.results-next-step > p {
  max-width: 700px;
  margin-inline: auto;
}

.reflection-prompt {
  max-width: 680px;
  padding: 18px 22px;
  margin: 26px auto 0;
  background: var(--white);
  border-left: 4px solid var(--forest);
  border-radius: 8px;
  text-align: left;
}

.reflection-prompt p {
  margin: 6px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.results-actions {
  display: flex;
  margin-top: 34px;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-note {
  max-width: 660px;
  margin: 14px auto 0;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 900px) {
  .resource-feature-card,
  .results-section-heading {
    grid-template-columns: 1fr;
  }

  .resource-profile-preview {
    min-height: 420px;
  }
}

@media (max-width: 700px) {
  .assessment-card {
    min-height: auto;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .assessment-facts,
  .results-highlight-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .assessment-facts {
    gap: 8px;
  }

  .assessment-facts div {
    display: grid;
    gap: 12px;
    align-items: center;
    grid-template-columns: 50px 1fr;
    text-align: left;
  }

  .assessment-controls {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .assessment-controls .button,
  .results-actions .button {
    width: 100%;
  }

  .preview-lock-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lock-icon {
    margin: 0 auto;
  }

  .dimension-result-heading {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .answer-option {
    min-height: 60px;
    padding: 10px 12px;
  }

  .answer-option-marker {
    width: 30px;
    height: 30px;
  }

  .resource-feature-copy,
  .resource-profile-preview {
    padding: 30px 22px;
  }
}


/* =========================================================
   Assessment credibility, dimension definitions, and ratings
   ========================================================= */

.assessment-research-note {
  max-width: 760px;
  padding: 20px 24px;
  margin: 0 auto 34px;
  background: rgba(241, 245, 237, 0.82);
  border-left: 4px solid var(--forest);
  border-radius: 4px 14px 14px 4px;
  text-align: left;
}

.assessment-research-note p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.assessment-research-note .research-note-label {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dimension-overview {
  max-width: 820px;
  margin: 46px auto 34px;
  text-align: center;
}

.dimension-overview h2 {
  margin-bottom: 26px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.dimension-overview-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  text-align: left;
}

.dimension-overview-grid article {
  padding: 16px 18px;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.dimension-overview-grid article:last-child {
  grid-column: 1 / -1;
}

.dimension-overview-grid strong,
.dimension-overview-grid span {
  display: block;
}

.dimension-overview-grid strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.dimension-overview-grid span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.question-definition {
  max-width: 720px;
  padding-left: 14px;
  margin: -4px 0 18px;
  color: var(--ink-soft);
  border-left: 3px solid var(--sage);
  font-size: 0.92rem;
  line-height: 1.6;
}

.rating-legend {
  padding: clamp(26px, 5vw, 42px);
  margin: 0 0 34px;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.rating-legend-heading {
  display: grid;
  margin-bottom: 24px;
  gap: 28px;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
}

.rating-legend-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.rating-legend-heading > p {
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.rating-legend-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rating-legend-grid article {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.rating-legend-grid p {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.dimension-result-definition {
  padding-left: 12px;
  margin: 10px 0 12px;
  color: var(--ink-soft);
  border-left: 3px solid var(--sage);
  font-size: 0.86rem;
}

@media (max-width: 850px) {
  .rating-legend-heading,
  .rating-legend-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rating-legend-heading > p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .dimension-overview-grid,
  .rating-legend-heading,
  .rating-legend-grid {
    grid-template-columns: 1fr;
  }

  .dimension-overview-grid article:last-child,
  .rating-legend-heading > p {
    grid-column: auto;
  }

  .assessment-research-note {
    padding: 18px;
  }
}


/* =========================================================
   Homepage worldschooling positioning
   ========================================================= */

.worldschooling-feature {
  background:
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.85), transparent 24%),
    linear-gradient(145deg, #f7f2e8, #edf3e9);
}

.worldschooling-heading {
  max-width: 880px;
  margin: 0 auto 52px;
  text-align: center;
}

.worldschooling-heading h2 {
  margin-inline: auto;
}

.worldschooling-heading .section-lede {
  margin-bottom: 18px;
}

.worldschooling-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
}

.worldschooling-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.worldschooling-card {
  min-height: 310px;
  padding: 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(53,92,53,.14);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(25,48,71,.07);
}

.worldschooling-card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.worldschooling-card h3 {
  margin-bottom: 16px;
}

.worldschooling-card p {
  margin-bottom: 0;
}

.worldschooling-cta {
  display: grid;
  padding: clamp(28px, 5vw, 48px);
  margin-top: 24px;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(53,92,53,.14);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(25,48,71,.08);
  grid-template-columns: 1.2fr auto;
}

.worldschooling-cta h3 {
  margin-bottom: 10px;
}

.worldschooling-cta p:last-child {
  margin-bottom: 0;
}

.worldschooling-cta .button {
  max-width: 320px;
}

.closing-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.7);
}

.button-outline-light:hover {
  background: rgba(255,255,255,.12);
}

@media (max-width: 900px) {
  .worldschooling-grid {
    grid-template-columns: 1fr;
  }

  .worldschooling-card {
    min-height: auto;
  }

  .worldschooling-card-number {
    margin-bottom: 24px;
  }

  .worldschooling-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .worldschooling-cta .button,
  .closing-actions .button {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   Worldschooling Fit Reflection
   ========================================================= */

.worldschooling-fit-page {
  background: var(--cream);
}

.worldschooling-fit-main {
  position: relative;
  flex: 1;
  overflow: hidden;
  padding: clamp(50px, 7vw, 90px) 0 clamp(76px, 9vw, 120px);
}

.worldschooling-fit-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.92), transparent 24%),
    radial-gradient(circle at 88% 28%, rgba(223,232,214,.9), transparent 30%),
    linear-gradient(145deg, var(--cream), #eef3e9);
}

.worldschooling-fit-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.worldschooling-fit-card {
  min-height: 650px;
  padding: clamp(30px, 6vw, 64px);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(53,92,53,.14);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.worldschooling-fit-view {
  display: none;
}

.worldschooling-fit-view.is-active {
  display: block;
  animation: assessmentFadeIn 380ms ease both;
}

.worldschooling-fit-welcome,
.worldschooling-fit-results-header {
  text-align: center;
}

.worldschooling-fit-symbol {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.65rem;
}

.worldschooling-fit-welcome h1,
.worldschooling-fit-results-header h1 {
  max-width: 790px;
  margin-inline: auto;
  font-size: clamp(2.8rem, 7vw, 5.3rem);
}

.worldschooling-fit-intro,
.worldschooling-fit-result-summary {
  max-width: 740px;
  margin: 0 auto 32px;
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
}

.worldschooling-fit-facts {
  display: grid;
  max-width: 700px;
  margin: 40px auto;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.worldschooling-fit-facts div {
  padding: 22px 16px;
  background: var(--sage-light);
  border-radius: 14px;
}

.worldschooling-fit-facts strong,
.worldschooling-fit-facts span {
  display: block;
}

.worldschooling-fit-facts strong {
  color: var(--forest-dark);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.worldschooling-fit-facts span {
  color: var(--ink-soft);
  font-size: .78rem;
}

.worldschooling-fit-reassurance {
  max-width: 740px;
  padding: 20px 24px;
  margin: 0 auto 30px;
  background: var(--cream);
  border-radius: 14px;
  text-align: left;
}

.worldschooling-fit-reassurance p {
  margin-bottom: 8px;
}

.worldschooling-fit-reassurance p:last-child {
  margin-bottom: 0;
}

.worldschooling-fit-progress-wrap {
  margin-bottom: clamp(38px, 6vw, 66px);
}

.worldschooling-fit-progress-copy {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.worldschooling-fit-progress {
  height: 9px;
  overflow: hidden;
  background: #e8ece4;
  border-radius: 999px;
}

.worldschooling-fit-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--forest);
  border-radius: inherit;
  transition: width 260ms ease;
}

.worldschooling-fit-question-form {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.worldschooling-fit-question-form.is-transitioning {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
}

.worldschooling-fit-question-form.is-entering {
  opacity: 0;
  transform: translateY(15px);
}

.worldschooling-fit-result-highlights {
  display: grid;
  gap: 18px;
  margin-top: 38px;
  grid-template-columns: repeat(2, 1fr);
}

.fit-highlight {
  padding: 30px;
  background: var(--sage-light);
  border-radius: 18px;
}

.fit-highlight-question {
  background: var(--cream);
}

.fit-highlight h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.fit-highlight p {
  margin-bottom: 0;
}

.fit-category-section {
  padding-top: clamp(62px, 8vw, 90px);
}

.fit-category-results {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-category-card {
  padding: 24px;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.fit-category-card-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.fit-category-card-heading h3 {
  margin-bottom: 0;
}

.fit-category-label {
  padding: 6px 10px;
  color: var(--forest-dark);
  background: var(--sage-light);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  white-space: nowrap;
}

.fit-category-definition {
  padding-left: 12px;
  margin: 14px 0 12px;
  border-left: 3px solid var(--sage);
  font-size: .86rem;
}

.fit-category-card p:last-child {
  margin-bottom: 0;
}

.fit-next-step,
.fit-deeper-question {
  padding: clamp(30px, 5vw, 50px);
  margin-top: 48px;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  border-radius: 20px;
  text-align: center;
}

.fit-next-step h2,
.fit-deeper-question h2 {
  max-width: 720px;
  margin-inline: auto;
}

.fit-next-step > p,
.fit-deeper-question > p {
  max-width: 700px;
  margin-inline: auto;
}

.fit-deeper-question {
  background: var(--cream);
}

.fit-deeper-question .button {
  margin-top: 12px;
}

.fit-results-actions {
  display: flex;
  margin-top: 28px;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.resource-feature-worldschooling {
  margin-bottom: 28px;
}

.worldschooling-fit-preview {
  background:
    radial-gradient(circle at 80% 18%, rgba(255,255,255,.75), transparent 25%),
    linear-gradient(145deg, #e5eee1, #e6ddd0);
}

@media (max-width: 760px) {
  .worldschooling-fit-card {
    min-height: auto;
    padding: 30px 20px;
    border-radius: 20px;
  }

  .worldschooling-fit-facts,
  .worldschooling-fit-result-highlights,
  .fit-category-results {
    grid-template-columns: 1fr;
  }

  .worldschooling-fit-facts {
    gap: 8px;
  }

  .worldschooling-fit-facts div {
    display: grid;
    gap: 12px;
    align-items: center;
    grid-template-columns: 50px 1fr;
    text-align: left;
  }

  .fit-results-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fit-results-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .worldschooling-fit-question-form,
  .worldschooling-fit-question-form.is-transitioning,
  .worldschooling-fit-question-form.is-entering {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   Shared component refinements
   ========================================================= */

.brand small {
  max-width: 330px;
  line-height: 1.35;
}

.site-nav {
  gap: clamp(18px, 2.3vw, 34px);
}

@media (max-width: 1040px) {
  .brand small {
    max-width: 220px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.78rem;
  }
}

@media (max-width: 860px) {
  .brand small {
    max-width: 270px;
  }
}


/* =========================================================
   Learn content hub
   ========================================================= */

.learn-page {
  background: var(--white);
}

.learn-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(155px, 16vw, 220px) 0 clamp(86px, 10vw, 140px);
  background:
    radial-gradient(circle at 88% 8%, rgba(223,232,214,.9), transparent 28%),
    linear-gradient(145deg, #fbf7ef, #f1f5ed);
}

.learn-hero-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
}

.learn-hero-copy h1 {
  max-width: 790px;
}

.learn-hero-copy > p {
  max-width: 720px;
}

.learn-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.learn-hero-card {
  padding: clamp(28px, 4vw, 42px);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.learn-hero-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
}

.learn-jump-list {
  display: grid;
  margin-top: 26px;
  gap: 8px;
}

.learn-jump-list a {
  display: flex;
  padding: 13px 14px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: var(--sage-light);
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}

.learn-jump-list a::after {
  color: var(--forest);
  content: "↓";
}

.learn-jump-list a:hover {
  background: var(--sage);
}

.learn-featured {
  background: var(--white);
}

.learn-featured-card {
  display: grid;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  border: 1px solid rgba(53,92,53,.13);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 58px rgba(25,48,71,.08);
  grid-template-columns: 1.25fr .75fr;
}

.learn-featured-copy {
  padding: clamp(34px, 6vw, 68px);
}

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

.learn-featured-copy > p {
  max-width: 700px;
}

.learn-featured-actions {
  display: flex;
  margin-top: 28px;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.learn-featured-actions span {
  color: var(--ink-soft);
  font-size: .8rem;
}

.learn-featured-prompt {
  display: flex;
  padding: clamp(34px, 5vw, 56px);
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 14%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(145deg, #193047, #355c35);
}

.learn-featured-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: .76rem;
  font-weight: 700;
}

.learn-featured-prompt blockquote {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.35;
}

.learn-featured-prompt p {
  margin-bottom: 0;
  color: rgba(255,255,255,.74);
}

.learn-library {
  background: #f9faf7;
}

.learn-section-intro {
  max-width: 420px;
  margin-bottom: 8px;
}

.learn-question-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.learn-question-card {
  display: flex;
  min-height: 330px;
  padding: clamp(26px, 4vw, 40px);
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  scroll-margin-top: 110px;
}

.learn-question-card:hover {
  border-color: rgba(53,92,53,.32);
  box-shadow: 0 18px 42px rgba(25,48,71,.08);
  transform: translateY(-4px);
}

.learn-question-top {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
  justify-content: space-between;
}

.learn-question-number {
  color: var(--forest);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.learn-question-tag {
  padding: 6px 10px;
  color: var(--forest-dark);
  background: var(--sage-light);
  border-radius: 999px;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.learn-question-card h3 {
  max-width: 520px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}

.learn-question-card p {
  margin-bottom: 26px;
}

.learn-question-card .card-link {
  margin-top: auto;
}

.learn-pathways {
  background: var(--white);
}

.learn-pathways-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.learn-pathway-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learn-pathway-card {
  display: flex;
  min-height: 410px;
  padding: 30px;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.learn-pathway-card:nth-child(2) {
  background: var(--sage-light);
}

.learn-pathway-card:nth-child(3) {
  background: #edf1f4;
}

.learn-pathway-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.15rem;
}

.learn-pathway-card h3 {
  margin-bottom: 14px;
}

.learn-pathway-card p:not(.eyebrow) {
  margin-bottom: 28px;
}

.learn-pathway-card .button {
  width: 100%;
  margin-top: auto;
}

.learn-closing {
  padding: clamp(86px, 10vw, 140px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.1), transparent 25%),
    linear-gradient(145deg, #193047, #355c35);
}

.learn-closing-inner {
  max-width: 850px;
}

.learn-closing h2 {
  margin-inline: auto;
  color: var(--white);
}

.learn-closing p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .learn-hero-grid,
  .learn-featured-card,
  .learn-pathway-grid {
    grid-template-columns: 1fr;
  }

  .learn-hero-card {
    max-width: 680px;
  }

  .learn-featured-prompt {
    min-height: 360px;
  }

  .learn-pathway-card {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .learn-question-grid {
    grid-template-columns: 1fr;
  }

  .learn-question-card {
    min-height: auto;
  }

  .learn-hero-actions,
  .learn-featured-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .learn-hero-actions .button,
  .learn-featured-actions .button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .learn-featured-copy,
  .learn-featured-prompt,
  .learn-question-card,
  .learn-pathway-card {
    padding: 24px;
  }

  .learn-question-top {
    margin-bottom: 28px;
  }
}


/* =========================================================
   Premium cornerstone guide
   ========================================================= */

.guide-page {
  background: #fbfaf6;
}

.guide-article {
  overflow: hidden;
}

.guide-hero {
  position: relative;
  padding: clamp(150px, 16vw, 220px) 0 clamp(78px, 10vw, 130px);
  background:
    radial-gradient(circle at 88% 10%, rgba(223,232,214,.95), transparent 30%),
    radial-gradient(circle at 8% 100%, rgba(234,219,199,.75), transparent 30%),
    linear-gradient(145deg, #fbf7ef, #f2f6ee);
}

.guide-hero-inner {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
}

.guide-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: .76rem;
}

.guide-breadcrumb a {
  color: var(--forest-dark);
  font-weight: 700;
  text-decoration: none;
}

.guide-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
}

.guide-deck {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2.1vw, 1.62rem);
  line-height: 1.6;
}

.guide-meta {
  display: flex;
  margin-top: 32px;
  gap: 12px 22px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 600;
}

.guide-meta span {
  position: relative;
}

.guide-meta span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -13px;
  width: 3px;
  height: 3px;
  content: "";
  background: var(--forest);
  border-radius: 50%;
}

.guide-hero-summary {
  align-self: end;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.guide-hero-summary p:not(.eyebrow) {
  font-size: 1rem;
}

.guide-hero-summary strong {
  display: block;
  padding-top: 18px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
}

.guide-layout {
  display: grid;
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(90px, 10vw, 150px);
  gap: clamp(46px, 7vw, 90px);
  align-items: start;
  grid-template-columns: 230px minmax(0, 780px);
  justify-content: center;
}

.guide-toc {
  position: sticky;
  top: 28px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.guide-toc-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.guide-toc nav {
  display: grid;
  gap: 2px;
}

.guide-toc a {
  padding: 7px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(25,48,71,.07);
  font-size: .75rem;
  line-height: 1.35;
  text-decoration: none;
}

.guide-toc a:hover {
  color: var(--forest-dark);
}

.guide-content {
  min-width: 0;
}

.guide-content > section {
  padding-top: 42px;
  margin-top: 42px;
  scroll-margin-top: 30px;
  border-top: 1px solid var(--line);
}

.guide-content > section:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.guide-content h2 {
  max-width: 740px;
  font-size: clamp(2.2rem, 4.2vw, 3.7rem);
}

.guide-content h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.guide-content p,
.guide-content li {
  font-size: 1.04rem;
  line-height: 1.82;
}

.guide-content p {
  max-width: 740px;
}

.guide-opening-line {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem) !important;
  line-height: 1.2 !important;
}

.guide-section-number {
  margin-bottom: 12px;
  color: var(--forest);
  font-size: .74rem !important;
  font-weight: 700;
  letter-spacing: .14em;
}

.guide-pull-quote {
  padding: clamp(26px, 5vw, 48px);
  margin: 38px 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(145deg, #193047, #355c35);
  border-radius: var(--radius-md);
}

.guide-pull-quote blockquote {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  line-height: 1.35;
}

.guide-pull-quote-small blockquote {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.guide-reflection {
  display: grid;
  padding: clamp(26px, 5vw, 42px);
  margin: 48px 0;
  gap: 22px;
  align-items: start;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  grid-template-columns: auto 1fr;
}

.guide-callout-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
}

.guide-reflection h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.guide-reflection p:last-child {
  margin-bottom: 0;
}

.guide-definition-grid,
.guide-cost-grid,
.guide-traits,
.guide-outcome-grid {
  display: grid;
  margin: 34px 0;
  gap: 14px;
}

.guide-definition-grid,
.guide-cost-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-definition-grid article,
.guide-cost-grid article,
.guide-traits article,
.guide-outcome-grid article,
.guide-related-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.guide-definition-grid span,
.guide-related-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.guide-definition-grid p,
.guide-cost-grid li,
.guide-traits p,
.guide-outcome-grid p,
.guide-related-grid p {
  font-size: .88rem;
  line-height: 1.65;
}

.guide-cost-grid ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.guide-question-box,
.guide-warning {
  padding: clamp(24px, 4vw, 36px);
  margin: 34px 0;
  background: var(--cream);
  border-left: 4px solid var(--forest);
  border-radius: 4px 16px 16px 4px;
}

.guide-question-box ul {
  padding-left: 22px;
  margin-bottom: 0;
}

.guide-question-box li {
  padding: 5px 0;
}

.guide-warning {
  background: #f6eadc;
  border-left-color: #b47a32;
}

.guide-warning .eyebrow {
  color: #8b5a22;
}

.guide-warning p:last-child {
  margin-bottom: 0;
}

.guide-inline-cta {
  display: grid;
  padding: clamp(28px, 5vw, 46px);
  margin: 52px 0;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, var(--sage-light), var(--cream));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 1fr auto;
}

.guide-inline-cta h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
}

.guide-inline-cta p:last-child {
  margin-bottom: 0;
}

.guide-balance-card {
  display: grid;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 1fr 1fr;
}

.guide-balance-card > div {
  padding: clamp(26px, 4vw, 38px);
  background: var(--sage-light);
}

.guide-balance-card > div:last-child {
  background: var(--cream);
}

.guide-balance-card p:last-child {
  margin-bottom: 0;
  font-size: .92rem;
}

.guide-readiness-list,
.guide-wait-list,
.guide-decision-framework {
  display: grid;
  margin: 34px 0;
  gap: 12px;
}

.guide-readiness-list article,
.guide-decision-framework article {
  display: grid;
  padding: 22px;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  grid-template-columns: auto 1fr;
}

.guide-readiness-list article > span,
.guide-decision-framework article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
}

.guide-readiness-list h3,
.guide-decision-framework h3 {
  margin-bottom: 6px;
}

.guide-readiness-list p,
.guide-decision-framework p {
  margin-bottom: 0;
  font-size: .9rem;
}

.guide-traits,
.guide-outcome-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-wait-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.guide-wait-list article:first-child {
  border-top: 1px solid var(--line);
}

.guide-wait-list p {
  margin-bottom: 0;
}

.guide-outcome-grid article:nth-child(1) {
  background: var(--sage-light);
}

.guide-outcome-grid article:nth-child(2) {
  background: #edf1f4;
}

.guide-outcome-grid article:nth-child(3) {
  background: var(--cream);
}

.guide-outcome-grid article:nth-child(4) {
  background: #f5efea;
}

.guide-outcome-grid .eyebrow {
  font-size: .66rem;
}

.guide-conclusion {
  padding: clamp(34px, 6vw, 58px) !important;
  margin-top: 64px !important;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.12), transparent 27%),
    linear-gradient(145deg, #193047, #355c35);
  border: 0 !important;
  border-radius: var(--radius-lg);
}

.guide-conclusion h2,
.guide-conclusion p {
  color: var(--white);
}

.guide-conclusion p {
  color: rgba(255,255,255,.78);
}

.guide-conclusion-emphasis {
  padding-top: 24px;
  margin-top: 28px;
  color: var(--white) !important;
  border-top: 1px solid rgba(255,255,255,.22);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem) !important;
  line-height: 1.5 !important;
}

.guide-next-steps {
  padding-top: 70px !important;
  margin-top: 70px !important;
  text-align: center;
}

.guide-next-steps > h2 {
  margin-inline: auto;
}

.guide-next-step-grid {
  display: grid;
  margin-top: 38px;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  text-align: left;
}

.guide-next-step-grid article {
  display: flex;
  min-height: 360px;
  padding: 26px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.guide-next-step-grid article > span {
  margin-bottom: 34px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
}

.guide-next-step-grid p {
  font-size: .88rem;
}

.guide-next-step-grid .button {
  width: 100%;
  margin-top: auto;
}

.guide-related {
  padding-top: 70px !important;
}

.guide-related-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-toc {
    position: static;
  }

  .guide-toc nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .guide-hero-inner,
  .guide-definition-grid,
  .guide-cost-grid,
  .guide-next-step-grid,
  .guide-related-grid {
    grid-template-columns: 1fr;
  }

  .guide-balance-card,
  .guide-traits,
  .guide-outcome-grid {
    grid-template-columns: 1fr;
  }

  .guide-inline-cta {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .guide-inline-cta .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .guide-toc nav {
    grid-template-columns: 1fr;
  }

  .guide-reflection,
  .guide-readiness-list article,
  .guide-decision-framework article {
    grid-template-columns: 1fr;
  }

  .guide-hero-summary,
  .guide-question-box,
  .guide-warning,
  .guide-conclusion,
  .guide-next-step-grid article,
  .guide-definition-grid article,
  .guide-cost-grid article,
  .guide-traits article,
  .guide-outcome-grid article {
    padding: 22px;
  }

  .guide-meta span:not(:last-child)::after {
    display: none;
  }

  .guide-meta {
    flex-direction: column;
  }
}




/* =========================================================
   Mission-led About page
   ========================================================= */

.about-page {
  background: var(--white);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(155px, 16vw, 220px) 0 clamp(90px, 10vw, 145px);
  background:
    radial-gradient(circle at 87% 10%, rgba(223,232,214,.95), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(234,219,199,.7), transparent 28%),
    linear-gradient(145deg, #fbf7ef, #f2f6ee);
}

.about-hero-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: end;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
}

.about-hero-copy h1 {
  max-width: 850px;
}

.about-hero-lede {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.about-hero-copy > p {
  max-width: 740px;
}

.about-hero-actions,
.about-closing-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-hero-principle {
  padding: clamp(28px, 5vw, 46px);
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about-principle-mark {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 1.15rem;
}

.about-hero-principle blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.about-question {
  background: var(--white);
}

.about-question-inner {
  max-width: 900px;
  text-align: center;
}

.about-question-inner h2 {
  margin-inline: auto;
}

.about-question-inner p {
  max-width: 780px;
  margin-inline: auto;
}

.about-foundation {
  background: #f9faf7;
}

.about-section-intro {
  max-width: 440px;
  margin-bottom: 8px;
}

.about-foundation-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-foundation-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.about-card-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 700;
}

.about-foundation-card h3 {
  margin-bottom: 14px;
}

.about-foundation-card p {
  margin-bottom: 0;
}

.about-patterns {
  background:
    radial-gradient(circle at 90% 12%, rgba(255,255,255,.1), transparent 25%),
    linear-gradient(145deg, #193047, #355c35);
}

.about-patterns-grid {
  display: grid;
  gap: clamp(50px, 8vw, 96px);
  align-items: start;
  grid-template-columns: .8fr 1.2fr;
}

.about-patterns-copy {
  position: sticky;
  top: 40px;
}

.about-patterns-copy .eyebrow {
  color: #dce8d4;
}

.about-patterns-copy h2 {
  color: var(--white);
}

.about-patterns-copy p {
  color: rgba(255,255,255,.72);
}

.about-pattern-list {
  display: grid;
}

.about-pattern-list article {
  display: grid;
  padding: 30px 0;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  grid-template-columns: auto 1fr;
}

.about-pattern-list article:first-child {
  padding-top: 0;
}

.about-pattern-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}

.about-pattern-list h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.about-pattern-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

.about-approach {
  background: var(--cream);
}

.about-approach-heading,
.about-surprises-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-approach-heading h2,
.about-surprises-heading h2 {
  margin-inline: auto;
}

.about-approach-heading p {
  margin-inline: auto;
}

.about-approach-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-approach-grid article {
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius-md);
}

.about-approach-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--forest);
  background: var(--sage-light);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.about-approach-grid p {
  margin-bottom: 0;
}

.about-resources {
  background: var(--white);
}

.about-resource-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-resource-card {
  display: flex;
  min-height: 330px;
  padding: clamp(28px, 4vw, 40px);
  flex-direction: column;
  color: inherit;
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.about-resource-card:hover {
  border-color: rgba(53,92,53,.32);
  box-shadow: 0 18px 42px rgba(25,48,71,.08);
  transform: translateY(-4px);
}

.about-resource-type {
  display: block;
  margin-bottom: 38px;
  color: var(--forest);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-resource-card p {
  margin-bottom: 28px;
}

.about-resource-card .card-link {
  margin-top: auto;
}

.about-surprises {
  background: var(--sage-light);
}

.about-surprises-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-surprises-grid article {
  min-height: 360px;
  padding: clamp(28px, 4vw, 40px);
  background: var(--white);
  border-radius: var(--radius-md);
}

.about-surprises-grid article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.about-surprises-grid h3 {
  margin-bottom: 16px;
}

.about-surprises-grid p {
  margin-bottom: 0;
}

.about-creators {
  background: var(--white);
}

.about-creators-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
  grid-template-columns: .72fr 1.28fr;
}

.about-creators-heading {
  position: sticky;
  top: 40px;
}

.about-creators-copy {
  max-width: 720px;
}

.about-creators-copy p {
  font-size: 1.03rem;
  line-height: 1.82;
}

.about-creators-emphasis {
  padding: 24px 0 0 24px;
  margin-top: 28px;
  color: var(--ink) !important;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem) !important;
  line-height: 1.55 !important;
}

.about-closing {
  padding: clamp(90px, 11vw, 150px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.1), transparent 25%),
    linear-gradient(145deg, #193047, #355c35);
}

.about-closing-inner {
  max-width: 880px;
}

.about-closing h2 {
  margin-inline: auto;
  color: var(--white);
}

.about-closing p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,.76);
  font-size: 1.06rem;
}

.about-closing-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .about-hero-grid,
  .about-patterns-grid,
  .about-creators-grid {
    grid-template-columns: 1fr;
  }

  .about-patterns-copy,
  .about-creators-heading {
    position: static;
  }

  .about-foundation-grid,
  .about-approach-grid,
  .about-resource-grid,
  .about-surprises-grid {
    grid-template-columns: 1fr;
  }

  .about-foundation-card,
  .about-resource-card,
  .about-surprises-grid article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .about-hero-actions,
  .about-closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-hero-actions .button,
  .about-closing-actions .button {
    width: 100%;
  }

  .about-hero-principle,
  .about-foundation-card,
  .about-approach-grid article,
  .about-resource-card,
  .about-surprises-grid article {
    padding: 24px;
  }

  .about-pattern-list article {
    grid-template-columns: 1fr;
  }

  .about-pattern-list article > span {
    width: 38px;
    height: 38px;
  }
}




/* =========================================================
   Premium Book page
   ========================================================= */

.book-page {
  background: var(--white);
}

.book-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(150px, 16vw, 220px) 0 clamp(90px, 10vw, 145px);
  background:
    radial-gradient(circle at 88% 12%, rgba(223,232,214,.93), transparent 31%),
    radial-gradient(circle at 5% 100%, rgba(234,219,199,.75), transparent 28%),
    linear-gradient(145deg, #fbf7ef, #f2f6ee);
}

.book-hero-grid {
  display: grid;
  gap: clamp(56px, 9vw, 110px);
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
}

.book-hero-copy h1 {
  max-width: 870px;
  font-size: clamp(3.15rem, 6.4vw, 5.9rem);
}

.book-hero-lede {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(1.17rem, 2vw, 1.48rem);
  line-height: 1.7;
}

.book-hero-copy > p {
  max-width: 740px;
}

.book-hero-actions {
  display: flex;
  margin-top: 30px;
  gap: 14px;
  flex-wrap: wrap;
}

.book-hero-details {
  display: flex;
  padding-top: 26px;
  margin: 34px 0 0;
  gap: 22px 42px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.book-hero-details div {
  min-width: 120px;
}

.book-hero-details dt {
  margin-bottom: 4px;
  color: var(--ink-soft);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.book-hero-details dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.book-cover-area {
  max-width: 430px;
  justify-self: center;
}

.book-cover-frame {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(25,48,71,.12);
  border-radius: 8px 24px 24px 8px;
  box-shadow: 0 34px 75px rgba(25,48,71,.21);
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
}

.book-cover-frame::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 12px;
  width: 8px;
  content: "";
  background: linear-gradient(90deg, rgba(25,48,71,.2), transparent);
  border-radius: 3px;
}

.book-cover-image {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 3px 10px 10px 3px;
}

.book-cover-note {
  max-width: 330px;
  margin: 22px auto 0;
  text-align: center;
  font-size: .75rem;
}

.book-origin {
  background: var(--white);
}

.book-origin-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
  grid-template-columns: .8fr 1.2fr;
}

.book-origin-heading {
  position: sticky;
  top: 40px;
}

.book-origin-copy {
  max-width: 730px;
}

.book-origin-copy > p {
  font-size: 1.03rem;
  line-height: 1.82;
}

.book-question-list {
  padding: clamp(24px, 4vw, 36px);
  margin: 30px 0;
  background: var(--sage-light);
  border-radius: var(--radius-md);
}

.book-question-list p {
  position: relative;
  padding: 15px 0 15px 28px;
  margin: 0;
  color: var(--ink);
  border-bottom: 1px solid rgba(25,48,71,.1);
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.45;
}

.book-question-list p:last-child {
  border-bottom: 0;
}

.book-question-list p::before {
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--forest);
  content: "→";
  font-family: var(--sans);
  font-size: .85rem;
}

.book-audience {
  background: #f9faf7;
}

.book-section-heading {
  max-width: 840px;
  margin: 0 auto 50px;
  text-align: center;
}

.book-section-heading h2 {
  margin-inline: auto;
}

.book-section-heading p {
  max-width: 730px;
  margin-inline: auto;
}

.book-audience-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-audience-card {
  padding: clamp(30px, 5vw, 48px);
  border-radius: var(--radius-lg);
}

.book-audience-card-for {
  background: var(--sage-light);
}

.book-audience-card-not {
  background: var(--cream);
}

.book-check-list,
.book-neutral-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.book-check-list li,
.book-neutral-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(25,48,71,.1);
}

.book-check-list li:last-child,
.book-neutral-list li:last-child {
  border-bottom: 0;
}

.book-check-list li::before,
.book-neutral-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  content: "✓";
  font-size: .7rem;
  font-weight: 700;
}

.book-neutral-list li::before {
  color: var(--ink-soft);
  background: rgba(255,255,255,.7);
  content: "—";
}

.book-difference {
  background: var(--white);
}

.book-section-intro {
  max-width: 430px;
  margin-bottom: 8px;
}

.book-difference-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.book-difference-grid article {
  min-height: 330px;
  padding: clamp(26px, 4vw, 38px);
  background: #fbfcf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.book-difference-number {
  display: block;
  margin-bottom: 46px;
  color: var(--forest);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.book-difference-grid h3 {
  margin-bottom: 14px;
}

.book-difference-grid p {
  margin-bottom: 0;
}

.book-outcomes {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.1), transparent 26%),
    linear-gradient(145deg, #193047, #355c35);
}

.book-outcomes-grid {
  display: grid;
  gap: clamp(50px, 8vw, 96px);
  align-items: start;
  grid-template-columns: .78fr 1.22fr;
}

.book-outcomes-heading {
  position: sticky;
  top: 40px;
}

.book-outcomes-heading .eyebrow {
  color: #dce8d4;
}

.book-outcomes-heading h2 {
  color: var(--white);
}

.book-outcomes-heading p {
  color: rgba(255,255,255,.72);
}

.book-outcome-list {
  display: grid;
}

.book-outcome-list article {
  display: grid;
  padding: 28px 0;
  gap: 22px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  grid-template-columns: auto 1fr;
}

.book-outcome-list article:first-child {
  padding-top: 0;
}

.book-outcome-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}

.book-outcome-list h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.book-outcome-list p {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

.book-inside {
  background: var(--cream);
}

.book-part-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.book-part-card {
  min-height: 310px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
  border-radius: var(--radius-md);
}

.book-part-number {
  display: block;
  margin-bottom: 42px;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.book-part-card p {
  margin-bottom: 0;
}

.book-preview-strip {
  display: grid;
  margin-top: 18px;
  overflow: hidden;
  background: var(--sage-light);
  border-radius: var(--radius-md);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.book-preview-strip article {
  padding: 26px;
  border-right: 1px solid rgba(25,48,71,.1);
}

.book-preview-strip article:last-child {
  border-right: 0;
}

.book-preview-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.book-preview-strip h3 {
  font-size: 1.35rem;
}

.book-preview-strip p {
  margin-bottom: 0;
  font-size: .82rem;
}

.book-anchor {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 27%),
    linear-gradient(145deg, #193047, #355c35);
}

.book-anchor-inner {
  max-width: 940px;
}

.book-anchor blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.35;
}

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

.book-faq-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.book-faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.book-faq-item {
  border-bottom: 1px solid var(--line);
}

.book-faq-item summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  list-style: none;
}

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

.book-faq-item summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  color: var(--forest);
  content: "+";
  font-family: var(--sans);
  font-size: 1.3rem;
}

.book-faq-item[open] summary::after {
  content: "−";
}

.book-faq-item div {
  max-width: 760px;
  padding: 0 0 24px;
}

.book-faq-item p {
  margin-bottom: 0;
}

.book-publisher {
  background: var(--sage-light);
}

.book-publisher-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  grid-template-columns: 1.15fr .85fr;
}

.book-publisher-copy {
  max-width: 700px;
}

.book-status-card {
  padding: clamp(28px, 5vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 46px rgba(25,48,71,.08);
}

.book-status-card dl {
  margin: 0;
}

.book-status-card dl div {
  display: flex;
  padding: 15px 0;
  gap: 22px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.book-status-card dl div:last-child {
  border-bottom: 0;
}

.book-status-card dt {
  color: var(--ink-soft);
  font-size: .82rem;
}

.book-status-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.book-updates {
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 5%, rgba(255,255,255,.1), transparent 25%),
    linear-gradient(145deg, #193047, #355c35);
}

.book-updates-grid {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.book-updates-copy h2 {
  color: var(--white);
}

.book-updates-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.book-update-form {
  padding: clamp(26px, 4vw, 40px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
}

.book-update-form .form-field {
  display: block;
  margin-bottom: 16px;
}

.book-update-form .form-field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 700;
}

.book-update-form input[type="text"],
.book-update-form input[type="email"] {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.book-update-form .consent-field {
  margin: 18px 0;
}

.book-update-form .button-light {
  color: var(--white);
  background: var(--forest);
}

.book-update-fine-print {
  margin: 14px 0 0;
  font-size: .72rem;
}

@media (max-width: 980px) {
  .book-hero-grid,
  .book-origin-grid,
  .book-outcomes-grid,
  .book-publisher-grid,
  .book-updates-grid {
    grid-template-columns: 1fr;
  }

  .book-origin-heading,
  .book-outcomes-heading {
    position: static;
  }

  .book-cover-area {
    max-width: 380px;
    grid-row: 1;
  }

  .book-cover-frame {
    transform: none;
  }

  .book-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-preview-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-preview-strip article:nth-child(2) {
    border-right: 0;
  }

  .book-preview-strip article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(25,48,71,.1);
  }
}

@media (max-width: 760px) {
  .book-audience-grid,
  .book-difference-grid,
  .book-part-grid {
    grid-template-columns: 1fr;
  }

  .book-difference-grid article,
  .book-part-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .book-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .book-hero-actions .button {
    width: 100%;
  }

  .book-hero-details {
    flex-direction: column;
  }

  .book-preview-strip {
    grid-template-columns: 1fr;
  }

  .book-preview-strip article,
  .book-preview-strip article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(25,48,71,.1);
  }

  .book-preview-strip article:last-child {
    border-bottom: 0;
  }

  .book-outcome-list article {
    grid-template-columns: 1fr;
  }

  .book-audience-card,
  .book-difference-grid article,
  .book-part-card,
  .book-status-card,
  .book-update-form {
    padding: 24px;
  }
}
