/* S.nav__mobile-me.nav__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #ffffff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
} hero page */
* { box-sizing: border-box; }
html { 
    scroll-behavior: smooth;
    height: 100%;
}
body { 
    margin: 0;
    padding-top: 64px; /* Match nav height */
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; 
    color: #4b4b4b; 
    background: #fff;
    min-height: 100%;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Mobile Menu */

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  z-index: 1000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 20px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

/* Menu content wrapper to ensure solid background */
.nav__mobile-menu::before {
  position: relative;
  /* top: 0; */
  /* left: 0;
  right: 0;
  bottom: 0; */
  background-color: #ffffff!important;
  /* z-index: -1; */
}

.nav__mobile-menu-inner {
  position: relative;
  /* z-index: 2; */
  /* display: flex; */
  flex-direction: column;
  height: 100%;
  /* gap: 20px; */
  background-color: #ffffff!important;
}

.nav__mobile-header {
  border-bottom: 1px solid #f0f0f0;
  background-color: #ffffff!important;
  /* padding-bottom: 16px; */
  /* margin-bottom: 16px; */
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #ffffff !important;
  font-size: 16px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.nav__mobile-link:hover {
  color: #5E8C2C;
}

.nav__mobile-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  background-color: #ffffff !important;
}

.nav__mobile-cta {
  display: block;
  width: 100%;
  background: #5E8C2C;
  color: #ffffff;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.nav__mobile-cta:hover {
  background: #5E8C2C;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #4b4b4b;
  background: #fff;
}

/* Prevent scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Top Nav */
.nav { 
  position: fixed; 
  top: 0; 
  left: 0;
  right: 0;
  z-index: 1000; 
  background: rgba(255, 255, 255, 0.98)!important; 
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  height: 64px;
  /* display: flex; */
  align-items: center;
}

.nav__inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  position: relative;
  height: 64px;
}

/* Mobile Menu Button */
.nav__menu-button {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  border-radius: 50%;
  margin-left: auto;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav__menu-button:hover {
  background-color: rgba(94,140,44,0.1);
}

.nav__menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #5E8C2C;
  position: relative;
  transition: background 0.3s ease;
}

.nav__menu-icon::before,
.nav__menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: #5E8C2C;
  transition: transform 0.3s ease;
}

.nav__menu-icon::before { top: -8px; }
.nav__menu-icon::after { bottom: -8px; }

/* Mobile Menu Open State */


.nav.menu-open .nav__menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav.menu-open .nav__menu-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Mobile Menu */
/* Mobile Menu */
/* Mobile Menu Overlay */
.nav__overlay {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.nav.menu-open .nav__overlay {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.nav__mobile-menu {
  position: fixed;
  /* top: 64px; Match nav height */
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  background: #ffffff !important;
  z-index: 1000;
  transition: all 0.3s ease;
  /* display: flex; */
  flex-direction: column;
  /* padding: 32px 24px; */
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.nav.menu-open .nav__mobile-menu {
  right: 0;
}

.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav__mobile-brand {
  color: #4A61DD;
  font-family: Inter, system-ui, sans-serif;
  font-size: 30px !important;
  font-weight: 800;
  text-decoration: none;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 20px;
}

.nav__mobile-link {
  color: #8C4E1D;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 4px 0;
}

.nav__mobile-link:hover {
  color: #5E8C2C;
}

.nav__mobile-footer {
  margin-top: auto;
  padding-top: 40px;
}

.nav__mobile-cta {
  display: block;
  width: 100%;
  background: #5E8C2C;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.nav__mobile-cta:hover {
  background: #5E8C2C;
}

.nav__close-button {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__close-button:hover {
  background: rgba(0,0,0,0.05);
}

.nav__close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}

.nav__close-icon::before,
.nav__close-icon::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #8C4E1D;
  top: 50%;
  left: 0;
  transition: background-color 0.2s ease;
}

.nav__close-icon::before {
  transform: rotate(45deg);
}

.nav__close-icon::after {
  transform: rotate(-45deg);
}

.nav__close-button:hover .nav__close-icon::before,
.nav__close-button:hover .nav__close-icon::after {
  background: #5E8C2C;
}

.nav.menu-open .nav__mobile-menu {
  right: 0;
  transform: translateX(0);
}

/* Body when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Reset body state when menu is closed */
body:not(.menu-open) {
  overflow: auto;
}

/* Main content when menu is open */
body.menu-open .main-content {
  filter: blur(4px);
  transition: filter 0.3s ease;
  pointer-events: none;
}

/* Reset main content when menu is closed */
body:not(.menu-open) .main-content {
  filter: none;
  pointer-events: auto;
}

.nav.menu-open .nav__mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav.menu-open .nav__mobile-menu {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-menu-inner {
    background-color: white!important;
  /* display: flex; */
  flex-direction: column;
  height: 100%;
  /* padding: 20px; */
}

.nav__mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.nav__mobile-brand {
  color: #5E8C2C;
  font-size: 16px;
  text-decoration: none;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  padding-left: 20px;
}

.nav__mobile-link {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  border-bottom-color: #000;
}

.nav__mobile-footer {
  margin-top: auto;
  padding-top: 20px;
}

.nav__mobile-cta {
  display: block;
  background: #5E8C2C;
  color: #fff;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.nav__mobile-cta:hover {
  background: #5E8C2C;
}

.nav__mobile-link {
  font-size: 18px;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.nav__mobile-link:hover {
  color: #5E8C2C;
  padding-left: 8px;
}

.nav__mobile-link--cta {
  margin-top: 16px;
  background: #5E8C2C;
  color: white !important;
  padding: 14px 32px;
  border-radius: 9999px;
  font-size: 18px;
  opacity: 1;
  width: 100%;
  max-width: 200px;
  box-shadow: 0 4px 12px rgba(94,140,44,0.2);
}

.nav__mobile-link--cta:hover {
  background: #5E8C2C;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(94,140,44,0.25);
}
.nav__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #5e8c2c; font-size: 30px; font-family: inherit; text-decoration: none; }
.nav__brand span { color: #5e8c2c; }
.nav__links a { color: #8b7b66; text-decoration: none; font-weight: 600; margin-left: 24px; }
.nav__links a:hover { color: #5e8c2c; }
.nav__cta { background: #7AA43A; color: #fff !important; padding: 10px 16px; border-radius: 9999px; border: 0; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: radial-gradient(120% 120% at 20% 10%, #F3E69A 0%, #FFF3BF 40%, #F0F5E9 100%); }
.hero__inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 48px 24px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero__title { margin: 0 0 12px; font-family: 'Baloo 2', cursive; font-size: 56px; line-height: 1.1; color: #8C4E1D; letter-spacing: 0.5px; }
.hero__subtitle { margin: 0 0 18px; font-size: 16px; line-height: 1.8; color: #6b6b6b; max-width: 600px; }
.hero__crafted { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: #7A6D57; margin: 10px 0 24px; }
.sparkle { font-size: 16px; }
.hero__actions { display: flex; gap: 16px; }

.btn { display: inline-block; border-radius: 9999px; padding: 14px 20px; font-weight: 800; text-decoration: none; font-size: 15px; }
.btn--filled { background: #6E9F2E; color: #fff; box-shadow: 0 10px 24px rgba(110,159,46,0.25); border: 1px solid rgba(0,0,0,0.05); }
.btn--filled:hover { background: #648F29; }
.btn--outline { background: transparent; color: #7B8B47; border: 2px solid #B8C988; }
.btn--outline:hover { background: rgba(184,201,136,0.1); }

.hero__right { display: flex; align-items: center; justify-content: center; }
.media-card { width: min(540px, 90%); height: 360px; border-radius: 28px; background: radial-gradient(120% 120% at 20% 10%, rgba(200,226,197,0.9) 0%, rgba(161,199,156,0.85) 45%, rgba(186,165,113,0.8) 100%); box-shadow: 0 18px 40px rgba(0,0,0,0.15); }

/* Responsive hero image inside media-card */
.media-card { position: relative; overflow: hidden; }
.media-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 767px) {
  .media-card { height: 280px; }
}

@media (min-width: 1440px) {
  .media-card { height: 420px; }
}

.hero__wave { position: relative; margin-top: 40px; }
.hero__wave svg { display: block; width: 100%; height: 120px; }

.below-hero { 
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Main content wrapper */
.main-content {
    position: relative;
    z-index: 1;
    background: #ffffff;
    min-height: calc(100vh - 64px);
    margin-top: 64px;
}

/* About section */
.about { background: #ffffff; padding: 72px 24px 96px; }
.about__inner { max-width: 960px; margin: 0 auto; text-align: center; }
.about__title { font-family: 'Baloo 2', cursive; font-size: 42px; color: #8C4E1D; margin: 0 0 16px; }
.about__lead { color: #6b6b6b; font-size: 20px; line-height: 1.9; margin: 0 auto 18px; max-width: 820px; }
.about__copy { color: #6b6b6b; font-size: 20px; line-height: 1.9; margin: 0 auto 36px; max-width: 900px; }

.mission-card { margin: 0 auto; max-width: 860px; padding: 28px 28px; border-radius: 20px; background: linear-gradient(180deg, #FEF6C8 0%, #F5F9ED 100%); box-shadow: 0 24px 48px rgba(0,0,0,0.06); }
.mission__title { margin: 0 0 8px; font-family: 'Baloo 2', cursive; font-size: 28px; color: #5E8C2C; font-weight: 900; }
.mission__text { margin: 0; color: #6b6b6b; font-size: 17px; line-height: 1.8; max-width: 760px; margin-left: auto; margin-right: auto; }

/* Programs section */
.programs { background: linear-gradient(180deg, #FFF9E9 0%, #FFF5DD 60%, #FFF8E8 100%); padding: 72px 24px 96px; }
.programs__inner { max-width: 1200px; margin: 0 auto; }
.programs__title { text-align: center; font-family: 'Baloo 2', cursive; font-size: 42px; color: #8C4E1D; margin: 0 0 8px; }
.programs__subtitle { text-align: center; color: #6b6b6b; font-size: 18px; line-height: 1.8; margin: 0 auto 32px; max-width: 900px; }

.programs__grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 12px; }
@media (min-width: 980px) { .programs__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }

.p-card { background: #ffffff; border-radius: 26px; padding: 28px; box-shadow: 0 28px 52px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); transition: box-shadow 0.2s ease, transform 0.2s ease; }
.p-card:hover { box-shadow: 0 32px 56px rgba(0,0,0,0.1); transform: translateY(-1px); }
.p-card__icon { font-size: 28px; margin-bottom: 8px; }
.p-card__title { margin: 6px 0 10px; font-family: 'Baloo 2', cursive; font-size: 30px; color: #7B3F17; letter-spacing: 0.2px; }
.p-card__pills { display: flex; gap: 10px; margin: 10px 0 14px; }
.pill { display: inline-block; border-radius: 9999px; font-weight: 800; font-size: 14px; padding: 6px 12px; }
.pill--price { background: #F7E48B; color: #4F3B00; }
.pill--age { background: #A5D3EA; color: #134B68; }
.p-card__desc { color: #6b6b6b; line-height: 1.9; font-size: 16px; max-width: 630px; }
.p-card__cta { display: inline-block; margin-top: 16px; background: #6E9F2E; color: #fff; text-decoration: none; font-weight: 800; border-radius: 9999px; padding: 12px 18px; box-shadow: 0 10px 24px rgba(110,159,46,0.2); }
.p-card__cta:hover { background: #648F29; }

/* Gallery section */
.gallery { background: #FFF9F0; padding: 72px 24px 96px; }
.gallery__inner { max-width: 1200px; margin: 0 auto; }
.gallery__title { text-align: center; font-family: 'Baloo 2', cursive; font-size: 42px; color: #8C4E1D; margin: 0 0 12px; }
.gallery__subtitle { text-align: center; color: #6b6b6b; font-size: 18px; line-height: 1.8; margin: 0 auto 48px; max-width: 900px; }

.gallery__grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; padding: 12px; }
@media (min-width: 640px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-card { margin: 0; }
.gallery-card__media { 
    aspect-ratio: 4/3; 
    background: #fff; 
    border-radius: 18px; 
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.gallery-card:hover .gallery-card__media { 
    transform: translateY(-2px); 
    box-shadow: 0 24px 48px rgba(0,0,0,0.12); 
}
.gallery-card__caption { 
    text-align: center; 
    margin-top: 16px; 
    color: #5E8C2C; 
    font-size: 18px; 
    font-weight: 600; 
    line-height: 1.6; 
}
.gallery-card__desc {
    text-align: center;
    color: #6b6b6b;
    font-size: 14px;
    margin-top: 4px;
    line-height: 1.5;
}

/* Photo strip (auto-scrolling) */
.photo-strip {
  padding: 28px 24px 48px;
  background: linear-gradient(180deg, #FFF9F0 0%, #FFF8E8 100%);
}
.photo-strip__container {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  align-items: stretch;
}

/* inner rail used for seamless looping */
.photo-strip__rail {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.photo-card {
  min-width: 240px;
  width: 240px;
  height: 400px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
  flex-shrink: 0;
  text-align: center;
  margin: 0;
}
.photo-card img { width: 100%; height: 400px; object-fit: cover; display: block; }
.photo-card figcaption { padding: 12px; font-weight: 700; color: #5E8C2C; }

@media (max-width: 980px) {
  .photo-card { min-width: 200px; width: 200px;  }
  .photo-card img { height: 400px; }
}

/* Program page shared styles (hero + experience cards) */
.program-hero { max-width:960px; margin:48px auto 24px; padding:28px 20px; }
.program-hero__title { font-family: 'Baloo 2', cursive; font-size:40px; color:#8C4E1D; margin:8px 0 6px; }
.program-hero__subtitle { color:#6b6b6b; font-size:18px; max-width:760px; }
.program-hero__img { width:100%; height:auto; border-radius:12px; margin:22px 0; box-shadow: 0 8px 20px rgba(24,24,24,0.06); object-fit:cover; }
.experience { background: #FFF8F1; padding:28px 20px; border-radius:12px; max-width:880px; margin:28px auto; }
.experience__heading { text-align:center; font-size:30px; color:#1e2b20; margin-bottom:18px; }
.experience__list { display:grid; grid-template-columns: 1fr; gap:18px; max-width:760px; margin:0 auto; }
.exp-item { background: #fff; padding:16px; border-radius:10px; display:flex; gap:12px; align-items:flex-start; box-shadow: 0 4px 10px rgba(16,16,16,0.04); }
.exp-item__emoji { font-size:22px; line-height:1; width:40px; flex-shrink:0; }
.exp-item__body { color:#5b5b5b; }

/* Responsive adjustments for program pages */
@media (min-width:760px) {
  .experience__list { grid-template-columns: 1fr 1fr; }
  .program-hero__title { font-size:44px; }
}

@media (max-width: 767px) {
  .program-hero { margin:32px 16px; padding:18px 12px; }
  .program-hero__title { font-size:28px; text-align:center; }
  .program-hero__subtitle { font-size:15px; text-align:center; }
  .program-hero__img { margin:16px 0; }
  .experience { padding:18px 12px; margin:20px 12px; }
  .experience__heading { font-size:24px; }
  .exp-item { padding:12px; gap:10px; }
  .exp-item__emoji { font-size:20px; width:36px; }
}

@media (min-width: 1200px) {
  .program-hero { max-width:1100px; }
  .program-hero__title { font-size:52px; }
}

/* Stories/Testimonials section */
.stories { background: #FFFCF3; padding: 72px 24px 96px; }
.stories__inner { max-width: 900px; margin: 0 auto; }
.stories__title { text-align: center; font-family: 'Baloo 2', cursive; font-size: 42px; color: #8C4E1D; margin: 0 0 36px; }
.stories__subtitle { text-align: center; color: #6b6b6b; font-size: 18px; line-height: 1.8; margin: 0 auto 48px; max-width: 900px; }

.testimonial-card { margin: 0 auto; padding: 36px 40px 32px; max-width: 800px; background: linear-gradient(180deg, #FEF6C8 0%, #F5F9ED 100%); border-radius: 24px; box-shadow: 0 24px 48px rgba(0,0,0,0.06); position: relative; height: 250px ; width: 700px;}
.testimonial-card__quote { position: absolute; top: 20px; left: 24px; font-size: 42px; color: rgba(94,140,44,0.15); font-family: Georgia, serif; }
.testimonial-card__text { font-size: 19px; line-height: 1.9; color: #6b6b6b; margin: 0 0 20px; font-style: italic; }
.testimonial-card__footer { display: flex; gap: 8px; align-items: baseline; }
.testimonial-card__author { font-style: normal; font-weight: 700; color: #5E8C2C; }
.testimonial-card__role { font-size: 15px; color: #8b7b66; }

/* Testimonial carousel */
.testimonial-carousel { position: relative; width: 100%; max-width: 900px; margin: 0 auto; overflow: hidden; }
.testimonial-item { display: none; padding: 12px; opacity: 0; transform: translateY(6px); transition: opacity 0.4s ease, transform 0.4s ease; }
.testimonial-item.active { display: block; opacity: 1; transform: translateY(0); }
.testimonial-item .testimonial-card { max-width: 100%; box-shadow: 0 20px 44px rgba(0,0,0,0.06); }

@media (max-width: 767px) {
  .testimonial-card { padding: 28px 20px; }
}

/* FAQ section */
.faq { background: #FFFCF3; padding: 72px 24px 96px; }
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq__title { text-align: center; font-family: 'Baloo 2', cursive; font-size: 42px; color: #8C4E1D; margin: 0 0 36px; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq-item { background: #ffffff; border-radius: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.03); }
.faq-item[open] { background: linear-gradient(180deg, #FEF6C8 0%, #F5F9ED 100%); }

.faq-item__question {
  position: relative;
  padding: 24px 56px 24px 28px;
  font-weight: 600;
  color: #6b6b6b;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__question .faq-item__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.faq-item__question .faq-item__icon::before,
.faq-item__question .faq-item__icon::after {
  content: "";
  position: absolute;
  background: #8C4E1D;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.faq-item__question .faq-item__icon::before {
  width: 2px;
  height: 12px;
  top: 4px;
  left: 9px;
}

.faq-item__question .faq-item__icon::after {
  width: 12px;
  height: 2px;
  top: 9px;
  left: 4px;
}

.faq-item[open] .faq-item__question .faq-item__icon::before {
  transform: rotate(90deg);
}

.faq-item[open] .faq-item__question {
  color: #5E8C2C;
}

.faq-item__answer {
  padding: 0 28px 24px;
  color: #6b6b6b;
  line-height: 1.8;
}

.ready-section {
  background: linear-gradient(180deg, #77A93B 0%, #5E8C2C 100%);
  padding: 72px 24px;
  color: white;
  text-align: center;
}

.ready-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.ready-section__title {
  font-family: 'Baloo 2', cursive;
  font-size: 42px;
  margin: 0 0 24px;
}

.ready-section__text {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 16px;
  opacity: 0.95;
}

.ready-section__welcome {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 32px;
}

.ready-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.ready-section__button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ready-section__button--primary {
  background: #FFF;
  color: #5E8C2C;
}

.ready-section__button--primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.ready-section__button--secondary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #FFF;
}

.ready-section__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.footer {
  background: #5E3517;
  color: #fff;
  padding: 48px 24px 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
  text-decoration: none;
}

.footer__tagline {
  color: #D4B594;
  font-style: italic;
  margin: 0 0 24px;
}

.footer__heading {
  font-weight: 700;
  margin: 0 0 16px;
  color: #fff;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: #D4B594;
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.footer__social-link img { width: 18px; height: 18px; display: block; }

.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #D4B594;
  font-size: 14px;
}

.footer__heart {
  color: #ff6b6b;
}

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .nav__inner { padding: 14px 20px; }
  .hero__inner { padding: 72px 20px 40px; }
  .hero__title { font-size: 48px; }
  .programs__grid { gap: 20px; }
  .gallery__grid { gap: 20px; }
  .testimonial-card { padding: 32px; }
}

/* Small Tablet (600px to 767px) */
@media (max-width: 767px) {
  .nav__menu-button { display: block; }
  .nav__links { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero__title { font-size: 42px; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__crafted { justify-content: center; }
  .hero__actions { justify-content: center; }
  .media-card { height: 280px; width: 100%; }
  
  .about { padding: 56px 20px 72px; }
  .about__title { font-size: 36px; }
  .mission-card { padding: 24px 20px; }
  
  .programs { padding: 56px 20px 72px; }
  .programs__title { font-size: 36px; }
  .programs__grid { grid-template-columns: 1fr; }
  .p-card { padding: 24px 20px; }
  
  .gallery { padding: 56px 20px 72px; }
  .gallery__title { font-size: 36px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  
  .stories { padding: 56px 20px 72px; }
  .stories__title { font-size: 36px; }
  .testimonial-card { padding: 28px 24px; }
  
  .faq { padding: 56px 20px 72px; }
  .faq__title { font-size: 36px; }
  
  .ready-section { padding: 56px 20px; }
  .ready-section__title { font-size: 36px; }
  .ready-section__actions { flex-direction: column; align-items: stretch; }
  .ready-section__button { text-align: center; }
  
  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__social { justify-content: center; }
}

/* Mobile (320px to 599px) */
@media (max-width: 599px) {
  .nav__inner { padding: 12px 16px; }
  .nav__brand { font-size: 30px; font-family: inherit; }
  .nav__cta { padding: 8px 14px; font-size: 14px; }
  
  .hero__inner { padding: 48px 16px 32px; }
  .hero__title { font-size: 36px; }
  .hero__subtitle { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; text-align: center; }
  .media-card { height: 240px; }
  
  .about { padding: 48px 16px 64px; }
  .about__title { font-size: 32px; }
  .about__lead { font-size: 18px; }
  .about__copy { font-size: 16px; }
  .mission__title { font-size: 24px; }
  .mission__text { font-size: 16px; }
  
  .programs { padding: 48px 16px 64px; }
  .programs__title { font-size: 32px; }
  .programs__subtitle { font-size: 16px; }
  .p-card__title { font-size: 26px; }
  
  .gallery { padding: 48px 16px 64px; }
  .gallery__title { font-size: 32px; }
  .gallery__subtitle { font-size: 16px; }
  .gallery__grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-card__caption { font-size: 15px; }
  
  .stories { padding: 48px 16px 64px; }
  .stories__title { font-size: 32px; }
  .stories__subtitle { font-size: 16px; }
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card__text { font-size: 16px; }
  
  .faq { padding: 48px 16px 64px; }
  .faq__title { font-size: 32px; }
  .faq-item__question { padding: 20px 48px 20px 20px; font-size: 16px; }
  .faq-item__answer { padding: 0 20px 20px; font-size: 15px; }
  
  .ready-section { padding: 48px 16px; }
  .ready-section__title { font-size: 32px; }
  .ready-section__text { font-size: 16px; }
  .ready-section__welcome { font-size: 18px; }
  
  .footer { padding: 40px 16px 24px; }
  .footer__brand { font-size: 20px; }
  .footer__heading { font-size: 18px; }
  .footer__links { font-size: 15px; }
}

/* Handle very small screens */
@media (max-width: 360px) {
  .hero__title { font-size: 32px; }
  .btn { padding: 12px 16px; font-size: 14px; }
  .p-card__pills { flex-wrap: wrap; }
  .pill { font-size: 13px; }
}

/* Handle larger screens */
@media (min-width: 1440px) {
  .hero__inner,
  .about__inner,
  .programs__inner,
  .gallery__inner,
  .stories__inner,
  .faq__inner,
  .ready-section__inner,
  .footer__inner {
    max-width: 1400px;
  }
  
  .hero__title { font-size: 64px; }
  .media-card { height: 400px; }
}
