/* ============================================================
   CASTANEDA STRINGS
   One token system. One type scale. Musical-score section rhythm.
   ============================================================ */

:root {
  /* Color tokens */
  --white: #fffdf9;
  --paper: #faf6ee;
  --parchment: #f2ebdc;
  --score: #eee4d2;
  --pearl: #f7f3ea;
  --ink: #1f1b17;
  --charcoal: #2f2a25;
  --text: #6f675e;
  --muted: #9d9286;
  --line: #d7cbb9;
  --line-soft: rgba(118, 99, 73, 0.2);
  --champagne: #c7ad78;
  --brass: #927747;
  --cocoa: #5d4736;
  --olive: #6b7251;
  --cream-veil: rgba(255, 253, 249, 0.92);
  --shadow: 0 28px 80px rgba(77, 59, 38, 0.14);

  /* Typography */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1240px;
  --wide: 1440px;
  --pad: clamp(1.35rem, 5vw, 4rem);
  --section: clamp(4.5rem, 9vw, 8rem);
  --gap: clamp(1.25rem, 2.5vw, 2.2rem);

  /* Radius */
  --r-xs: 0.45rem;
  --r-sm: 0.75rem;
  --r-md: 1.1rem;
  --r-lg: 1.7rem;
  --r-xl: 2.4rem;

  /* Motion */
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --dur: 680ms;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: transparent; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--champagne); color: var(--ink); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.music-line {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.26;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0, var(--line) 16%, var(--line) 84%, transparent 100%);
}
.music-line-a { left: clamp(1rem, 4vw, 4rem); }
.music-line-b { right: clamp(1rem, 4vw, 4rem); }

.wrap {
  width: min(100% - (var(--pad) * 2), var(--max));
  margin-inline: auto;
}

/* ============================================================
   Type scale
   ============================================================ */
.label {
  display: block;
  margin: 0 0 1.05rem;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1.4;
  text-transform: uppercase;
}
.display {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.018em;
  line-height: 0.96;
}
.display-xl { font-size: clamp(2.85rem, 7.1vw, 6.8rem); }
.display-lg { font-size: clamp(2.15rem, 4.9vw, 4.35rem); }
.display-md { font-size: clamp(1.65rem, 3.6vw, 2.85rem); }
.display em {
  color: var(--brass);
  font-style: italic;
  font-weight: 300;
}
.section-intro {
  max-width: 760px;
  margin: 0 0 clamp(2.4rem, 5vw, 4.5rem);
}
.section-intro p:not(.label) {
  max-width: 620px;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.section-tone-white { background: var(--white); }
.section-tone-parchment { background: var(--parchment); }
.section-tone-score { background: var(--score); }
.score-page {
  position: relative;
  isolation: isolate;
}
.score-page::before,
.score-page::after,
.section-tone-score::before,
.section-tone-parchment::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 1px;
  pointer-events: none;
  background: var(--line-soft);
}
.score-page::before,
.section-tone-score::before,
.section-tone-parchment::before { top: 0; }
.score-page::after { bottom: 0; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 253, 249, 0.91);
  border-bottom: 1px solid var(--line-soft);
  padding: 0.7rem var(--pad);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}
.site-header.is-scrolled {
  padding-block: 0.5rem;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 12px 32px rgba(47, 42, 37, 0.04);
}
.site-header-inner {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  position: relative;
}
.site-brand { justify-self: start; display: inline-flex; align-items: center; }
.site-title {
  justify-self: center;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.32em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header-logo {
  width: auto;
  height: clamp(42px, 4.2vw, 56px);
  object-fit: contain;
}
.site-header-bar {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.site-header-bar a,
.site-header-meta {
  position: relative;
  padding: 0.42rem 0;
  transition: color 180ms var(--ease);
}
.site-header-bar a::after,
.site-header-meta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms var(--ease);
}
.site-header-bar a:hover,
.site-header-meta:hover { color: var(--brass); }
.site-header-bar a:hover::after,
.site-header-meta:hover::after { transform: scaleX(1); }
.site-header-meta {
  color: var(--brass);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-toggle, .mobile-menu { display: none; }
.nav-toggle { justify-self: end; }

/* ============================================================
   Buttons and links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--r-xs);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn-primary:hover { background: var(--cocoa); border-color: var(--cocoa); }
.btn-ghost { color: var(--charcoal); border-color: var(--line); background: rgba(255, 253, 249, 0.4); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.text-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: var(--brass);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  width: min(100%, var(--wide));
  margin-inline: auto;
  min-height: calc(100svh - 86px);
  padding: clamp(4rem, 8vw, 7rem) var(--pad) clamp(3.8rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(2.2rem, 6vw, 6rem);
  align-items: center;
  background:
    linear-gradient(90deg, transparent 0 49.7%, var(--line-soft) 49.7% 49.85%, transparent 49.85%),
    linear-gradient(to bottom, rgba(215, 203, 185, 0.18) 0 1px, transparent 1px 84px);
}
.hero-copy { max-width: 760px; }
.hero-kicker {
  max-width: 600px;
  margin: clamp(1.6rem, 3vw, 2.4rem) 0 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.15vw, 1.85rem);
  font-weight: 300;
  line-height: 1.35;
}
.hero-body {
  max-width: 540px;
  margin: 1.05rem 0 0;
  color: var(--text);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
}
.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 var(--r-xl);
  box-shadow: var(--shadow);
  background: var(--paper);
}
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: inherit;
  pointer-events: none;
}
.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
}
.hero-note {
  position: absolute;
  left: max(-11%, -2.4rem);
  bottom: 8%;
  max-width: 285px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 18px 60px rgba(77, 59, 38, 0.12);
  backdrop-filter: blur(10px);
}
.hero-note span {
  display: block;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-note strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 400;
  line-height: 1.2;
}

/* ============================================================
   Experience
   ============================================================ */
.experience-section,
.services-section,
.why-section,
.repertoire-section,
.investment-section,
.testimonials-section,
.about-section,
.faq-section,
.inquiry-section {
  position: relative;
  padding: var(--section) 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: 0.34fr minmax(0, 1fr) 0.64fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.chapter-mark {
  position: sticky;
  top: 110px;
  color: var(--champagne);
}
.chapter-mark span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 0.8;
}
.chapter-mark p {
  margin: 0.6rem 0 0;
  color: var(--brass);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.experience-copy p:not(.label) {
  margin: 1.15rem 0 0;
  max-width: 720px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.experience-copy blockquote,
.about-copy blockquote {
  margin: 2rem 0 0;
  padding: 0 0 0 1.35rem;
  border-left: 2px solid var(--brass);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}
.experience-cues {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255, 253, 249, 0.55);
  overflow: hidden;
}
.experience-cues div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
  border-bottom: 1px solid var(--line-soft);
}
.experience-cues div:last-child { border-bottom: 0; }
.experience-cues span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
}
.experience-cues p {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.25;
}

/* ============================================================
   Services
   ============================================================ */
.service-score {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.8vw, 1.35rem);
  align-items: stretch;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(1.35rem, 2.4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--paper);
  overflow: hidden;
}
.service-card:nth-child(2) { background: linear-gradient(135deg, var(--paper), var(--white)); }
.service-card-dark {
  background: var(--charcoal);
  border-color: transparent;
  color: rgba(255,253,249,0.74);
}
.service-card-dark h3,
.service-card-dark .service-number { color: var(--white); }
.service-card-dark .label { color: var(--champagne); }
.service-card-dark .occasion-grid span { border-color: rgba(255,253,249,0.16); color: rgba(255,253,249,0.82); background: rgba(255,253,249,0.08); }
.service-number {
  position: relative;
  z-index: 1;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  font-weight: 300;
  line-height: 0.82;
  min-height: 92px;
  display: flex;
  align-items: flex-start;
}
.service-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
}
.service-copy h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.1vw, 3.1rem);
  font-weight: 300;
  line-height: 1;
}
.service-copy p:not(.label) {
  max-width: 650px;
  margin: 0.9rem 0 0;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.65;
}
.service-list,
.occasion-grid { margin-top: auto; padding-top: 1.45rem; }
.service-list {
  display: grid;
  gap: 0;
  padding-left: 0;
  list-style: none;
}
.service-list li,
.occasion-grid span {
  position: relative;
  color: var(--charcoal);
}
.service-list li {
  padding: 0.62rem 0 0.62rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
  line-height: 1.3;
}
.service-list li:first-child { border-top: 1px solid var(--line-soft); }
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.17rem;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--brass);
}
.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-content: flex-start;
}
.occasion-grid span {
  display: inline-flex;
  max-width: 100%;
  padding: 0.44rem 0.66rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,0.42);
  font-size: 0.78rem;
  line-height: 1.05;
  white-space: normal;
}
/* ============================================================
   Why
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.why-copy p:not(.label) {
  max-width: 540px;
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
}
.conductor-card {
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background:
    linear-gradient(to bottom, rgba(255,253,249,0.72), rgba(255,253,249,0.5)),
    repeating-linear-gradient(to bottom, transparent 0 27px, rgba(146,119,71,0.12) 28px 29px);
}
.expectation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.expectation-list span {
  min-height: 74px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.2;
}

/* ============================================================
   Repertoire
   ============================================================ */
.repertoire-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.repertoire-copy { position: sticky; top: 112px; }
.repertoire-copy p:not(.label) {
  margin-top: 1.1rem;
  max-width: 500px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}
.song-sheet {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--paper);
}
.song-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  align-items: center;
  min-height: 66px;
  padding: 0.76rem clamp(0.9rem, 1.7vw, 1.25rem);
  border-bottom: 1px solid var(--line-soft);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}
.song-row:last-child { border-bottom: 0; }
.song-row:hover { background: rgba(199,173,120,0.08); }
.song-row span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}
.song-row strong {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 300;
}

/* ============================================================
   Interlude
   ============================================================ */
.interlude {
  position: relative;
  min-height: clamp(420px, 60vw, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.interlude img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0.74;
  filter: saturate(0.92) contrast(0.98);
}
.interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,27,23,0.76), rgba(31,27,23,0.2), rgba(31,27,23,0.62));
}
.interlude-panel {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--pad) * 2)), 660px);
  margin-left: auto;
  margin-right: var(--pad);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255,253,249,0.22);
  border-radius: var(--r-xl);
  background: rgba(31,27,23,0.48);
  backdrop-filter: blur(14px);
}
.interlude-panel .display { color: var(--white); }

/* ============================================================
   Investment
   ============================================================ */
.investment-header {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3.6rem);
}
.investment-header p:not(.label) {
  margin-top: 1.05rem;
  max-width: 640px;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}
.pricing-composition {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: rgba(255,253,249,0.52);
  overflow: hidden;
}
.pricing-lead {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 1.2rem;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
}
.pricing-lead .label { margin: 0; }
.pricing-lead h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
}
.price-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: center;
  padding: clamp(1.1rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line-soft);
}
.price-row:last-child { border-bottom: 0; }
.price-row.featured { background: rgba(199,173,120,0.1); }
.price-count {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
}
.price-row h4 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.1;
}
.price-row p { margin: 0.35rem 0 0; max-width: 540px; }
.price-row strong,
.event-rate-grid strong {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
}
.price-row strong span,
.event-rate-grid strong span {
  color: var(--brass);
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.event-rate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.event-rate-grid article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,253,249,0.45);
}
.event-rate-grid h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 300;
  line-height: 1.14;
}
.investment-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1rem;
  padding: clamp(1.2rem, 2.4vw, 1.75rem);
  border-top: 1px solid var(--line);
}
.investment-note p { max-width: 690px; margin: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.testimonials-copy { position: sticky; top: 112px; align-self: start; }
.testimonial-stack {
  display: grid;
  gap: 0.85rem;
}
.testimonial-stack blockquote {
  position: relative;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  overflow: visible;
}
.testimonial-stack blockquote:nth-child(2) { background: var(--parchment); }
.testimonial-stack blockquote:nth-child(3) { background: var(--score); }
.testimonial-stack p {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.32;
}

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about-photo {
  overflow: hidden;
  border-radius: var(--r-xl) 0 var(--r-xl) var(--r-xl);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 65vh;
  object-fit: cover;
  object-position: center 38%;
}
.about-copy p:not(.label) {
  margin-top: 1.1rem;
  max-width: 680px;
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(420px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
summary {
  cursor: pointer;
  list-style: none;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 300;
  line-height: 1.2;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--brass);
  font-family: var(--sans);
  font-size: 1rem;
  padding-left: 1rem;
}
details[open] summary::after { content: "–"; }
details p { max-width: 650px; margin: 0.75rem 0 0; }

/* ============================================================
   Inquiry
   ============================================================ */
.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.inquiry-copy { position: sticky; top: 112px; }
.inquiry-copy p:not(.label) {
  max-width: 520px;
  margin-top: 1.1rem;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}
.inquiry-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.8rem;
}
.inquiry-prompts span {
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,253,249,0.4);
  color: var(--charcoal);
  font-size: 0.82rem;
}
.inquiry-form {
  padding: clamp(1.3rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: rgba(255,253,249,0.62);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--brass);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  background: rgba(255,253,249,0.78);
  padding: 0.82rem 0.9rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brass);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199, 173, 120, 0.12);
}
.form-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.form-foot span {
  color: var(--muted);
  font-size: 0.9rem;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  z-index: 260;
  transform: translate(-50%, 130%);
  max-width: min(92vw, 420px);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  opacity: 0;
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad);
  border-top: 1px solid var(--line-soft);
  background: var(--charcoal);
  color: rgba(255,253,249,0.74);
}
.footer-inner {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
}
.footer-inner strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}
.footer-inner p { max-width: 330px; margin: 0.65rem 0 0; }
.footer-inner div:nth-child(2) {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
}
.footer-inner div:nth-child(3) {
  display: grid;
  gap: 0.4rem;
  justify-items: end;
  text-align: right;
}
.footer-bottom {
  width: min(100%, var(--wide));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,253,249,0.12);
  color: rgba(255,253,249,0.46);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card.reveal,
.price-row.reveal,
.song-row.reveal { transition-delay: var(--delay, 0ms); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Quote / inquiry subpage compatibility
   ============================================================ */
.quote-main { padding: var(--section) 0; background: var(--parchment); }
.quote-intro,
.quote-form-panel {
  width: min(100%, 920px);
  margin-inline: auto;
}
.quote-intro h1,
.quote-form-panel h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 300;
  line-height: 1;
}
.quote-sub,
.quote-closing { max-width: 620px; }
.quote-photo {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.quote-photo img { width: 100%; max-height: 480px; object-fit: cover; object-position: center 28%; }
.quote-form-panel {
  margin-top: 1.3rem;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: rgba(255,253,249,0.62);
}
.datetime-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }


/* ============================================================
   Final spacing pass
   ============================================================ */
.experience-copy p:not(.label) { line-height: 1.7; }
.section-intro p:not(.label) { line-height: 1.65; }
.price-row-single strong { color: var(--brass); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1300px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-visual { justify-self: start; width: min(100%, 620px); }
  .hero-note { left: auto; right: -2%; }
  .experience-grid,
  .why-grid,
  .repertoire-grid,
  .testimonials-grid,
  .about-grid,
  .faq-grid,
  .inquiry-grid { grid-template-columns: 1fr; }
  .chapter-mark,
  .repertoire-copy,
  .testimonials-copy,
  .inquiry-copy { position: static; }
  .service-score { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-number { min-height: 70px; font-size: 4rem; }
}

@media (max-width: 900px) {
  :root { --pad: clamp(1.1rem, 5vw, 2rem); }
  .site-header-inner { grid-template-columns: 1fr auto; }
  .site-header-bar,
  .site-header-meta { display: none; }
  .nav-toggle {
    display: block;
    width: 32px;
    height: 22px;
    position: relative;
    z-index: 150;
  }
  .nav-toggle span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--charcoal);
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  }
  .nav-toggle span:nth-child(1) { top: 0; }
  .nav-toggle span:nth-child(2) { top: 10px; }
  .nav-toggle span:nth-child(3) { top: 20px; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: var(--pad);
    background: var(--cream-veil);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu a {
    color: var(--charcoal);
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3rem);
    font-weight: 300;
    line-height: 1;
  }
  .event-rate-grid { grid-template-columns: 1fr; }
  .pricing-lead { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 58px 1fr; }
  .price-row strong { grid-column: 2; justify-items: start; margin-top: 0.4rem; }
  .investment-note { align-items: flex-start; flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner div:nth-child(2),
  .footer-inner div:nth-child(3) { justify-items: start; text-align: left; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .music-line { display: none; }
  .hero {
    padding-top: 3.2rem;
    background: linear-gradient(to bottom, rgba(215,203,185,0.17) 0 1px, transparent 1px 76px);
  }
  .display-xl { font-size: clamp(2.65rem, 13.2vw, 4.25rem); line-height: 0.98; }
  .display-lg { font-size: clamp(2.05rem, 10vw, 3.05rem); line-height: 1; }
  .display-md { font-size: clamp(1.65rem, 8vw, 2.35rem); }
  .hero-kicker { font-size: clamp(1.16rem, 6vw, 1.55rem); line-height: 1.38; }
  .hero-body { font-size: 0.98rem; line-height: 1.72; }
  .hero-ctas,
  .form-foot { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-note {
    position: relative;
    inset: auto;
    margin: -2rem 1rem 0;
  }
  .service-card { padding: 1.1rem; border-radius: var(--r-lg); }
  .service-number { min-height: 68px; font-size: 3.7rem; }
  .service-copy { padding-top: 1rem; }
  .service-copy h3 { font-size: clamp(2rem, 11vw, 2.75rem); }
  .service-copy p:not(.label) { font-size: 0.98rem; line-height: 1.65; }
  .service-list, .occasion-grid { margin-top: 1.35rem; padding-top: 0; }
  .occasion-grid { gap: 0.42rem; }
  .occasion-grid span { font-size: 0.76rem; padding: 0.42rem 0.58rem; }
  .experience-cues div { grid-template-columns: 56px 1fr; }
  .expectation-list { grid-template-columns: 1fr; }
  .song-row { grid-template-columns: 44px 1fr; min-height: 58px; gap: 0.7rem; padding-block: 0.65rem; }
  .song-row span { font-size: 1.45rem; }
  .song-row strong { font-size: 1.16rem; line-height: 1.15; }
  .interlude-panel {
    margin: 0;
    width: min(calc(100% - 2rem), 620px);
  }
  .form-row,
  .datetime-row { grid-template-columns: 1fr; gap: 0; }
  .footer-bottom { font-size: 0.72rem; }
  .chapter-mark span { font-size: 4rem; }
  .experience-cues p { font-size: 1.18rem; }
  .experience-cues div { padding: 1rem; }
  .event-rate-grid article { min-height: 0; }
  .price-row { grid-template-columns: 44px 1fr; gap: 0.8rem; }
  .price-count { font-size: 2.15rem; }
  .price-row strong, .event-rate-grid strong { font-size: 2rem; }
  .testimonial-stack p { font-size: 1.25rem; }
}

.service-card-dark .service-copy h3 { color: var(--white); }
.service-card-dark .service-copy p:not(.label) { color: rgba(255, 253, 249, 0.74); }

/* ============================================================
   Launch polish pass: service cards, pricing
   ============================================================ */
.experience-cues div {
  grid-template-columns: clamp(3rem, 7vw, 4.4rem) minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.2rem);
}
.experience-cues span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0.9;
}
.experience-cues p {
  align-self: center;
  padding-top: 0;
}

.service-copy {
  flex: 1;
  border-top: 1px solid var(--line-soft);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}
@media (min-width: 1301px) {
  .service-card { min-height: 500px; padding: 0; }
  .service-number { min-height: 118px; padding: clamp(1.25rem, 2.4vw, 2rem); align-items: center; }
}
.service-card-dark .service-copy { border-top-color: rgba(255, 253, 249, 0.12); }
.service-copy .label {
  margin-bottom: 1rem;
}
.service-copy h3 {
  max-width: 10ch;
}
.service-card:first-child .service-copy h3 { max-width: none; }
.service-card-dark .service-copy h3 { max-width: 11ch; }
.service-list,
.occasion-grid {
  margin-top: auto;
  padding-top: 1.4rem;
}
.occasion-grid span {
  white-space: nowrap;
}

.event-rate-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .site-header-inner { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); }
  .site-header-bar,
  .site-header-meta { display: none; }
  .site-title {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
  }
  .site-header-logo { height: 44px; }
  .nav-toggle { display: block; }
  .event-rate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { padding-block: 0.62rem; }
  .site-title {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }
  .site-header-logo { height: 42px; }

  .experience-cues div {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    min-height: 78px;
  }
  .experience-cues span { font-size: 2.15rem; }
  .experience-cues p {
    font-size: 1.12rem;
    line-height: 1.2;
  }

  .service-card {
    min-height: auto;
    padding: 0;
  }
  .service-number {
    min-height: 96px;
    padding: 1.15rem 1.25rem;
    font-size: 3.45rem;
  }
  .service-copy {
    padding: 1.15rem 1.25rem 1.3rem;
  }
  .service-copy h3 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
    max-width: 9.5ch;
  }
  .service-card:first-child .service-copy h3 { max-width: none; }
  .service-card-dark .service-copy h3 { max-width: 10.5ch; }
  .occasion-grid {
    gap: 0.4rem;
  }
  .occasion-grid span {
    font-size: 0.74rem;
    padding: 0.4rem 0.55rem;
  }
}

@media (max-width: 390px) {
  .site-title {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }
  .site-header-logo { height: 38px; }
  .occasion-grid span { white-space: normal; }
}

/* ============================================================
   Final mobile form fix: prevent iOS date controls from overflowing
   ============================================================ */
.field,
.form-row,
.datetime-row {
  min-width: 0;
}
.field input,
.field select,
.field textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  display: block;
  max-width: 100%;
  min-width: 0;
}
.field input[type="date"],
.field input[type="time"],
.quote-form input[type="date"],
.quote-form input[type="time"],
.datetime-row input[type="date"],
.datetime-row input[type="time"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  text-align-last: left;
}
.field input[type="date"]::-webkit-date-and-time-value,
.field input[type="time"]::-webkit-date-and-time-value,
.quote-form input[type="date"]::-webkit-date-and-time-value,
.quote-form input[type="time"]::-webkit-date-and-time-value,
.datetime-row input[type="date"]::-webkit-date-and-time-value,
.datetime-row input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
}
@media (max-width: 640px) {
  .inquiry-form,
  .quote-form-panel {
    overflow: hidden;
  }
  .field input[type="date"],
  .field input[type="time"],
  .quote-form input[type="date"],
  .quote-form input[type="time"],
  .datetime-row input[type="date"],
  .datetime-row input[type="time"] {
    padding-inline: 0.9rem;
  }
}

/* Resend inquiry form states */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button[disabled],
.btn[disabled] {
  cursor: not-allowed;
  opacity: 0.62;
}

@media (min-width: 1301px) {
  .hero-copy { max-width: 720px; }
  .hero-kicker { max-width: 640px; }
}

/* Final content cleanup */
.faq-list strong { color: var(--charcoal); font-weight: 700; }
