:root {
  --bg: #0d0b14;
  --bg-soft: #13101e;
  --panel: #151c2a;
  --panel-alt: #0f1520;
  --ink: #f5f7fc;
  --muted: #b7c0d1;
  --line: #2b3446;
  --line-soft: #36435c;
  --acid: #d9ff3f;
  --cyan: #73f0ff;
  --violet: #c88cff;
  --gold: #e5c27a;
  --max: 1280px;
  --radius: 16px;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.62;
  background:
    radial-gradient(circle at 10% 0%, rgba(115, 240, 255, 0.05), transparent 35%),
    radial-gradient(circle at 88% 8%, rgba(200, 140, 255, 0.10), transparent 34%),
    radial-gradient(circle at 55% 100%, rgba(160, 80, 20, 0.07), transparent 45%),
    var(--bg);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(100% - 2.4rem, var(--max)); margin: 0 auto; }
.section { padding: 5.5rem 0; }
.section-title {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 0.96;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
}
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 15, 20, 0.78);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.76rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav-links a {
  color: #dde3ee;
  font-weight: 700;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.76rem 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 170ms ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-primary { background: var(--gold); color: #1a0f00; }
.btn-secondary { border-color: #65718a; color: #e4e9f2; }
.btn-gold { background: var(--gold); color: #1a0f00; }
.nav-links .btn-primary,
.nav-links .btn-primary:hover,
.nav-links .btn-primary.active {
  color: #1a0f00;
  background: var(--gold);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 10, 16, 0.90) 0%, rgba(8, 10, 16, 0.72) 100%),
    url('/assets/img/conducting.png') center 12%/cover no-repeat fixed;
}
.hero-inner {
  position: relative;
  min-height: 84vh;
  padding: 3.6rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-panel {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 860px;
}
.hero h1 {
  margin: 0.7rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  max-width: none;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.7);
}
.hero h1 .accent { color: var(--acid); }
.hero p {
  margin: 1.1rem 0 0;
  color: #d8e0ef;
  max-width: 60ch;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.credit-context {
  margin-top: 1rem;
  padding: 0.8rem;
  border: 1px solid #495875;
  border-radius: 12px;
  background: rgba(12, 17, 27, 0.75);
}
.credit-context strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}
.name-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.name-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.6rem;
  border: 1px solid #60708f;
  border-radius: 999px;
  font-size: 0.81rem;
  font-weight: 800;
  color: #e8edfa;
  background: rgba(23, 30, 44, 0.9);
}
.venue-ribbon {
  margin-top: 0.55rem;
  font-weight: 700;
  color: #cad4e7;
}


.grid-two { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 2rem; }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel), var(--panel-alt));
  padding: 1.25rem;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}
.profile-card .btn {
  margin-top: 0.95rem;
}
.profile-card .credit-context {
  margin-top: 0.9rem;
  margin-bottom: 0.4rem;
}

.portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  aspect-ratio: 3 / 2;
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 21, 32, 0.95), rgba(12, 17, 26, 0.95));
}
.band-inner {
  padding: 3.4rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}
.band-copy {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(17, 24, 36, 0.86);
  padding: 1.15rem;
}
.band-inner h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}
.band-inner p {
  margin: 0.75rem 0 0;
  max-width: 68ch;
  color: #dbe4f4;
}
.band-list {
  color: #f0f4fd;
  font-weight: 700;
}
.band-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}
.band-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.quote-rotator {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(17, 24, 36, 0.88);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-slide {
  position: absolute;
  inset: 1.2rem;
  opacity: 0;
  transition: opacity 450ms ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.quote-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.quote-slide p {
  margin: 0 0 0.8rem;
  color: #e9eef9;
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.35;
  max-width: 58ch;
}
.quote-slide strong {
  color: var(--gold);
  font-size: 0.95rem;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 0.9rem;
}
.service {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 36, 0.82);
  padding: 0.9rem;
}
.service-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.7rem;
  border: 1px solid #43516a;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-conducting { object-position: center 22%; }
.media-strings { object-position: center 14%; }
.media-tech { object-position: center; }
.service h3 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}
.service p { margin: 0; color: #c7d1e3; }
.swipe-note {
  margin: 0 0 0.8rem;
  color: #98a9c5;
  font-size: 0.9rem;
}

.bio-layout { display: grid; gap: 3rem; grid-template-columns: 300px 1fr; align-items: start; margin-top: 2rem; }
.bio-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, var(--panel), var(--panel-alt));
  padding: 1.8rem;
  margin-top: 1.5rem; /* match bio-portrait top offset */
}
.bio-lead { font-size: 1.12rem; color: #e8eef9; }
.highlight-grid {
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.highlight-card {
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(15, 22, 34, 0.9);
  padding: 0.75rem;
}
.highlight-card strong {
  display: block;
  color: var(--cyan);
  margin-bottom: 0.2rem;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.timeline li {
  border-top: 1px dashed #45526d;
  padding: 0.66rem 0;
}
.timeline li strong { color: var(--gold); }

.repertoire-controls { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.filter-btn {
  border: 1px solid #66758f;
  border-radius: 999px;
  background: transparent;
  color: #e1e8f5;
  padding: 0.56rem 1rem;
  font-weight: 700;
  cursor: pointer;
}
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a0f00;
}
.search-input {
  width: 100%;
  border: 1px solid #69788f;
  border-radius: 10px;
  background: #151d2a;
  color: #eff3fc;
  padding: 0.74rem 0.9rem;
  font: inherit;
  margin-bottom: 1rem;
}
.repertoire-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 36, 0.9);
  padding: 1rem 1.25rem;
}
.work-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  border-top: 1px solid #36445a;
  padding: 0.66rem 0;
}
.work-item:first-child { border-top: none; }
.work-item .composer { font-weight: 800; color: #f1f4fb; }
.work-item.solo { grid-template-columns: 1fr; }

.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.input,
.textarea {
  width: 100%;
  border: 1px solid #66758d;
  border-radius: 10px;
  background: #141b28;
  color: #f1f5fd;
  font: inherit;
  padding: 0.74rem 0.9rem;
}
.textarea { min-height: 150px; resize: vertical; }
.form-note { color: #bec9dc; font-size: 0.94rem; margin: 0; }
#form-status { margin-top: 0.6rem; font-weight: 700; }
.contact-points { margin: 1rem 0 0; padding: 0; list-style: none; }
.contact-points li { border-top: 1px dashed #42516b; padding: 0.64rem 0; }
.contact-points li strong { color: var(--cyan); }

.site-footer {
  border-top: 1px solid var(--line);
  color: #b8c3d7;
  padding: 2rem 0;
  font-size: 0.93rem;
}
.site-footer a {
  color: var(--cyan);
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: #fff;
  color: #111;
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
}

@media (max-width: 1060px) {
  .grid-two,
  .bio-layout,
  .band-inner,
  .services,
  .contact-grid,
  .work-item { grid-template-columns: 1fr; }

  .bio-portrait {
    position: static;
    width: min(260px, 55%);
    margin: 0 auto 0.5rem;
  }

  .hero-inner {
    min-height: 0;
    padding: 3.4rem 0 2.9rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5.8vw, 3.35rem);
    line-height: 1.08;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 1.3rem, var(--max)); }
  .section { padding: 3.8rem 0; }
  .brand { font-size: 1.25rem; }
  .nav-wrap { min-height: 62px; }
  .nav-links { gap: 0.75rem; font-size: 0.94rem; }
  .nav-links .btn { padding: 0.56rem 0.85rem; }
  .hero::before { background-attachment: scroll, scroll; }
  .hero h1 {
    font-size: clamp(1.6rem, 8.3vw, 2.65rem);
    line-height: 1.1;
    max-width: none;
  }
  .quote-rotator { min-height: 280px; }
}

/* ── Venue / prestige strip ────────────────────────────────────── */
.venue-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 22, 0.92);
  padding: 0.9rem 0;
}
.venue-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 1.2rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold);
}
.strip-sep { color: #3c4d66; }

/* ── Mobile hamburger ──────────────────────────────────────────── */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.48rem 0.52rem;
  cursor: pointer;
  color: var(--ink);
  flex-shrink: 0;
}
.menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 200ms ease;
}
.menu-icon::before,
.menu-icon::after {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  left: 0;
  transition: transform 220ms ease, top 220ms ease;
}
.menu-icon::before { top: -6px; }
.menu-icon::after  { top:  6px; }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle[aria-expanded="true"] .menu-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ── Quote rotator dots ────────────────────────────────────────── */
.rotator-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.9rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: var(--line-soft);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, width 200ms ease;
}
.dot.active {
  background: var(--acid);
  width: 26px;
}

/* ── Scroll reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 550ms ease, transform 550ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Service card hover ────────────────────────────────────────── */
.service {
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.service:hover {
  border-color: var(--line-soft);
  box-shadow: 0 0 0 1px var(--line-soft), 0 20px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* ── Quote rotator large open-quote decoration ─────────────────── */
.quote-slide p::before {
  content: '\201C';
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  line-height: 0;
  vertical-align: -0.5rem;
  color: var(--cyan);
  opacity: 0.55;
  margin-right: 0.15rem;
}

/* ── Bio portrait (about page) — sticky sidebar, fills column ── */
.bio-portrait {
  position: sticky;
  top: 96px;
  width: 100%;
  margin: 0;          /* reset browser <figure> default margin */
  margin-top: 1.5rem; /* explicit top offset to align with card */
}
.bio-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: unset;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

/* ── Services: horizontal scroll on small screens only ─────────── */
@media (max-width: 680px) {
  .services {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 0.9fr);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .services::-webkit-scrollbar { height: 8px; }
  .services::-webkit-scrollbar-thumb {
    background: #41506b;
    border-radius: 999px;
  }
  .service { scroll-snap-align: start; }
  .swipe-note { display: block; }
}
@media (min-width: 681px) {
  .swipe-note { display: none; }
}

/* ── Mobile hamburger menu open state ──────────────────────────── */
@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.4rem 1.4rem;
    gap: 0.55rem;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn-primary { align-self: flex-start; }
  .venue-strip-inner { gap: 0.35rem 0.85rem; font-size: 0.72rem; }
}
