:root {
  color-scheme: light;
  --sand-50: #f7f0e4;
  --sand-100: #eee2cd;
  --sand-200: #dfceb4;
  --ink: #1c1b19;
  --muted: #625e57;
  --teal: #153638;
  --teal-soft: #21494b;
  --burgundy: #490b1a;
  --gold: #ae8452;
  --surface: rgba(250, 245, 235, .68);
  --surface-solid: #f4ebdd;
  --border: rgba(21, 54, 56, .16);
  --shadow: 0 26px 70px rgba(52, 35, 24, .14);
  --max-width: 1200px;
  --radius: 26px;
  --ease: 220ms ease;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --sand-50: #151412;
  --sand-100: #1b1917;
  --sand-200: #2a2723;
  --ink: #f1e7d7;
  --muted: #bdb4a7;
  --teal-soft: #245052;
  --surface: rgba(31, 29, 26, .72);
  --surface-solid: #211f1c;
  --border: rgba(238, 226, 205, .14);
  --shadow: 0 30px 80px rgba(0, 0, 0, .34);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body {
  margin: 0;
  min-width: 280px;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(73, 11, 26, .09), transparent 28rem),
    radial-gradient(circle at 92% 9%, rgba(21, 54, 56, .13), transparent 32rem),
    var(--sand-100);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  transition: color var(--ease), background-color var(--ease);
}

img, video { display: block; max-width: 100%; }
img { height: auto; }
video { width: 100%; background: #111; }
a { color: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 100; left: 1rem; top: 1rem;
  padding: .7rem 1rem; color: #fff; background: var(--burgundy);
  transform: translateY(-160%); transition: transform var(--ease);
}
.skip-link:focus { transform: none; }
.shell { width: min(calc(100% - 3rem), var(--max-width)); margin-inline: auto; }
.glass-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--sand-100) 84%, transparent);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.header-inner { min-height: 5.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; flex-direction: column; text-decoration: none; line-height: 1.15; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; letter-spacing: .02em; }
.brand-line { margin-top: .35rem; color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2rem); }
.desktop-nav a, .footer-inner nav a { position: relative; color: var(--muted); text-decoration: none; font-size: .88rem; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -.45rem; height: 1px; background: var(--burgundy); transform: scaleX(0); transform-origin: right; transition: transform var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: .7rem; }
.theme-toggle {
  display: none; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem;
  color: var(--teal); background: transparent; border: 1px solid var(--border); border-radius: 999px; cursor: pointer;
}
.js-ready .theme-toggle { display: inline-flex; }
.theme-toggle svg { width: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.moon-icon, html[data-theme="dark"] .sun-icon { display: none; }
html[data-theme="dark"] .moon-icon { display: block; }
html[data-theme="dark"] .theme-toggle { color: var(--gold); }
.theme-toggle:hover { background: var(--surface); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 2.75rem; height: 2.75rem; display: grid; place-content: center; gap: 4px; cursor: pointer; list-style: none; border: 1px solid var(--border); border-radius: 999px; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 1rem; height: 1px; background: currentColor; }
.mobile-menu nav { position: absolute; top: 3.35rem; right: 0; width: min(19rem, calc(100vw - 2rem)); padding: .7rem; display: grid; background: var(--surface-solid); border: 1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow); }
.mobile-menu nav a { padding: .75rem 1rem; text-decoration: none; border-radius: .6rem; }
.mobile-menu nav a:hover { background: color-mix(in srgb, var(--teal) 10%, transparent); }

.hero { position: relative; overflow: clip; min-height: calc(100svh - 5.5rem); display: grid; align-items: center; padding: clamp(4rem, 8vw, 8rem) 0; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero::before { width: 32rem; height: 32rem; left: -20rem; bottom: -16rem; background: rgba(73, 11, 26, .12); }
.hero::after { width: 29rem; height: 29rem; right: -16rem; top: -12rem; background: rgba(21, 54, 56, .16); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .78fr); align-items: center; gap: clamp(3rem, 7vw, 7rem); }
.eyebrow { margin: 0 0 1.2rem; color: var(--burgundy); font-size: .74rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-grid; place-items: center; min-width: 2rem; margin-right: .65rem; color: var(--gold); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: .99; letter-spacing: -.035em; text-wrap: balance; }
h1 { max-width: 12ch; font-size: clamp(3.7rem, 7.6vw, 7.2rem); }
h2 { max-width: 16ch; font-size: clamp(2.5rem, 5vw, 4.8rem); }
h1 em, h2 em { color: var(--burgundy); font-weight: 400; }
.hero-lead { max-width: 42rem; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.17rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.button { min-height: 3.15rem; padding: .85rem 1.3rem; display: inline-flex; align-items: center; justify-content: center; gap: .7rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .88rem; font-weight: 700; transition: transform var(--ease), background var(--ease), border-color var(--ease); }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #f8f2e8; background: var(--teal); }
.button-primary:hover { background: var(--teal-soft); }
.button-quiet { border-color: var(--border); background: var(--surface); }
.button-quiet:hover { border-color: var(--burgundy); }
.hero-facts { margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; }
.hero-facts li { padding: .38rem .72rem; color: var(--muted); background: color-mix(in srgb, var(--surface-solid) 62%, transparent); border: 1px solid var(--border); border-radius: 999px; font-size: .75rem; }
.hero-visual { position: relative; width: min(100%, 30rem); justify-self: end; }
.image-frame { position: relative; padding: .8rem; overflow: hidden; border-radius: clamp(2rem, 5vw, 4.5rem) 1.2rem clamp(2rem, 5vw, 4.5rem) 1.2rem; transform: rotate(1.3deg); }
.image-frame img { width: 100%; aspect-ratio: .79; object-fit: cover; object-position: 50% 48%; filter: contrast(1.04); border-radius: inherit; }
.image-frame::after { content: ""; position: absolute; inset: .8rem; border-radius: inherit; background: linear-gradient(180deg, transparent 50%, rgba(12, 12, 11, .72)); pointer-events: none; }
.image-caption { position: absolute; z-index: 1; inset: auto 2rem 1.8rem; display: flex; flex-direction: column; color: #f4eadb; }
.image-caption span { color: #d8c4a7; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.image-caption strong { margin-top: .25rem; font-family: Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.hero-mark { position: absolute; z-index: -1; right: -3rem; bottom: -2.2rem; color: rgba(73, 11, 26, .1); font-family: Georgia, serif; font-size: 10rem; line-height: 1; }

.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.section-heading { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.split-heading > p { max-width: 29rem; margin: 0; color: var(--muted); }
.section-about { background: var(--teal); color: #f4eadb; }
.section-about .eyebrow, .eyebrow-light { color: #d8c4a7; }
.section-about h2 em { color: #ddb7a7; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: clamp(3rem, 7vw, 7rem); }
.about-copy { padding: clamp(2rem, 4vw, 4rem); color: #f1e8db; background: rgba(255, 255, 255, .065); border-color: rgba(255, 255, 255, .13); border-radius: var(--radius); }
.about-copy p { color: #ccc5ba; }
.about-copy .lead { margin-top: 0; color: #fffaf1; font-family: Georgia, serif; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.48; }
.fact-list { margin: 2.2rem 0 0; }
.fact-list div { padding: 1rem 0; display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; border-top: 1px solid rgba(255,255,255,.13); }
.fact-list dt { color: #aaa398; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.fact-list dd { margin: 0; font-weight: 650; }

.section-repertoire { background: var(--sand-50); }
.repertoire-list { border-top: 1px solid var(--border); }
.repertoire-list article { padding: 1.55rem 0; display: grid; grid-template-columns: 4rem minmax(12rem, .8fr) 1.4fr; align-items: baseline; gap: 1.5rem; border-bottom: 1px solid var(--border); }
.repertoire-list article > span { color: var(--gold); font-family: Georgia, serif; }
.repertoire-list h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 400; }
.repertoire-list p { margin: 0; color: var(--muted); }

.section-samples { position: relative; }
.sample-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.media-card { overflow: hidden; background: var(--surface-solid); border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 16px 42px rgba(52,35,24,.08); }
.media-card video { aspect-ratio: 16 / 9; object-fit: cover; }
.media-card > div { padding: 1.25rem 1.35rem 1.5rem; }
.media-card h3, .video-item h3 { margin: .25rem 0 0; font-family: Georgia, serif; font-size: 1.3rem; font-weight: 400; }
.media-type, .video-item p { margin: 0; color: var(--burgundy); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }

.section-videos { overflow: hidden; background: var(--burgundy); color: #f8eee4; }
.section-videos .eyebrow { color: #d9bd9d; }
.section-videos h2 em { color: #e0b7a6; }
.video-heading { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.carousel-controls { display: none; gap: .65rem; }
.js-ready .carousel-controls { display: flex; }
.carousel-controls button { width: 3rem; height: 3rem; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; cursor: pointer; }
.carousel-controls button:hover { background: rgba(255,255,255,.15); }
.video-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.js-ready .video-list { grid-auto-flow: column; grid-auto-columns: min(72vw, 34rem); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: #d2ad8c transparent; padding-bottom: 1rem; }
.video-item { min-width: 0; scroll-snap-align: start; }
.video-item video { aspect-ratio: 16 / 9; object-fit: contain; border: 1px solid rgba(255,255,255,.16); border-radius: .8rem; }
.video-item h3 { color: #fff6ea; }
.video-item p { margin-top: .35rem; color: #d9bd9d; }
.text-link { color: var(--burgundy); font-size: .86rem; font-weight: 750; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: .3em; }
.section-action { margin: 2rem 0 0; text-align: right; }
.desktop-nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); }

.section-story-links { background: var(--sand-100); }
.story-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.story-link-card { min-height: 22rem; padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; color: #f3eadd; background: var(--teal); border-radius: var(--radius); text-decoration: none; transition: transform var(--ease), box-shadow var(--ease); }
.story-link-card:nth-child(2) { background: var(--burgundy); }
.story-link-photo { color: var(--ink); background: var(--surface-solid); border: 1px solid var(--border); }
.story-link-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.story-link-card > span { color: #d9bd9d; font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.story-link-photo > span { color: var(--burgundy); }
.story-link-card h3 { margin: auto 0 .8rem; font-family: Georgia, serif; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; line-height: 1.13; }
.story-link-card p { margin: 0 0 1.3rem; color: inherit; opacity: .76; }
.story-link-card strong { font-size: .78rem; }

.archive-hero { padding: clamp(4rem, 8vw, 7rem) 0; color: #f5eadc; background: var(--teal); }
.archive-hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .65fr); align-items: end; gap: clamp(3rem, 9vw, 9rem); }
.archive-hero .legal-back { color: #d9bd9d; }
.archive-hero .eyebrow { margin-top: 2rem; color: #d9bd9d; }
.archive-hero h1 { max-width: 11ch; color: #fff7ec; font-size: clamp(3.6rem, 8vw, 7.5rem); }
.archive-hero h1 em { color: #dfb6a5; }
.archive-intro { padding: 1.5rem 0 .35rem 1.5rem; border-left: 1px solid rgba(255,255,255,.2); }
.archive-intro > p { margin: 0; color: #d4ccc1; font-size: 1.05rem; }
.archive-intro > span { display: inline-block; margin-top: 1.5rem; color: #d9bd9d; font-size: .72rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.archive-jump { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .65rem; }
.archive-jump a { padding: .65rem .9rem; color: #f5eadc; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .78rem; text-decoration: none; }
.archive-jump a:hover { background: rgba(255,255,255,.09); }

.score-section { background: var(--sand-100); }
.score-layout { display: grid; grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.1fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); }
.score-copy { max-width: 34rem; }
.score-copy > p:not(.eyebrow) { margin-top: 1.4rem; color: var(--muted); }
.note-prices { margin: 2rem 0; border-top: 1px solid var(--border); }
.note-prices div { padding: .8rem 0; display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--border); }
.note-prices dt { color: var(--muted); }
.note-prices dd { margin: 0; color: var(--ink); font-weight: 750; }
.score-gallery { min-height: 39rem; position: relative; }
.score-page { margin: 0; position: absolute; background: #f7f0e4; box-shadow: 0 28px 70px rgba(45,28,20,.2); }
.score-page a { display: block; overflow: hidden; }
.score-page img { width: 100%; display: block; aspect-ratio: .72; object-fit: cover; transition: transform var(--ease); }
.score-page a:hover img { transform: scale(1.015); }
.score-page figcaption { padding: .65rem .8rem; color: #5d5148; font-size: .72rem; }
.score-cover { width: min(58%, 22rem); left: 0; top: 0; z-index: 2; transform: rotate(-1.2deg); }
.score-notes { width: min(56%, 21rem); right: 0; bottom: 0; transform: rotate(1.4deg); }

.lyrics-section { background: var(--sand-50); }
.lyrics-layout { display: grid; grid-template-columns: minmax(14rem, .34fr) minmax(0, 1fr); align-items: start; gap: clamp(3rem, 8vw, 7rem); }
.lyrics-intro { position: sticky; top: 8rem; }
.lyrics-intro h2 { font-size: clamp(2.5rem, 5vw, 4.4rem); }
.lyrics-intro > p:not(.eyebrow) { margin: 1.25rem 0; color: var(--muted); }
.lyrics-intro > a { color: var(--burgundy); font-size: .8rem; font-weight: 750; text-decoration: none; }
.lyrics-intro > a:hover { text-decoration: underline; text-underline-offset: .25em; }
.lyrics-list { border-top: 1px solid var(--border); }
.lyrics-entry { border-bottom: 1px solid var(--border); }
.lyrics-entry > summary { min-height: 7.2rem; padding: 1.2rem 0; display: grid; grid-template-columns: 3rem minmax(0, 1fr) auto; align-items: center; gap: 1.2rem; cursor: pointer; list-style: none; }
.lyrics-entry > summary::-webkit-details-marker { display: none; }
.lyric-number { color: var(--gold); font-family: Georgia, serif; font-size: 1.1rem; }
.lyric-heading { display: flex; flex-direction: column; }
.lyric-heading strong { font-family: Georgia, serif; font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 400; line-height: 1.12; }
.lyric-heading small { margin-top: .45rem; color: var(--burgundy); font-size: .68rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.lyric-action { display: flex; align-items: center; gap: .75rem; color: var(--muted); font-size: .75rem; font-weight: 700; text-transform: uppercase; }
.lyric-action b { width: 2.2rem; height: 2.2rem; display: grid; place-items: center; color: var(--ink); border: 1px solid var(--border); border-radius: 50%; font-size: 1rem; font-weight: 400; transition: transform var(--ease), background var(--ease); }
.lyrics-entry[open] .lyric-action b { transform: rotate(45deg); background: var(--surface-solid); }
.protected-text { margin: 0 0 2.5rem 4.2rem; padding: clamp(1.4rem, 4vw, 3rem); color: var(--ink); background: var(--surface-solid); border-left: 3px solid var(--burgundy); box-shadow: 0 18px 45px rgba(50,31,20,.08); user-select: none; -webkit-user-select: none; }
.protected-text pre { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; font: 400 .9rem/1.75 ui-monospace, SFMono-Regular, Consolas, monospace; }

.discography-hero { background: var(--burgundy); }
.discography-hero h1 em { color: #d7b9a6; }
.album-archive { background: var(--sand-50); }
.archive-section-head { margin-bottom: clamp(2.5rem, 6vw, 5rem); display: grid; grid-template-columns: .4fr 1fr; align-items: end; gap: 2rem; }
.archive-section-head h2 { margin: 0; }
.album-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2rem); }
.album-entry { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: color-mix(in srgb, var(--surface-solid) 86%, transparent); border: 1px solid var(--border); border-radius: 1rem; box-shadow: 0 18px 48px rgba(48,29,20,.08); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.album-entry:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--burgundy) 32%, var(--border)); box-shadow: 0 24px 58px rgba(48,29,20,.14); }
.album-cover { position: relative; margin: 0; padding: clamp(.8rem, 1.5vw, 1.1rem); padding-bottom: 0; }
.album-cover img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: .55rem; box-shadow: 0 18px 36px rgba(33,20,15,.2); }
.album-cover figcaption { position: absolute; inset: auto clamp(1.35rem, 2.2vw, 1.7rem) .65rem; min-height: 2.8rem; padding: .55rem .8rem; display: flex; align-items: center; justify-content: space-between; color: #f8eee2; background: rgba(21,54,56,.88); border: 1px solid rgba(255,255,255,.18); border-radius: .45rem; box-shadow: 0 8px 22px rgba(0,0,0,.2); backdrop-filter: blur(10px); }
.album-cover figcaption span { color: #d4b084; font-family: Georgia, serif; font-size: 1rem; }
.album-cover figcaption time { font-size: .72rem; font-weight: 750; letter-spacing: .12em; }
.album-copy { flex: 1; padding: clamp(1.5rem, 2.8vw, 2.2rem); display: flex; flex-direction: column; }
.album-copy h3 { margin: .35rem 0 .9rem; font-family: Georgia, serif; font-size: clamp(1.85rem, 3vw, 2.7rem); font-weight: 400; line-height: 1; }
.album-copy > p:not(.media-type) { color: var(--muted); }
.album-sample { margin-top: auto; padding-top: 1.5rem; display: grid; gap: .65rem; }
.album-sample > span { color: var(--burgundy); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.album-sample audio { width: 100%; }
.album-contact { padding: clamp(3rem, 7vw, 6rem) 0; color: #f6ede1; background: var(--teal); }
.album-contact-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.album-contact h2 { margin: 0; }
.album-contact h2 em { color: #ddb7a7; }
.album-contact .button-contact { width: auto; min-width: 15rem; }

.projects-section { background: var(--sand-50); }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.editorial-gallery { grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.editorial-gallery .project-card:nth-child(1) { grid-column: span 7; }
.editorial-gallery .project-card:nth-child(2) { grid-column: span 5; }
.editorial-gallery .project-card:nth-child(3) { grid-column: 2 / span 10; display: grid; grid-template-columns: .8fr 1fr; }
.project-card { overflow: hidden; background: var(--surface-solid); border: 1px solid var(--border); border-radius: .65rem; }
.project-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.editorial-gallery .project-card:nth-child(1) img { aspect-ratio: 16/9; }
.editorial-gallery .project-card:nth-child(2) img { aspect-ratio: 4/3; }
.editorial-gallery .project-card:nth-child(3) img { height: 100%; min-height: 18rem; aspect-ratio: auto; }
.project-card > div { padding: clamp(1.35rem, 3vw, 2rem); }
.project-card h3 { margin: .3rem 0 .8rem; font-family: Georgia, serif; font-size: 1.45rem; font-weight: 400; line-height: 1.2; }
.project-card p:not(.media-type) { color: var(--muted); }
.stories-section { background: var(--burgundy); color: #f8eee4; }
.stories-section .eyebrow { color: #d9bd9d; }
.stories-section h2 em { color: #e0b7a6; }
.stories-section .split-heading > p { color: #dfcfc4; }
.story-feature { margin-bottom: 2.5rem; display: grid; grid-template-columns: 1.2fr .8fr; align-items: stretch; overflow: hidden; background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.16); border-radius: 1rem; }
.story-feature img { width: 100%; height: 100%; min-height: 20rem; object-fit: cover; }
.story-feature > div { padding: clamp(1.5rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.story-feature h3 { margin: .4rem 0 2rem; font-family: Georgia, serif; font-size: clamp(1.7rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.05; }
.story-feature .button-primary { align-self: start; color: #2a1813; background: #e2c8aa; }
.article-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.article-list a { min-height: 9rem; padding: 1.25rem; display: grid; grid-template-columns: 1fr auto; gap: .7rem 1rem; align-content: space-between; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); text-decoration: none; }
.article-list a span { grid-column: 1 / -1; font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.25; }
.article-list a:hover span { text-decoration: underline; text-underline-offset: .25em; }
.article-list time { color: #d9bd9d; font-size: .75rem; }
.article-list b { font-weight: 400; }
.photography-section { background: var(--sand-100); }
.photo-story-grid { display: grid; grid-template-columns: .9fr 1fr; align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.photo-collage { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; align-items: end; }
.photo-collage img { width: 100%; aspect-ratio: .78; object-fit: cover; border-radius: .8rem; box-shadow: var(--shadow); }
.photo-collage img:nth-child(2) { aspect-ratio: .9; transform: translateY(-1.5rem); }
.photo-story-grid > div:last-child p { color: var(--muted); }

.repertoire-page { background: var(--sand-50); }
.performance-list { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--border); }
.performance-list article { padding: 1.5rem; border-right: 1px solid var(--border); }
.performance-list article:last-child { border-right: 0; }
.performance-list article > span { color: var(--gold); font-family: Georgia, serif; }
.performance-list strong { margin: .8rem 0 .3rem; display: block; font-family: Georgia, serif; font-size: 1.4rem; font-weight: 400; }
.performance-list p { margin: 0; color: var(--muted); }
.title-archive { margin-top: 3rem; border-block: 1px solid var(--border); }
.title-archive > summary { padding: 1.2rem 0; display: flex; justify-content: space-between; gap: 1rem; cursor: pointer; font-weight: 700; list-style: none; }
.title-archive > summary::-webkit-details-marker { display: none; }
.title-list { padding: 1.5rem 0 2rem; columns: 3 16rem; column-gap: 2.5rem; list-style: none; }
.title-list li { padding: .35rem 0; break-inside: avoid; color: var(--muted); border-bottom: 1px dotted var(--border); }
.repertoire-contact { max-width: 52rem; margin: 5rem auto 0; text-align: center; }
.repertoire-contact h2 { margin-inline: auto; }
.repertoire-contact p { color: var(--muted); }

.section-contact { color: #f6ede1; background: var(--teal); }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.section-contact h2 em { color: #ddb7a7; }
.section-contact h2 + p { max-width: 40rem; color: #c9c2b7; }
.contact-card { padding: clamp(1.6rem, 4vw, 3rem); background: rgba(255,255,255,.065); border-color: rgba(255,255,255,.13); border-radius: var(--radius); }
.contact-card dl { margin: 0 0 2rem; }
.contact-card dl div { padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.contact-card dt { color: #aaa69d; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.contact-card dd { margin: .2rem 0 0; overflow-wrap: anywhere; font-weight: 650; }
.contact-card dd a { text-decoration-thickness: 1px; text-underline-offset: .2em; }
.contact-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
.contact-actions .button { min-width: 0; min-height: 3.35rem; padding-inline: .9rem; font-size: .78rem; text-align: center; }
.phone-action { min-width: 0; }
.phone-action .button { width: 100%; }
.button-contact { width: 100%; color: #2a1813; background: #e2c8aa; }
.button-contact:hover { background: #f0dcc3; }
.phone-number { font-family: Georgia, serif; font-size: .95rem !important; }
.phone-status { margin: .55rem .25rem 0; color: #d9bd9d; font-size: .72rem; line-height: 1.4; text-align: center; }

.site-footer { padding: 2.2rem 0; color: var(--muted); background: var(--sand-100); border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 2rem; font-size: .8rem; }
.footer-inner > div { display: flex; flex-direction: column; }
.footer-inner strong { color: var(--ink); font-family: Georgia, serif; font-size: 1.05rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-inner nav a:hover { color: var(--burgundy); }

.legal-main { min-height: calc(100svh - 5.5rem); }
.legal-hero { padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--border); }
.legal-hero h1 { max-width: 15ch; font-size: clamp(3.2rem, 7vw, 6.2rem); }
.legal-hero p:last-child { max-width: 45rem; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; }
.legal-content { padding: clamp(3rem, 7vw, 7rem) 0; }
.legal-layout { display: grid; grid-template-columns: minmax(12rem, .36fr) 1fr; align-items: start; gap: clamp(3rem, 8vw, 8rem); }
.legal-aside { position: sticky; top: 8rem; padding-left: 1rem; border-left: 2px solid var(--gold); }
.legal-aside p { margin: 0; color: var(--muted); font-size: .82rem; }
.legal-sections { max-width: 49rem; }
.legal-section { padding: 0 0 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: 0; }
.legal-section h2 { margin-bottom: 1rem; font-size: clamp(1.65rem, 3vw, 2.25rem); letter-spacing: -.02em; }
.legal-section h3 { margin: 1.7rem 0 .4rem; font-family: Georgia, serif; font-size: 1.2rem; }
.legal-section p, .legal-section li { color: var(--muted); }
.legal-section address { font-style: normal; }
.legal-section ul { padding-left: 1.15rem; }
.legal-back { display: inline-flex; align-items: center; gap: .55rem; color: var(--burgundy); text-decoration: none; font-size: .82rem; font-weight: 700; }
.legal-back:hover { text-decoration: underline; text-underline-offset: .25em; }

@media (max-width: 940px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 2.5rem; }
  h1 { font-size: clamp(3.5rem, 8vw, 5.2rem); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 2.5rem; }
  .sample-grid { grid-template-columns: 1fr 1fr; }
  .sample-grid > :last-child { grid-column: 1 / -1; width: calc(50% - .5rem); }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-inner > span { grid-column: 1 / -1; }
  .story-link-grid, .project-grid { grid-template-columns: 1fr 1fr; }
  .story-link-grid > :last-child, .project-grid > :last-child { grid-column: 1 / -1; }
  .archive-hero-grid { grid-template-columns: 1fr .7fr; gap: 3rem; }
  .score-layout { gap: 3rem; }
  .lyrics-layout { grid-template-columns: minmax(12rem, .38fr) minmax(0, 1fr); gap: 3rem; }
  .editorial-gallery { grid-template-columns: repeat(2, 1fr); }
  .editorial-gallery .project-card:nth-child(1), .editorial-gallery .project-card:nth-child(2) { grid-column: auto; }
  .editorial-gallery .project-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 2rem), var(--max-width)); }
  .header-inner { min-height: 4.7rem; gap: 1rem; }
  .brand-line { display: none; }
  .hero { padding: 3.5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-visual { width: min(88%, 26rem); margin-top: 1rem; justify-self: center; }
  .hero-mark { right: -2rem; }
  .split-heading, .video-heading { align-items: start; flex-direction: column; }
  .repertoire-list article { grid-template-columns: 2.5rem 1fr; gap: 1rem; }
  .repertoire-list article p { grid-column: 2; }
  .sample-grid { grid-template-columns: 1fr; }
  .sample-grid > :last-child { grid-column: auto; width: auto; }
  .video-list, .js-ready .video-list { grid-template-columns: 1fr; grid-auto-flow: row; grid-auto-columns: auto; overflow: visible; }
  .carousel-controls { display: none !important; }
  .footer-inner { grid-template-columns: 1fr; align-items: start; }
  .footer-inner > span { grid-column: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-aside { position: static; }
  .story-link-grid, .project-grid, .photo-story-grid, .story-feature, .archive-hero-grid, .score-layout, .lyrics-layout { grid-template-columns: 1fr; }
  .story-link-grid > :last-child, .project-grid > :last-child { grid-column: auto; }
  .story-link-card { min-height: 17rem; }
  .story-feature img { min-height: 15rem; }
  .performance-list { grid-template-columns: 1fr; }
  .performance-list article { border-right: 0; border-bottom: 1px solid var(--border); }
  .performance-list article:last-child { border-bottom: 0; }
  .article-list a { grid-template-columns: 1fr auto; }
  .article-list time { grid-column: 1 / -1; }
  .archive-intro { padding: 1.3rem 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .score-gallery { min-height: 34rem; }
  .lyrics-intro { position: static; }
  .protected-text { margin-left: 0; }
  .album-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .album-entry:last-child { width: min(100%, calc(50% - .6rem)); grid-column: 1 / -1; justify-self: center; }
  .album-contact-inner { align-items: flex-start; flex-direction: column; }
  .editorial-gallery .project-card:nth-child(3) { display: block; }
  .article-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .brand-name { font-size: 1.2rem; }
  .theme-toggle, .mobile-menu summary { width: 2.55rem; height: 2.55rem; }
  .hero-actions .button { width: 100%; }
  .fact-list div { grid-template-columns: 1fr; gap: .25rem; }
  .title-list { columns: 1; }
  .archive-hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .score-gallery { min-height: 27rem; }
  .score-cover { width: 62%; }
  .score-notes { width: 59%; }
  .lyrics-entry > summary { min-height: 6.5rem; grid-template-columns: 2rem minmax(0, 1fr) auto; gap: .7rem; }
  .lyric-action { font-size: 0; }
  .lyric-action b { font-size: 1rem; }
  .album-list { grid-template-columns: 1fr; }
  .album-entry:last-child { width: 100%; grid-column: auto; }
  .album-contact .button-contact { width: 100%; min-width: 0; }
  .contact-actions { grid-template-columns: 1fr; }
}

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

@supports not (backdrop-filter: blur(1px)) {
  .glass-panel, .site-header { background: var(--surface-solid); }
  .section-about .glass-panel, .section-contact .glass-panel { background: rgba(0,0,0,.18); }
}
