/* =============================================================
   YOGA ESSENCE — Design System
   A calm, earthy, editorial aesthetic
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --sage:        #7c8b6f;
  --sage-deep:   #5a6a4e;
  --sage-soft:   #a8b49a;
  --clay:        #c08457;
  --clay-soft:   #d9a878;
  --terracotta:  #b5674a;
  --cream:       #f6f1e7;
  --cream-deep:  #ece3d2;
  --sand:        #e8dcc4;
  --ink:         #2e2a24;
  --ink-soft:    #55504733;
  --stone:       #6b6459;
  --white:       #fffdf8;
  --tint-sage:       #e5ecdf;
  --tint-clay:       #f2e6d5;
  --tint-terracotta: #ecd9d1;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Effects */
  --radius:    2px;
  --radius-lg: 18px;
  --shadow:    0 18px 50px -22px rgba(46, 42, 36, 0.35);
  --shadow-sm: 0 8px 24px -14px rgba(46, 42, 36, 0.4);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:      1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
p  { font-size: clamp(1rem, 1.1vw, 1.08rem); color: var(--stone); }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--clay);
  display: inline-block;
}
.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-deep);
}

/* ---------- Layout ---------- */
.wrap { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.section { padding-block: var(--space-xl); }
.section--tight { padding-block: var(--space-lg); }
.center { text-align: center; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--stone); font-weight: 300; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 1rem 2.1rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 100px;
  transition: all 0.4s var(--ease);
  position: relative;
}
.btn--solid { background: var(--sage-deep); color: var(--cream); }
.btn--solid:hover { background: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--clay { background: var(--clay); color: var(--white); }
.btn--clay:hover { background: var(--terracotta); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--ghost { border: 1px solid var(--sage); color: var(--sage-deep); }
.btn--ghost:hover { background: var(--sage-deep); color: var(--cream); border-color: var(--sage-deep); }
.btn--light { border: 1px solid rgba(255,253,248,0.5); color: var(--cream); }
.btn--light:hover { background: var(--cream); color: var(--ink); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.4rem;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.header.scrolled {
  background: rgba(246, 241, 231, 0.88);
  backdrop-filter: blur(14px);
  padding-block: 0.9rem;
  box-shadow: 0 1px 0 rgba(46,42,36,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.55rem;
  color: var(--ink);
}
.brand .mark { width: 26px; height: 26px; color: var(--sage-deep); }
.brand { padding-right: 1.5rem; }
.nav-links { display: flex; align-items: center; gap: 1.85rem; }
.nav-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--clay);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--clay); }
.nav-cta { padding: 0.7rem 1.5rem; font-size: 0.72rem; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-toggle { display: inline-flex; align-items: center; border: 1px solid rgba(46,42,36,0.18); border-radius: 999px; overflow: hidden; flex: none; }
.lang-toggle button { padding: 6px 11px; font-family: inherit; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; line-height: 1; border: 0; background: transparent; color: inherit; cursor: pointer; transition: background 0.25s var(--ease), color 0.25s var(--ease); }
.lang-toggle button.active { background: var(--clay); color: var(--white); }
.lang-toggle button:not(.active):hover { background: rgba(46,42,36,0.06); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 110; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: all 0.35s var(--ease); border-radius: 2px; }
.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); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(30,27,22,0.72) 0%, rgba(30,27,22,0.42) 45%, rgba(30,27,22,0.18) 100%);
}
.hero__inner { max-width: 720px; color: var(--cream); }
.hero h1 { color: var(--white); margin-block: 1.2rem 1.5rem; }
.hero h1 em { font-style: italic; color: var(--clay-soft); }
.hero .lead { color: rgba(255,253,248,0.9); max-width: 33rem; }
.hero .eyebrow { color: var(--clay-soft); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.4rem; }
.hero__scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,253,248,0.7); font-size: 0.68rem; letter-spacing: 0.25em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero__scroll .line { width: 1px; height: 48px; background: rgba(255,253,248,0.5); animation: scrollLine 2.2s var(--ease) infinite; transform-origin: top; }
@keyframes scrollLine { 0%,100%{ transform: scaleY(0.3); opacity:0.4;} 50%{ transform: scaleY(1); opacity:1;} }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; padding-top: 11rem; padding-bottom: 5rem;
  text-align: center; overflow: hidden;
  background: var(--cream-deep);
}
.page-hero__bg { position:absolute; inset:0; z-index:0; opacity:0.28; }
.page-hero__bg img { width:100%; height:100%; object-fit:cover; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { margin-block: 0.8rem 0.6rem; }
.page-hero p { max-width: 38rem; margin-inline: auto; }
.breadcrumb { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-top: 1.4rem; }
.breadcrumb a:hover { color: var(--clay); }

/* ---------- Intro / two-column ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split__media .badge {
  position: absolute; background: var(--cream); border-radius: var(--radius-lg);
  padding: 1.3rem 1.6rem; box-shadow: var(--shadow-sm); text-align: center;
}
.split__media .badge--br { bottom: -1.5rem; right: -1.2rem; }
.split__media .badge .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--sage-deep); line-height: 1; }
.split__media .badge .lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--stone); margin-top: 0.3rem; }
.split__body h2 { margin-block: 0.8rem 1.4rem; }
.split__body .btn { margin-top: 1.8rem; }
.deco-line { width: 54px; height: 2px; background: var(--clay); margin-bottom: 1.5rem; }

/* ---------- Section heading ---------- */
.sec-head { max-width: 38rem; margin-inline: auto; margin-bottom: 3.5rem; }
.sec-head.center { text-align: center; }
.sec-head h2 { margin-top: 0.7rem; }
.sec-head p { margin-top: 1rem; }

/* ---------- Class / feature cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(246,241,231,0.92); color: var(--sage-deep);
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.4rem 0.9rem; border-radius: 100px;
}
.card__body { padding: 1.7rem 1.7rem 2rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 0.6rem; }
.card__body p { font-size: 0.95rem; flex: 1; }
.card__meta { display: flex; gap: 1.2rem; margin-top: 1.3rem; font-size: 0.75rem; letter-spacing: 0.06em; color: var(--sage-deep); text-transform: uppercase; }
.card__meta span { display: flex; align-items: center; gap: 0.4rem; }
.card__link { margin-top: 1.3rem; font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); display: inline-flex; gap: 0.5rem; align-items: center; }
.card__link .arrow { transition: transform 0.4s var(--ease); }
.card:hover .card__link .arrow { transform: translateX(5px); }

/* ---------- Feature (icon) blocks ---------- */
.feature { text-align: center; padding: 1rem; }
.feature__icon {
  width: 62px; height: 62px; margin: 0 auto 1.3rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--cream-deep); color: var(--sage-deep);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.95rem; }

/* ---------- Stats band ---------- */
.stats { background: var(--sage-deep); color: var(--cream); }
.stats .grid-4 { gap: 2rem; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--white); line-height: 1; }
.stat .lbl { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem; color: rgba(246,241,231,0.75); margin-top: 0.7rem; }

/* ---------- Quote / testimonial ---------- */
.quote-band { background: var(--cream-deep); }
.quote {
  max-width: 46rem; margin-inline: auto; text-align: center;
}
.quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-style: italic; line-height: 1.3; color: var(--ink); font-weight: 500;
}
.quote .stars { color: var(--clay); letter-spacing: 0.3em; margin-bottom: 1.5rem; font-size: 1rem; }
.quote cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

.testi-grid .card__body { padding: 2rem; }
.testi { background: var(--white); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
.testi .stars { color: var(--clay); letter-spacing: 0.2em; margin-bottom: 1rem; }
.testi p { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--ink); line-height: 1.5; }
.testi .who { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.5rem; }
.testi .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi .who .name { font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); }
.testi .who .role { font-size: 0.8rem; color: var(--stone); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--cream); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: rgba(46,42,36,0.62); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,253,248,0.86); max-width: 34rem; margin: 1.2rem auto 2rem; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(246,241,231,0.7); padding-top: 5rem; }
.footer a { transition: color 0.3s var(--ease); }
.footer a:hover { color: var(--clay-soft); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3.5rem; }
.footer .brand { color: var(--cream); margin-bottom: 1rem; }
.footer .brand .mark { color: var(--clay-soft); }
.footer__col h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 1.3rem; font-weight: 400; }
.footer__col li { margin-bottom: 0.7rem; font-size: 0.92rem; }
.footer__about p { font-size: 0.92rem; max-width: 24rem; }
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.4rem; }
.footer__social a { width: 38px; height: 38px; border: 1px solid rgba(246,241,231,0.2); border-radius: 50%; display: grid; place-items: center; }
.footer__social a:hover { border-color: var(--clay-soft); background: rgba(192,132,87,0.15); }
.footer__social svg { width: 17px; height: 17px; }
.newsletter { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter input { flex: 1; background: rgba(246,241,231,0.08); border: 1px solid rgba(246,241,231,0.2); color: var(--cream); padding: 0.8rem 1rem; border-radius: 100px; font-family: inherit; font-size: 0.85rem; }
.newsletter input::placeholder { color: rgba(246,241,231,0.4); }
.newsletter button { background: var(--clay); color: var(--white); padding: 0 1.3rem; border-radius: 100px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.3s; }
.newsletter button:hover { background: var(--terracotta); }
.footer__bottom { border-top: 1px solid rgba(246,241,231,0.12); padding-block: 1.8rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; flex-wrap: wrap; gap: 0.8rem; }
.footer__bottom a { color: var(--clay-soft); font-weight: 500; }

/* ---------- Schedule table ---------- */
.sched-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2.5rem; }
.sched-tab {
  padding: 0.7rem 1.5rem; border-radius: 100px; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone);
  border: 1px solid transparent; transition: all 0.3s var(--ease);
}
.sched-tab:hover { color: var(--sage-deep); }
.sched-tab.active { background: var(--sage-deep); color: var(--cream); }
.sched-day { display: none; }
.sched-day.active { display: block; animation: fadeUp 0.5s var(--ease); }
.sched-row {
  display: grid; grid-template-columns: 150px 1fr 180px 140px; gap: 1.8rem; align-items: center;
  padding: 1.7rem 2rem; background: var(--white); border-radius: var(--radius-lg);
  margin-bottom: 1.1rem; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease);
}
.sched-row:hover { transform: translateX(6px); }
.sched-row .time { font-family: var(--font-display); font-size: 1.4rem; color: var(--sage-deep); }
.sched-row .time small { display: block; font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); margin-top: 0.2rem; }
.sched-row .cls h4 { font-family: var(--font-display); font-size: 1.35rem; }
.sched-row .cls span { font-size: 0.85rem; color: var(--stone); }
.sched-row .teacher { font-size: 0.9rem; color: var(--stone); display: flex; align-items: center; gap: 0.8rem; }
.sched-row .teacher img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.sched-row .lvl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; padding: 0.45rem 0.9rem; border-radius: 100px; text-align: center; }
.lvl--all { background: var(--tint-sage); color: var(--sage-deep); }
.lvl--beg { background: var(--tint-clay); color: var(--clay); }
.lvl--adv { background: var(--tint-terracotta); color: var(--terracotta); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.price {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.6rem 2.2rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1px solid transparent; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.price:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.price--featured {
  background: var(--sage-deep); color: var(--cream);
  box-shadow: 0 22px 60px -20px rgba(90,106,78,0.55);
  border-color: var(--clay-soft);
}
.price--featured:hover { transform: translateY(-8px); box-shadow: 0 28px 70px -18px rgba(90,106,78,0.6); }
.price--featured h3 { color: var(--white); }
.price--featured .price__cost .amount { color: var(--white); }
.price--featured p, .price--featured .price__period { color: rgba(246,241,231,0.75); }
.price--featured .price__feat li { color: rgba(246,241,231,0.9); }
.price__badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); background: var(--clay); color: var(--white); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 1.2rem; border-radius: 100px; }
.price h3 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.price > p { font-size: 0.9rem; }
.price__cost { display: flex; align-items: baseline; gap: 0.3rem; margin-block: 1.6rem 0.4rem; }
.price__cost .amount { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--sage-deep); }
.price__period { font-size: 0.85rem; color: var(--stone); }
.price__feat { margin-block: 1.8rem; flex: 1; }
.price__feat li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; font-size: 0.92rem; color: var(--stone); }
.price__feat svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; color: var(--clay); }
.price--featured .price__feat svg { color: var(--clay-soft); }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; margin-bottom: 1.3rem; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.06); }
.team-card__social { position: absolute; inset: auto 0 0 0; padding: 1rem; display: flex; gap: 0.6rem; justify-content: center; background: linear-gradient(transparent, rgba(46,42,36,0.6)); opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease); }
.team-card:hover .team-card__social { opacity: 1; transform: translateY(0); }
.team-card__social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(246,241,231,0.9); color: var(--ink); display: grid; place-items: center; }
.team-card__social svg { width: 15px; height: 15px; }
.team-card h3 { font-size: 1.4rem; }
.team-card .role { color: var(--clay); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; margin-top: 0.2rem; }
.team-card p { font-size: 0.9rem; margin-top: 0.7rem; }

/* ---------- Values list ---------- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 3.5rem; }
.value { display: flex; gap: 1.3rem; }
.value__num { font-family: var(--font-display); font-size: 2.2rem; color: var(--clay); line-height: 1; flex-shrink: 0; }
.value h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.value p { font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-info .item { display: flex; gap: 1.1rem; margin-bottom: 2rem; }
.contact-info .item__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--cream-deep); color: var(--sage-deep); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .item__icon svg { width: 22px; height: 22px; }
.contact-info .item h4 { font-family: var(--font-body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--clay); margin-bottom: 0.3rem; }
.contact-info .item p { font-size: 0.98rem; color: var(--ink); }
.form { background: var(--white); padding: 2.6rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stone); margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1.1rem; border: 1px solid var(--sand);
  border-radius: 10px; background: var(--cream); font-family: inherit; font-size: 0.95rem;
  color: var(--ink); transition: border 0.3s, box-shadow 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(124,139,111,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-note { font-size: 0.85rem; color: var(--sage-deep); margin-top: 1rem; display: none; }
.form-note.show { display: block; }

/* ---------- Map ---------- */
.map-embed { width: 100%; height: 340px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); filter: grayscale(0.3) sepia(0.1); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--sand); }
.faq__q { width: 100%; text-align: left; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.faq__q .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; transition: transform 0.4s var(--ease); }
.faq__q .icon::before, .faq__q .icon::after { content:""; position:absolute; background: var(--clay); border-radius: 2px; }
.faq__q .icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq__q .icon::after { top: 0; left: 10px; width: 2px; height: 22px; transition: transform 0.4s var(--ease); }
.faq__item.open .faq__q .icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq__a p { padding-bottom: 1.5rem; font-size: 0.98rem; }

/* ---------- Gallery marquee ---------- */
.marquee { overflow: hidden; padding-block: 1rem; }
.marquee__track { display: flex; gap: 1rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee img { height: 240px; width: 320px; object-fit: cover; border-radius: var(--radius-lg); }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- Reveal animations ---------- */
/* Hidden state is scoped to html.js so content stays fully visible if JS never runs (progressive enhancement) */
.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(28px); }
html.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px);} to { opacity:1; transform:none;} }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img { aspect-ratio: 16/11; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values { grid-template-columns: 1fr; gap: 2rem; }
  .price--featured { grid-column: 1 / -1; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 960px) and (min-width: 721px) {
  .sched-row {
    grid-template-columns: 110px 1fr auto;
    grid-template-areas: "time cls lvl" "teacher teacher teacher";
    gap: 0.9rem 1.2rem;
    padding: 1.4rem 1.6rem;
  }
  .sched-row .time { grid-area: time; }
  .sched-row .cls { grid-area: cls; }
  .sched-row .lvl { grid-area: lvl; }
  .sched-row .teacher { grid-area: teacher; padding-top: 0.8rem; border-top: 1px solid var(--sand); }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 2rem; padding: 3rem; transform: translateX(100%);
    transition: transform 0.5s var(--ease); box-shadow: var(--shadow); z-index: 105;
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .grid-3, .grid-4, .price-grid, .grid-2 { grid-template-columns: 1fr; }
  .price--featured { max-width: none; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .sched-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "cls lvl" "time time" "teacher teacher";
    gap: 0.6rem 0.8rem; text-align: left; padding: 1.3rem 1.4rem;
  }
  .sched-row .cls { grid-area: cls; }
  .sched-row .lvl { grid-area: lvl; justify-self: end; }
  .sched-row .time { grid-area: time; display: flex; align-items: baseline; gap: 0.5rem; }
  .sched-row .time small { margin-top: 0; }
  .sched-row .teacher { grid-area: teacher; padding-top: 0.7rem; border-top: 1px solid var(--sand); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding-block: var(--space-lg); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
