@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600&family=Italiana&family=Petit+Formal+Script&display=swap');

:root {
  --paper: #f6f1e8;
  --paper-light: #fbf8f2;
  --paper-deep: #eee6da;
  --ink: #252724;
  --ink-soft: #575950;
  --muted: #777268;
  --line: rgba(37, 39, 36, 0.16);
  --bronze: #b97813;
  --bronze-dark: #925b09;
  --bronze-soft: #d6b073;
  --dark: #222624;
  --dark-2: #171a18;
  --white: #fffdf9;
  --shadow: 0 18px 50px rgba(42, 34, 24, 0.11);
  --radius: 18px;
  --container: 1180px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Italiana', 'Times New Roman', serif;
  --script: 'Petit Formal Script', 'Brush Script MT', cursive;
  --sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(185,120,19,.045), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(37,39,36,.035), transparent 28%),
    var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  z-index: 99;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 999;
  width: auto;
  height: auto;
  padding: .7rem 1rem;
  background: var(--dark);
  color: var(--white);
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; position: relative; }
.section.compact { padding: 65px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--bronze-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: currentColor; }
.display-title,
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p { margin: 0 0 1.25rem; }
.lead { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.45; color: var(--ink-soft); }
.script { font-family: var(--script); color: var(--bronze); font-weight: 400; line-height: 1.35; }
.script.large { font-size: clamp(2.25rem, 4.3vw, 4.6rem); }
.script.medium { font-size: clamp(1.55rem, 3vw, 2.55rem); }
.muted { color: var(--muted); }
.narrow { max-width: 660px; }
.center { text-align: center; margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 232, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(37,39,36,.08);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  min-width: 170px;
  display: inline-flex;
  flex-direction: column;
  line-height: .9;
  position: relative;
}
.logo-mark {
  font-family: var(--script);
  font-size: 2rem;
  transform: rotate(-3deg);
  transform-origin: left center;
}
.logo-sub {
  font-size: .48rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  margin-left: 1.25rem;
  margin-top: .2rem;
  font-weight: 600;
}
.nav-wrap { display: flex; align-items: center; gap: 1.5rem; }
.site-nav { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); }
.site-nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  position: relative;
  padding: .7rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: .28rem;
  width: 100%; height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current='page'] { color: var(--bronze-dark); }
.menu-toggle {
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  display: none;
  place-items: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: block;
  transition: .25s ease;
}
.menu-toggle span { margin: 5px 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-6.5px) rotate(-45deg); }

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 1px solid var(--bronze);
  padding: .82rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .69rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(147,91,9,.16); }
.btn.primary { background: linear-gradient(135deg, var(--bronze), #c68d2e); color: var(--white); border-color: transparent; }
.btn.secondary { background: transparent; color: var(--ink); }
.btn.dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn.small { min-height: 40px; padding: .65rem .95rem; font-size: .62rem; }
.btn .arrow { font-size: 1rem; margin-top: -.05rem; }
.button-row { display: flex; gap: .85rem; flex-wrap: wrap; align-items: center; }

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border: 1px solid rgba(185,120,19,.12);
  border-radius: 50%;
  left: -250px; bottom: -210px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy { padding: 70px 0 80px; position: relative; z-index: 2; }
.hero-copy h1 { font-size: clamp(3.4rem, 6.1vw, 6rem); letter-spacing: -.025em; margin-bottom: .3rem; }
.hero-copy .script { display: block; margin: -1rem 0 -.4rem .35rem; transform: rotate(-4deg); transform-origin: left; }
.hero-copy .subline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  margin: 0 0 1.4rem 2rem;
}
.hero-copy p { max-width: 540px; color: var(--ink-soft); }
.hero-art { position: relative; align-self: stretch; display: grid; place-items: end center; min-height: 600px; }
.hero-art::before {
  content: '';
  position: absolute;
  inset: 7% -8% 5% 4%;
  background: radial-gradient(ellipse at center, rgba(185,120,19,.13), transparent 63%);
  filter: blur(18px);
}
.hero-art img {
  width: min(100%, 600px);
  height: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center bottom;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}
.hero-note {
  position: absolute;
  right: -1rem;
  top: 17%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .62rem;
  color: rgba(37,39,36,.42);
}

.dark-strip {
  background:
    linear-gradient(90deg, rgba(185,120,19,.06), transparent 30%),
    var(--dark);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.instrument-strip { display: grid; grid-template-columns: repeat(3, 1fr); }
.instrument-link {
  min-height: 150px;
  padding: 2rem 2.2rem;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.1rem;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
}
.instrument-link:last-child { border-right: 0; }
.instrument-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(185,120,19,.12));
  transform: translateX(-110%);
  transition: transform .45s ease;
}
.instrument-link:hover::after { transform: translateX(0); }
.instrument-link h3 { font-size: 1.45rem; margin-bottom: .25rem; }
.instrument-link p { margin: 0; color: rgba(255,255,255,.63); font-size: .82rem; line-height: 1.55; }
.instrument-icon { width: 45px; height: 74px; color: var(--bronze-soft); position: relative; z-index: 1; }
.instrument-copy { position: relative; z-index: 1; }
.text-link {
  color: var(--bronze-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .62rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: .8rem;
}
.text-link::after { content: '→'; font-size: 1rem; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.art-frame { position: relative; }
.art-frame::before {
  content: '';
  position: absolute;
  inset: 8% 10% 4%;
  border: 1px solid rgba(185,120,19,.22);
  border-radius: 50%;
}
.art-frame img {
  width: 100%;
  max-height: 510px;
  object-fit: contain;
  mix-blend-mode: multiply;
  position: relative;
  z-index: 1;
}
.art-frame.portrait img { border-radius: 46% 54% 48% 52% / 49% 44% 56% 51%; }
.signature-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.signature-line::before { content: ''; width: 48px; height: 1px; background: var(--bronze); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 55px;
}
.feature {
  text-align: center;
  padding: 35px 26px 10px;
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: 0; }
.feature svg { width: 34px; height: 34px; stroke: var(--ink); stroke-width: 1.35; fill: none; margin: 0 auto 1rem; }
.feature h3 { font-size: 1.25rem; }
.feature p { font-size: .82rem; color: var(--muted); line-height: 1.55; }

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 120%, rgba(176,73,22,.34), transparent 34%),
    radial-gradient(circle at 75% 20%, rgba(185,120,19,.16), transparent 30%),
    linear-gradient(120deg, #262925, #191c1a);
  color: var(--white);
}
.cta-band::after {
  content: '𝄢';
  position: absolute;
  right: 6%;
  top: -36%;
  font-family: Georgia, serif;
  font-size: 23rem;
  line-height: 1;
  color: rgba(185,120,19,.1);
  transform: rotate(7deg);
}
.cta-inner { padding: 68px 0; text-align: center; position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(2rem, 3.8vw, 3.7rem); margin-bottom: -.2rem; }
.cta-inner .script { margin: .25rem 0 1.2rem; display: block; }
.cta-inner p { color: rgba(255,255,255,.66); }

.page-hero { padding: 85px 0 65px; min-height: 520px; display: grid; align-items: center; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 4rem; }
.page-hero-copy h1 { font-size: clamp(3.2rem, 5.5vw, 5.6rem); }
.page-hero-copy .script { display: block; margin: .4rem 0 1.5rem; }
.page-hero-art { min-height: 390px; position: relative; display: grid; place-items: center; }
.page-hero-art img { width: 100%; max-height: 480px; object-fit: contain; mix-blend-mode: multiply; position: relative; z-index: 1; }
.page-hero-art::before {
  content: '';
  position: absolute;
  width: 410px; height: 410px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185,120,19,.13), transparent 67%);
}

.value-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-item { padding: 2.2rem 1.55rem; border-right: 1px solid rgba(255,255,255,.11); display: flex; gap: 1rem; align-items: center; }
.value-item:last-child { border-right: 0; }
.value-item svg { width: 31px; height: 31px; stroke: var(--bronze-soft); fill: none; stroke-width: 1.4; flex: 0 0 auto; }
.value-item strong { font-family: var(--serif); font-size: 1.14rem; font-weight: 500; display: block; }
.value-item span { color: rgba(255,255,255,.58); font-size: .72rem; line-height: 1.45; display: block; }

.quote-section { padding: 72px 0; text-align: center; }
.quote-mark { color: var(--bronze); font-family: Georgia, serif; font-size: 4rem; line-height: .55; display: block; }
.quote {
  max-width: 840px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  font-style: italic;
  line-height: 1.35;
}
.quote-credit { margin-top: 1rem; color: var(--muted); font-size: .8rem; }
.dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.7rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; border: 1px solid var(--bronze); background: transparent; padding: 0; cursor: pointer; }
.dot.active { background: var(--bronze); }
.testimonial { display: none; }
.testimonial.active { display: block; animation: fade .45s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

.lesson-intro { padding-top: 20px; }
.lesson-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.lesson-card {
  background: rgba(255,253,249,.62);
  border: 1px solid rgba(37,39,36,.13);
  border-radius: 12px;
  overflow: hidden;
  padding: 0 1.6rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(45,35,23,.04);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lesson-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.lesson-card img { height: 240px; width: 100%; object-fit: contain; mix-blend-mode: multiply; margin: .75rem auto 0; }
.lesson-card h3 { font-size: 1.75rem; }
.lesson-card p { color: var(--muted); font-size: .88rem; min-height: 78px; }
.lesson-meta { display: flex; justify-content: center; gap: .8rem; flex-wrap: wrap; margin: .5rem 0 1.2rem; }
.pill { border: 1px solid var(--line); padding: .35rem .65rem; font-size: .63rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; margin-top: 2.5rem; counter-reset: process; }
.process-card { padding: 2rem; border: 1px solid var(--line); background: rgba(255,255,255,.28); position: relative; min-height: 230px; }
.process-card::before {
  counter-increment: process;
  content: '0' counter(process);
  font-family: var(--serif);
  font-size: 3rem;
  color: rgba(185,120,19,.33);
  display: block;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-card h3 { font-size: 1.4rem; }
.process-card p { font-size: .86rem; color: var(--muted); }

.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.6rem; }
.timeline-item { padding: 2rem; border-top: 1px solid var(--bronze); background: rgba(255,255,255,.26); }
.timeline-item .year { color: var(--bronze-dark); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.timeline-item h3 { margin-top: .5rem; }
.timeline-item p { color: var(--muted); font-size: .9rem; }

.faq-wrap { display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-button {
  width: 100%;
  padding: 1.55rem .2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.accordion-button .plus { width: 24px; height: 24px; border: 1px solid var(--bronze); border-radius: 50%; position: relative; flex: 0 0 auto; }
.accordion-button .plus::before,
.accordion-button .plus::after { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: var(--bronze); transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion-button .plus::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-button[aria-expanded='true'] .plus::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion-panel > div { overflow: hidden; }
.accordion-panel p { color: var(--muted); padding: 0 .2rem 1.5rem; margin: 0; }
.accordion-button[aria-expanded='true'] + .accordion-panel { grid-template-rows: 1fr; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 5rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; gap: 1.15rem; }
.contact-list li { display: flex; gap: .9rem; align-items: center; }
.contact-list svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 1.4; }
.contact-list a:hover { color: var(--bronze-dark); }
.contact-art { margin-top: 3rem; max-width: 360px; }
.contact-art img { mix-blend-mode: multiply; width: 100%; }
.contact-form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(37,39,36,.18);
  background: rgba(255,253,249,.55);
  min-height: 50px;
  padding: .85rem 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 155px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(185,120,19,.09); }
.form-status { min-height: 1.5rem; font-size: .82rem; color: var(--bronze-dark); }

.social-row { display: flex; gap: .7rem; }
.social-row a { width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; display: grid; place-items: center; font-size: .75rem; }
.social-row a:hover { border-color: var(--bronze-soft); color: var(--bronze-soft); }

.site-footer { background: var(--dark); color: var(--white); position: relative; overflow: hidden; }
.site-footer::after { content: '𝄞'; position: absolute; right: 4%; bottom: -35%; font-size: 18rem; color: rgba(185,120,19,.08); }
.footer-main { padding: 55px 0 40px; display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 3rem; position: relative; z-index: 1; }
.footer-logo .logo-mark { font-size: 2.5rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,.65); }
.footer-copy { color: rgba(255,255,255,.58); max-width: 320px; font-size: .84rem; margin-top: 1.3rem; }
.footer-heading { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--bronze-soft); margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; font-size: .82rem; color: rgba(255,255,255,.68); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,.45); font-size: .67rem; position: relative; z-index: 1; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .header-inner { min-height: 74px; }
  .menu-toggle { display: grid; }
  .nav-wrap { gap: .7rem; }
  .site-nav {
    position: fixed;
    left: 0; right: 0; top: 74px;
    background: rgba(246,241,232,.98);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    padding: .6rem 20px 1.2rem;
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: .9rem .2rem; border-bottom: 1px solid rgba(37,39,36,.08); }
  .nav-book { display: none; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 10px; }
  .hero-art { min-height: 520px; }
  .hero-art img { max-height: 560px; width: min(85%, 600px); }
  .page-hero-art { min-height: 350px; }
  .split { gap: 3rem; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .feature:nth-child(2) { border-right: 0; }
  .feature:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-strip { grid-template-columns: repeat(2,1fr); }
  .value-item:nth-child(2) { border-right: 0; }
  .value-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .lesson-grid { grid-template-columns: repeat(2, 1fr); }
  .lesson-card:last-child { grid-column: 1 / -1; max-width: calc(50% - .75rem); width: 100%; justify-self: center; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-intro { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .logo { min-width: 140px; }
  .logo-mark { font-size: 1.7rem; }
  .hero-copy { padding-top: 55px; }
  .hero-copy .subline { margin-left: .4rem; }
  .hero-art { min-height: 420px; margin-top: 0; }
  .hero-art img { width: 100%; max-height: 470px; }
  .hero-note { display: none; }
  .instrument-strip { grid-template-columns: 1fr; }
  .instrument-link { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); min-height: 120px; }
  .instrument-link:last-child { border-bottom: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse > :first-child { order: initial; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: 0; border-bottom: 1px solid var(--line); }
  .feature:last-child { border-bottom: 0; }
  .page-hero { padding: 60px 0 45px; }
  .page-hero-grid { gap: 1.5rem; }
  .page-hero-art { min-height: 300px; }
  .value-strip { grid-template-columns: 1fr; }
  .value-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .value-item:last-child { border-bottom: 0; }
  .lesson-grid { grid-template-columns: 1fr; }
  .lesson-card:last-child { grid-column: auto; max-width: none; }
  .process-grid, .timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .cta-band::after { font-size: 15rem; right: -13%; }
}

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


/* Final site refinements */
.eyebrow,
.eyebrow::before { display: none !important; }

/* Keep the footer brand lock-up aligned exactly like the header logo. */
.footer-logo .logo-mark { font-size: 2rem; }
.footer-logo .logo-sub { color: rgba(255,255,255,.65); }

.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--bronze-soft); }
.footer-bottom .built-by { margin-left: auto; white-space: nowrap; }
.footer-bottom .built-by a { color: rgba(255,255,255,.72); }
.footer-bottom .built-by a:hover { color: var(--bronze-soft); }

.policy-section { padding: 92px 0; }
.policy-content { max-width: 900px; margin: 0 auto; }
.policy-content h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); margin-bottom: 1rem; }
.policy-content h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); margin-top: 2.5rem; margin-bottom: .9rem; }
.policy-content h3 { font-size: 1.35rem; margin-top: 1.4rem; margin-bottom: .65rem; }
.policy-content ul, .policy-content ol { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.policy-content li { margin-bottom: .55rem; }
.policy-content .updated { color: var(--muted); margin-bottom: 2rem; }

/* Homepage musician photo only: a true portrait oval, not a pill. */
.art-frame.oval-frame { max-width: 420px; margin-inline: auto; }
.art-frame.oval-frame::before { inset: 3% 6%; border-radius: 50%; }
.art-frame.oval-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  max-height: none;
}

@media (max-width: 720px) {
  .footer-bottom .built-by { margin-left: 0; }
}


/* Contact form delivery */
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: .65;
  transform: none;
}
.form-status:not(:empty) {
  margin-top: 1rem;
}


/* Keep in-page and cross-page anchor targets visible below the sticky navigation. */
html {
  scroll-padding-top: 100px;
}
#lesson-form,
#double-bass,
#cello,
#violin {
  scroll-margin-top: 100px;
}
@media (max-width: 1020px) {
  html { scroll-padding-top: 88px; }
  #lesson-form,
  #double-bass,
  #cello,
  #violin { scroll-margin-top: 88px; }
}


/* Cloudflare Turnstile */
.turnstile-wrap {
  width: 100%;
  min-height: 65px;
  margin: .25rem 0 .4rem;
}

/* Contact form privacy acknowledgement */
.privacy-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .7rem;
  align-items: start;
  margin: .15rem 0 .35rem;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.privacy-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: .13rem 0 0;
  accent-color: var(--bronze);
}
.privacy-consent label { cursor: pointer; }
.privacy-consent a {
  color: var(--bronze-dark);
  text-decoration: underline;
  text-underline-offset: .16em;
}
.privacy-consent a:hover { color: var(--bronze); }
