/* ============================================================
   GREENLEAF YOGA STUDIO — styles.css
   Warm & Earthy | Portland, Oregon
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --forest:     #5C7A4E;
  --forest-dk:  #3D5235;
  --forest-lt:  #7A9B6A;
  --amber:      #D4A96A;
  --amber-lt:   #E8C88A;
  --cream:      #F5EFE6;
  --cream-dk:   #EBE2D4;
  --bark:       #9B7A5A;
  --bark-dk:    #6B4F32;
  --text:       #2E2E2E;
  --text-muted: #6B6B6B;
  --white:      #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 7vw, 6rem);
  --container:   1160px;
  --radius:      6px;
  --radius-lg:   14px;

  /* Transitions */
  --ease: 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ── Container ── */
.container {
  width: min(var(--container), 100% - 2rem);
  margin-inline: auto;
}

/* ── Typography Scale ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--forest-dk);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 65ch; }
p.wide { max-width: none; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.section-title { margin-bottom: 0.75rem; }
.section-intro { color: var(--text-muted); margin-bottom: 2.5rem; max-width: 55ch; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease), box-shadow var(--ease);
  border: 2px solid transparent;
  text-align: center;
  min-height: 48px;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.btn-primary:hover {
  background: var(--forest-dk);
  border-color: var(--forest-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(61,82,53,0.25);
}

.btn-amber {
  background: var(--amber);
  color: var(--forest-dk);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-lt);
  border-color: var(--amber-lt);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,169,106,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ── Navigation ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,230,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-dk);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--forest-dk);
  border-radius: var(--radius);
  transition: background var(--ease), color var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--cream-dk);
  color: var(--forest);
}

.nav-cta {
  padding: 0.55rem 1.2rem !important;
  background: var(--forest) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  font-size: 0.85rem !important;
}
.nav-cta:hover {
  background: var(--forest-dk) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-dk);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-bottom: 1px solid var(--cream-dk);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 1rem; border-radius: 0; border-bottom: 1px solid var(--cream-dk); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,62,36,0.75) 0%,
    rgba(45,62,36,0.45) 60%,
    rgba(212,169,106,0.25) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-content .eyebrow { color: var(--amber-lt); }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
  max-width: 14ch;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 45ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-hint span { display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.4); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.9; transform: scaleY(1.2); }
}

/* ── Sections ── */
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--cream-dk); }
.section-forest { background: var(--forest-dk); color: var(--white); }
.section-forest h2, .section-forest h3 { color: var(--cream); }
.section-forest .eyebrow { color: var(--amber-lt); }
.section-forest p { color: rgba(255,255,255,0.85); }
.section-amber { background: var(--amber); }
.section-amber h2, .section-amber h3 { color: var(--forest-dk); }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--forest);
  padding: 1.25rem 0;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.trust-item svg { flex-shrink: 0; }

/* ── Schedule Preview (Homepage) ── */
.schedule-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.schedule-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: box-shadow var(--ease), transform var(--ease);
}
.schedule-card:hover {
  box-shadow: 0 6px 20px rgba(92,122,78,0.12);
  transform: translateY(-2px);
}

.schedule-card-day {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.3rem;
}
.schedule-card-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.schedule-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-dk);
  margin-bottom: 0.2rem;
}
.schedule-card-instructor { font-size: 0.82rem; color: var(--text-muted); }
.schedule-card-level {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.level-all { background: rgba(92,122,78,0.12); color: var(--forest); }
.level-beginner { background: rgba(212,169,106,0.2); color: var(--bark-dk); }
.level-intermediate { background: rgba(92,122,78,0.18); color: var(--forest-dk); }
.level-advanced { background: rgba(61,82,53,0.15); color: var(--forest-dk); }

/* ── Full Schedule Page ── */
.schedule-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--cream-dk);
  border-radius: 30px;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--ease);
  min-height: 44px;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.week-schedule { display: flex; flex-direction: column; gap: 1.5rem; }

.day-block { }
.day-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  border-bottom: 1px solid var(--cream-dk);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.day-classes { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0.75rem; }

.class-row {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
  transition: box-shadow var(--ease);
}
.class-row:hover { box-shadow: 0 4px 16px rgba(92,122,78,0.1); }
.class-time { font-size: 0.82rem; font-weight: 700; color: var(--forest); line-height: 1.3; padding-top: 0.1rem; }
.class-info-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--forest-dk); }
.class-info-sub { font-size: 0.8rem; color: var(--text-muted); }
.class-info-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.4rem; }

.booking-cta-banner {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
  color: var(--white);
}
.booking-cta-banner h3 { color: var(--cream); margin-bottom: 0.5rem; }
.booking-cta-banner p { color: rgba(255,255,255,0.8); margin: 0 auto 1.2rem; }

/* ── Class Style Cards ── */
.styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.style-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dk);
  transition: box-shadow var(--ease), transform var(--ease);
}
.style-card:hover {
  box-shadow: 0 8px 28px rgba(92,122,78,0.13);
  transform: translateY(-3px);
}
.style-card-accent {
  height: 5px;
}
.style-card-body { padding: 1.6rem; }
.style-card-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.style-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest-dk);
  margin-bottom: 0.3rem;
}
.style-card-tagline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.style-card-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.style-card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--cream-dk);
  color: var(--text-muted);
}

/* ── Instructor Cards ── */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.instructor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dk);
  transition: box-shadow var(--ease);
}
.instructor-card:hover { box-shadow: 0 8px 28px rgba(92,122,78,0.12); }

.instructor-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream-dk);
}
.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,82,53,0.45);
  display: grid;
  place-items: center;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.instructor-body { padding: 1.4rem; }
.instructor-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-dk);
  margin-bottom: 0.2rem;
}
.instructor-title { font-size: 0.82rem; color: var(--amber); font-weight: 700; margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.instructor-bio { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.instructor-certs { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.cert-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(92,122,78,0.12);
  color: var(--forest);
}

/* ── Pricing Cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--cream-dk);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pricing-card:hover {
  box-shadow: 0 8px 28px rgba(92,122,78,0.12);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border-color: var(--forest);
  box-shadow: 0 4px 20px rgba(92,122,78,0.18);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--forest-dk);
  margin-bottom: 0.75rem;
}
.pricing-amount {
  margin-bottom: 0.3rem;
}
.pricing-amount .amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--forest-dk);
  font-family: var(--font-display);
  line-height: 1;
}
.pricing-amount .period {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--cream-dk);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; }

/* ── New Students Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid var(--cream-dk);
}
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
}
.step-card h4 { color: var(--forest-dk); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); max-width: none; }

.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--cream-dk);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dk);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 54px;
}
.faq-q::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--forest);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── Testimonial Strip ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.testimonial-stars { color: var(--amber-lt); font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.testimonial-text { font-style: italic; font-size: 0.95rem; color: rgba(255,255,255,0.9); margin-bottom: 1rem; max-width: none; }
.testimonial-author { font-size: 0.82rem; font-weight: 700; color: var(--amber-lt); letter-spacing: 0.05em; }

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  background: var(--cream-dk);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { aspect-ratio: 3/2; }
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; color: var(--text); }

.hours-grid {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.5rem;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--cream-dk);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--text-muted); }
.hours-time { font-weight: 700; color: var(--forest-dk); }

.map-placeholder {
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  text-align: center;
  border: 2px dashed var(--amber);
  padding: 2rem;
}
.map-placeholder svg { opacity: 0.5; }

.email-cta-box {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.email-cta-box h3 { color: var(--cream); margin-bottom: 0.5rem; }
.email-cta-box p { color: rgba(255,255,255,0.75); margin: 0 auto 1.2rem; }
.email-display {
  font-size: 0.88rem;
  color: var(--amber-lt);
  margin-bottom: 1rem;
}

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

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  background: var(--forest-dk);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--amber); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); margin: 0 auto; }

/* ── Footer ── */
.site-footer {
  background: var(--forest-dk);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo { margin-bottom: 1rem; filter: brightness(0) invert(1) opacity(0.9); }
.footer-tagline { font-size: 0.88rem; opacity: 0.7; max-width: 30ch; }
.footer-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col a { font-size: 0.88rem; opacity: 0.75; transition: opacity var(--ease); }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  opacity: 0.55;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.flex-center { display: flex; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Responsive Helpers ── */
@media (max-width: 600px) {
  .hero { min-height: 85vh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .schedule-preview-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .styles-grid { grid-template-columns: 1fr; }
  .instructors-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .instructors-grid { grid-template-columns: 1fr; }
  .schedule-preview-grid { grid-template-columns: 1fr; }
}
