.host-photo {
  width: 73%;
  height: 82%;
  display: block;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 48% 48% 5px 5px;
}

/* Visitor journey: promise → emotional relevance → method → offer → proof → host → action */
main {
  display: flex;
  flex-direction: column;
}

main > .hero { order: 1; }
main > .ticker { order: 2; }
main > .support-section { order: 3; }
main > .intro { order: 4; }
main > .topics { order: 5; }
main > .testimonial-section { order: 6; }
main > .about { order: 7; }
main > .join { order: 8; }
main > .faq { order: 9; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(247, 243, 232, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 56, 45, 0.08);
}

.trust-row {
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  padding: 7px 11px;
  border: 1px solid rgba(23, 56, 45, 0.25);
  border-radius: 99px;
  background: rgba(255, 253, 247, 0.7);
  font-size: 11px;
  font-weight: 700;
}

.ticker .ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-seamless 30s linear infinite;
}

.ticker-copy {
  flex: none;
  padding-right: 22px;
}

.ticker-copy i {
  color: var(--lime);
  padding: 0 25px;
  font-style: normal;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-seamless {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker .ticker-track {
    animation: none;
  }
}

.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #f8f5ed;
  color: var(--ink);
  padding: 14px;
  border-radius: 5px;
  font: inherit;
}

.signup-form textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.optional {
  color: #708078;
  font-weight: 500;
}

.support-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 110px;
  padding-bottom: 20px;
}

.support-story {
  min-height: 490px;
  padding: 48px;
  border: 1px solid var(--ink);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.support-story h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.support-story p:not(.eyebrow) {
  max-width: 560px;
  font-size: 17px;
}

.support-story .text-link {
  margin-top: 14px;
}

.hope-story {
  background: var(--mint);
}

.hope-story::before {
  content: "✦";
  position: absolute;
  top: 12px;
  right: 35px;
  color: rgba(23, 56, 45, 0.11);
  font-size: 150px;
  line-height: 1;
}

.parents-story {
  background: var(--yellow);
}

.parents-icon {
  width: 76px;
  height: 76px;
  position: absolute;
  top: 34px;
  right: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 27px;
  transform: rotate(7deg);
}

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

.topic-card.learning {
  background: #efe7d7;
}

.movement-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 50px;
  white-space: nowrap;
}

.movement-icons i {
  color: rgba(23, 56, 45, 0.35);
  font-size: 13px;
  font-style: normal;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.topic-tags b {
  padding: 5px 9px;
  border: 1px solid rgba(23, 56, 45, 0.35);
  border-radius: 99px;
  font-size: 10px;
  line-height: 1.2;
}

.habit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.habit-tags span {
  padding: 8px 13px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonial-section {
  text-align: left;
  background: #e9dfca;
  padding: 110px 0;
}

.stories-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.stories-heading h2 {
  font-size: clamp(42px, 5vw, 66px);
  max-width: 760px;
}

.stories-heading > p {
  color: #53695f;
  font-size: 17px;
}

.story-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  padding: 5px 0 20px;
  margin: 0;
}

.story-grid::-webkit-scrollbar {
  display: none;
}

.story-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.story-toolbar p {
  margin: 0;
  color: #64766e;
  font-size: 12px;
}

.story-toolbar p span {
  color: var(--ink);
  font-weight: 800;
}

.story-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-position {
  min-width: 42px;
  color: #62756c;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.story-controls button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font: 700 19px var(--sans);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.story-controls button:hover {
  background: var(--ink);
  color: white;
  transform: translateY(-2px);
}

.story-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
  transform: none;
}

.story-card {
  flex: 0 0 100%;
  width: 100%;
  height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  grid-template-rows: minmax(0, 1fr);
  background: #f5efe3;
  border: 1px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 7px 8px 0 rgba(23, 56, 45, 0.12);
}

.story-card img,
.story-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  place-self: stretch;
  object-fit: contain !important;
  object-position: center !important;
  background: #e1d7c7;
}

.feature-story img {
  object-position: center;
}

.story-comment {
  align-self: center;
  margin: 0 38px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  width: calc(100% - 76px);
  height: auto;
  min-height: 255px;
  max-height: 330px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 7px;
  box-shadow: 7px 7px 0 var(--ink);
  transform: none;
}

.story-card:nth-child(even) .story-comment {
  background: var(--mint);
  transform: none;
}

.story-card:nth-child(3n) .story-comment {
  background: #efb091;
}

.story-number {
  position: absolute;
  top: 15px;
  right: 18px;
  color: rgba(23, 56, 45, 0.17);
  font: 800 42px/1 var(--serif);
  letter-spacing: -0.08em;
}

.story-comment span {
  display: block;
  color: #b95535;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-comment h3 {
  margin: 8px 0;
  font: 800 27px/1.2 var(--serif);
  letter-spacing: -0.025em;
}

.story-comment p {
  margin: 0;
  color: #586e65;
}

.results-disclaimer {
  max-width: 850px;
  margin: 28px auto 0;
  color: #66786f;
  font-size: 12px;
  text-align: center;
}

.signup-form button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.bmi-result {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 56, 45, 0.24);
  border-left: 5px solid var(--orange);
  border-radius: 7px;
  background: #f6ead1;
}

.bmi-result[hidden] { display: none; }
.bmi-result span, .bmi-result strong { display: block; }
.bmi-result-label { color: #60746b; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.bmi-result strong { margin: 2px 0 5px; font: 800 20px var(--serif); }
.bmi-result p { margin: 0; color: #4c6359; font-size: 12px; line-height: 1.45; }

.signup-form.submitted > :not(.success-message) { display: none; }
.signup-form.submitted { min-height: 480px; display: grid; place-items: center; }
.signup-form.submitted .success-message { display: block; width: 100%; padding: 8px; background: transparent; color: var(--ink); text-align: center; }
.confirmation-icon { width: 64px; height: 64px; display: grid; place-items: center; margin: 0 auto 18px; border-radius: 50%; background: var(--lime); font-size: 32px; }
.confirmation-eyebrow { margin: 0; color: #4d685d; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.success-message h3 { margin: 5px 0 10px; font: 800 32px var(--serif); }
.success-message > p:not(.confirmation-eyebrow) { margin: 0 auto 20px; max-width: 470px; color: #456057; font-weight: 500; }
.confirmation-bmi, .confirmation-next { margin: 15px 0; padding: 14px; border-radius: 7px; background: #f6ead1; }
.confirmation-bmi span, .confirmation-bmi strong, .confirmation-bmi small, .confirmation-next strong, .confirmation-next span { display: block; }
.confirmation-bmi strong { font: 800 20px var(--serif); }
.confirmation-bmi small, .confirmation-next span { color: #52685f; font-weight: 500; }
.confirmation-reset { margin-top: 12px; border: 0; background: transparent; color: var(--ink); font: 700 13px var(--sans); text-decoration: underline; cursor: pointer; }
.signup-form.submit-error .success-message { display: block; color: #7a2d1e; background: #f8ded6; }

@media (max-width: 520px) {
  .host-photo {
    width: 78%;
    height: 84%;
    object-position: center 30%;
  }

  .about-art {
    margin-bottom: 190px;
  }

  .about-art .quote-card {
    top: calc(100% + 16px);
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    padding: 18px 19px;
    font-size: 14px;
    line-height: 1.38;
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

  .support-section {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .support-story {
    min-height: 440px;
    padding: 32px 24px;
  }

  .stories-heading,
  .stories-heading {
    grid-template-columns: 1fr;
  }

  .stories-heading {
    gap: 20px;
  }

  .story-card {
    flex-basis: 100%;
    height: 470px;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
  }

  .story-comment {
    margin: 0 24px;
    padding: 26px 22px;
    width: calc(100% - 48px);
    height: auto;
    min-height: 245px;
  }

  .story-comment h3 {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .testimonial-section {
    padding: 80px 0;
  }

  .story-toolbar p {
    max-width: 190px;
  }

  .story-card {
    flex-basis: 100%;
    height: auto;
    min-height: 680px;
    grid-template-columns: 1fr;
    grid-template-rows: 430px 250px;
  }

  .story-comment {
    width: calc(100% - 32px);
    height: auto;
    min-height: 210px;
    max-height: 230px;
    margin: 16px;
    transform: none;
  }

  .story-card:nth-child(even) .story-comment {
    transform: none;
  }

  .story-number {
    top: 20px;
    right: 22px;
    font-size: 42px;
  }
}

.local-time-note {
  margin: -10px 0 16px;
  color: #667970;
  font-size: 11px;
  line-height: 1.35;
}

.consent-row {
  display: grid !important;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 18px !important;
  color: #5e7068;
  font-weight: 500 !important;
  line-height: 1.45;
}

.follow-up-flow {
  margin: 30px 0;
  border-top: 1px solid rgba(23, 56, 45, 0.25);
}

.follow-up-flow p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(23, 56, 45, 0.18);
}

.follow-up-flow b {
  color: rgba(23, 56, 45, 0.55);
  font-size: 11px;
}

.follow-up-flow span,
.follow-up-flow strong {
  display: block;
}

.follow-up-flow span {
  color: #314e43;
  font-size: 13px;
}

.follow-up-flow strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
}

.signup-form .consent-row input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.mobile-cta {
  display: none;
}

.mobile-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .story-grid { scroll-behavior: auto; }
}

@media (max-width: 560px) {
  .mobile-cta {
    position: fixed;
    z-index: 20;
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 19px;
    border: 1px solid var(--lime);
    border-radius: 99px;
    background: var(--ink);
    color: white;
    box-shadow: 0 8px 28px rgba(23, 56, 45, 0.28);
    font-size: 14px;
    font-weight: 800;
  }

  footer {
    padding-bottom: 105px;
  }
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.signup-form[aria-busy="true"] {
  cursor: wait;
}

.form-fallback {
  padding: 12px;
  border-radius: 5px;
  background: #f6ead1;
  font-size: 13px;
}

.form-fallback a {
  font-weight: 800;
  text-decoration: underline;
}

.legal-page {
  min-height: 100vh;
  background: var(--cream);
}

.legal-shell {
  width: min(780px, calc(100% - 38px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.legal-shell h1 {
  margin-bottom: 30px;
  font-size: clamp(48px, 7vw, 76px);
}

.legal-intro {
  margin-bottom: 55px;
  color: #48645a;
  font-size: 20px;
}

.legal-shell section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.legal-shell section h2 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.legal-shell section p {
  margin: 0;
  color: #536e64;
}

.legal-shell > .button {
  margin-top: 35px;
}
