:root {
  --cream: #fffaf2;
  --cream-deep: #f4e8d8;
  --paper: #fffdf8;
  --sage: #7b8a68;
  --sage-dark: #40583d;
  --sage-ink: #263726;
  --clay: #b66f58;
  --clay-soft: #ead2c4;
  --rose: #c9898b;
  --rose-soft: #f4dddd;
  --gold: #d9a855;
  --lavender: #a98aaa;
  --moss: #68765e;
  --ink: #2d3028;
  --muted: #675f56;
  --line: rgba(64, 88, 61, 0.22);
  --line-strong: rgba(64, 88, 61, 0.55);
  --shadow: 0 22px 54px rgba(62, 49, 35, 0.11);
  --offset-shadow: 0 16px 38px rgba(62, 49, 35, 0.09);
  --soft-shadow: 0 12px 28px rgba(62, 49, 35, 0.07);
  --radius: 10px;
  --radius-pill: 999px;
  --section-y: 4rem;
  --max: 1180px;
  --font-body: "Avenir Next", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14px 18px, rgba(217, 168, 85, 0.055) 0 2px, transparent 3px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 250, 242, 0.96) 42%, #fff8ef),
    var(--cream);
  background-size: 56px 56px, auto, auto;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

section[id] {
  scroll-margin-top: 8.25rem;
}

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

a {
  color: inherit;
}

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

h1,
h2 {
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 12vw, 4.05rem);
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 9vw, 2.7rem);
}

h3 {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 60;
  transform: translateY(-150%);
  border-radius: var(--radius-pill);
  background: var(--sage-ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
}

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

.section-shell,
.header-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-ribbon {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
  background:
    linear-gradient(90deg, rgba(217, 168, 85, 0.22), transparent 22% 78%, rgba(201, 137, 139, 0.2)),
    var(--sage-ink);
  color: var(--paper);
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 1.8rem;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.section-heading-centred {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 55, 38, 0.38);
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(62, 49, 35, 0.1);
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(62, 49, 35, 0.13);
}

.button-primary {
  border-color: transparent;
  background: var(--sage-dark);
  color: var(--paper);
}

.button-secondary {
  border-color: rgba(64, 88, 61, 0.22);
  background: var(--paper);
  color: var(--sage-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero .button-row .button,
.final-cta .button-row .button,
.local-section .button {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(38, 55, 38, 0.32);
  border-radius: var(--radius-pill);
  background: var(--sage-dark);
  color: var(--paper);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--soft-shadow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  gap: 0.8rem;
  padding: 0.72rem 0;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-decoration: none;
}

.wordmark-text {
  font-size: 1.08rem;
}

.wordmark-mark {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  border: 1px solid rgba(180, 109, 85, 0.45);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
  padding: 0.07rem;
  box-shadow: 0 8px 18px rgba(73, 58, 42, 0.1);
}

.primary-nav {
  display: flex;
  gap: 0.35rem 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  color: #403a32;
  font-size: 0.88rem;
  scrollbar-width: none;
  white-space: nowrap;
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.primary-nav a,
.site-footer a {
  text-decoration: none;
}

.primary-nav a {
  border-radius: var(--radius-pill);
  padding: 0.2rem 0;
  font-weight: 600;
}

.primary-nav a:hover,
.site-footer a:hover {
  color: var(--clay);
}

.site-header .header-cta {
  display: none;
  justify-self: start;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(64, 88, 61, 0.28);
  background:
    radial-gradient(circle at 82% 14%, rgba(217, 168, 85, 0.2) 0 0.28rem, transparent 0.32rem),
    radial-gradient(circle at 88% 28%, rgba(201, 137, 139, 0.22) 0 0.2rem, transparent 0.24rem),
    linear-gradient(110deg, rgba(255, 250, 242, 0.98) 0 42%, rgba(255, 250, 242, 0.82) 56%, rgba(244, 232, 216, 0.42)),
    var(--cream);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-color: rgba(64, 88, 61, 0.18);
  border-style: solid;
}

.hero::before {
  left: -6rem;
  bottom: -7rem;
  width: 16rem;
  height: 16rem;
  border-width: 1px 0 0 1px;
  border-radius: 50%;
  transform: rotate(18deg);
}

.hero::after {
  right: -3rem;
  top: -6rem;
  width: 18rem;
  height: 18rem;
  border-width: 0 0 1px 1px;
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.1rem;
  align-items: center;
  padding: 3rem 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero .eyebrow {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.92);
  padding: 0.45rem 0.72rem;
  box-shadow: 0 10px 22px rgba(62, 49, 35, 0.06);
}

.hero-lede {
  max-width: 39rem;
  color: #4f473f;
  font-size: 1.04rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem 1rem;
  padding: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--moss);
  font-size: 0.86rem;
  font-weight: 600;
}

.trust-list li::before {
  content: "";
  width: 1.42rem;
  height: 1.42rem;
  border: 1px solid rgba(64, 88, 61, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 47%, rgba(64, 88, 61, 0.7) 48% 54%, transparent 55%),
    var(--paper);
  box-shadow: 0 5px 12px rgba(64, 88, 61, 0.08);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 20rem;
  place-items: center;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(64, 88, 61, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 232, 218, 0.86)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(117, 132, 98, 0.2);
  border-radius: 50%;
}

.hero-visual::before {
  left: -4rem;
  bottom: -3.8rem;
  width: 9rem;
  height: 9rem;
}

.hero-visual::after {
  right: -4.7rem;
  top: -4.2rem;
  width: 10rem;
  height: 10rem;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(86%, 30rem);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.96) contrast(1.02);
}

.visual-label {
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  border: 1px solid rgba(143, 118, 91, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.92);
  padding: 0.48rem 0.72rem;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--soft-shadow);
}

/* Intro */
.intro {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  background:
    linear-gradient(90deg, rgba(244, 232, 216, 0.9), rgba(255, 253, 248, 0.76)),
    var(--cream-deep);
}

.intro::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  bottom: -1.25rem;
  width: 5.3rem;
  height: 8.2rem;
  border-left: 2px solid rgba(64, 88, 61, 0.32);
  border-radius: 50%;
  transform: rotate(18deg);
}

.intro-inner {
  display: grid;
  gap: 1.4rem;
}

.intro-text p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
}

.feature-grid,
.session-grid,
.age-grid,
.benefit-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.mini-card,
.session-card,
.age-grid article,
.benefit-grid article,
.testimonial-grid figure,
details {
  border: 1px solid rgba(64, 88, 61, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--offset-shadow);
}

.mini-card {
  min-height: 13.5rem;
  display: grid;
  align-content: start;
  padding: 1.25rem;
}

.mini-card:nth-child(1) {
  background:
    radial-gradient(circle at 20px 22px, rgba(217, 168, 85, 0.08) 0 5px, transparent 6px),
    rgba(255, 253, 248, 0.92);
  background-size: 52px 52px;
}

.mini-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(117, 132, 98, 0.08) 0 24%, transparent 24% 50%, rgba(201, 137, 139, 0.06) 50% 74%, transparent 74%),
    rgba(255, 253, 248, 0.92);
  background-size: 58px 58px;
}

.mini-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(180, 109, 85, 0.08), rgba(255, 253, 248, 0.14)),
    rgba(255, 253, 248, 0.92);
}

.card-icon {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1.05rem;
  border: 1px solid rgba(38, 55, 38, 0.24);
  border-radius: 50%;
  background: var(--rose-soft);
  box-shadow: 0 9px 18px rgba(62, 49, 35, 0.08);
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
}

.card-icon-hands::before {
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--sage-dark);
  border-top-color: transparent;
  border-radius: 50%;
}

.card-icon-hands::after {
  width: 0.58rem;
  height: 0.58rem;
  border: 2px solid var(--clay);
  border-radius: 50% 50% 50% 0;
  transform: translate(0.54rem, -0.54rem) rotate(-45deg);
}

.card-icon-together {
  background: #edf2e4;
}

.card-icon-together::before {
  width: 1.55rem;
  height: 1rem;
  border: 2px solid var(--sage-dark);
  border-radius: 999px 999px 0 0;
  border-bottom: 0;
}

.card-icon-together::after {
  width: 1.65rem;
  height: 0.62rem;
  border: 2px solid var(--sage-dark);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  transform: translateY(0.5rem);
}

.card-icon-jar {
  background: #f5e2d1;
}

.card-icon-jar::before {
  width: 1.15rem;
  height: 1.55rem;
  border: 2px solid var(--sage-dark);
  border-radius: 0.35rem 0.35rem 0.55rem 0.55rem;
}

.card-icon-jar::after {
  width: 0.75rem;
  height: 0.32rem;
  border-radius: 0.18rem;
  background: var(--clay);
  transform: translateY(-0.92rem);
}

/* Sessions */
.sessions {
  position: relative;
  padding: var(--section-y) 0 3.2rem;
  background: rgba(255, 253, 248, 0.74);
}

.session-grid {
  align-items: stretch;
}

.session-card {
  position: relative;
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.15rem;
}

.session-card::before {
  content: "";
  display: block;
  width: calc(100% + 2.3rem);
  height: 0.24rem;
  margin: -1.15rem -1.15rem 1rem;
  background: var(--rose);
}

.session-card:nth-child(2)::before {
  background: var(--sage);
}

.session-card:nth-child(3)::before {
  background: var(--clay);
}

.session-card:nth-child(4)::before {
  background: var(--lavender);
}

.featured-card {
  background:
    radial-gradient(circle at 90% 14%, rgba(217, 168, 85, 0.16) 0 1.2rem, transparent 1.25rem),
    linear-gradient(180deg, rgba(243, 221, 221, 0.68), rgba(255, 253, 248, 0.94));
}

.session-illustration {
  display: block;
  width: 100%;
  height: 8.2rem;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(64, 88, 61, 0.2);
  border-radius: var(--radius);
  background: rgba(246, 236, 222, 0.9);
  object-fit: cover;
  object-position: center;
}

.session-card:nth-child(1) .session-illustration {
  object-position: 50% 56%;
}

.session-card:nth-child(2) .session-illustration,
.session-card:nth-child(3) .session-illustration {
  object-position: 48% 42%;
}

.session-card:nth-child(4) .session-illustration {
  object-position: 54% 48%;
}

.session-meta {
  margin-bottom: 0.45rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
}

.session-details {
  display: grid;
  gap: 0.44rem;
  margin: 1rem 0 0;
}

.session-details div {
  display: grid;
  grid-template-columns: 4.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  border-top: 1px solid rgba(143, 118, 91, 0.18);
  padding-top: 0.48rem;
}

.session-details dt {
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.session-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(143, 118, 91, 0.18);
  color: var(--clay);
  font-size: 0.85rem;
  font-weight: 600;
}

.card-footer a {
  color: var(--sage-dark);
  font-weight: 700;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.section-action .button {
  min-height: 2.45rem;
  padding-inline: 1.8rem;
}

/* Conversation Jar */
.conversation-jar {
  position: relative;
  overflow: hidden;
  padding: 2.7rem 0;
  border-block: 1px solid rgba(64, 88, 61, 0.24);
  background:
    radial-gradient(circle at 9% 26%, rgba(217, 168, 85, 0.22) 0 0.4rem, transparent 0.45rem),
    linear-gradient(90deg, rgba(244, 232, 218, 0.96), rgba(255, 253, 248, 0.9), rgba(244, 232, 218, 0.9)),
    var(--cream-deep);
}

.conversation-jar::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(64, 88, 61, 0.16);
  border-radius: 50%;
}

.jar-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.jar-visual {
  margin: 0;
}

.jar-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(64, 88, 61, 0.2);
  border-radius: 0.3rem;
  box-shadow: var(--soft-shadow);
  object-fit: cover;
}

.jar-copy p {
  max-width: 31rem;
  margin-bottom: 0;
}

.prompt-panel {
  display: grid;
  gap: 0.8rem;
}

.prompt-bubble {
  margin: 0;
  border: 1px solid rgba(64, 88, 61, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  padding: 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.35;
  box-shadow: var(--soft-shadow);
}

.prompt-bubble::before {
  content: "\"";
  display: block;
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 0.8;
}

.wonder-strip {
  overflow: hidden;
  border-bottom: 1px solid rgba(64, 88, 61, 0.2);
  background:
    linear-gradient(90deg, rgba(232, 237, 220, 0.88), rgba(244, 232, 216, 0.92), rgba(243, 221, 221, 0.64));
}

.wonder-strip-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.72rem 1rem;
  color: var(--sage-ink);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  animation: wonder-strip 28s linear infinite;
}

@keyframes wonder-strip {
  to {
    transform: translateX(-50%);
  }
}

/* Steps and Age Groups */
.how-it-works,
.age-groups,
.about,
.benefits,
.testimonials,
.faqs {
  padding: var(--section-y) 0;
}

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

.steps-list li {
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(64, 88, 61, 0.18);
  border-left: 0.24rem solid rgba(201, 137, 139, 0.7);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.86);
  padding: 1rem;
  box-shadow: var(--soft-shadow);
}

.steps-list span {
  display: inline-grid;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border: 1px solid rgba(38, 55, 38, 0.3);
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--paper);
  font-weight: 700;
}

.age-groups {
  background: rgba(255, 253, 248, 0.78);
}

.age-grid article {
  padding: 1.05rem;
}

.age-grid article:nth-child(2),
.benefit-grid article:nth-child(2),
.benefit-grid article:nth-child(5) {
  background: rgba(232, 237, 220, 0.68);
}

.age-grid article:nth-child(3),
.benefit-grid article:nth-child(3),
.benefit-grid article:nth-child(6) {
  background: rgba(243, 221, 221, 0.6);
}

.age-grid p,
.benefit-grid p {
  margin-bottom: 0;
}

/* Local CTA */
.local-section {
  padding: 2.9rem 0;
}

.local-inner {
  position: relative;
  display: grid;
  gap: 1.3rem;
  overflow: hidden;
  align-items: center;
  border: 1px solid rgba(38, 55, 38, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 20%, rgba(217, 168, 85, 0.22) 0 0.5rem, transparent 0.56rem),
    linear-gradient(135deg, #3d5539, #566b48);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.local-inner::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.6rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
}

.local-marker {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
}

.local-marker::after {
  content: "";
  display: block;
  width: 1rem;
  height: 1rem;
  margin: 0.8rem;
  border-radius: 50%;
  background: var(--sage-dark);
}

.local-section h2,
.local-section p,
.local-section .eyebrow {
  color: var(--paper);
}

.local-section .button-primary {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--sage-dark);
}

/* About, Benefits and Testimonials */
.about {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.about-copy p:last-of-type {
  margin-bottom: 1.1rem;
}

.image-placeholder {
  position: relative;
  display: block;
  min-height: 19rem;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(64, 88, 61, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 26%, rgba(217, 168, 85, 0.2) 0 1rem, transparent 1.1rem),
    linear-gradient(135deg, rgba(243, 221, 221, 0.44), rgba(232, 237, 220, 0.66)),
    var(--paper);
  color: var(--sage-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.image-placeholder img {
  width: 100%;
  min-height: 19rem;
  object-fit: cover;
}

.image-placeholder figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  border-radius: var(--radius-pill);
  background: rgba(255, 253, 248, 0.9);
  padding: 0.45rem 0.75rem;
  color: var(--sage-dark);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
}

.benefits {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.58), rgba(246, 236, 222, 0.58)),
    var(--cream);
}

.benefit-grid article {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0 0.75rem;
  align-items: start;
  padding: 1rem;
  box-shadow: var(--soft-shadow);
}

.benefit-grid h3,
.benefit-grid p {
  grid-column: 2;
}

.benefit-icon {
  grid-row: 1 / span 2;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(64, 88, 61, 0.24);
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 46%, rgba(64, 88, 61, 0.72) 47% 54%, transparent 55%),
    rgba(255, 253, 248, 0.85);
}

.testimonial-grid figure {
  position: relative;
  margin: 0;
  padding: 1.25rem;
}

.quote-mark {
  color: var(--clay);
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.04rem;
  line-height: 1.45;
}

figcaption {
  color: var(--clay);
  font-size: 0.84rem;
  font-weight: 700;
}

/* FAQ, CTA and Footer */
.faq-list {
  display: grid;
  gap: 0.65rem;
}

details {
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  color: var(--sage-dark);
  font-weight: 700;
}

details p {
  margin: 0.65rem 0 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-y) 0;
  border-top: 1px solid rgba(64, 88, 61, 0.22);
  background:
    radial-gradient(circle at 16% 18%, rgba(217, 168, 85, 0.2) 0 0.5rem, transparent 0.56rem),
    linear-gradient(135deg, rgba(243, 221, 221, 0.66), rgba(255, 253, 248, 0.9)),
    #fff8ef;
}

.final-cta-inner {
  max-width: 760px;
  text-align: center;
}

.final-cta-inner .button-row {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  background:
    linear-gradient(135deg, rgba(217, 168, 85, 0.16), transparent 34%),
    linear-gradient(135deg, #6d7c66, #4d6545);
  padding: 2rem 0;
  color: var(--paper);
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
}

.site-footer .wordmark,
.site-footer p,
.site-footer a,
.site-footer h2 {
  color: var(--paper);
}

.site-footer h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer .wordmark-mark {
  background: rgba(255, 253, 248, 0.92);
}

.footer-inner p {
  margin: 0.6rem 0 0;
  color: rgba(255, 253, 248, 0.86);
}

.footer-inner nav,
.social-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.92rem;
}

.copyright {
  font-size: 0.9rem;
}

:focus-visible {
  outline: 3px solid rgba(180, 109, 85, 0.45);
  outline-offset: 3px;
}

@media (min-width: 640px) {
  .hero .button-row .button,
  .final-cta .button-row .button,
  .local-section .button {
    width: auto;
  }

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

  .session-grid,
  .benefit-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .steps-list li {
    border-left-width: 2px;
    border-top: 0.42rem solid var(--rose);
  }

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

@media (min-width: 880px) {
  :root {
    --section-y: 4.8rem;
  }

  section[id] {
    scroll-margin-top: 5.6rem;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .primary-nav {
    justify-content: center;
    overflow-x: visible;
  }

  .site-header .header-cta {
    display: inline-flex;
    justify-self: end;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr);
    gap: 2.5rem;
    padding: 3.4rem 0 3.7rem;
  }

  .hero-visual {
    min-height: 27rem;
  }

  .intro-inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
  }

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

  .session-grid,
  .age-grid,
  .steps-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jar-inner {
    grid-template-columns: minmax(13rem, 0.82fr) minmax(13rem, 0.75fr) minmax(0, 1.25fr);
  }

  .local-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 1.65rem 2rem;
  }

  .about {
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  }

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

  .footer-inner {
    grid-template-columns: minmax(16rem, 1.4fr) 0.8fr 0.8fr 1.1fr;
    align-items: start;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 4.35rem;
  }

  .hero-visual {
    min-height: 28rem;
  }
}

@media (max-width: 700px) {
  .site-ribbon {
    padding: 0.42rem 0.8rem;
    font-size: 0.68rem;
  }

  .primary-nav {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 0.25rem 0.78rem;
    white-space: normal;
  }

  .primary-nav a {
    font-size: 0.84rem;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.02;
  }

  .hero-inner {
    gap: 1.35rem;
    padding: 2rem 0 2.4rem;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-visual {
    position: absolute;
    right: -0.75rem;
    bottom: 1.2rem;
    z-index: 1;
    width: min(52vw, 12rem);
    min-height: 0;
    aspect-ratio: 1 / 1;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0.18;
    pointer-events: none;
  }

  .hero-visual img {
    width: 100%;
  }

  .visual-label {
    display: none;
  }

  .wonder-strip-track {
    animation-duration: 34s;
  }
}

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