:root {
  --ivory: #fbf8f3;
  --cream: #f3ece1;
  --ink: #2b2622;
  --muted: #6f655c;
  --gold: #a8844f;
  --gold-soft: #d9c3a0;
  --dark: #25201c;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h1 em { color: var(--gold); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 2.9rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.6rem; margin-bottom: .6rem; }
p + p { margin-top: 1rem; }

.eyebrow {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
  font-weight: 400;
}
.center { text-align: center; }
.hidden { display: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.section { padding: 110px 0; }
.section-tinted { background: var(--cream); }
.section-dark { background: var(--dark); color: #eee6da; }
.section-dark h2 { color: #fff; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-small { padding: 9px 18px; font-size: .72rem; color: #fff !important; }
.btn-small:hover { color: var(--gold) !important; }

/* Nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(168, 132, 79, .15);
}
.brand { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); text-decoration: none; font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); text-decoration: none; font-size: .88rem; letter-spacing: .05em; }
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; background: none; border: 0; width: 32px; height: 24px; position: relative; cursor: pointer; }
.nav-toggle span { position: absolute; left: 4px; right: 4px; height: 1.5px; background: var(--ink); transition: transform .25s; }
.nav-toggle span:first-child { top: 8px; }
.nav-toggle span:last-child { top: 15px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 64px;
  max-width: 1200px; margin: 0 auto;
  padding: 120px 32px 70px;
}
.hero-inner { max-width: 560px; }
.lead { font-size: 1.15rem; color: var(--muted); margin: 1.4rem 0 2.4rem; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo { position: relative; justify-self: center; width: 100%; max-width: 460px; }
.hero-photo::before {
  content: ''; position: absolute; inset: 20px -20px -20px 20px;
  border: 1px solid var(--gold-soft); z-index: -1;
}
.hero-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }

/* About */
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; }
.logo-frame { max-width: 340px; justify-self: center; }
.logo-frame img { width: 100%; mix-blend-mode: multiply; }
.brand span { color: var(--gold); }

.ensemble { margin: 3.2rem auto 0; max-width: 760px; text-align: center; padding: 36px 32px; border: 1px solid var(--gold-soft); }
.ensemble p { color: var(--muted); }
.ensemble strong { color: var(--ink); font-weight: 500; }
.facts { list-style: none; margin-top: 1.8rem; border-top: 1px solid var(--gold-soft); }
.facts li { padding: 12px 0; border-bottom: 1px solid var(--gold-soft); font-size: .95rem; }
.facts strong { font-weight: 500; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 3rem; }
.card { background: var(--ivory); padding: 44px 34px; text-align: center; border-top: 2px solid var(--gold); }
.card-num { font-family: var(--serif); color: var(--gold); font-size: 1.3rem; margin-bottom: .6rem; }
.card p { color: var(--muted); font-size: .95rem; }
.note { margin-top: 2.6rem; color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 1.15rem; }

/* Repertoire */
.repertoire { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 3rem; }
.repertoire h3 { padding-bottom: .5rem; border-bottom: 1px solid var(--gold-soft); margin-bottom: 1rem; }
.repertoire ul { list-style: none; }
.repertoire li { padding: 6px 0; }
.repertoire span { color: var(--muted); font-style: italic; }

/* Videos */
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 3rem; }
.videos iframe, .video-placeholder { width: 100%; aspect-ratio: 16 / 9; border: 0; }
.video-placeholder {
  border: 1px solid rgba(217, 195, 160, .35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; color: var(--gold-soft); font-size: 1.2rem;
}
.social { margin-top: 2.4rem; letter-spacing: .1em; }
.social a { color: var(--gold-soft); }

/* FAQ */
details { border-bottom: 1px solid var(--gold-soft); padding: 20px 0; }
details:first-of-type { margin-top: 2rem; border-top: 1px solid var(--gold-soft); }
summary {
  font-family: var(--serif); font-size: 1.35rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--gold); font-size: 1.6rem; transition: transform .25s; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); margin-top: .8rem; }

/* Form */
.form { margin-top: 2.6rem; display: grid; gap: 20px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form label { display: grid; gap: 6px; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.form input:not([type="checkbox"]), .form textarea {
  font: inherit; font-size: 1rem; text-transform: none; letter-spacing: normal; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--gold-soft); padding: 12px 14px; width: 100%;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form fieldset { border: 0; display: flex; flex-wrap: wrap; gap: 8px 28px; align-items: center; }
.form legend { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; width: 100%; }
.form .check { display: flex; align-items: center; gap: 8px; text-transform: none; letter-spacing: normal; font-size: 1rem; color: var(--ink); }
.form .check input { accent-color: var(--gold); width: 16px; height: 16px; }
.form .btn { justify-self: center; margin-top: 8px; }
.direct { margin-top: 2.6rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.direct a { text-decoration: none; border-bottom: 1px solid var(--gold-soft); }

/* Footer */
.footer { background: var(--dark); color: #bfb4a6; text-align: center; padding: 56px 24px; font-size: .9rem; }
.footer .brand { color: #fff; font-size: 1.8rem; margin-bottom: .4rem; }
.footer .small { margin-top: 1rem; font-size: .78rem; opacity: .7; }

/* Thank-you page */
.thanks { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; gap: 1.4rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 110px 24px 70px; gap: 48px; }
  .hero-inner { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-photo { width: calc(100% - 20px); max-width: 400px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .logo-frame { max-width: 220px; }
  .cards, .repertoire { grid-template-columns: 1fr; }
  .repertoire { gap: 32px; }
  .videos { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 20px; padding: 28px;
    background: var(--ivory); border-bottom: 1px solid var(--gold-soft);
    display: none;
  }
  .nav-links.open { display: flex; }
  .section { padding: 80px 0; }
  .form .row { grid-template-columns: 1fr; }
}
