@charset "UTF-8";
:root {
  --bg: #F7F3E8;
  --surface: #FFFFFF;
  --surface-warm: #F7F3E8;
  --placeholder-bg: #EEEBE3;
  --text: #1D1B16;
  --muted-text: #5C5A55;
  --brand: #1F2A44;
  --brand-2: #1F4A3C;
  --accent: #B07A2A;
  --border: #E4DDD0;
  --shadow: rgba(29, 27, 22, 0.12);
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 24px;
  --s5: 32px;
  --s6: 48px;
  --s7: 72px;
  --r1: 10px;
  --r2: 14px;
  --container-max: 1160px;
  --container-padding: 20px;
  --scroll-offset: 100px;
}
@media (min-width: 641px) {
  :root {
    --container-padding: 32px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  line-height: 1.6;
  color: #1D1B16;
  background-color: #F7F3E8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1F2A44;
}

h1 {
  font-size: 34px;
}
@media (min-width: 641px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 24px;
}
@media (min-width: 641px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 18px;
}
@media (min-width: 641px) {
  h3 {
    font-size: 20px;
  }
}

p {
  margin-bottom: 16px;
}

small {
  font-size: 14px;
}

a {
  color: #1F2A44;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 12px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.section {
  padding-block: 48px;
}

.hero {
  padding-block: 72px;
}

.grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #B07A2A;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}

.site-header {
  background: #FFFFFF;
  border-bottom: 1px solid #E4DDD0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: nowrap;
}

.logo {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: bold;
  color: #1F2A44;
  text-decoration: none;
}
.logo:hover {
  text-decoration: none;
  color: #B07A2A;
}

.main-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  flex-wrap: nowrap;
}
.main-nav a {
  color: #1D1B16;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  border-bottom-color: #B07A2A;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 20px;
  color: #1F2A44;
  transition: all 0.2s;
}
.menu-toggle:hover {
  border-color: #B07A2A;
  color: #B07A2A;
}
.menu-toggle:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  border-bottom: 1px solid #E4DDD0;
  padding: 24px var(--container-padding);
  max-width: 1160px;
  margin: 0 auto;
}
.mobile-menu a {
  color: #1D1B16;
  text-decoration: none;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: #B07A2A;
}
.mobile-menu a.active {
  color: #B07A2A;
  font-weight: 600;
}

.mobile-menu-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

@media (max-width: 960px) {
  .header-content {
    justify-content: space-between;
    min-height: 56px;
  }
  .logo {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .main-nav,
  .header-cta {
    display: none !important;
  }
  .menu-toggle {
    display: block;
  }
}
@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
.site-footer {
  background: #1F2A44;
  color: white;
  padding-block: 48px;
  margin-top: 72px;
}

.footer-content {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
@media (min-width: 641px) {
  .footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-brand {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-tagline,
.footer-service {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 16px;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
}

.btn-primary {
  background: #B07A2A;
  color: white;
}
.btn-primary:hover {
  background: #936420;
}

.btn-secondary {
  background: transparent;
  color: #1F2A44;
  border-color: #1F2A44;
}
.btn-secondary:hover {
  background: #1F2A44;
  color: white;
}

.btn-understated {
  background: transparent;
  color: #1F2A44;
  border: 2px solid #1F2A44;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 16px;
}
.btn-understated:hover {
  background: #1F2A44;
  color: white;
  text-decoration: none;
}

.btn-disabled {
  background: #EEEBE3;
  color: #5C5A55;
  border-color: #E4DDD0;
  cursor: not-allowed;
  opacity: 0.7;
}
.btn-disabled:hover {
  background: #EEEBE3;
  color: #5C5A55;
  transform: none;
}
.btn-disabled:focus {
  outline: none;
}

.card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
}
.card.elevated {
  box-shadow: 0 10px 30px rgba(29, 27, 22, 0.12);
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  background: #F7F3E8;
  border: 1px solid #E4DDD0;
  border-radius: 999px;
  font-size: 14px;
  color: #1D1B16;
}
.pill.active {
  background: #1F2A44;
  color: white;
  border-color: #1F2A44;
}
.pill.clickable {
  cursor: pointer;
  transition: all 0.2s;
}
.pill.clickable:hover {
  background: #1F4A3C;
  color: white;
  border-color: #1F4A3C;
}

.experience-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.experience-card h3 {
  margin-bottom: 0;
}

.experience-summary {
  color: #5C5A55;
  margin-bottom: 0;
}

.experience-meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #5C5A55;
  flex-wrap: wrap;
}

.tone-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.experience-highlights {
  list-style: disc;
  color: #1D1B16;
  margin-left: 24px;
}
.experience-highlights li {
  margin-bottom: 8px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-author {
  font-weight: 600;
  color: #1F2A44;
}

.testimonial-stars {
  color: #B07A2A;
  font-size: 18px;
}

.testimonial-text {
  margin-bottom: 0;
  font-style: italic;
  color: #5C5A55;
}

.cta-band {
  background: #1F2A44;
  color: white;
  padding-block: 48px;
  margin-top: 72px;
}

.cta-content {
  text-align: center;
}
.cta-content h2 {
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-section {
  margin-bottom: 48px;
}
.faq-section h2 {
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-bottom: 1px solid #E4DDD0;
  padding-block: 24px;
  background: #FFFFFF;
  border: 1px solid #E4DDD0;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: #1F2A44;
  cursor: pointer;
  text-align: left;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  padding: 24px;
  list-style: none;
  transition: background 0.2s;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: normal;
  transition: transform 0.2s;
}
.faq-question:hover {
  color: #B07A2A;
  background: #F7F3E8;
}
.faq-question:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
  outline-offset: -3px;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.2s;
}

.faq-question[aria-expanded=true] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: #1D1B16;
}
.faq-answer p {
  margin-bottom: 0;
}
.faq-answer[hidden] {
  display: none;
}

form {
  max-width: 600px;
  margin: 0 auto;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1F2A44;
}

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 24px;
}
input[type=text]:focus,
input[type=email]:focus,
select:focus,
textarea:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
  border-color: #B07A2A;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button[type=submit] {
  background: none;
  border: none;
  font: inherit;
}

.field-helper {
  font-size: 14px;
  color: #5C5A55;
  margin-top: -8px;
  margin-bottom: 24px;
}

.checkbox-group {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.checkbox-group input[type=checkbox] {
  width: auto;
  margin: 4px 0 0 0;
  flex-shrink: 0;
}

.checkbox-label {
  font-weight: normal;
  margin-bottom: 0;
  color: #1D1B16;
  cursor: pointer;
}
.checkbox-label strong {
  font-weight: 600;
  color: #1F2A44;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subhead {
  font-size: 18px;
  color: #5C5A55;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.at-a-glance {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
  font-size: 14px;
  color: #5C5A55;
}
.at-a-glance span {
  white-space: nowrap;
}

.how-it-works-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  text-align: center;
}
.step-card h3 {
  margin-bottom: 16px;
}

.how-it-works {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
  margin-bottom: 48px;
}
.how-it-works h2 {
  text-align: center;
  margin-bottom: 24px;
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
@media (min-width: 641px) {
  .how-it-works-steps {
    flex-direction: row;
    justify-content: space-around;
  }
}
.how-it-works-steps li {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: #F7F3E8;
  border-radius: 10px;
  font-weight: 500;
}

.age-tiles {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .age-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.age-tile {
  display: block;
  padding: 32px;
  background: #FFFFFF;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #1F2A44;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.2s;
}
.age-tile:hover {
  border-color: #B07A2A;
  background: #F7F3E8;
  text-decoration: none;
  transform: translateY(-2px);
}
.age-tile:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
}

.filter-controls {
  margin-bottom: 32px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
}

.filter-label {
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  color: #1F2A44;
}

.filter-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.filter-status {
  font-size: 14px;
  color: #5C5A55;
}

.detail-header {
  text-align: center;
  margin-bottom: 48px;
}

.detail-subhead {
  font-size: 18px;
  color: #5C5A55;
  max-width: 700px;
  margin: 0 auto 32px;
}
.detail-subhead.muted {
  color: #5C5A55;
  font-size: 16px;
}

.detail-glance {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
  margin-bottom: 48px;
}
.detail-glance h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.detail-glance-grid,
.logistics-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .detail-glance-grid,
  .logistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.detail-glance-item,
.logistics-item {
  display: flex;
  gap: 12px;
}

.detail-glance-label,
.logistics-key {
  font-weight: 600;
  color: #1F2A44;
}

.logistics-key {
  min-width: 120px;
}

.age-group-cards {
  margin-bottom: 48px;
}

.age-group-card {
  text-align: center;
}
.age-group-card h3 {
  margin-bottom: 16px;
}

.age-group-oneliner {
  font-size: 16px;
  color: #5C5A55;
  margin-bottom: 24px;
}

.age-group-bullets {
  list-style: none;
  margin-left: 0;
  margin-bottom: 24px;
  text-align: left;
}
.age-group-bullets li {
  padding-left: 24px;
  position: relative;
}
.age-group-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #B07A2A;
  font-weight: bold;
}

.quick-facts {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
  margin-bottom: 48px;
}
@media (min-width: 641px) {
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .quick-facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.quick-fact-label {
  font-size: 14px;
  color: #5C5A55;
  font-weight: 600;
}

.quick-fact-value {
  font-size: 16px;
  color: #1D1B16;
}

.hero-banner {
  padding-block: 72px;
  background: #FFFFFF;
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 641px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media (min-width: 641px) {
  .hero-text h1 {
    font-size: 48px;
  }
}
.hero-text .hero-subhead {
  font-size: 20px;
  color: #5C5A55;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-text .hero-grounding {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}
.hero-text .hero-service-area {
  font-size: 14px;
  color: #5C5A55;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 24px;
  margin-bottom: 24px;
}

.hero-image {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.image-placeholder {
  background: #EEEBE3;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.image-placeholder-wide {
  min-height: 400px;
  margin-top: 32px;
}
.image-placeholder-square {
  min-height: 280px;
  aspect-ratio: 1;
}

.image-caption {
  font-style: italic;
  color: #5C5A55;
  text-align: center;
  font-size: 15px;
  margin: 0;
  max-width: 400px;
}

.section-different {
  background: #F7F3E8;
}

.pillars-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  margin-top: 32px;
}
@media (min-width: 641px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1025px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  text-align: center;
}
.pillar h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1F2A44;
}
.pillar p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border: 3px solid #1F4A3C;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.section-age-groups {
  background: #FFFFFF;
}
.section-age-groups h2 {
  margin-bottom: 48px;
}

.age-group-rows {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.age-group-row {
  padding: 24px;
  border-bottom: 1px solid #E4DDD0;
}
.age-group-row:last-child {
  border-bottom: none;
}
.age-group-row h3 {
  margin-bottom: 12px;
  color: #1F2A44;
}
.age-group-row p {
  margin-bottom: 16px;
  color: #5C5A55;
}
.age-group-row a {
  color: #1F2A44;
  text-decoration: none;
  font-weight: 500;
}
.age-group-row a:hover {
  text-decoration: underline;
  color: #B07A2A;
}

.age-cards {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.age-card {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 641px) {
  .age-card {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 641px) {
  .age-card-reverse {
    direction: rtl;
  }
  .age-card-reverse > * {
    direction: ltr;
  }
}

.age-card-text h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1F2A44;
}
.age-card-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.age-qualities {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.age-qualities li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 16px;
  font-size: 15px;
}
.age-qualities li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1F4A3C;
  font-size: 24px;
  line-height: 1;
}

.section-session-feels {
  background: #F7F3E8;
}

.container-narrow {
  max-width: 800px;
}

.session-description {
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  color: #1D1B16;
  margin-bottom: 32px;
}

.visual-band {
  background: #FFFFFF;
}

.visual-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.visual-item .image-placeholder {
  min-height: 240px;
}

.section-manifesto {
  background: #1F2A44;
  color: white;
}
.section-manifesto h2 {
  color: white;
  margin-bottom: 48px;
}

.manifesto-statements {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto-statement {
  font-size: 17px;
  line-height: 1.7;
  color: white;
  margin: 0;
  padding-left: 24px;
  position: relative;
}
.manifesto-statement:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #B07A2A;
}

.section-gentle-cta {
  background: #FFFFFF;
  padding-block: 48px;
}

.gentle-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.gentle-cta .btn {
  margin-bottom: 16px;
}

.helper-text {
  font-size: 14px;
  color: #5C5A55;
  margin: 0;
}

.gentle-cta-text {
  font-size: 18px;
  margin-bottom: 24px;
  color: #1D1B16;
}

.content-section {
  margin-bottom: 72px;
}
.content-section h2 {
  margin-bottom: 24px;
}
.content-section h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.facilitator-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 24px;
}
@media (min-width: 641px) {
  .facilitator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facilitator-option {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #E4DDD0;
  text-align: center;
}
.facilitator-option h4 {
  margin-bottom: 16px;
  color: #1F2A44;
}
.facilitator-option p {
  margin-bottom: 12px;
  font-size: 14px;
}
.facilitator-option p:last-child {
  margin-bottom: 0;
  color: #5C5A55;
}

.games-grid {
  margin-bottom: 24px;
}

.game-tile {
  text-align: center;
}
.game-tile h4 {
  margin-bottom: 16px;
  color: #1F2A44;
  font-size: 18px;
}
.game-tile p {
  margin-bottom: 16px;
  font-size: 15px;
}
.game-tile .pill {
  display: inline-block;
}

.packages-grid {
  margin-bottom: 24px;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.package-card h4 {
  margin-bottom: 12px;
  color: #1F2A44;
  font-size: 20px;
}

.package-best-for {
  color: #5C5A55;
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
}

.package-details {
  background: #F7F3E8;
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 24px;
}

.package-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #E4DDD0;
}
.package-detail-row:last-child {
  border-bottom: none;
}

.package-detail-label {
  font-weight: 600;
  color: #1F2A44;
}

.package-detail-value {
  color: #1D1B16;
}

.package-includes,
.package-addons {
  margin-bottom: 24px;
}
.package-includes strong,
.package-addons strong {
  display: block;
  margin-bottom: 12px;
  color: #1F2A44;
}
.package-includes ul,
.package-addons ul {
  margin-left: 24px;
  margin-bottom: 0;
}
.package-includes li,
.package-addons li {
  margin-bottom: 8px;
  font-size: 14px;
}

.package-notes {
  padding: 16px;
  background: #F7F3E8;
  border-radius: 10px;
  margin-bottom: 24px;
  font-style: italic;
}

.select-package-btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

.request-details-section {
  background: #FFFFFF;
  padding: 48px 32px;
  border-radius: 14px;
  border: 1px solid #E4DDD0;
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.request-details-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.request-details-section h2 {
  margin-bottom: 16px;
}

.section-helper-text {
  color: #5C5A55;
  font-size: 15px;
  margin-bottom: 0;
}

.request-form {
  max-width: 600px;
  margin: 0 auto;
}

.options-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto 48px;
}
@media (min-width: 641px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.option-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 10px;
  border: 2px solid #E4DDD0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.2s;
}
.option-card:hover {
  box-shadow: 0 4px 12px rgba(29, 27, 22, 0.12);
}

.option-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.option-header h3 {
  margin-bottom: 0;
}

.option-subtext {
  font-size: 14px;
  color: #5C5A55;
  font-style: italic;
}

.option-details {
  flex: 1;
}
.option-details ul {
  margin-left: 24px;
  margin-bottom: 0;
}
.option-details li {
  margin-bottom: 8px;
}

.option-label {
  display: block;
  font-size: 14px;
  color: #1F2A44;
  margin-bottom: 12px;
}

.option-muted {
  color: #5C5A55;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-microcopy {
  text-align: center;
  color: #5C5A55;
  font-size: 14px;
  max-width: 700px;
  margin: 48px auto 0;
}

.confirmation-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.confirmation-content h1 {
  margin-bottom: 24px;
}
.confirmation-content .btn {
  margin-top: 32px;
}

.experience-section {
  margin-bottom: 48px;
}
.experience-section h2 {
  margin-bottom: 16px;
}
.experience-section h3 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 18px;
}
.experience-section ul {
  margin-bottom: 24px;
}
.experience-section > p:last-of-type {
  margin-top: 24px;
}

.descriptor-line {
  font-style: italic;
  color: #5C5A55;
  margin-bottom: 16px;
}

.section-divider {
  border: none;
  border-top: 1px solid #E4DDD0;
  margin: 48px 0;
}

.closing-section {
  text-align: center;
  color: #5C5A55;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 24px;
}

.trust-features {
  background: #F7F3E8;
  padding-block: 48px;
}

.features-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 961px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-block {
  text-align: center;
}
.feature-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1F2A44;
}
.feature-block p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #1D1B16;
}

.experience-snapshot {
  background: #FFFFFF;
}
.experience-snapshot h2 {
  text-align: center;
  margin-bottom: 48px;
}

.experience-cards-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 641px) {
  .experience-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 961px) {
  .experience-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.experience-card {
  display: block;
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  border: 2px solid #E4DDD0;
  transition: all 0.2s;
}
.experience-card:hover {
  border-color: #B07A2A;
  box-shadow: 0 4px 12px rgba(29, 27, 22, 0.12);
  transform: translateY(-2px);
}
.experience-card:focus {
  outline: 3px solid #B07A2A;
  outline-offset: 2px;
}

.experience-card-image {
  width: 100%;
}
.experience-card-image .image-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #E4DDD0;
}

.experience-card-content {
  padding: 24px;
}
.experience-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1F2A44;
}
.experience-card-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #1D1B16;
}

.what-happens {
  background: #F7F3E8;
}

.what-happens-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 641px) {
  .what-happens-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.what-happens-content h2 {
  margin-bottom: 24px;
}

.what-happens-list {
  margin: 0;
  padding-left: 32px;
  list-style-position: outside;
}
.what-happens-list li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.what-happens-list li:last-child {
  margin-bottom: 0;
}

.what-happens-image .image-placeholder {
  min-height: 320px;
}

.use-cases {
  background: #FFFFFF;
}

.use-cases-text {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
}

.final-cta {
  background: #F7F3E8;
}

.final-cta-content {
  text-align: center;
}
.final-cta-content h2 {
  margin-bottom: 16px;
}
.final-cta-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.experiences-hub-header {
  background: #FFFFFF;
}
.experiences-hub-header h1 {
  margin-bottom: 24px;
}

.hub-intro {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
  color: #1D1B16;
}

.photo-strip-section {
  background: #FFFFFF;
  padding-top: 0;
}

.photo-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #E4DDD0 transparent;
  padding-bottom: 12px;
}
.photo-strip::-webkit-scrollbar {
  height: 6px;
}
.photo-strip::-webkit-scrollbar-track {
  background: transparent;
}
.photo-strip::-webkit-scrollbar-thumb {
  background: #E4DDD0;
  border-radius: 3px;
}
@media (min-width: 641px) {
  .photo-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
}
@media (min-width: 900px) {
  .photo-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.photo-strip-tile {
  flex: 0 0 85%;
  scroll-snap-align: start;
}
@media (min-width: 641px) {
  .photo-strip-tile {
    flex: unset;
    scroll-snap-align: unset;
  }
}
.photo-strip-tile .image-placeholder {
  aspect-ratio: 4/3;
  min-height: unset;
  height: 100%;
}
@media (min-width: 641px) {
  .photo-strip-tile .image-placeholder {
    aspect-ratio: 4/3;
  }
}

.photo-strip-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E4DDD0;
  justify-content: center;
}
@media (min-width: 641px) {
  .photo-strip-jump {
    justify-content: flex-start;
  }
}

.jump-link {
  font-size: 15px;
  color: #1D1B16;
  text-decoration: none;
  padding: 12px 16px;
  border: 1px solid #E4DDD0;
  border-radius: 10px;
  background: #F7F3E8;
  transition: all 0.2s ease;
}
.jump-link:hover {
  background: #FFFFFF;
  border-color: #1F2A44;
}
.jump-link:focus-visible {
  outline: 2px solid #1F2A44;
  outline-offset: 2px;
}

.exp-age {
  background: #FFFFFF;
}
.exp-age:nth-child(even) {
  background: #F7F3E8;
}

.exp-age__title {
  margin-bottom: 32px;
}

.exp-age__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "primary" "body" "glance" "secondary";
  gap: 32px;
  align-items: start;
}
@media (min-width: 641px) {
  .exp-age__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "glance primary" "body secondary";
    gap: 48px;
  }
}

.exp-age__glance {
  grid-area: glance;
  background: #EEEBE3;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  padding: 24px;
}
.exp-age__glance h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1F2A44;
}

.exp-age__photo {
  position: relative;
  aspect-ratio: 4/3;
  background: #EEEBE3;
  border: 2px solid #E4DDD0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.exp-age__photo--primary {
  grid-area: primary;
}
.exp-age__photo--secondary {
  grid-area: secondary;
}

.exp-age__photoLabel {
  font-size: 14px;
  color: #5C5A55;
  text-align: center;
  padding: 16px;
}

.exp-age__body {
  grid-area: body;
}

.age-group-description {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #1D1B16;
}

.designed-for-section {
  margin-bottom: 32px;
}
.designed-for-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1F2A44;
}

.designed-for-list {
  margin: 0;
  padding-left: 24px;
  list-style-type: disc;
}
.designed-for-list li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #1D1B16;
}
.designed-for-list li:last-child {
  margin-bottom: 0;
}

.at-a-glance-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .at-a-glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.glance-label {
  font-size: 13px;
  font-weight: 600;
  color: #5C5A55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.glance-value {
  font-size: 15px;
  line-height: 1.6;
  color: #1D1B16;
}

.age-group-cta {
  margin-top: 24px;
}

.reassurance-section {
  background: #FFFFFF;
  text-align: center;
}
.reassurance-section h2 {
  margin-bottom: 16px;
}
.reassurance-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.what-to-expect {
  margin-bottom: 32px;
}
.what-to-expect h2 {
  margin-bottom: 16px;
}
.what-to-expect ul {
  margin-left: 32px;
  margin-bottom: 0;
}
.what-to-expect li {
  margin-bottom: 12px;
}

.scheduler-heading {
  margin-top: 32px;
  margin-bottom: 24px;
}

.scheduler-container {
  margin-bottom: 48px;
  min-height: 600px;
  border: 1px solid #E4DDD0;
  border-radius: 10px;
  background: #FFFFFF;
}

.scheduler-fallback {
  margin-bottom: 48px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E4DDD0;
  border-radius: 10px;
}
.scheduler-fallback h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
.scheduler-fallback p {
  margin-bottom: 16px;
}

.fallback-options {
  margin-left: 32px;
  margin-bottom: 0;
}
.fallback-options li {
  margin-bottom: 12px;
}
.fallback-options a {
  color: #1F2A44;
  text-decoration: none;
  font-weight: 500;
}
.fallback-options a:hover {
  text-decoration: underline;
  color: #B07A2A;
}

.privacy-note {
  padding: 24px;
  background: #F7F3E8;
  border-radius: 10px;
}
.privacy-note h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
.privacy-note p {
  margin-bottom: 0;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.muted-text {
  color: #5C5A55;
}

.section-heading-centered {
  text-align: center;
  margin-bottom: 32px;
}

[hidden] {
  display: none !important;
}
