/* ==========================================================================
   Treehouse Music School — design system
   Fraunces (display) + Manrope (text)
   Warm cream + clay + sage + mustard
   ========================================================================== */

:root {
  /* palette */
  --cream:        #faf5ec;
  --cream-deep:   #f1e9d6;
  --paper:        #fffdf8;
  --ink:          #231f1c;
  --ink-soft:     #4a423d;
  --ink-mute:     #76695f;
  --rule:         #e6dcc8;
  --clay:         #c2643d;
  --clay-deep:    #a4502e;
  --sage:         #7a8b6f;
  --sage-deep:    #5e6f54;
  --mustard:      #d4a23a;
  --mustard-deep: #b3851f;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-text:    "Manrope", system-ui, -apple-system, "Helvetica Neue", sans-serif;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;

  /* shadow */
  --shadow-sm: 0 1px 2px rgba(35, 31, 28, 0.05), 0 2px 8px rgba(35, 31, 28, 0.04);
  --shadow-md: 0 2px 4px rgba(35, 31, 28, 0.06), 0 16px 32px -12px rgba(35, 31, 28, 0.14);
  --shadow-lg: 0 4px 8px rgba(35, 31, 28, 0.06), 0 30px 60px -20px rgba(35, 31, 28, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  font-family: var(--font-text);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.12; }
h3 { font-size: clamp(20px, 2vw, 26px); line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }
p  { margin: 0 0 1em; }

a { color: var(--clay); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--clay-deep); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--clay);
}

.lede { font-size: 19px; color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-mute); }

/* italic serif accent for emphasis in headlines */
em.accent {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--clay);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font: 600 15px/1 var(--font-text);
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 140ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--clay); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-clay { background: var(--clay); color: var(--paper); }
.btn-clay:hover { background: var(--clay-deep); color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--cream); transform: translateY(-1px); }

.btn .arr { display: inline-block; transition: transform 160ms ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px var(--gutter);
  background: rgba(250, 245, 236, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, background 200ms ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--rule);
  background: rgba(250, 245, 236, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-sm);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--clay);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--paper);
  font: 600 14px/1 var(--font-text);
  white-space: nowrap;
  transition: background 160ms ease, transform 140ms ease;
}
.nav-cta:hover { background: var(--clay-deep); color: var(--paper); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
}

/* ── Layout helpers ─────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head .lede { margin: 0; max-width: 48ch; }
.section-head h2 { max-width: 16ch; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: clamp(40px, 6vw, 80px) var(--gutter) clamp(60px, 8vw, 110px);
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(212, 162, 58, 0.18), transparent 70%),
    radial-gradient(700px 500px at -10% 110%, rgba(122, 139, 111, 0.12), transparent 65%),
    var(--cream);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 380;
  margin-bottom: 24px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "SOFT" 100, "WONK" 1;
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: var(--ink-mute);
}
.hero-meta::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--ink-mute);
  opacity: 0.4;
}

.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 620px;
}
.hero-art .photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-lg);
}
.hero-art .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.hero-art:hover .photo img { transform: scale(1.03); }
.hero-art .badge {
  position: absolute;
  bottom: -22px;
  left: -28px;
  z-index: 2;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
  max-width: 240px;
}
.hero-art .badge .num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--clay);
  font-weight: 380;
}
.hero-art .badge .lbl {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.3;
}
.hero-art .sticker {
  position: absolute;
  top: -18px;
  right: -22px;
  z-index: 2;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.15;
  padding: 14px;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-md);
}

/* ── Strip (small notice band) ──────────────────────────────── */
.strip {
  background: var(--ink);
  color: var(--cream);
  padding: 18px var(--gutter);
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.strip strong { color: var(--mustard); font-weight: 600; }
.strip a { color: var(--mustard); border-bottom: 1px solid rgba(212, 162, 58, 0.4); padding-bottom: 1px; }
.strip a:hover { color: var(--paper); }

/* ── Trust block (numbers) ──────────────────────────────────── */
.trust {
  background: var(--paper);
  border-block: 1px solid var(--rule);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: left;
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 380;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.trust-stat .num em { font-style: italic; color: var(--clay); font-variation-settings: "SOFT" 100, "WONK" 1; }
.trust-stat .lbl { font-size: 14px; color: var(--ink-mute); line-height: 1.4; max-width: 22ch; }

/* ── Programs grid (home preview) ───────────────────────────── */
.programs {
  background: var(--cream);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prog-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--clay); }
.prog-card .ph {
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  overflow: hidden;
}
.prog-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.prog-card:hover .ph img { transform: scale(1.05); }
.prog-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.prog-card h3 { font-size: 24px; }
.prog-card .price {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prog-card p { font-size: 15px; color: var(--ink-soft); margin: 0; flex: 1; }
.prog-card .more {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 1px;
}

/* ── Reassurance (split image+text) ─────────────────────────── */
.split {
  background: var(--cream-deep);
}
.split-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-text h2 { margin-bottom: 24px; max-width: 18ch; }
.split-text .lede { margin-bottom: 20px; }
.split-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.split-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 16px;
}
.split-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 2px;
  background: var(--clay);
}
.split-art {
  position: relative;
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-art img { width: 100%; height: 100%; object-fit: cover; }

/* ── Location strip ─────────────────────────────────────────── */
.loc {
  background: var(--paper);
  border-block: 1px solid var(--rule);
}
.loc-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.loc-inner .lede { max-width: 38ch; }
.loc-inner h2 { margin-bottom: 16px; }
.loc-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 18px;
  font-size: 15px;
}
.loc-card .row { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: baseline; }
.loc-card .k { color: var(--ink-mute); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.loc-card .v { color: var(--ink); }
.loc-card .v strong { font-weight: 600; }

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  text-align: left;
}
.cta-band .wrap {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 40px;
  align-items: center;
}
.cta-band h2 {
  color: var(--cream);
  max-width: 18ch;
  font-size: clamp(28px, 3.4vw, 42px);
}
.cta-band h2 em { font-style: italic; color: var(--mustard); font-variation-settings: "SOFT" 100, "WONK" 1; }
.cta-band p { color: rgba(250, 245, 236, 0.72); margin: 14px 0 0; max-width: 50ch; font-size: 17px; }
.cta-band .btn-light:hover { background: var(--mustard); color: var(--ink); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: 64px var(--gutter) 32px;
  border-top: 1px solid var(--rule);
}
.foot-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rule);
}
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 15px; max-width: 32ch; color: var(--ink-soft); }
.foot-col h4 {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot-col a { color: var(--ink-soft); font-size: 15px; }
.foot-col a:hover { color: var(--clay); }
.foot-col p { font-size: 15px; margin: 0 0 6px; color: var(--ink-soft); }

.foot-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-mute);
}

/* ── Page hero (interior) ───────────────────────────────────── */
.page-hero {
  background:
    radial-gradient(700px 400px at 90% -10%, rgba(212, 162, 58, 0.16), transparent 70%),
    var(--cream);
  padding: clamp(56px, 8vw, 100px) var(--gutter) clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--rule);
}
.page-hero .wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
}
.page-hero h1 { font-size: clamp(40px, 5.6vw, 72px); margin-bottom: 18px; max-width: 14ch; }
.page-hero h1 em { font-style: italic; color: var(--clay); font-variation-settings: "SOFT" 100, "WONK" 1; }
.page-hero .sub { font-size: 19px; color: var(--ink-soft); max-width: 52ch; margin: 0; }
.page-hero .crumb { color: var(--ink-mute); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }

/* ── About: story ───────────────────────────────────────────── */
.story {
  background: var(--cream);
}
.story-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.story-inner .label {
  position: sticky;
  top: 100px;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-top: 1.5px solid var(--ink);
  padding-top: 12px;
}
.story-inner .body p {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 60ch;
}
.story-inner .body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 5em;
  float: left;
  line-height: 0.9;
  padding: 6px 12px 0 0;
  color: var(--clay);
  font-weight: 380;
}

.founder-quote {
  background: var(--cream-deep);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
}
.fq-inner {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
}
.fq-photo {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
}
.fq-photo img { width: 100%; height: 100%; object-fit: cover; }
.fq-text blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.32;
  color: var(--ink);
  font-weight: 380;
}
.fq-text blockquote::before { content: "\201C"; color: var(--clay); margin-right: 4px; }
.fq-text blockquote::after { content: "\201D"; color: var(--clay); }
.fq-text cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.values {
  background: var(--paper);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
}
.value .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--clay);
  display: block;
  margin-bottom: 10px;
}
.value h3 { margin-bottom: 10px; }
.value p { color: var(--ink-soft); margin: 0; }

/* ── Programs page ──────────────────────────────────────────── */
.program-list {
  background: var(--cream);
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}
.program-list .wrap { display: grid; gap: 28px; }
.program-row {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.program-row:hover { box-shadow: var(--shadow-md); border-color: rgba(194, 100, 61, 0.4); }
.program-row.alt { grid-template-columns: 1.4fr 1fr; }
.program-row.alt .pr-photo { order: 2; }
.program-row.alt .pr-body { order: 1; }
.pr-photo { aspect-ratio: 5/4; overflow: hidden; background: var(--cream-deep); }
.pr-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.program-row:hover .pr-photo img { transform: scale(1.04); }
.pr-body { padding: clamp(28px, 3.5vw, 48px); display: grid; gap: 14px; align-content: center; }
.pr-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--cream-deep);
  color: var(--ink-soft);
}
.tag.clay   { background: rgba(194, 100, 61, 0.12); color: var(--clay-deep); }
.tag.sage   { background: rgba(122, 139, 111, 0.16); color: var(--sage-deep); }
.tag.mustard{ background: rgba(212, 162, 58, 0.18); color: var(--mustard-deep); }
.pr-body h3 { font-size: clamp(28px, 3vw, 38px); }
.pr-body .price-line {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pr-body p { color: var(--ink-soft); margin: 0; font-size: 16px; line-height: 1.6; }
.pr-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--rule);
}
.pr-meta .k { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 4px; }
.pr-meta .v { font-size: 15px; color: var(--ink); font-weight: 500; }
.pr-six {
  margin: 6px 0 0;
  padding: 16px 18px;
  background: var(--cream);
  border-left: 3px solid var(--clay);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  color: var(--ink-soft);
}
.pr-six strong { color: var(--ink); font-weight: 600; }

/* ── Group classes ──────────────────────────────────────────── */
.group {
  background: var(--cream-deep);
}
.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.group-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--rule);
}
.group-card .badge {
  display: inline-block;
  align-self: start;
  padding: 4px 12px;
  background: var(--sage);
  color: var(--paper);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.group-card h3 { font-size: 26px; }
.group-card p { color: var(--ink-soft); margin: 0; font-size: 15px; }
.group-card .price-line { font-size: 13px; color: var(--clay); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }

/* ── Teachers ───────────────────────────────────────────────── */
.teachers {
  background: var(--cream);
}
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.teacher {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
.teacher:hover { box-shadow: var(--shadow-md); border-color: rgba(194, 100, 61, 0.35); }
.teacher .ph { aspect-ratio: 1; background: var(--cream-deep); overflow: hidden; }
.teacher .ph img { width: 100%; height: 100%; object-fit: cover; }
.teacher .body { padding: 28px; display: grid; gap: 10px; align-content: center; }
.teacher h3 { font-size: 24px; margin-bottom: 2px; }
.teacher .role {
  font-family: var(--font-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0;
}
.teacher p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.teacher .loves {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  padding-top: 12px;
  margin-top: 4px;
}
.teacher .loves::before { content: "Loves teaching: "; color: var(--ink-mute); font-style: normal; font-family: var(--font-text); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.teacher .training { font-size: 13px; color: var(--ink-mute); }

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  background: var(--cream);
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-info h2 { font-size: 28px; margin-bottom: 20px; }
.contact-info .info-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.contact-info .info-row:first-of-type { border-top: 1px solid var(--rule); }
.contact-info .info-row .k { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.contact-info .info-row .v { font-size: 16px; color: var(--ink); }
.contact-info .info-row .v strong { font-weight: 600; }
.contact-info .info-row .v a { color: var(--clay); }
.contact-info .info-row .v p { margin: 0 0 4px; }
.contact-info .info-row .v p:last-child { margin: 0; }
.contact-info .note {
  margin-top: 24px;
  background: var(--cream-deep);
  border-left: 3px solid var(--sage);
  padding: 16px 18px;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-card h2 { margin-bottom: 8px; font-size: 28px; }
.form-card .form-sub { color: var(--ink-mute); font-size: 15px; margin-bottom: 26px; }
.form-card form { display: grid; gap: 18px; }
.form-card label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form-card input,
.form-card select,
.form-card textarea {
  font: 400 16px/1.4 var(--font-text);
  padding: 13px 14px;
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}
.form-card input::placeholder,
.form-card textarea::placeholder { color: var(--ink-mute); }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(194, 100, 61, 0.12);
}
.form-card textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.submit-btn {
  font: 600 15px/1 var(--font-text);
  padding: 15px 24px;
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, transform 140ms ease;
  margin-top: 6px;
}
.submit-btn:hover { background: var(--clay); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.7; cursor: default; transform: none; }

/* ── Hours table ────────────────────────────────────────────── */
.hours-table {
  margin: 0;
  display: grid;
  gap: 6px;
  font-size: 15px;
}
.hours-table .row { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 6px 0; border-bottom: 1px dashed var(--rule); }
.hours-table .row:last-child { border-bottom: none; }
.hours-table .day { color: var(--ink); }
.hours-table .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ── Studio gallery (contact / about little touch) ──────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.gallery-strip .ph { aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--cream-deep); }
.gallery-strip .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-strip .ph:hover img { transform: scale(1.06); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner,
  .split-inner,
  .loc-inner,
  .page-hero .wrap,
  .contact-layout,
  .cta-band .wrap,
  .fq-inner,
  .story-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-inner .label { position: static; border-top: none; padding-top: 0; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .teacher-grid, .group-grid, .values-grid { grid-template-columns: 1fr; }
  .program-row, .program-row.alt { grid-template-columns: 1fr; }
  .program-row.alt .pr-photo { order: 0; }
  .program-row.alt .pr-body { order: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .pr-meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-art .sticker { width: 90px; height: 90px; font-size: 13px; right: -8px; top: -8px; }
  .hero-art .badge { left: -8px; bottom: -16px; }
}
@media (max-width: 640px) {
  .nav { gap: 12px; padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; align-items: flex-start; gap: 12px; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); padding: 16px 20px; border-bottom: 1px solid var(--rule); box-shadow: var(--shadow-sm); }
  .nav.is-open .nav-links { display: flex; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav.is-open .nav-cta { display: inline-flex; margin-top: 6px; }
  .nav.is-open { flex-wrap: wrap; }
  .nav.is-open .nav-links { position: static; box-shadow: none; padding: 8px 0 0; }

  .programs-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(36px, 9vw, 50px); }
  .pr-meta { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .fq-photo { width: 140px; height: 140px; }
  .hero-art .sticker { display: none; }
  .hero-art .badge { left: 12px; bottom: 12px; max-width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0ms !important; animation-duration: 0ms !important; scroll-behavior: auto !important; }
}
