:root {
  --blue: #041d55;
  --blue-soft: #0a386f;
  --yellow: #fece2e;
  --coral: #ff716f;
  --green: #c7dca6;
  --green-soft: #e5efd6;
  --cream: #f7f6f0;
  --paper: #fafae1;
  --pale-yellow: #ffedc5;
  --line: rgba(7, 39, 124, 0.18);
  --shadow: 0 14px 36px rgba(7, 39, 124, 0.09);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 110%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--blue);
  font-family: Avenir, "Work Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 6;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 240, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1120px;
  min-height: 64px;
  margin: 0 auto;
  padding: 0.45rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  max-width: 11rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.05;
}

.nav-desktop {
  display: none;
}

.menu {
  position: relative;
}

.menu summary {
  list-style: none;
  cursor: pointer;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  font-weight: 650;
  line-height: 1;
  background: var(--paper);
}

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

.menu[open] summary {
  background: var(--yellow);
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  width: min(78vw, 18rem);
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.menu-panel a {
  display: block;
  padding: 0.72rem 0.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 650;
}

.menu-panel a:focus,
.menu-panel a:hover {
  background: var(--pale-yellow);
}

.mobile-action {
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
}

.mobile-action-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-action a {
  flex: 0 0 auto;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.mobile-action span {
  min-width: 0;
}

main {
  overflow: hidden;
}

section {
  padding: 3.25rem 0;
}

.wrap {
  width: min(100%, 1152px);
  margin: 0 auto;
  padding-inline: 1rem;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 11ch;
  margin-bottom: 0.55rem;
  font-size: 2.3rem;
}

h2 {
  margin-bottom: 0.75rem;
  font-size: 1.9rem;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

.lead {
  max-width: 36rem;
  margin-bottom: 1rem;
  color: var(--blue-soft);
  font-size: 1.04rem;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 108px);
  min-height: calc(100svh - 108px);
  padding-top: clamp(2.6rem, 8vh, 4.5rem);
  padding-bottom: clamp(3.1rem, 8vh, 4.8rem);
  background: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -3rem 0 auto;
  width: 16rem;
  height: 16rem;
  background: var(--coral);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}

.hero-grid {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: clamp(1.7rem, 5vw, 3rem);
  align-items: center;
}

.hero-grid > *,
.proof-grid > *,
.feature-grid > *,
.sustainability-box > *,
.card-grid > *,
.rules-grid > *,
.service-grid > * {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  max-width: 40rem;
}

.hero-subtitle {
  max-width: 30rem;
  margin-bottom: 1rem;
  color: var(--blue-soft);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.25;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button.primary {
  background: var(--blue);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.button.primary:hover,
.button.primary:focus {
  background: var(--yellow);
  color: var(--blue);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--blue);
  color: var(--paper);
}

.event-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.fact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
}

.fact strong {
  display: block;
  line-height: 1.25;
}

.fact p {
  margin-bottom: 0;
}

.fact p span {
  display: block;
  color: var(--blue-soft);
  font-size: 0.9rem;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--blue);
  line-height: 0;
}

.fact.sustainability-fact .mark {
  background: var(--green-soft);
}

.icon {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.paths {
  background: var(--cream);
}

.section-head {
  position: relative;
  max-width: 42rem;
  margin-bottom: 1.2rem;
}

.card-grid {
  display: grid;
  gap: 0.8rem;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(7, 39, 124, 0.05);
}

.cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--pale-yellow);
  color: var(--blue);
  line-height: 0;
}

.cue.coral {
  background: var(--coral);
}

.cue .icon {
  width: 1.65rem;
  height: 1.65rem;
}

.choice-card p {
  margin-bottom: 0.65rem;
  color: var(--blue-soft);
  font-size: 0.95rem;
}

.text-link {
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.proof-section {
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.proof-grid-solo {
  max-width: 58rem;
}

.proof-section .lead {
  color: var(--blue);
}

.proof-copy {
  display: grid;
  gap: 0.85rem;
}

.quote-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.quote-card blockquote {
  margin: 0 0 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.22;
}

.quote-card p {
  margin-bottom: 0;
  color: var(--blue-soft);
}

.first-visit {
  background: var(--paper);
}

.steps {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 0.15rem;
}

.steps span {
  color: var(--blue-soft);
  font-size: 0.95rem;
}

.note {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-left: 5px solid var(--coral);
  background: var(--pale-yellow);
  color: var(--blue-soft);
}

.visit-photo {
  margin-top: 1.2rem;
}

.visit-photo img {
  height: 18rem;
}

.reassurance {
  background: var(--yellow);
}

.good-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.good-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: center;
  padding: 0.72rem 0.82rem;
  border: 1px solid rgba(7, 39, 124, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.7);
  font-weight: 800;
}

.check {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.rules-preview {
  background: var(--cream);
}

.rules-grid,
.service-grid {
  display: grid;
  gap: 0.85rem;
}

.rule-card,
.service-card,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(7, 39, 124, 0.05);
}

.rule-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 1rem;
}

.rule-card p,
.service-card p,
.feature-panel p {
  color: var(--blue-soft);
}

.rule-card p,
.service-card p:last-child,
.feature-panel p:last-child {
  margin-bottom: 0;
}

.rule-card .cue {
  width: 2.7rem;
  height: 2.7rem;
}

.rule-card .icon {
  width: 1.35rem;
  height: 1.35rem;
}

.rules-note {
  margin-top: 1rem;
  color: var(--blue-soft);
}

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

.feature-section.alt {
  background: var(--cream);
}

.feature-grid {
  display: grid;
  gap: 1.3rem;
  align-items: start;
}

.baby-panel {
  margin-top: 1.2rem;
}

.baby-photo img {
  height: clamp(18rem, 58vw, 24rem);
}

.feature-panel,
.service-card {
  padding: 1rem;
}

.mini-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.mini-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
}

.mini-row strong {
  display: block;
  margin-bottom: 0.1rem;
}

.mini-row span {
  color: var(--blue-soft);
  font-size: 0.95rem;
}

.service-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.service-card .cue {
  width: 2.85rem;
  height: 2.85rem;
}

.service-card .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.sustainability {
  position: relative;
  overflow: hidden;
  border-top: 0.45rem solid var(--yellow);
  background: var(--green);
}

.mission-icons {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mission-bg-icon {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  border: 2px solid rgba(7, 39, 124, 0.14);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.18);
  color: rgba(7, 39, 124, 0.18);
}

.mission-bg-icon .icon {
  width: 2.35rem;
  height: 2.35rem;
  stroke-width: 1.8;
}

.mission-bg-icon.one {
  right: 7%;
  top: 12%;
}

.mission-bg-icon.two {
  right: 24%;
  bottom: 14%;
  color: rgba(249, 109, 109, 0.2);
}

.mission-bg-icon.three {
  right: -1.4rem;
  bottom: 30%;
}

.mission-bg-icon.four {
  display: none;
}

.sustainability-box {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.mission-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.55rem;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  background: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mission-copy {
  max-width: 38rem;
  margin-bottom: 0;
}

.loop-card {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
}

.loop-card::before {
  content: "";
  position: absolute;
  left: calc(1rem + 1.025rem);
  top: calc(1rem + 2.05rem);
  bottom: calc(1rem + 2.05rem);
  width: 2px;
  background: rgba(7, 39, 124, 0.25);
}

.loop-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  font-weight: 800;
}

.loop-row strong {
  display: block;
  margin-bottom: 0.1rem;
}

.loop-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--yellow);
  line-height: 0;
}

.loop-dot.coral {
  background: var(--coral);
}

.loop-dot.green {
  background: var(--green-soft);
}

.footer {
  padding: 2.5rem 1rem;
  background: var(--blue);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer img {
  width: 72px;
  margin-bottom: 0.6rem;
}

.footer a {
  color: inherit;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.parking-note {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.9rem;
  opacity: 0.88;
}

@media (min-width: 760px) {
  .header-inner {
    min-height: 78px;
    padding-inline: 1.5rem;
  }

  .brand img {
    width: 58px;
  }

  .brand span {
    max-width: none;
    font-size: 1.35rem;
  }

  .menu {
    display: none;
  }

  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.92rem;
    font-weight: 520;
  }

  .nav-desktop a {
    text-decoration: none;
  }

  .nav-desktop a:focus,
  .nav-desktop a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
  }

  .mobile-action {
    display: none;
  }

  section {
    padding: 5.2rem 0;
  }

  .wrap {
    width: min(100%, 1170px);
    padding-inline: 1.5rem;
  }

  .hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding-top: clamp(4rem, 8vh, 6.5rem);
    padding-bottom: clamp(4.4rem, 9vh, 7rem);
  }

  .hero::before {
    width: 34rem;
    height: 100%;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: center;
    gap: clamp(3rem, 7vw, 5.5rem);
  }

  .event-card {
    max-width: 29rem;
  }

  h1 {
    max-width: 15ch;
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .lead {
    font-size: 1.12rem;
  }

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

  .choice-card {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 16rem;
  }

  .proof-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
    gap: 2rem;
  }

  .proof-grid-solo {
    grid-template-columns: 1fr;
  }

  .proof-grid .image-card img {
    height: 22rem;
  }

  .visit-photo img {
    height: 16rem;
  }

  .steps {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .steps li {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .good-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .good-item {
    align-content: start;
    grid-template-columns: 1fr;
    min-height: 7.5rem;
  }

  .rules-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rule-card {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    align-items: center;
    gap: 3rem;
  }

  .baby-photo img {
    height: 24rem;
  }

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

  .sustainability-box {
    grid-template-columns: minmax(0, 1fr) 22rem;
    gap: 3rem;
    align-items: center;
  }

  .mission-bg-icon {
    width: 7rem;
    height: 7rem;
  }

  .mission-bg-icon .icon {
    width: 3rem;
    height: 3rem;
  }

  .mission-bg-icon.one {
    right: 12%;
    top: 10%;
  }

  .mission-bg-icon.two {
    right: 26%;
    bottom: 15%;
  }

  .mission-bg-icon.three {
    right: 3%;
    bottom: 22%;
  }

  .mission-bg-icon.four {
    display: inline-flex;
    right: 39%;
    top: 25%;
  }

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

@media (min-width: 760px) and (max-width: 979px) {
  .menu {
    display: block;
  }

  .nav-desktop {
    display: none;
  }
}

/* Subpage prototype modules */

.page-how h1 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  font-size: 2.35rem;
}

.page-how .lead {
  max-width: 38rem;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 108px);
  min-height: calc(100svh - 108px);
  overflow: hidden;
  padding-top: clamp(2.6rem, 8vh, 4.8rem);
  padding-bottom: clamp(3.2rem, 8vh, 5.4rem);
  background: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -4rem 0 auto;
  width: 16rem;
  height: 16rem;
  background: var(--coral);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
}

.page-how .hero-grid {
  z-index: 1;
}

.hero-how {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(255, 250, 240, 0.72)),
    var(--pale-yellow);
}

.hero-how::before {
  background: var(--yellow);
}

.hero-baby {
  background: var(--pale-yellow);
}

.hero-baby::before {
  background: var(--green);
}

.hero-rules {
  background:
    linear-gradient(180deg, rgba(247, 246, 240, 0.98), rgba(255, 250, 240, 0.98));
}

.hero-rules::before {
  background: var(--blue);
  opacity: 0.08;
}

.hero-plan {
  background: var(--paper);
}

.hero-plan::before {
  background: var(--coral);
}

.hero-why {
  background: var(--green-soft);
}

.hero-why::before {
  background: var(--green);
}

.page-why .hero-grid {
  z-index: 1;
}

.route-hero,
.starter-kit,
.rules-board,
.visit-ticket,
.mission-loop-hero {
  position: relative;
  display: grid;
  gap: 0.85rem;
  width: 100%;
  min-width: 0;
  padding: 1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.92);
  box-shadow: var(--shadow);
}

.route-hero::before {
  content: "";
  position: absolute;
  display: none;
}

.route-paths::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(0.75rem + 1.325rem);
  top: -0.85rem;
  bottom: 0.85rem;
  width: 2px;
  background: rgba(7, 39, 124, 0.22);
}

.route-center {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 0.7rem;
  align-items: center;
  padding: 0.85rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--yellow);
}

.route-center strong,
.route-center span:last-child {
  grid-column: 2;
}

.route-center strong,
.route-node strong,
.board-heading strong,
.loop-stage strong {
  display: block;
  line-height: 1.18;
}

.route-center span:last-child,
.route-node span,
.kit-summary p,
.kit-metrics small,
.rule-strip span,
.loop-stage span {
  color: var(--blue-soft);
  font-size: 0.9rem;
}

.route-paths {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
}

.route-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.route-node .cue {
  width: 2.65rem;
  height: 2.65rem;
}

.starter-kit {
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
}

.starter-photo {
  margin: 0;
}

.starter-photo img {
  width: 100%;
  height: 9rem;
  object-fit: cover;
}

.kit-summary {
  padding: 0.75rem 0.85rem 0.2rem;
}

.kit-summary h2 {
  margin: 0 0 0.15rem;
  font-size: clamp(1.55rem, 3.4vw, 2rem);
}

.kit-summary p {
  margin: 0;
}

.kit-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.65rem 0.75rem 0.75rem;
}

.kit-metrics span {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
  padding: 0.5rem 0.5rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--cream);
}

.kit-metrics strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.kit-metrics small {
  font-weight: 800;
}

.rules-board {
  background: var(--paper);
}

.board-heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--line);
}

.rule-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.rule-metrics div {
  min-width: 0;
  padding: 0.7rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
}

.rule-metrics strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 7vw, 2rem);
  line-height: 1;
}

.rule-metrics span {
  display: block;
  margin-top: 0.3rem;
  color: var(--blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.rule-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.rule-strip span {
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--pale-yellow);
  font-weight: 850;
}

.rules-board p {
  margin-bottom: 0;
  padding: 0.85rem;
  border-left: 5px solid var(--coral);
  background: var(--cream);
  color: var(--blue-soft);
}

.visit-ticket {
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--paper);
}

.ticket-top {
  display: grid;
  gap: 0.15rem;
  padding: 1rem;
  background: var(--yellow);
}

.ticket-top span {
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ticket-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1;
}

.visit-ticket address {
  padding: 1rem;
  border-bottom: 1px dashed rgba(7, 39, 124, 0.36);
  color: var(--blue-soft);
  font-style: normal;
  font-weight: 800;
}

.ticket-rows {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
}

.ticket-rows div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: center;
  font-weight: 800;
}

.mission-loop-hero {
  grid-template-columns: 1fr;
  background: rgba(255, 250, 240, 0.84);
}

.loop-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.7rem;
  align-items: center;
  min-height: 4.2rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.loop-stage .loop-dot {
  grid-row: span 2;
}

.loop-stage:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.78rem;
  bottom: -0.98rem;
  width: 2px;
  height: 1rem;
  background: rgba(7, 39, 124, 0.32);
}

.split-grid,
.path-grid,
.quick-grid,
.flow-grid,
.cta-box {
  display: grid;
  gap: 1rem;
}

.page-how .hero-grid > *,
.split-grid > *,
.path-grid > *,
.quick-grid > *,
.flow-grid > *,
.cta-box > * {
  min-width: 0;
}

.hero-card,
.path-card,
.quick-card,
.flow-card,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(7, 39, 124, 0.05);
}

.hero-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mark.coral {
  background: var(--coral);
}

.mark.green,
.cue.green {
  background: var(--green-soft);
}

.check-in {
  background: var(--cream);
}

.page-how .check-in .image-card img {
  height: 18rem;
}

.page-how .feature-panel {
  padding: 1rem;
  border: 2px solid var(--blue);
  background: var(--pale-yellow);
}

.path-section {
  background: var(--yellow);
}

.path-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255, 250, 240, 0.78);
}

.path-card p,
.quick-card p,
.flow-card p,
.note-card p {
  color: var(--blue-soft);
}

.path-card p:last-child,
.quick-card p:last-child,
.flow-card p:last-child,
.note-card p:last-child {
  margin-bottom: 0;
}

.quick-check,
.detail-section {
  background: var(--paper);
}

.detail-section.alt,
.flow-section {
  background: var(--cream);
}

.quick-card,
.flow-card,
.note-card {
  padding: 1rem;
}

.quick-card,
.flow-card {
  display: grid;
  gap: 0.7rem;
}

.quick-card ul,
.compact-list {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--blue-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--yellow);
  font-weight: 900;
}

.donation-band {
  background: var(--green);
}

.donation-box {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
}

.cta-section {
  background: var(--yellow);
}

.cta-box {
  align-items: center;
}

/* Shared section modules for subpage variation */

.choice-rail,
.process-lane,
.rule-table:not(table),
.example-strip,
.photo-note-grid,
.impact-evidence,
.story-block,
.transport-list,
.question-stack {
  margin-top: 1.2rem;
}

.choice-rail,
.process-lane,
.transport-list,
.question-stack {
  padding: 0;
  list-style: none;
}

.choice-rail {
  counter-reset: choice;
  display: grid;
  gap: 0.65rem;
}

.choice-rail > * {
  counter-increment: choice;
  display: grid;
  grid-template-columns: minmax(2.6rem, auto) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.82);
}

.choice-rail > *::before {
  content: counter(choice);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  min-height: 2.15rem;
  padding: 0 0.45rem;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--paper);
  font-weight: 900;
  line-height: 1;
}

.choice-rail > [data-label]::before {
  content: attr(data-label);
}

.choice-rail.with-icons > * {
  grid-template-columns: auto minmax(0, 1fr);
}

.choice-rail.with-icons > *::before {
  content: none;
  display: none;
}

.choice-rail.with-icons .cue,
.example-strip.with-icons .cue {
  width: 2.55rem;
  height: 2.55rem;
}

.choice-rail.with-icons .cue .icon,
.example-strip.with-icons .cue .icon {
  width: 1.32rem;
  height: 1.32rem;
}

.choice-rail strong,
.process-lane strong,
.example-strip strong,
.transport-list strong {
  display: block;
  line-height: 1.2;
}

.choice-rail p,
.process-lane p,
.example-strip p,
.transport-list p,
.question-stack p {
  margin-bottom: 0;
  color: var(--blue-soft);
}

.process-lane {
  position: relative;
  counter-reset: process;
  display: grid;
  gap: 0.85rem;
}

.process-lane::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: rgba(7, 39, 124, 0.22);
}

.process-lane > * {
  position: relative;
  counter-increment: process;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  min-width: 0;
  padding: 0.35rem 0 0.35rem 0;
}

.process-lane > *::before {
  content: counter(process);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--yellow);
  font-weight: 900;
  line-height: 1;
}

.process-lane > [data-step]::before {
  content: attr(data-step);
}

.repair-facts {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.repair-facts h3 {
  margin-bottom: 0;
}

.repair-facts div {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--paper);
}

.repair-facts div:nth-of-type(2) {
  border-left-color: var(--coral);
}

.repair-facts span {
  color: var(--blue-soft);
}

#repair-flow .split-grid {
  align-items: start;
}

.rule-table:not(table) {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.rule-table:not(table) > * {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
}

.rule-table:not(table) > *:first-child {
  border-top: 0;
}

.rule-table .rule-row {
  background: rgba(255, 250, 240, 0.74);
}

.rule-table .rule-heading,
.rule-table .rule-status,
.rule-table .rule-detail,
table.rule-table th {
  font-weight: 900;
}

.rule-table .rule-detail,
.rule-table .rule-reason,
table.rule-table td {
  color: var(--blue-soft);
}

.rule-table .accepted {
  color: var(--blue);
}

.rule-table .not-accepted {
  color: var(--blue);
  text-decoration-line: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

table.rule-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  background: var(--paper);
}

table.rule-table th,
table.rule-table td {
  padding: 0.75rem 0.85rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

table.rule-table thead th {
  border-top: 0;
  background: var(--pale-yellow);
  color: var(--blue);
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
}

.quick-rules-table {
  min-width: 58rem;
  table-layout: fixed;
}

.quick-rules-table td strong {
  display: block;
  margin-bottom: 0.35rem;
}

.quick-rules-table td span {
  display: block;
  color: var(--blue-soft);
}

.example-strip {
  display: grid;
  gap: 0.75rem;
}

.example-strip > * {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--coral);
  border-radius: var(--radius);
  background: var(--paper);
}

.example-strip.with-icons > * {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.example-strip .example-label,
.impact-evidence .impact-label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.photo-note-grid,
.story-block {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.photo-note-grid > *,
.story-block > *,
.impact-evidence > * {
  min-width: 0;
}

.photo-note-grid .image-card {
  margin: 0;
}

.photo-note-grid .image-card img {
  height: clamp(15rem, 60vw, 22rem);
}

.photo-note-grid .note-card,
.story-block .story-note,
.story-block aside {
  box-shadow: none;
}

.photo-note-grid .note-card {
  background: var(--pale-yellow);
}

.impact-evidence {
  display: grid;
  gap: 0.75rem;
}

.impact-evidence > * {
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(229, 239, 214, 0.72);
}

.impact-evidence .impact-number {
  display: block;
  max-width: 100%;
  margin-bottom: 0.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 16vw, 3.35rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.impact-evidence p,
.story-block p {
  color: var(--blue-soft);
}

.impact-evidence p:last-child,
.story-block p:last-child {
  margin-bottom: 0;
}

.story-block .story-copy {
  max-width: 44rem;
}

.story-block .story-copy .section-head {
  margin-bottom: 1.2rem;
}

.story-block .story-note {
  margin-top: 0;
  align-self: start;
}

.story-block .story-note,
.story-block aside {
  padding: 1rem;
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--blue-soft);
}

.evidence-link {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-right: 0.88em;
  color: #07277c;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 0.08em);
  background-size: calc(100% - 0.88em) 2px;
  vertical-align: baseline;
}

.evidence-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.68em;
  height: 0.68em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2h6v6M10 2 2 10' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2h6v6M10 2 2 10' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translateY(-50%);
}

.footprint-grid,
.reuse-action-grid,
.circular-timeline,
.local-place-grid,
.resource-columns {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.footprint-card,
.reuse-action-card,
.circular-timeline > *,
.local-place-card,
.resource-columns > * {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.86);
}

.footprint-card strong,
.circular-timeline h3,
.local-place-card h3,
.resource-columns h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.footprint-card strong,
.circular-timeline h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 2rem);
  line-height: 1;
}

.footprint-card strong span {
  display: block;
  margin-top: 0.16rem;
  font-size: 0.72em;
  line-height: 1.05;
}

.footprint-card p,
.reuse-action-card p,
.circular-timeline p,
.local-place-card p,
.resource-columns p {
  color: var(--blue-soft);
}

.footprint-card p:last-child,
.reuse-action-card p:last-child,
.circular-timeline p:last-child,
.local-place-card p:last-child {
  margin-bottom: 0;
}

.reuse-action-card {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--blue);
  line-height: 0;
}

.card-icon.coral {
  background: var(--coral);
}

.card-icon.green {
  background: var(--green);
}

.card-icon.blue {
  background: var(--paper);
}

.card-icon .icon {
  width: 1.45rem;
  height: 1.45rem;
}

.circular-timeline {
  position: relative;
  padding-left: 1.65rem;
}

#circular-future .circular-timeline {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.circular-timeline > * {
  position: relative;
  border-left: 0;
}

.circular-timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.circular-timeline > *::before {
  content: "";
  position: absolute;
  left: -1.44rem;
  top: 1.05rem;
  width: 0.88rem;
  height: 0.88rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--blue);
}

.circular-timeline > *:nth-child(2)::before {
  background: var(--yellow);
}

.circular-timeline > *:nth-child(3)::before {
  background: var(--coral);
}

.circular-timeline > *:nth-child(4)::before {
  background: #07277c;
}

.local-place-card {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.local-place-card > a:first-child {
  display: grid;
  gap: 0.65rem;
  color: var(--blue);
  text-decoration: none;
}

.local-place-card > a:first-child span,
.local-place-card h3 {
  font-weight: 900;
  line-height: 1.2;
}

.local-place-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--cream);
}

.local-place-card .text-link {
  align-self: end;
}

.local-place-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: var(--green-soft);
  line-height: 0;
}

.local-place-mark .icon {
  width: 2rem;
  height: 2rem;
}

.brand-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
}

.brand-band strong {
  flex-basis: 100%;
}

.brand-band a,
.brand-band span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.35rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.brand-band a::after {
  content: "";
  flex: 0 0 auto;
  width: 0.68em;
  height: 0.68em;
  margin-left: 0.18em;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2h6v6M10 2 2 10' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 2h6v6M10 2 2 10' fill='none' stroke='%23000' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.resource-columns > * {
  background: transparent;
}

.resource-columns a {
  color: var(--blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.transport-list {
  display: grid;
}

.transport-list > * {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.transport-list > *:last-child {
  border-bottom: 1px solid var(--line);
}

.transport-list .route-name,
.transport-list .visit-label {
  font-weight: 900;
}

.transport-list .route-detail,
.transport-list .visit-detail {
  color: var(--blue-soft);
}

.transport-list.cue-list > * {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
}

.transport-list.cue-list .mark {
  margin-top: 0.05rem;
  background: var(--paper);
}

.transport-list.cue-list strong,
.transport-list.cue-list .visit-detail {
  display: block;
}

.question-stack {
  display: grid;
}

.question-stack > * {
  min-width: 0;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.question-stack > *:last-child {
  border-bottom: 1px solid var(--line);
}

.question-stack summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.question-stack summary::-webkit-details-marker {
  display: none;
}

.question-stack summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.2rem;
  line-height: 1;
}

.question-stack details[open] summary::after {
  content: "-";
}

.question-stack details > *:not(summary) {
  margin-top: 0.5rem;
}

.iconless .cue,
.iconless .mark,
.iconless .check,
.iconless .loop-dot,
.iconless .mission-icons,
.iconless .mission-bg-icon {
  display: none;
}

.iconless .choice-card,
.iconless .path-card,
.iconless .rule-card,
.iconless .service-card,
.iconless .fact,
.iconless .mini-row,
.iconless .route-center,
.iconless .route-node,
.iconless .loop-row,
.iconless .loop-stage {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .page-how h1 {
    max-width: 13ch;
    font-size: 4rem;
  }

  .page-hero {
    min-height: calc(100vh - 78px);
    min-height: calc(100svh - 78px);
    padding-top: clamp(4rem, 8vh, 6.4rem);
    padding-bottom: clamp(4.4rem, 9vh, 7rem);
  }

  .page-hero::before {
    width: 34rem;
    height: 100%;
  }

  .hero-baby .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.72fr);
  }

  .hero-rules .hero-grid,
  .hero-plan .hero-grid,
  .hero-why .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.72fr);
  }

  .route-hero,
  .rules-board,
  .visit-ticket,
  .mission-loop-hero {
    padding: 1.15rem;
  }

  .starter-kit {
    grid-template-columns: minmax(8.5rem, 0.82fr) minmax(0, 1fr);
    align-items: stretch;
    padding: 0;
  }

  .starter-photo {
    grid-row: 1 / span 2;
  }

  .starter-photo img {
    height: 100%;
    min-height: 13.25rem;
  }

  .kit-summary {
    padding: 0.8rem 0.85rem 0.2rem;
  }

  .kit-summary h2 {
    font-size: clamp(1.6rem, 2.4vw, 2rem);
  }

  .kit-summary p {
    font-size: 0.95rem;
  }

  .kit-metrics {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    padding: 0.55rem 0.75rem 0.75rem;
  }

  .kit-metrics span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0.45rem 0.48rem;
    border-top-width: 1px;
    border-left: 4px solid var(--yellow);
  }

  .kit-metrics strong {
    font-size: clamp(1rem, 1.45vw, 1.22rem);
    white-space: nowrap;
  }

  .kit-metrics small {
    text-align: right;
  }

  .split-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.78fr);
    gap: 3rem;
    align-items: center;
  }

  .path-grid,
  .quick-grid,
  .flow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .path-card {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 17rem;
  }

  .flow-card {
    align-content: start;
  }

  .cta-box {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }

  .choice-rail,
  .example-strip,
  .impact-evidence {
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  }

  .choice-rail > * {
    align-content: start;
  }

  .process-lane {
    grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
    gap: 1rem;
  }

  .process-lane::before {
    left: 1rem;
    right: 1rem;
    top: 1rem;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .process-lane > * {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    padding-top: 2.75rem;
  }

  .process-lane > *::before {
    position: absolute;
    left: 0;
    top: 0;
  }

  .baby-timeline {
    max-width: 58rem;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }

  .baby-timeline::before {
    left: 50%;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
  }

  .baby-timeline > * {
    grid-column: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 2.4rem minmax(0, 1fr);
    padding: 0;
    border: 0;
    background: transparent;
  }

  .baby-timeline > * > div {
    grid-column: 1;
    padding: 0.7rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.82);
  }

  .baby-timeline > *:nth-child(even) > div {
    grid-column: 3;
  }

  .baby-timeline > *::before {
    left: 50%;
    top: 0.7rem;
    right: auto;
    transform: translateX(-50%);
  }

  .baby-timeline > *:nth-child(even)::before {
    left: 50%;
    right: auto;
  }

  .rule-table:not(table) > * {
    grid-template-columns: minmax(7rem, 0.7fr) minmax(8rem, 0.8fr) minmax(0, 1.5fr);
    gap: 0.9rem;
    align-items: start;
  }

  .photo-note-grid {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
    gap: 2rem;
  }

  .photo-note-grid .note-card {
    grid-column: 2;
  }

  .story-block {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.42fr);
    gap: 2rem;
  }

  .page-why h1 {
    max-width: 14ch;
  }

  .footprint-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reuse-action-grid,
  .local-place-grid,
  .resource-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .circular-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-top: 1.75rem;
    padding-left: 0;
  }

  .circular-timeline::before {
    left: 0.6rem;
    right: 0.6rem;
    top: 0.62rem;
    bottom: auto;
    width: auto;
    height: 3px;
  }

  .circular-timeline > *::before {
    left: 1rem;
    top: -1.55rem;
  }

  .local-place-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-band strong {
    flex-basis: auto;
    margin-right: 0.25rem;
  }

  .transport-list > * {
    grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
}

#quick-check .photo-note-grid {
  grid-template-columns: minmax(0, 1fr);
}

#quick-check .photo-note-grid .image-card {
  max-width: 46rem;
}

#quick-check .photo-note-grid .image-card img {
  height: clamp(10rem, 24vw, 13rem);
}

#quick-check .photo-note-grid .note-card {
  grid-column: 1;
}
