/* =============================================
   THE LEARNING LOFT OF ELK GROVE — Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

/* ── Variables ── */
:root {
  --parchment:      #FAFAF8;
  --parchment-mid:  #F2EFE9;
  --parchment-card: #EDE9E2;
  --white-warm:     #FFFFFF;
  --white-warm-2:   #F9F7F4;
  --border:         #D8C7AF;
  --gold:           #C5A45D;
  --green:          #526447;
  --green-sage:     #9EAD93;
  --terracotta:     #C07A5B;
  --terracotta-light:#E8DDCB;
  --terracotta-dark:#A95F45;
  --brown:          #9A6A4B;
  --text:           #2F2A22;
  --text-body:      #6E665A;

  /* Legacy aliases kept for inner-page components */
  --cream:        #FAFAF8;
  --cream-dark:   #F2EFE9;
  --white:        #FFFFFF;
  --tan:          #C07A5B;
  --tan-light:    #EDE9E2;
  --tan-dark:     #A95F45;
  --green-light:  #9EAD93;
  --green-pale:   #D4EAC8;
  --green-dark:   #3A5426;
  --brown-dark:   #5C4033;
  --text-light:   #6E665A;
  --text-muted:   #9C8573;

  --shadow-sm: 0 2px 8px rgba(47,42,34,.07);
  --shadow-md: 0 4px 20px rgba(47,42,34,.10);
  --shadow-lg: 0 8px 36px rgba(47,42,34,.13);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --max: 1200px;
  --nav-h: 84px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--parchment);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-body); line-height: 1.75; }
em { font-style: italic; }

/* ── Layout Helpers ── */
.container { width: 90%; max-width: var(--max); margin-inline: auto; }
.section       { padding: 5rem 0; }
.section--alt  { background: var(--parchment-mid); }
.section--warm { background: var(--white-warm); }
.section--dark { background: var(--green); color: var(--white-warm); }
.section--tan  { background: var(--parchment-card); }

.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}
.eyebrow--tan   { color: var(--terracotta-dark); }
.eyebrow--terra { color: var(--terracotta); }
.eyebrow--light { color: var(--green-sage); }

.section-intro { max-width: 640px; margin-inline: auto; margin-bottom: 3rem; }

/* ── Wave Divider ── */
.wave { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave svg { display: block; width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  transition: transform .2s, box-shadow .2s, background .2s, opacity .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green  { background: var(--green); color: var(--white-warm); }
.btn--green:hover { background: #3f4f37; }
.btn--terra  { background: var(--terracotta); color: var(--white-warm); }
.btn--terra:hover { background: var(--terracotta-dark); }
.btn--tan    { background: var(--tan); color: var(--white-warm); }
.btn--tan:hover { opacity: .88; }
.btn--outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white-warm); }
.btn--outline-light {
  background: transparent;
  color: var(--white-warm);
  border: 2px solid rgba(255,255,255,.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--disabled {
  background: var(--parchment-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: default;
  pointer-events: none;
}
.btn--disabled:hover { transform: none; box-shadow: none; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white-warm);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  gap: 1rem;
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo-img { height: 74px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-left: auto;
}
.nav__link {
  padding: .45rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
  transition: color .2s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--green); }
.nav__link.active { color: var(--terracotta-dark); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: .55rem 1.35rem;
  border-radius: 50px;
  background: var(--green);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .85rem;
  white-space: nowrap;
  transition: background .2s, transform .2s;
  margin-left: .75rem;
  flex-shrink: 0;
}
.nav__cta:hover { background: #3f4f37; transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Photo Placeholder ── */
.photo-ph {
  position: relative;
  background: var(--parchment-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(197,164,93,.11) 39px, rgba(197,164,93,.11) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(197,164,93,.11) 39px, rgba(197,164,93,.11) 40px);
}
.photo-ph__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--border);
  background: var(--parchment-card);
  padding: .35rem .9rem;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ── Decorative Orb (CSS-only gold accent) ── */
.deco-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════
   HOME PAGE SECTIONS
   ═══════════════════════════════════════ */

/* ── Hero (full-bleed) ── */
.hero-home {
  position: relative;
  overflow: hidden;
}
.hero-home__bg {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: url('../images/home-hero-learning-table-right.png') center/cover no-repeat;
}
.hero-home__bg.photo-ph {
  border-radius: 0;
}
.hero-home__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,24,18,.68) 0%,
    rgba(30,24,18,.38) 55%,
    rgba(30,24,18,.08) 100%
  );
  z-index: 1;
}
.hero-home__content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 6rem 0;
}
.hero-home__text { max-width: 580px; }
.hero-home__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
}
.hero-home h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
}
.hero-home h1 em { font-style: italic; color: var(--gold); }
.hero-home__sub {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-home__btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ── Hero Stats Band ── */
.hero-stats-band {
  background: var(--white-warm);
  border-bottom: 1px solid var(--border);
}
.hero-stats {
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: stretch;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  gap: .2rem;
}
.hero-stat:last-child { border-right: none; }
.hero-stat__val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green);
  white-space: nowrap;
}
.hero-stat__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── What Section ── */
.what-section {
  background: var(--parchment-mid);
  padding: 5.5rem 0;
  overflow: hidden;
}
.what-section__inner {
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.what-section__visual { position: relative; }
.what-section__photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-lg); object-fit: cover; display: block; }
.what-section__text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.what-section__text p { font-size: 1.05rem; line-height: 1.8; }
.what-section__text p + p { margin-top: 1rem; }

/* ── Experience Section ── */
.experience-section {
  background: var(--white-warm);
  padding: 5.5rem 0;
}
.experience-section__head { margin-bottom: 3rem; text-align: center; }
.experience-section__head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
}
.experience-section__head p {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-top: .75rem;
  max-width: 540px;
  margin-inline: auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
}
.exp-card--sage::before  { background: var(--green-sage); }
.exp-card--terra::before { background: var(--terracotta); }
.exp-card--gold::before  { background: var(--gold); }
.exp-card--brown::before { background: var(--brown); }
.exp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.exp-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exp-card__icon svg,
.exp-card__icon img { width: 36px; height: 36px; }
.exp-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.exp-card p  { font-size: .92rem; }

/* icon color variants */
.exp-card__icon--sage   { background: rgba(158,173,147,.22); }
.exp-card__icon--sage   svg { color: var(--green); }
.exp-card__icon--terra  { background: rgba(192,122,91,.18); }
.exp-card__icon--terra  svg { color: var(--terracotta); }
.exp-card__icon--gold   { background: rgba(197,164,93,.2); }
.exp-card__icon--gold   svg { color: #9a7e38; }
.exp-card__icon--brown  { background: rgba(154,106,75,.18); }
.exp-card__icon--brown  svg { color: var(--brown); }
.exp-card__icon--green  { background: rgba(82,100,71,.15); }
.exp-card__icon--green  svg { color: var(--green); }

/* ── Mission Band ── */
.mission-band {
  background: var(--green);
  padding: 5rem 0;
  text-align: center;
}
.mission-band .mission-band__quote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  font-style: italic;
  color: var(--parchment);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.mission-band__sub {
  font-size: 1rem;
  color: rgba(247,241,231,.72);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.8;
}
.mission-band h2 { color: var(--white-warm); margin-bottom: .75rem; }
.mission-band p  { color: rgba(247,241,231,.82); max-width: 640px; margin-inline: auto; font-size: 1.05rem; }

/* ── Who Section ── */
.who-section {
  background: var(--parchment);
  padding: 5.5rem 0;
  overflow: hidden;
}
.who-section__inner {
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.who-section__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.who-list { display: flex; flex-direction: column; gap: .75rem; }
.who-item {
  display: flex;
  align-items: center;
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .85rem 1.25rem .85rem 1.5rem;
  position: relative;
  overflow: hidden;
  gap: .75rem;
}
.who-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
}
.who-item:nth-child(1)::before { background: var(--green-sage); }
.who-item:nth-child(2)::before { background: var(--terracotta); }
.who-item:nth-child(3)::before { background: var(--gold); }
.who-item:nth-child(4)::before { background: var(--brown); }
.who-item:nth-child(5)::before { background: var(--green); }
.who-item span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .93rem;
  color: var(--text);
  line-height: 1.4;
}
.who-section__visual { position: relative; }
.who-section__photo { width: 100%; aspect-ratio: 9/10; border-radius: var(--r-lg); object-fit: cover; display: block; }

/* ── Schedule Section ── */
.schedule-section {
  background: var(--green);
  padding: 5.5rem 0;
}
.schedule-section__head { margin-bottom: 3rem; text-align: center; }
.schedule-section__head .eyebrow { color: rgba(255,255,255,.6); }
.schedule-section__head h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: .75rem;
  color: var(--white-warm);
}
.schedule-section__head p { font-size: 1.05rem; max-width: 620px; margin-inline: auto; color: rgba(255,255,255,.8); }
.schedule-card {
  display: flex;
  align-items: center;
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2.25rem 3rem;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 780px;
}
.schedule-card__item { text-align: center; flex: 1; min-width: 130px; }
.schedule-card__val {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green);
  display: block;
  line-height: 1.3;
}
.schedule-card__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: .3rem;
}
.schedule-card__div { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ── Home CTA ── */
.cta-home {
  background: var(--terracotta-light);
  padding: 4rem 0;
  overflow: hidden;
}
.cta-home__inner {
  width: 90%;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.cta-home__text h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta-home__text p {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 420px;
}
.cta-home__form-wrap {
  background: var(--parchment);
  border-radius: var(--r-lg);
  padding: 2.5rem;
}
.cta-home__form-wrap h3 { font-size: 1.35rem; margin-bottom: 1.5rem; }
.cta-fg { margin-bottom: 1rem; }
.cta-fg label {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  color: var(--text);
  margin-bottom: .35rem;
  letter-spacing: .02em;
}
.cta-fg input,
.cta-fg textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--white-warm-2);
  transition: border-color .2s, box-shadow .2s;
}
.cta-fg input:focus,
.cta-fg textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(82,100,71,.11);
  background: var(--white-warm);
}
.cta-fg input::placeholder,
.cta-fg textarea::placeholder { color: var(--border); }
.cta-fg textarea { resize: vertical; min-height: 90px; }
.cta-fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cta-submit {
  width: 100%;
  padding: .85rem 1.5rem;
  background: var(--green);
  color: var(--white-warm);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .93rem;
  transition: background .2s, transform .2s;
  margin-top: .25rem;
}
.cta-submit:hover { background: #3f4f37; transform: translateY(-1px); }
.cta-note {
  font-size: .76rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .6rem;
}

/* ═══════════════════════════════════════
   INNER PAGE COMPONENTS
   ═══════════════════════════════════════ */

/* ── Page Hero ── */
.page-hero {
  background: var(--white-warm);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero .eyebrow { color: var(--terracotta-dark); }
.page-hero h1 { color: var(--text); margin-bottom: .75rem; }
.page-hero p  { color: var(--text-body); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

/* ── Cards ── */
.card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.card__icon svg { width: 26px; height: 26px; color: var(--green); }
.card__icon--tan   { background: var(--tan-light); }
.card__icon--tan   svg { color: var(--terracotta-dark); }
.card__icon--brown { background: #e8d5c4; }
.card__icon--brown svg { color: var(--brown); }
.card h3 { margin-bottom: .5rem; color: var(--text); }
.card p  { font-size: .95rem; }

/* ── Feature Strip ── */
.features { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

/* ── Schedule Table ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.schedule-table thead { background: var(--green); color: var(--white-warm); }
.schedule-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.schedule-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--parchment-mid);
  font-size: .95rem;
}
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:nth-child(even) { background: var(--parchment); }
.schedule-table tbody tr:nth-child(odd)  { background: var(--white-warm); }
.time-cell { font-weight: 700; color: var(--green); white-space: nowrap; }

/* ── Studio Cards ── */
.studio-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white-warm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
}
.studio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.studio-card__header { padding: 2rem 2rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.studio-card__header h3 { margin: 0; }
.studio-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.studio-card__icon svg { width: 26px; height: 26px; }
.studio-card__body { padding: 0 2rem 2rem; }
.studio-card__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tag {
  background: var(--parchment);
  color: var(--text-body);
  font-size: .74rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
  letter-spacing: .04em;
}

/* ── Value Cards ── */
.value-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: box-shadow .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-sage);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.value-card h4 { margin-bottom: .3rem; color: var(--green); }
.value-card p  { font-size: .9rem; }

/* ── Stats Strip ── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); }
.stat { padding: 2.5rem 2rem; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green-sage);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat__label { font-size: .9rem; color: rgba(255,255,255,.75); font-weight: 600; }

/* ── Inner-page CTA Band ── */
.cta-band {
  background: var(--green);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white-warm);
}
.cta-band h2 { color: var(--white-warm); margin-bottom: .75rem; }
.cta-band p  { color: rgba(247,241,231,.85); max-width: 520px; margin-inline: auto; margin-bottom: 2rem; }

/* ── Enrollment Form ── */
.form-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin-inline: auto;
}
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  color: var(--text);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}
.form-group label .req { color: var(--green); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white-warm-2);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(82,100,71,.11);
  background: var(--white-warm);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239A6A4B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--border); }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--green);
  color: var(--white-warm);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: background .2s, transform .2s;
  margin-top: .5rem;
}
.form-submit:hover { background: #3f4f37; transform: translateY(-2px); }
.form-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }

.success-msg {
  display: none;
  background: var(--green-pale);
  border: 1px solid var(--green-sage);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  text-align: center;
  margin-top: 1.5rem;
}
.success-msg.visible { display: block; }
.success-msg h4 { color: var(--green); margin-bottom: .25rem; }
.success-msg p  { font-size: .9rem; }

/* ── Enrollment Sidebar Info ── */
.enroll-info { display: grid; grid-template-columns: 1fr 2fr; gap: 3.5rem; align-items: start; }
.info-panel {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.info-panel h3 { margin-bottom: 1rem; color: var(--green); }
.info-item { display: flex; gap: .75rem; margin-bottom: 1.25rem; align-items: flex-start; }
.info-item__icon {
  width: 36px;
  height: 36px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-item__icon svg { width: 18px; height: 18px; color: var(--green); }
.info-item h4 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .15rem; }
.info-item p  { font-size: .83rem; color: var(--text-muted); }
.info-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }

/* ── Story Section (About) ── */
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-visual {
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, var(--green-pale) 0%, var(--parchment-card) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.story-visual__inner { text-align: center; padding: 2rem; }
.story-visual__icon {
  width: 100px;
  height: 100px;
  background: var(--white-warm);
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.story-visual__icon svg { width: 50px; height: 50px; color: var(--green); }
.story-visual p { font-style: italic; color: var(--text-body); font-size: 1.05rem; max-width: 280px; }

.pull-quote {
  background: var(--green-pale);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.25rem 1.75rem;
  margin: 2rem 0;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green);
  line-height: 1.5;
}

/* ── About Snippet ── */
.about-snippet { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.snippet-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  background: linear-gradient(145deg, var(--green) 0%, #3f4f37 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.snippet-visual__deco {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; padding: 2rem; opacity: .12;
}
.snippet-visual__deco span { background: var(--white-warm); border-radius: var(--r-sm); }
.snippet-visual__center { position: relative; z-index: 1; text-align: center; padding: 2rem; }
.snippet-visual__center svg { width: 72px; height: 72px; color: rgba(247,241,231,.9); }
.snippet-visual__center p { color: rgba(247,241,231,.85); font-style: italic; margin-top: 1rem; font-size: 1.05rem; }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testimonial-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--green-pale);
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-card blockquote { padding-top: 1.5rem; font-style: italic; color: var(--text-body); margin-bottom: 1.25rem; }
.testimonial-card cite { font-style: normal; font-weight: 700; font-size: .88rem; color: var(--green); }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-panel {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.contact-info-panel h3 { font-size: 1.4rem; color: var(--text); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-info-item h4 { font-family: var(--font-body); font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .2rem; }
.contact-info-item p  { font-size: .9rem; color: var(--text-body); }

/* ── Footer ── */
.footer {
  background: var(--green);
  color: rgba(247,241,231,.8);
  padding: 2.5rem 0 1.25rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.footer__logo { margin-bottom: .6rem; }
.footer__logo-img { height: 64px; width: auto; display: block; }
.footer__tagline { font-size: .87rem; line-height: 1.65; max-width: 260px; color: rgba(247,241,231,.65); }
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .88rem; color: rgba(247,241,231,.72); transition: color .2s; }
.footer__links a:hover { color: var(--parchment); }
.footer__contact p   { font-size: .88rem; margin-bottom: .45rem; color: rgba(247,241,231,.72); }
.footer__contact a   { color: var(--green-sage); }
.footer__social      { display: flex; gap: .65rem; margin-top: .25rem; }
.footer__social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(247,241,231,.28);
  display: flex; align-items: center; justify-content: center;
  color: rgba(247,241,231,.7);
  transition: border-color .2s, color .2s;
}
.footer__social-icon:hover { border-color: var(--parchment); color: var(--parchment); }
.footer__social-icon svg { width: 17px; height: 17px; }
.footer__rule { border: none; border-top: 1px solid rgba(247,241,231,.14); margin-bottom: 1rem; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(247,241,231,.38);
}

/* ── Fade-in ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-home__bg       { min-height: 520px; }
  .hero-home__content  { padding: 4rem 0; }
  .hero-home h1        { max-width: 100%; }
  .hero-stats          { flex-wrap: wrap; }
  .hero-stat           { min-width: 33%; }
  .what-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .what-section__visual { order: -1; }
  .who-section__inner  { grid-template-columns: 1fr; gap: 3rem; }
  .who-section__visual { order: -1; }
  .cta-home__inner     { grid-template-columns: 1fr; gap: 3rem; }
  .exp-grid            { grid-template-columns: 1fr 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .contact-info-panel  { position: static; }
  .grid-2, .grid-3, .features, .about-snippet, .story-block, .enroll-info { grid-template-columns: 1fr; }
  .grid-4              { grid-template-columns: 1fr 1fr; }
  .testimonial-grid    { grid-template-columns: 1fr; }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
  .enroll-info .info-panel { position: static; }
  .form-row            { grid-template-columns: 1fr; }
  .stats               { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat:last-child { border-bottom: none; }
  .story-visual        { min-height: 260px; order: -1; }
  .snippet-visual      { min-height: 260px; }
  .cta-fg-row          { grid-template-columns: 1fr; }
  .schedule-card       { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 1.75rem 2rem; }
  .schedule-card__div  { width: 48px; height: 1px; }
}

@media (max-width: 600px) {
  .nav__links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white-warm);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: .2rem;
  }
  .nav__links.open { display: flex; }
  .nav__cta        { display: none; }
  .nav__hamburger  { display: flex; }
  .exp-grid        { grid-template-columns: 1fr; }
  .grid-4          { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; }
  .footer__bottom  { flex-direction: column; gap: .5rem; text-align: center; }
  .form-card       { padding: 2rem 1.25rem; }
  .section         { padding: 3.5rem 0; }
  .what-section, .who-section, .experience-section,
  .schedule-section, .cta-home { padding: 3.5rem 0; }
  .hero-home__bg   { min-height: 420px; }
  .hero-home__content { padding: 3rem 0; }
  .hero-stats      { flex-direction: column; }
  .hero-stat       { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem; }
  .hero-stat:last-child { border-bottom: none; }
  .cta-home__form-wrap { padding: 1.75rem 1.25rem; }
}

/* ═══════════════════════════════════════
   Admin Dashboard
   ═══════════════════════════════════════ */

.admin-body { background: var(--parchment); min-height: 100vh; }

/* Login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--parchment);
}
.admin-login__card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.admin-login__logo { height: 80px; width: auto; margin: 0 auto 1.5rem; display: block; }
.admin-login__card h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.admin-login__card > p { color: var(--text-body); font-size: .92rem; margin-bottom: 1.75rem; }
.admin-login__card .form-group { text-align: left; }
.admin-error { color: #c0392b; font-size: .85rem; margin-bottom: .75rem; }

/* Top Bar */
.admin-topbar {
  background: var(--green);
  border-bottom: 1px solid rgba(255,255,255,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: .85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-topbar__brand { display: flex; align-items: center; gap: .85rem; }
.admin-topbar__logo  { height: 40px; width: auto; display: block; }
.admin-topbar__badge {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 99px;
}
.admin-topbar__right { display: flex; align-items: center; gap: 1rem; }
.admin-topbar__user  { color: rgba(255,255,255,.7); font-size: .82rem; }
.admin-topbar__logout {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white-warm);
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .18s;
}
.admin-topbar__logout:hover { background: rgba(255,255,255,.22); }

/* Tab Nav */
.admin-tabs {
  background: var(--white-warm);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 67px;
  z-index: 99;
}
.admin-tabs__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 0 2rem;
  display: flex;
  gap: .25rem;
}
.admin-tab {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: .9rem 1.1rem;
  cursor: pointer;
  transition: color .18s, border-color .18s;
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active { color: var(--green); border-bottom-color: var(--green); }

/* Main content */
.admin-main {
  max-width: 1280px;
  margin-inline: auto;
  padding: 2rem;
}
.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.admin-panel-head h3 { font-size: 1.3rem; }

/* Stats row */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.admin-stat-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  box-shadow: var(--shadow-sm);
}
.admin-stat-card__val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
}
.admin-stat-card__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
}

/* Cards */
.admin-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.admin-card__head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.admin-card__head h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  background: var(--parchment-mid);
  padding: .75rem 1rem;
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.admin-table td {
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--parchment); }
.admin-table a { color: var(--green); }
.admin-empty { text-align: center; color: var(--text-muted); padding: 2.5rem 1rem !important; font-style: italic; }
.notes-cell { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Status badges */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 99px;
}
.badge--blue  { background: #ddeeff; color: #1a5fb4; }
.badge--gold  { background: #fff3cd; color: #8a6200; }
.badge--green { background: var(--green-pale); color: var(--green-dark); }
.badge--red   { background: #fde8e8; color: #b91c1c; }
.badge--muted { background: var(--parchment-card); color: var(--text-muted); }

/* Inline status select */
.status-select {
  font-family: var(--font-body);
  font-size: .82rem;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .3rem .5rem;
  background: var(--parchment);
  color: var(--text);
  cursor: pointer;
}
.status-select:focus { outline: 2px solid var(--green); }

/* Text link button */
.admin-link {
  background: none;
  border: none;
  color: var(--green);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.admin-link:hover { color: var(--green-dark); }

/* Leads grid */
.leads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.lead-card {
  background: var(--white-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.lead-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: .75rem; }
.lead-card__title { font-weight: 700; color: var(--text); font-size: .95rem; }
.lead-card__channel { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }
.lead-card__desc { font-size: .88rem; color: var(--text-body); }
.lead-card__notes { font-size: .82rem; color: var(--text-muted); font-style: italic; }
.lead-card__actions { margin-top: .25rem; }

/* Modals */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.admin-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(47,42,34,.45);
}
.admin-modal__box {
  position: relative;
  background: var(--white-warm);
  border-radius: var(--r-lg);
  padding: 2rem;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.admin-modal__box h3 { font-size: 1.4rem; margin-bottom: 1.25rem; }
.admin-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}
.admin-modal__close:hover { color: var(--text); }

/* Detail grid in submission modal */
.admin-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.5rem;
}
.admin-detail-grid strong { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); display: block; }
.admin-detail-grid p { margin-top: .2rem; font-size: .92rem; color: var(--text-body); }

/* Admin responsive */
@media (max-width: 768px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-detail-grid { grid-template-columns: 1fr; }
  .admin-topbar__user { display: none; }
  .admin-main { padding: 1rem; }
}
