/* =============================================
   Baby Buntin Wellness - Main Stylesheet
   ============================================= */

/* Google Fonts are enqueued via functions.php */

:root {
  --green-dark:  #3d5a3e;
  --green-mid:   #4a6741;
  --green-light: #e8ede8;
  --green-pale:  #f2f5f0;
  --green-tag:   #eaf0ea;
  --text-dark:   #2c2c2c;
  --text-mid:    #555555;
  --text-light:  #888888;
  --border:      #dde5dd;
  --white:       #ffffff;
  --shadow:      0 2px 12px rgba(0,0,0,0.07);
  --radius:      8px;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; background: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 60px); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 18px; }
p { line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-dark); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans); font-weight: 500;
  border: none; cursor: pointer; transition: background 0.2s;
}
.btn-primary:hover { background: var(--green-mid); color: var(--white); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text-dark);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans); font-weight: 500;
  border: 1.5px solid var(--text-dark); cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--text-dark); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 11px 22px; border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans); font-weight: 500;
  border: 1.5px solid var(--white); cursor: pointer; transition: all 0.2s;
}
.btn-outline-white:hover { background: var(--white); color: var(--green-dark); }

/* ── CONTAINER ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ── SECTION SPACING ── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; max-width: 1200px; margin: 0 auto;
}
.site-logo { display: flex; flex-direction: column; line-height: 1; }
.site-logo .logo-name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600; color: var(--text-dark);
}
.site-logo .logo-sub {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-top: 2px;
}
.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav a { font-size: 14px; color: var(--text-dark); font-weight: 400; transition: color 0.2s; }
.primary-nav a:hover,
.primary-nav a.current-menu-item { color: var(--green-dark); }
.nav-book-btn {
  background: var(--green-dark); color: var(--white) !important;
  padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 500;
  transition: background 0.2s;
}
.nav-book-btn:hover { background: var(--green-mid) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 200;
  flex-direction: column; padding: 30px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-close { font-size: 32px; line-height: 1; background: none; border: none; cursor: pointer; color: var(--text-dark); }
.mobile-nav { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mobile-nav a {
  font-size: 22px; font-weight: 500; color: var(--text-dark);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: block; font-family: var(--font-serif);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-menu .btn-primary { margin-top: 32px; justify-content: center; font-size: 16px; padding: 14px; }

/* =============================================
   HERO BANNER (interior pages)
   ============================================= */
.page-hero { background: var(--green-pale); padding: 70px 40px 60px; }
.page-hero h1 { max-width: 620px; color: var(--text-dark); }
.page-hero p { max-width: 540px; color: var(--text-mid); margin-top: 16px; font-size: 16px; }

/* =============================================
   HOME PAGE
   ============================================= */

/* Hero */
.home-hero { background: var(--green-pale); padding: 70px 40px; }
.home-hero-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.home-hero-text h1 { font-family: var(--font-serif); font-size: clamp(38px, 4.5vw, 58px); line-height: 1.15; }
.home-hero-text h1 em { font-style: italic; }
.home-hero-text p { color: var(--text-mid); margin: 20px 0 32px; font-size: 16px; }
.home-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.home-hero-image { border-radius: 12px; overflow: hidden; }
.home-hero-image img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
.hero-placeholder {
  width: 100%; height: 420px; border-radius: 12px;
  background: linear-gradient(135deg, #c8d8c8 0%, #a8c4a0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 14px; text-align: center; padding: 20px;
}

/* Why Choose */
.why-choose { padding: 80px 0; text-align: center; }
.why-choose h2 { margin-bottom: 8px; }
.why-choose .section-sub { color: var(--text-mid); margin-bottom: 50px; font-size: 16px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.feature-item { text-align: center; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; color: var(--green-dark); font-size: 20px;
}
.feature-item h4 { font-family: var(--font-sans); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.feature-item p { font-size: 14px; color: var(--text-mid); }

/* Upcoming Classes */
.upcoming-classes { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 8px; }
.section-header p { color: var(--text-mid); font-size: 16px; }
.classes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.view-all-wrap { text-align: center; margin-top: 40px; }

/* Class Card */
.class-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.class-card:hover { box-shadow: var(--shadow); }
.class-card-img { position: relative; overflow: hidden; }
.class-card-img img { width: 100%; height: auto; display: block; transition: transform 0.3s; }
.class-card:hover .class-card-img img { transform: scale(1.03); }
.img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #c8d8c8, #9ab89a); display: flex; align-items: center; justify-content: center; color: var(--green-dark); font-size: 13px; }
.class-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92); color: var(--text-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 20px;
}
.class-card-body { padding: 20px; }
.class-card-body h3 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; margin-bottom: 8px; }
.class-card-body > p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.5; }
.class-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.class-meta span { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }
.class-meta svg { flex-shrink: 0; }
.class-card-footer { display: flex; flex-direction: column; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.class-price { font-size: 13px; }
.class-price .from { color: var(--text-light); display: block; }
.class-price .amount { font-size: 20px; font-weight: 600; color: var(--text-dark); }

/* Testimonials */
.testimonials { padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.stars { color: #f5a623; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: 14px; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author strong { font-size: 14px; font-weight: 600; display: block; }
.testimonial-author span { font-size: 13px; color: var(--text-light); }

/* CTA Banner */
.cta-banner { background: var(--green-dark); padding: 70px 40px; text-align: center; }
.cta-banner h2 { font-family: var(--font-serif); color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 16px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Instagram Strip */
.instagram-strip { padding: 60px 0; text-align: center; }
.instagram-strip h2 { margin-bottom: 8px; }
.instagram-strip p { color: var(--text-mid); margin-bottom: 28px; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 32px; }
.insta-item { aspect-ratio: 1; border-radius: 8px; overflow: hidden; background: var(--green-light); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-meet { padding: 80px 0; }
.about-meet-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; align-items: start; }
.about-meet-img { border-radius: 12px; overflow: hidden; }
.about-meet-img img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; }
.about-meet-text h2 { font-family: var(--font-serif); margin-bottom: 20px; }
.about-meet-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 15px; }
.about-meet-text p:last-child { font-style: italic; color: var(--text-mid); }

/* Values */
.our-values { background: var(--green-pale); padding: 80px 0; text-align: center; }
.our-values h2 { margin-bottom: 8px; }
.our-values .section-sub { color: var(--text-mid); margin-bottom: 50px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 48px; }
.value-item { text-align: center; }
.value-icon { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--green-dark); font-size: 20px; background: var(--white); }
.value-item h4 { font-family: var(--font-sans); font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.value-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* What We Offer */
.what-we-offer { padding: 80px 0; }
.what-we-offer h2 { text-align: center; margin-bottom: 8px; }
.what-we-offer .section-sub { text-align: center; color: var(--text-mid); margin-bottom: 50px; display: block; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.offer-item { padding: 28px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.offer-item:nth-child(2n) { border-right: none; }
.offer-item:nth-last-child(-n+2) { border-bottom: none; }
.offer-item h4 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; margin-bottom: 10px; color: var(--text-dark); }
.offer-item p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* Where We Are */
.where-we-are { background: var(--green-pale); padding: 80px 0; text-align: center; }
.where-we-are h2 { margin-bottom: 8px; }
.where-we-are .section-sub { color: var(--text-mid); margin-bottom: 50px; display: block; }
.location-box { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 36px 40px; max-width: 600px; margin: 0 auto; text-align: left; }
.location-box p { font-size: 15px; color: var(--text-mid); margin-bottom: 12px; line-height: 1.7; }
.location-box p strong { color: var(--text-dark); }
.location-box p:last-child { margin-bottom: 0; font-style: italic; }

/* =============================================
   CLASSES PAGE
   ============================================= */
.filter-bar { padding: 36px 0 0; }
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-tab {
  padding: 8px 20px; border-radius: 24px; font-size: 14px; font-weight: 500;
  border: 1.5px solid var(--border); background: var(--white); color: var(--text-dark);
  cursor: pointer; transition: all 0.2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.filter-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0 0; }

.classes-listing { padding: 48px 0 80px; }
.classes-listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Waitlist Banner */
.waitlist-banner { background: var(--green-pale); padding: 70px 40px; text-align: center; margin-top: 60px; }
.waitlist-banner h2 { font-family: var(--font-serif); margin-bottom: 12px; }
.waitlist-banner p { color: var(--text-mid); margin-bottom: 28px; font-size: 16px; }

/* =============================================
   BLOG PAGE
   ============================================= */
.blog-listing { padding: 48px 0 80px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.blog-card:hover { box-shadow: var(--shadow); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.03); }
.blog-card-body { padding: 22px; }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.blog-category {
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  background: var(--green-tag); color: var(--green-dark);
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--border);
}
.blog-date { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.blog-card-body h3 { font-family: var(--font-sans); font-weight: 600; font-size: 17px; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body > p { font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 18px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.read-time { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.read-more { font-size: 14px; font-weight: 500; color: var(--green-dark); display: flex; align-items: center; gap: 4px; }
.read-more:hover { gap: 8px; }

/* Stay Updated */
.stay-updated { background: var(--green-pale); padding: 70px 40px; text-align: center; }
.stay-updated h2 { margin-bottom: 12px; }
.stay-updated p { color: var(--text-mid); margin-bottom: 32px; font-size: 16px; }
.social-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-grid-section { padding: 48px 0 80px; }
.gallery-grid { columns: 3; gap: 16px; }
.gallery-item { break-inside: avoid; margin-bottom: 16px; border-radius: 10px; overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; display: block; border-radius: 10px; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.02); }
.gallery-caption { font-size: 13px; color: var(--text-mid); padding: 8px 0 0; }

/* Instagram CTA */
.insta-cta { background: var(--green-pale); padding: 70px 40px; text-align: center; }
.insta-cta h2 { margin-bottom: 12px; }
.insta-cta p { color: var(--text-mid); margin-bottom: 28px; font-size: 16px; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-body { padding: 70px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 50px; align-items: start; }

.contact-info-col h3 { font-family: var(--font-sans); font-weight: 600; font-size: 18px; margin-bottom: 28px; }
.contact-info-list { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--green-dark); flex-shrink: 0; }
.contact-info-text strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.contact-info-text span { font-size: 14px; color: var(--text-mid); }

.quick-booking-box { background: var(--green-dark); border-radius: 12px; padding: 28px; margin-top: 32px; }
.quick-booking-box h4 { font-family: var(--font-sans); font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 8px; }
.quick-booking-box p { font-size: 13px; color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.6; }
.quick-booking-box .btn-outline-white { width: 100%; justify-content: center; }

/* Contact Form */
.contact-form-col { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.contact-form-col h3 { font-family: var(--font-sans); font-weight: 600; font-size: 20px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.form-group label .req { color: var(--green-dark); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-family: var(--font-sans); color: var(--text-dark);
  background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-control:focus { border-color: var(--green-dark); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--green-dark); flex-shrink: 0; margin-top: 2px; }
.form-checkbox label { font-size: 14px; color: var(--text-mid); cursor: pointer; }
.form-submit .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }

/* FAQ */
.faq-section { background: var(--green-pale); padding: 80px 0; }
.faq-section h2 { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 24px 28px; }
.faq-item h4 { font-family: var(--font-sans); font-weight: 600; font-size: 16px; margin-bottom: 12px; color: var(--text-dark); }
.faq-item p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--green-dark); color: var(--white); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-logo .logo-name { font-family: var(--font-serif); font-size: 22px; font-weight: 600; }
.footer-logo .logo-sub { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 3px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 14px; line-height: 1.65; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 10px; }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }
.footer-social { display: flex; gap: 12px; margin-bottom: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8);
  font-size: 16px; transition: all 0.2s;
}
.footer-social a:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.footer-social-text { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.footer-col .btn-outline-white { font-size: 13px; padding: 9px 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .classes-grid, .classes-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 50px 20px 40px; }

  .home-hero { padding: 50px 20px; }
  .home-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .home-hero-image { order: -1; }
  .home-hero-image img, .hero-placeholder { height: 260px; }

  .features-grid { grid-template-columns: 1fr; gap: 28px; max-width: 400px; margin: 40px auto 0; }
  .classes-grid, .classes-listing-grid, .blog-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; max-width: 360px; margin: 40px auto 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-item { border-right: none !important; }
  .offer-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border) !important; }
  .offer-item:last-child { border-bottom: none !important; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .about-meet-inner { grid-template-columns: 1fr; }
  .about-meet-img img { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-col { padding: 24px; }

  .cta-banner, .waitlist-banner, .stay-updated, .insta-cta { padding: 50px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { columns: 2; }

  .section, .upcoming-classes, .why-choose, .testimonials, .blog-listing, .about-meet, .our-values, .what-we-offer, .where-we-are, .gallery-grid-section, .contact-body, .faq-section, .instagram-strip { padding: 50px 0; }
}

@media (max-width: 480px) {
  .home-hero-btns { flex-direction: column; }
  .cta-btns, .social-btns { flex-direction: column; align-items: center; }
  .gallery-grid { columns: 1; }
  .filter-tabs { gap: 8px; }
  .filter-tab { font-size: 13px; padding: 7px 14px; }
}

/* ===== CLASS DETAIL PAGE ===== */
.class-hero {
  padding: 56px 0 32px;
  background: var(--green-pale);
}
.class-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.class-hero-copy h1 {
  margin: 0 0 12px;
}
.class-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0 0 20px;
  max-width: 680px;
}
.class-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}
.class-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.2;
  box-shadow: var(--shadow);
}
.class-hero-actions {
  margin-top: 8px;
}
.class-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.class-detail {
  padding: 36px 0 72px;
}
.class-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.class-section-alt {
  background: var(--green-pale);
}
.class-section h2,
.class-bottom-cta h2 {
  margin: 0 0 16px;
}
.class-rich-text {
  color: var(--text-dark);
  line-height: 1.75;
}
.class-rich-text > *:first-child {
  margin-top: 0;
}
.class-rich-text > *:last-child {
  margin-bottom: 0;
}
.class-rich-text p {
  margin: 0 0 18px;
}
.class-rich-text h2,
.class-rich-text h3,
.class-rich-text h4 {
  margin: 28px 0 12px;
}
.class-rich-text ul,
.class-rich-text ol {
  margin: 0 0 20px 24px;
  padding-left: 18px;
}
.class-rich-text ul {
  list-style: disc;
}
.class-rich-text ol {
  list-style: decimal;
}
.class-rich-text li {
  margin-bottom: 10px;
}
.class-rich-text li > ul,
.class-rich-text li > ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.class-reassurance {
  background: var(--green-light);
}
.class-reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.class-reassurance-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.class-reassurance-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.class-reassurance-item p {
  margin: 0;
  color: var(--text-mid);
  line-height: 1.7;
}
.class-schedule .class-rich-text ul,
.class-schedule .class-rich-text ol {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 20px 20px 40px;
  margin: 0;
}
.class-schedule .class-rich-text li {
  margin-bottom: 12px;
}
.class-schedule .class-rich-text li:last-child {
  margin-bottom: 0;
}
.class-availability {
  text-align: center;
  background: var(--green-light);
}
.class-availability p {
  margin: 0 0 10px;
}
.class-availability p:last-child {
  margin-bottom: 0;
}
.class-bottom-cta {
  text-align: center;
  padding: 40px 24px;
  border-radius: 12px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-top: 12px;
}
.class-bottom-cta p {
  max-width: 640px;
  margin: 0 auto 20px;
}
@media (max-width: 900px) {
  .class-hero-inner {
    grid-template-columns: 1fr;
  }
  .class-reassurance-grid {
    grid-template-columns: 1fr;
  }
  .class-section {
    padding: 24px;
  }
}