:root {
  --paper: #ffffff;
  --ink: #171a1d;
  --soft-ink: #2d3338;
  --muted: #65717c;
  --line: #dce2e8;
  --mist: #f4f7fa;
  --sky: #dcebf7;
  --cello: #2f78a8;
  --cello-dark: #174e70;
  --coral: #2f78a8;
  --sage: #4f7b5f;
  --shadow: 0 28px 80px rgba(10, 11, 12, 0.14);
  --radius: 6px;
  --max: 1200px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hind", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--sky);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(10, 11, 12, 0.12);
  backdrop-filter: blur(22px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 38px rgba(10, 11, 12, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: "Poppins", Arial, sans-serif;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0;
  border-bottom: 1px solid transparent;
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  border-color: currentColor;
  color: var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle svg,
.button svg,
.text-link svg,
.event-item svg,
.footer-social svg,
.contact-links svg,
.connect-links svg,
.streaming-links svg,
.recording-actions svg,
.link-stack svg,
.resume-section svg,
.highlight-card svg,
.format-card svg,
.tab-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(680px, calc(100svh - var(--header-height)), 820px);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: blur(16px) saturate(0.72) contrast(1.08);
  opacity: 0.64;
  transform: scale(1.05);
}

.hero-focus-image {
  position: absolute;
  right: clamp(16px, 3.6vw, 56px);
  bottom: 0;
  z-index: 0;
  width: min(32vw, 460px);
  height: auto;
  max-height: 88%;
  object-fit: contain;
  object-position: bottom center;
  filter: saturate(0.94) contrast(1.03);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 44%, rgba(255, 255, 255, 0.2) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(120px, 15vh, 160px) 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cello);
}

.eyebrow.dark {
  color: var(--cello);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: 980px;
  font-size: clamp(58px, 9vw, 116px);
}

h2 {
  max-width: 820px;
  font-size: clamp(38px, 5.2vw, 66px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--soft-ink);
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.media-band .button-primary,
.release-band .button-primary,
.surface-coral .button-primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.hero .button-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--paper);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(700px, 100%);
  margin: 54px 0 0;
  padding: 0;
  border: 1px solid rgba(17, 20, 23, 0.14);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.hero-facts div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.52);
}

.hero-facts dt {
  color: var(--cello);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.hero-facts a:hover,
.hero-facts a:focus-visible {
  color: var(--cello);
  outline: none;
}

.section {
  padding: clamp(70px, 9vw, 122px) 0;
}

.section-tight {
  padding: clamp(46px, 7vw, 88px) 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.surface-blue {
  background: linear-gradient(180deg, var(--mist), #ffffff);
}

.surface-gallery {
  background: linear-gradient(180deg, #f3f6f9, var(--paper));
}

.surface-coral {
  background: var(--coral);
  color: var(--paper);
}

.quick-menu {
  padding: 0;
  background: var(--ink);
  color: var(--paper);
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-menu-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: clamp(22px, 4vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--paper);
  transition: background 180ms ease, color 180ms ease;
}

.quick-menu-grid a:hover,
.quick-menu-grid a:focus-visible {
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.quick-menu-grid span {
  color: var(--cello);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-menu-grid strong {
  max-width: 260px;
  font-family: "Poppins", Arial, sans-serif;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.12;
}

.release-band {
  background: var(--ink);
  color: var(--paper);
}

.release-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.release-art {
  margin: 0;
}

.release-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(0.88) contrast(1.04);
}

.release-copy h2 {
  color: var(--paper);
}

.release-copy p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
}

.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.intro-grid,
.presenter-grid,
.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
}

.intro-copy p,
.presenter-copy p,
.media-copy p,
.contact-copy p,
.long-copy p,
.source-note p,
.page-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-copy p {
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cello);
  outline: none;
}

.section-heading {
  margin-bottom: clamp(28px, 5vw, 54px);
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.highlight-grid,
.format-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.highlight-card,
.format-card,
.program-card,
.resume-section {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(10, 11, 12, 0.14);
  border-top: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.highlight-card svg,
.format-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--cello);
}

.highlight-card h3,
.format-card h3,
.program-card h3,
.resume-section h3 {
  font-size: 27px;
}

.highlight-card p,
.format-card p,
.program-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.concerts-preview {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.concerts-preview > .button {
  grid-column: 2;
  justify-self: start;
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list.compact {
  grid-column: 2;
}

.event-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 42px;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: 24px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.event-item:hover {
  border-color: rgba(164, 91, 47, 0.5);
  box-shadow: none;
  transform: translateY(-1px);
}

.event-item time {
  color: var(--cello);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-item h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.event-item p {
  margin: 7px 0 0;
  color: var(--muted);
}

.event-item a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
}

.event-item a:hover,
.event-item a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  outline: none;
}

.feature-event {
  border-color: rgba(47, 120, 168, 0.5);
  box-shadow: 0 20px 60px rgba(18, 28, 38, 0.08);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.event-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
}

.media-band {
  background: var(--ink);
  color: var(--paper);
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.link-stack {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.link-stack a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: none;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.booking-strip {
  padding: clamp(54px, 7vw, 82px) 0;
}

.booking-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.booking-strip h2 {
  max-width: 800px;
  font-size: clamp(34px, 5.5vw, 66px);
}

.page-hero {
  padding: clamp(80px, 9vw, 128px) 0 clamp(56px, 8vw, 100px);
  background: linear-gradient(135deg, #050506 0%, #111315 62%, #261c18 100%);
  color: var(--paper);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.page-hero-inner.compact-hero {
  grid-template-columns: minmax(0, 820px);
}

.page-hero-inner.image-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
}

.page-hero h1 {
  max-width: 950px;
  color: var(--paper);
  font-size: clamp(48px, 8.5vw, 98px);
}

.page-hero-copy p {
  max-width: 720px;
  margin-top: 22px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero .eyebrow {
  color: #d38a58;
}

.page-hero .button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--paper);
}

.page-hero .button-secondary:hover,
.page-hero .button-secondary:focus-visible {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

.portrait-panel,
.feature-photo {
  margin: 0;
}

.portrait-panel img,
.feature-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.36);
}

.portrait-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-photo img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.discography-photo img {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.bio-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.bio-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 12px;
}

.fact-block {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.fact-block span {
  display: block;
  color: var(--cello);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-block strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  line-height: 1.35;
}

.long-copy {
  max-width: 820px;
}

.long-copy h2 {
  margin-bottom: 22px;
}

.long-copy p + p {
  margin-top: 20px;
}

.resume-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.resume-section h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resume-section h3 svg {
  color: var(--cello);
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cello);
}

.streaming-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.streaming-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.streaming-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.streaming-links a:hover,
.streaming-links a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  outline: none;
  transform: translateY(-1px);
}

.streaming-links strong,
.streaming-links small {
  display: block;
}

.streaming-links small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.streaming-links a:hover small,
.streaming-links a:focus-visible small {
  color: rgba(255, 255, 255, 0.7);
}

.recording-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.recording-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.recording-card:hover {
  border-color: rgba(47, 120, 168, 0.42);
  box-shadow: 0 16px 42px rgba(18, 28, 38, 0.08);
  transform: translateY(-1px);
}

.featured-recording {
  border-color: rgba(47, 120, 168, 0.48);
  box-shadow: 0 20px 60px rgba(18, 28, 38, 0.08);
}

.recording-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.recording-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--soft-ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.recording-card h3 {
  font-size: 34px;
  line-height: 1.02;
}

.recording-card > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.recording-card .recording-meta {
  margin-top: 10px;
  color: var(--cello);
  font-size: 14px;
  font-weight: 800;
}

.recording-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.recording-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.recording-actions a:hover,
.recording-actions a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  outline: none;
}

.discography-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.discography-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.discography-feature .button {
  justify-self: end;
  white-space: nowrap;
}

.achievement-layout,
.process-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
}

.achievement-list,
.process-list {
  display: grid;
  gap: 14px;
}

.achievement-list article,
.process-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.achievement-list span,
.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.achievement-list h3,
.process-list h3 {
  font-size: 30px;
}

.achievement-list p,
.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0;
  background: var(--line);
}

.photo-band img {
  width: 100%;
  height: min(42vw, 460px);
  object-fit: cover;
}

.source-note {
  padding: clamp(42px, 6vw, 70px) 0;
  background: var(--mist);
}

.source-note h2 {
  font-size: 36px;
}

.source-note p {
  max-width: 800px;
  margin-top: 12px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.source-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tab-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  outline: none;
}

.tab-panel {
  animation: panel-in 220ms ease both;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.presenter-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.presenter-copy .button {
  margin-top: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(38px, 6vw, 74px);
}

.contact-copy p {
  margin-top: 18px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a,
.connect-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.contact-links.large a {
  min-height: 58px;
  font-size: 18px;
}

.contact-links a:hover,
.contact-links a:focus-visible,
.connect-links a:hover,
.connect-links a:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  outline: none;
}

.mini-note {
  margin-top: 32px;
  padding: 22px;
  border-left: 3px solid var(--cello);
  background: var(--mist);
}

.mini-note p {
  margin-top: 6px;
  font-size: 15px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 20px 56px rgba(18, 28, 38, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: var(--soft-ink);
  font-size: 13px;
  font-weight: 800;
}

.contact-form label.full,
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 13px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cello);
  box-shadow: 0 0 0 4px rgba(47, 120, 168, 0.14);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.trap {
  position: absolute;
  left: -9999px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.connect-grid {
  align-items: center;
}

.connect-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.site-footer {
  background: #0f1418;
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 34px 0;
}

.footer-brand .brand-mark {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--paper);
}

.footer-brand .brand-copy span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--paper);
  outline: none;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--paper);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--paper);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 8px);
    right: 18px;
    display: grid;
    width: min(320px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius);
    justify-content: center;
    padding: 0 12px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-image {
    object-position: 50% 26%;
    filter: saturate(0.85) contrast(1.02);
    opacity: 1;
    transform: none;
  }

  .hero-focus-image {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 62%, rgba(255, 255, 255, 0.18) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0) 56%);
  }

  .hero-facts,
  .quick-menu-grid,
  .intro-grid,
  .release-grid,
  .presenter-grid,
  .media-grid,
  .page-hero-inner,
  .page-hero-inner.image-hero,
  .concerts-preview,
  .bio-layout,
  .streaming-grid,
  .achievement-layout,
  .process-layout,
  .contact-grid,
  .connect-grid,
  .discography-feature {
    grid-template-columns: 1fr;
  }

  .event-list.compact,
  .concerts-preview > .button {
    grid-column: auto;
  }

  .highlight-grid,
  .format-grid,
  .program-grid,
  .resume-grid,
  .streaming-links,
  .recording-grid,
  .connect-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.split,
  .booking-strip-inner,
  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .bio-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discography-feature .button {
    justify-self: start;
  }

  .quick-menu-grid {
    border-left: 0;
  }

  .quick-menu-grid a {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 22px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    width: min(var(--max), calc(100% - 28px));
    padding: 96px 0 34px;
  }

  .hero .eyebrow {
    max-width: 310px;
    line-height: 1.3;
  }

  h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  h2 {
    font-size: clamp(35px, 12vw, 52px);
  }

  .hero-copy,
  .intro-copy p,
  .presenter-copy p,
  .page-hero-copy p {
    font-size: 17px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .section-inner,
  .page-hero-inner,
  .footer-inner,
  .footer-bottom {
    width: min(var(--max), calc(100% - 28px));
  }

  .highlight-grid,
  .format-grid,
  .program-grid,
  .resume-grid,
  .streaming-links,
  .recording-grid,
  .connect-links,
  .bio-aside {
    grid-template-columns: 1fr;
  }

  .event-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .event-item a {
    justify-self: start;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .contact-form .button {
    width: 100%;
  }

  .photo-band {
    grid-template-columns: 1fr;
  }

  .photo-band img {
    height: 58vw;
    min-height: 260px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

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