:root {
  --ink: #090807;
  --ink-soft: #12100d;
  --panel: #17140f;
  --panel-2: #211b13;
  --paper: #f5efe6;
  --paper-muted: #cfc5b7;
  --accent: #d9ad55;
  --accent-bright: #f3cf7a;
  --accent-dark: #7d5712;
  --line: rgba(217, 173, 85, 0.25);
  --line-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --container: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(217, 173, 85, 0.08), transparent 30rem),
    linear-gradient(180deg, #070605 0%, #0d0b08 35%, #080706 100%);
  color: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: #100c04; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}
.site-header.scrolled {
  height: 74px;
  background: rgba(8, 7, 5, 0.88);
  backdrop-filter: blur(20px);
  border-color: var(--line-soft);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 0; }
.brand img { width: 58px; height: 58px; border-radius: 14px; }
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.05rem; letter-spacing: 0.03em; }
.brand small { margin-top: 4px; color: var(--paper-muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--paper-muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 160ms ease, background 160ms ease;
}
.site-nav a:hover, .site-nav a.active { color: #fff; background: rgba(255, 255, 255, 0.06); }
.site-nav .nav-cta { color: var(--ink); background: var(--accent); font-weight: 700; margin-left: 6px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta.active { color: var(--ink); background: var(--accent-bright); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line-soft); background: transparent; border-radius: 50%; }
.menu-toggle span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 4px 0; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 135px 0 92px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 520px; height: 520px; right: -160px; top: 100px; background: radial-gradient(circle, rgba(217,173,85,.15), transparent 70%); }
.hero-glow-two { width: 400px; height: 400px; left: -220px; bottom: 0; background: radial-gradient(circle, rgba(119,79,9,.14), transparent 70%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr); gap: clamp(44px, 7vw, 100px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1, .section-heading h2, .contact-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero h1 { max-width: 700px; font-size: clamp(3.2rem, 6vw, 6.8rem); }
.hero-lead { max-width: 620px; margin: 28px 0 0; color: var(--paper-muted); font-size: clamp(1.05rem, 1.6vw, 1.32rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--accent-bright), var(--accent)); color: #161006; box-shadow: 0 14px 34px rgba(217,173,85,.18); }
.button-primary:hover { background: var(--accent-bright); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.025); color: var(--paper); }
.button-ghost:hover { border-color: var(--accent); background: rgba(217,173,85,.08); }
.button-small { min-height: 42px; padding: 8px 16px; background: var(--accent); color: #171006; font-size: .88rem; }
.format-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.format-list span { padding: 7px 11px; color: var(--paper-muted); border: 1px solid var(--line-soft); border-radius: 999px; font-size: .78rem; letter-spacing: .04em; }
.hero-visual { position: relative; min-height: 610px; }
.hero-photo-wrap {
  position: absolute;
  inset: 0 0 0 8%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.1deg);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: 48% center; }
.hero-photo-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 46%, rgba(5,4,3,.85)); }
.hero-photo-wrap::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 25px; pointer-events: none; }
.hero-note { position: absolute; right: 30px; bottom: 24px; color: rgba(255,255,255,.82); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-note span { color: var(--accent-bright); }
.hero-logo-card {
  position: absolute;
  z-index: 3;
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 1;
  left: -14px;
  bottom: -30px;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 54px rgba(0,0,0,.55);
  transform: rotate(-3deg);
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; display: grid; gap: 6px; justify-items: center; transform: translateX(-50%); color: var(--paper-muted); font-size: .72rem; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--accent), transparent); }

.section { padding: clamp(90px, 10vw, 150px) 0; }
.section-heading { max-width: 820px; margin-bottom: clamp(42px, 6vw, 72px); }
.section-heading h2, .contact-copy h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
.about-section { position: relative; background: linear-gradient(180deg, #0f0d0a, #0a0907); }
.about-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 45%, rgba(217,173,85,.09), transparent 28rem); pointer-events: none; }
.about-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr); gap: clamp(55px, 8vw, 110px); align-items: center; }
.large-copy { margin: 0; color: #efe7dc; font-family: Georgia, serif; font-size: clamp(1.35rem, 2.2vw, 2.05rem); line-height: 1.5; }
.credit-panel { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }
.credit-label { display: block; margin-bottom: 14px; color: var(--paper-muted); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.credit-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.credit-cloud span { padding: 9px 13px; border: 1px solid rgba(217,173,85,.25); border-radius: 10px; color: var(--accent-bright); background: rgba(217,173,85,.04); }
.portrait-stack { position: relative; min-height: 570px; }
.portrait-stack figure { position: absolute; margin: 0; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.portrait-stack img { width: 100%; height: 100%; object-fit: cover; }
.portrait-main { inset: 0 8% 8% 8%; border: 1px solid rgba(255,255,255,.16); }
.portrait-small { width: 42%; aspect-ratio: .7; right: -4%; bottom: -2%; border: 8px solid var(--ink-soft); }
.years-badge { position: absolute; top: 8%; left: -2%; width: 150px; height: 150px; padding: 20px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--accent); color: #171006; box-shadow: 0 20px 40px rgba(0,0,0,.35); }
.years-badge strong { font-family: Georgia, serif; font-size: 1.4rem; }
.years-badge span { font-size: .67rem; line-height: 1.25; letter-spacing: .08em; text-transform: uppercase; }

.gallery-band { padding: 90px 0 120px; background: #080706; border-block: 1px solid var(--line-soft); }
.inline-heading { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.inline-heading p:last-child { max-width: 390px; margin: 0; color: var(--paper-muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 120px; gap: 14px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 3; margin: 0; overflow: hidden; border-radius: 22px; border: 1px solid var(--line-soft); background: var(--panel); cursor: zoom-in; }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.8,.2,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item figcaption { position: absolute; inset: auto 0 0; padding: 42px 18px 16px; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: rgba(255,255,255,.85); font-size: .82rem; opacity: 0; transform: translateY(8px); transition: opacity 180ms ease, transform 180ms ease; }
.gallery-item:hover figcaption { opacity: 1; transform: none; }

.calendar-section { background: linear-gradient(155deg, #16120c, #0b0907); }
.split-heading, .music-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr); gap: 60px; align-items: end; }
.split-heading > p, .music-heading > p { margin: 0; color: var(--paper-muted); }
.event-list { display: grid; gap: 14px; }
.event-card { display: grid; grid-template-columns: 94px minmax(0, 1fr) auto; gap: 24px; align-items: center; padding: 24px; border: 1px solid var(--line-soft); border-radius: 22px; background: rgba(255,255,255,.025); transition: border-color 160ms ease, transform 160ms ease; }
.event-card:hover { border-color: var(--line); transform: translateY(-2px); }
.event-date { width: 82px; min-height: 82px; display: grid; place-content: center; text-align: center; border-radius: 18px; background: var(--accent); color: #151006; }
.event-date strong { font-family: Georgia, serif; font-size: 2rem; line-height: .95; }
.event-date span { font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.event-body h3 { margin: 0 0 5px; font-size: 1.25rem; }
.event-body p { margin: 0; color: var(--paper-muted); }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 10px; color: var(--accent-bright); font-size: .82rem; }
.empty-state { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding: 32px; border: 1px dashed var(--line); border-radius: 24px; background: rgba(217,173,85,.035); }
.empty-state h3, .empty-state p { margin: 0; }
.empty-state p { color: var(--paper-muted); }
.empty-icon { width: 60px; height: 60px; display: grid; place-content: center; border-radius: 50%; background: rgba(217,173,85,.12); color: var(--accent-bright); font-family: Georgia, serif; font-size: 2rem; }

.music-section { position: relative; background: #080706; }
.music-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 10% 70%, rgba(217,173,85,.08), transparent 30rem); pointer-events: none; }
.song-list { position: relative; display: grid; gap: 18px; }
.song-card { display: grid; grid-template-columns: 170px minmax(0, 1fr); min-height: 190px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.song-cover { position: relative; min-height: 190px; overflow: hidden; background: var(--panel); }
.song-cover img { width: 100%; height: 100%; object-fit: cover; }
.song-number { position: absolute; top: 12px; left: 12px; width: 34px; height: 34px; display: grid; place-content: center; border-radius: 50%; background: rgba(0,0,0,.72); color: var(--accent-bright); font-size: .74rem; font-weight: 800; }
.song-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 38%); gap: 30px; align-items: center; padding: 28px 30px; }
.song-info h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 500; }
.song-subtitle { margin-left: 5px; color: var(--accent-bright); font-family: "Segoe UI", sans-serif; font-size: .78em; }
.song-info p { max-width: 680px; margin: 10px 0 0; color: var(--paper-muted); line-height: 1.55; }
.song-player { display: grid; gap: 10px; }
.song-player audio { width: 100%; height: 42px; filter: sepia(.4) saturate(.9); }
.audio-placeholder { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 10px 14px; border: 1px solid var(--line-soft); border-radius: 14px; color: var(--paper-muted); background: rgba(0,0,0,.2); font-size: .82rem; }
.audio-placeholder i { width: 30px; height: 30px; display: grid; place-content: center; border-radius: 50%; background: rgba(217,173,85,.12); color: var(--accent); font-style: normal; }
.song-actions { display: flex; justify-content: flex-end; gap: 8px; }
.download-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-bright); font-size: .82rem; font-weight: 700; text-decoration: none; }
.download-link:hover { text-decoration: underline; }

.contact-section { background: linear-gradient(180deg, #100d09, #070605); border-top: 1px solid var(--line-soft); }
.contact-grid { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-copy { position: sticky; top: 110px; }
.contact-intro { margin: 24px 0 0; color: var(--paper-muted); font-size: 1.12rem; }
.contact-card { display: grid; gap: 18px; margin-top: 38px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(217,173,85,.045); }
.contact-card > div { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.contact-card p { display: grid; gap: 2px; margin: 0; }
.contact-card strong { font-size: .82rem; letter-spacing: .04em; }
.contact-card span:not(.contact-icon), .contact-card a { color: var(--paper-muted); text-decoration: none; }
.contact-icon { width: 32px; height: 32px; display: grid; place-content: center; color: var(--accent-bright); border: 1px solid var(--line); border-radius: 50%; }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.social-links a { padding: 8px 12px; border: 1px solid var(--line-soft); border-radius: 999px; color: var(--paper-muted); text-decoration: none; font-size: .8rem; }
.social-links a:hover { color: #fff; border-color: var(--line); }
.contact-form { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line-soft); border-radius: 28px; background: rgba(255,255,255,.025); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.contact-form label > span { color: var(--paper-muted); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.form-row { display: grid; gap: 16px; }
.two-columns { grid-template-columns: 1fr 1fr; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  outline: 0;
  background: rgba(0,0,0,.22);
  color: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.contact-form input { height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 160px; padding: 13px 14px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(217,173,85,.12); background: rgba(0,0,0,.32); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.turnstile-container { margin: 8px 0 20px; min-height: 0; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-footer p { max-width: 270px; margin: 0; color: var(--paper-muted); font-size: .78rem; }
.form-footer button { border: 0; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--accent-bright); font-size: .88rem; }
.form-status.error { color: #ff9d91; }
.contact-form.is-busy { opacity: .75; pointer-events: none; }

.site-footer { border-top: 1px solid var(--line-soft); background: #050403; }
.footer-grid { min-height: 140px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-logo { width: 76px; height: 76px; overflow: hidden; border-radius: 18px; }
.footer-logo img { width: 100%; height: 100%; }
.footer-grid p { margin: 0; color: var(--paper-muted); font-size: .83rem; text-align: center; }
.admin-link { justify-self: end; color: #82796c; font-size: .76rem; text-decoration: none; }
.admin-link:hover { color: var(--accent); }

.lightbox { width: min(94vw, 1100px); max-height: 92vh; padding: 0; overflow: visible; border: 1px solid var(--line); border-radius: 22px; background: #070605; color: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.75); }
.lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; border-radius: 21px; }
.lightbox p { position: absolute; inset: auto 0 0; margin: 0; padding: 30px 22px 18px; background: linear-gradient(transparent, rgba(0,0,0,.82)); color: #fff; border-radius: 0 0 21px 21px; }
.lightbox-close { position: absolute; z-index: 2; top: -16px; right: -16px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: #100d09; font-size: 1.6rem; cursor: pointer; }
.toast { position: fixed; z-index: 1000; right: 22px; bottom: 22px; max-width: min(380px, calc(100vw - 44px)); padding: 14px 18px; border: 1px solid var(--line); border-radius: 14px; background: #16120c; box-shadow: var(--shadow); opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease; }
.toast.show { opacity: 1; transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal[data-delay="1"] { transition-delay: 120ms; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-visual { min-height: 520px; }
  .hero-photo-wrap { inset: 0; }
  .about-grid { grid-template-columns: 1fr 420px; gap: 50px; }
  .song-content { grid-template-columns: 1fr; gap: 18px; }
  .song-actions { justify-content: flex-start; }
  .contact-grid { grid-template-columns: .8fr 1.2fr; gap: 48px; }
}

@media (max-width: 840px) {
  html { scroll-padding-top: 76px; }
  .site-header, .site-header.scrolled { height: 70px; }
  .brand img { width: 48px; height: 48px; }
  .brand small { display: none; }
  .menu-toggle { display: block; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 10px;
    background: rgba(7,6,5,.97);
    transform: translateX(100%);
    transition: transform 260ms cubic-bezier(.2,.8,.2,1);
  }
  .site-nav.open { transform: none; }
  .site-nav a { font-family: Georgia, serif; font-size: 2rem; color: var(--paper); }
  .site-nav .nav-cta { margin: 12px 0 0; font-family: "Segoe UI", sans-serif; font-size: 1rem; }
  .hero { min-height: auto; padding: 120px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 690px; }
  .hero h1 { font-size: clamp(3.3rem, 13vw, 6.5rem); }
  .hero-visual { min-height: 560px; margin-top: 20px; }
  .hero-photo-wrap { inset: 0 0 0 5%; }
  .hero-logo-card { left: 0; bottom: -28px; width: 210px; }
  .scroll-cue { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait-stack { width: min(100%, 560px); margin-inline: auto; }
  .inline-heading, .split-heading, .music-heading { display: grid; grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-auto-rows: 100px; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: span 6; grid-row: span 4; }
  .gallery-item:nth-child(1) { grid-column: span 12; }
  .event-card { grid-template-columns: 82px 1fr; }
  .event-card > .button { grid-column: 2; justify-self: start; }
  .song-card { grid-template-columns: 140px 1fr; }
  .song-content { padding: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand strong { font-size: .95rem; }
  .hero { padding-top: 104px; }
  .hero h1 { font-size: clamp(3.1rem, 16vw, 5.1rem); }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-photo-wrap { inset: 0; border-radius: 24px; }
  .hero-logo-card { width: 150px; border-radius: 20px; bottom: -20px; }
  .hero-note { right: 18px; bottom: 16px; font-size: .63rem; }
  .section { padding: 86px 0; }
  .section-heading h2, .contact-copy h2 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .large-copy { font-size: 1.3rem; }
  .portrait-stack { min-height: 440px; }
  .years-badge { width: 120px; height: 120px; padding: 14px; }
  .portrait-small { border-width: 5px; }
  .gallery-band { padding: 76px 0 90px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-item, .gallery-item:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(4) { aspect-ratio: 4 / 5; }
  .gallery-item figcaption { opacity: 1; transform: none; }
  .empty-state { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .event-card { grid-template-columns: 72px 1fr; gap: 16px; padding: 18px; }
  .event-date { width: 66px; min-height: 68px; }
  .event-date strong { font-size: 1.55rem; }
  .song-card { grid-template-columns: 1fr; }
  .song-cover { min-height: 220px; max-height: 280px; }
  .song-content { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 22px 18px; border-radius: 22px; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-grid { grid-template-columns: auto 1fr; padding: 24px 0; }
  .footer-grid p { text-align: left; }
  .admin-link { grid-column: 2; justify-self: start; }
  .lightbox-close { top: 8px; right: 8px; }
}

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

/* Additions used by the editable one-page sections. */
.about-lead {
  margin: 0 0 24px;
  color: var(--accent-bright);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
}
.large-copy p { margin: 0 0 1.05em; }
.large-copy p:last-child { margin-bottom: 0; }
.merchandise-section { padding: 78px 0; background: linear-gradient(135deg, #151108, #090806); border-top: 1px solid var(--line-soft); }
.merchandise-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: radial-gradient(circle at 85% 50%, rgba(217,173,85,.12), transparent 25rem), rgba(255,255,255,.025);
}
.merchandise-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.3rem, 5vw, 4.7rem); font-weight: 500; line-height: 1; }
.merchandise-card p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--paper-muted); }
.button:disabled, .contact-form button:disabled { opacity: .6; cursor: wait; transform: none; }
[hidden] { display: none !important; }

@media (max-width: 700px) {
  .merchandise-card { align-items: flex-start; flex-direction: column; }
  .merchandise-card .button { width: 100%; }
}
