:root {
  --night: #0B1330;
  --panel: #111a3d;
  --panel-2: #152047;
  --section-alt: #0e1738;
  --ivory: #F2EDE1;
  --ivory-dim: #BFC0CE;
  --ivory-faint: #7C7F98;
  --red: #96131F;
  --red-bright: #C21C2A;
  --chrome: #AEB6BC;
  --brass: #B8874A;
  --gold: #C7A968;
  --gold-bright: #E4C989;
  --hairline: rgba(199, 169, 104, 0.20);
  --hairline-strong: rgba(199, 169, 104, 0.36);
  --pad-x: clamp(1rem, 4vw, 3.5rem);
  --section-y: clamp(3.75rem, 8vw, 6.75rem);
  --content-max: min(1440px, 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--night);
  color: var(--ivory);
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(16.5px, 1.15vw + 14px, 18px);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.eyebrow {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ---------- GUNBARREL INTRO ---------- */
#gunbarrel {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #000;
  clip-path: circle(150% at 50% 50%);
  animation: iris-open 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.25s;
  pointer-events: none;
}

#gunbarrel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  background: var(--gold-bright);
  transform: translateY(-50%);
  opacity: 0.9;
  animation: scanline-fade 0.7s ease-out forwards;
  animation-delay: 0.15s;
}

@keyframes iris-open {
  to {
    clip-path: circle(0% at 50% 50%);
  }
}

@keyframes scanline-fade {
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #gunbarrel {
    animation: none;
    clip-path: circle(0% at 50% 50%);
  }

  #gunbarrel::before {
    display: none;
  }
}

/* ---------- CREST ---------- */
.crest {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}

.crest img,
.crest svg {
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.crest.small img,
.crest.small svg {
  width: 30px;
  height: 30px;
}

.crest.large img,
.crest.large svg {
  width: 56px;
  height: 56px;
  margin-inline: auto;
  box-shadow: 0 0 0 1px var(--hairline-strong), 0 6px 24px rgba(0, 0, 0, 0.4);
}

/* Homepage scroll target only — never put id="top" on <main> */
div#top {
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 19, 48, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  padding-top: env(safe-area-inset-top);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
  padding: 14px var(--pad-x);
  max-width: var(--content-max);
  margin: 0 auto;
}

.nav-name-group {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.nav-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(15px, 2.5vw, 17px);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

nav {
  min-width: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 28px;
}

nav a {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color 0.25s ease;
  border-bottom: 1px solid transparent;
  padding: 8px 0 3px;
  display: inline-block;
}

nav a:hover {
  color: var(--ivory);
  border-bottom-color: var(--gold-bright);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--panel);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(0.2) contrast(1.08) brightness(0.78);
  display: block;
  animation: hero-settle 2.4s ease-out both;
}

@keyframes hero-settle {
  from {
    transform: scale(1.06);
    filter: grayscale(0.4) contrast(1.08) brightness(0.55);
  }

  to {
    transform: scale(1);
    filter: grayscale(0.2) contrast(1.08) brightness(0.78);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 19, 48, 0.35) 0%, rgba(11, 19, 48, 0.2) 40%, rgba(11, 19, 48, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 19, 48, 0.55) 0%, transparent 55%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 var(--pad-x) clamp(3.5rem, 10vh, 6.5rem);
  padding-bottom: calc(clamp(3.5rem, 10vh, 6.5rem) + env(safe-area-inset-bottom));
  max-width: var(--content-max);
  width: 100%;
  margin: 0 auto;
  animation: copy-rise 1.1s ease-out 0.45s both;
}

@keyframes copy-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-copy h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 9vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin: 14px 0 0;
  overflow-wrap: anywhere;
}

.hero-rule {
  width: 64px;
  height: 2px;
  background: var(--gold-bright);
  margin: 22px 0;
}

.hero-role {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--ivory-dim);
  max-width: 34ch;
}

.hero-cta {
  display: inline-flex;
  margin-top: 28px;
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold);
  padding: 8px 0 4px;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-cta:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

/* ---------- PULL QUOTE ---------- */
.quote-band {
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x);
  text-align: center;
  background: var(--panel);
}

.quote-band .rule {
  width: 34px;
  height: 1.5px;
  background: var(--gold-bright);
  margin: 0 auto 26px;
}

.quote-band blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 3.2vw, 2.05rem);
  max-width: 26ch;
  margin: 0 auto 16px;
  line-height: 1.35;
  color: var(--ivory);
}

.quote-band cite {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- SECTIONS ---------- */
section {
  padding: var(--section-y) 0;
}

#biography {
  background: #24305c;
  border-top: 1px solid var(--hairline);
}

#videos {
  background: var(--panel);
  border-top: 1px solid var(--hairline-strong);
}

#photos,
.photos-page {
  background: var(--section-alt);
  border-top: 1px solid var(--hairline);
}

.page-photos {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-photos main {
  flex: 1 1 auto;
  min-width: 0;
}

.photos-page {
  padding: var(--section-y) 0;
}

.photos-page .section-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  min-width: 0;
}

.gallery-lede {
  color: var(--ivory-dim);
  font-style: italic;
  margin: -0.75rem 0 clamp(1.5rem, 3vw, 2.25rem);
  max-width: 42ch;
}

.photos-page .gallery-grid {
  padding: 0;
}

.page-audio {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-audio main {
  flex: 1 1 auto;
  min-width: 0;
}

.audio-page {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--section-alt);
  border-top: 1px solid var(--hairline);
}

.audio-page .section-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  min-width: 0;
}

.audio-page .gallery-lede {
  max-width: none;
  white-space: nowrap;
  margin-bottom: clamp(12px, 2vw, 18px);
}

.audio-page .watch-toolbar {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2.5vw, 22px);
  margin-bottom: clamp(1.75rem, 4vw, 3.25rem);
}

.section-head .num {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  min-width: 0;
}

.section-head::after {
  content: "";
  flex: 1 1 40px;
  min-width: 24px;
  height: 1px;
  background: var(--hairline);
}

/* ---------- BIOGRAPHY ---------- */
.bio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.55fr);
  gap: clamp(2rem, 4.5vw, 4.25rem);
  align-items: start;
  max-width: 1180px;
}

.bio-photo {
  margin: 0;
  width: 100%;
  max-width: 420px;
}

.bio-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(0.28) contrast(1.06) brightness(0.96);
  border: 1px solid var(--hairline-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.bio-copy {
  min-width: 0;
  max-width: 62ch;
}

.bio-copy p {
  margin-bottom: 1.35em;
  color: var(--ivory);
  font-size: clamp(1.02rem, 0.35vw + 0.95rem, 1.12rem);
  line-height: 1.75;
}

.bio-copy p.lead {
  color: var(--ivory);
}

.bio-copy .dropcap {
  float: left;
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.85rem, 6.5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.78;
  height: 0.78em;
  margin: 0.06em 0.14em 0 0;
  padding: 0;
  color: var(--gold-bright);
}

.bio-block {
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.bio-block:last-child {
  margin-bottom: 0;
}

/* ---------- GALLERY ---------- */
.gallery-dropdown {
  width: 100%;
  max-width: none;
  border: 1px solid var(--hairline);
  background: var(--panel);
}

.gallery-dropdown summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  user-select: none;
}

.gallery-dropdown summary::-webkit-details-marker {
  display: none;
}

.gallery-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold-bright);
  border-bottom: 1.5px solid var(--gold-bright);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.gallery-dropdown[open] summary {
  border-bottom: 1px solid var(--hairline);
}

.gallery-dropdown[open] summary::after {
  transform: rotate(-135deg);
}

.gallery-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: var(--night);
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.55) contrast(1.08) brightness(0.95);
  transition: filter 0.45s ease, transform 0.55s ease;
  display: block;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--hairline);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: grayscale(0) contrast(1.02) brightness(1);
  transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  border-color: var(--gold);
}

#lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(11, 19, 48, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(1.25rem, env(safe-area-inset-top)) max(1.25rem, env(safe-area-inset-right)) max(1.25rem, env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-left));
}

#lightbox.open {
  display: flex;
}

#lightbox img {
  max-width: 100%;
  max-height: min(88vh, 88dvh);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--hairline-strong);
}

#lightbox-close {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  background: rgba(11, 19, 48, 0.7);
  border: 1px solid var(--hairline-strong);
  color: var(--ivory);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

#lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ---------- WATCH / YOUTUBE ---------- */
.watch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(16px, 2.5vw, 22px);
}

.watch-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ivory-dim);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.watch-tab:hover,
.watch-tab:focus-visible {
  color: var(--ivory);
  border-color: var(--gold);
}

.watch-tab.is-active {
  color: var(--night);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.watch-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin: 0 0 clamp(18px, 3vw, 28px);
}

.watch-sort-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  min-width: 0;
}

.watch-sort-label {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.watch-sort {
  min-height: 44px;
  min-width: min(100%, 220px);
  flex: 1 1 180px;
  max-width: 280px;
  padding: 0 12px;
  border: 1px solid var(--hairline-strong);
  background: var(--night);
  color: var(--ivory);
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.watch-sort:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.watch-audio-note {
  margin-top: 18px;
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.watch-audio-note a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.watch-audio-note a:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}

.audio-widget-host {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.audio-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 30px);
}

.audio-album-heading {
  margin: clamp(8px, 1.5vw, 14px) 0 0;
  padding: 0;
  list-style: none;
}

.audio-album-heading:first-child {
  margin-top: 0;
}

.audio-album-title {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--hairline);
}

.audio-item {
  margin: 0;
  padding: clamp(14px, 2.2vw, 20px);
  border: 1px solid var(--hairline);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-2);
}

.audio-item-title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", "EB Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ivory);
  letter-spacing: 0.01em;
}

.audio-item-num {
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  margin-right: 0.35em;
}

.audio-player {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px 12px;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--hairline);
  background: rgba(11, 19, 48, 0.45);
}

.audio-play {
  width: 40px;
  height: 40px;
  border: 1px solid var(--hairline-strong);
  background: transparent;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.audio-play:focus-visible {
  border-color: var(--gold);
  color: var(--gold-bright);
}

@media (hover: hover) and (pointer: fine) {
  .audio-play:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
  }
}

.audio-item.is-playing .audio-play,
.audio-item.is-loading .audio-play {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--night);
}

.audio-play svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.audio-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: pointer;
  accent-color: var(--gold-bright);
}

.audio-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ivory);
  border: 0;
  cursor: pointer;
}

.audio-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ivory);
  border: 0;
  cursor: pointer;
}

.audio-time {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 7.5em;
  text-align: right;
}

.audio-mute {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ivory-dim);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease;
}

.audio-mute:focus-visible {
  color: var(--gold-bright);
}

@media (hover: hover) and (pointer: fine) {
  .audio-mute:hover {
    color: var(--gold-bright);
  }
}

.audio-mute svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.audio-item.is-playing .audio-item-title {
  color: var(--gold-bright);
}

@media (max-width: 640px) {
  .audio-player {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "play seek mute"
      "play time mute";
  }

  .audio-play {
    grid-area: play;
  }

  .audio-seek {
    grid-area: seek;
  }

  .audio-time {
    grid-area: time;
    text-align: left;
    min-width: 0;
  }

  .audio-mute {
    grid-area: mute;
  }
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.watch-meta {
  margin: 6px 16px 0;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

.watch-card {
  background: #24305c;
  border: 1px solid var(--hairline);
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.watch-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--ivory);
  padding: 14px 16px 0;
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.watch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--night);
  margin-top: 12px;
  margin-bottom: 14px;
  overflow: visible;
}

.watch-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  display: block;
}

.watch-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 52px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  pointer-events: none;
}

.watch-card.is-playing .watch-controls:not([hidden]) {
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: none;
}

.watch-volume {
  pointer-events: auto;
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 44px;
  padding: 6px 10px;
  border: 1px solid rgba(228, 201, 137, 0.45);
  border-radius: 999px;
  background: rgba(11, 19, 48, 0.78);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.watch-mute {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--gold-bright);
  cursor: pointer;
  padding: 0;
}

.watch-mute-icon {
  width: 18px;
  height: 18px;
}

.watch-mute .watch-mute-off {
  display: none;
}

.watch-mute.is-muted .watch-mute-on {
  display: none;
}

.watch-mute.is-muted .watch-mute-off {
  display: block;
}

.watch-volume-slider {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--gold-bright);
  touch-action: none;
}

.watch-volume-hint {
  flex: 1 1 100%;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.watch-skip {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 52px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(228, 201, 137, 0.45);
  border-radius: 999px;
  background: rgba(11, 19, 48, 0.78);
  color: var(--gold-bright);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.watch-skip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.watch-skip-label {
  line-height: 1;
  min-width: 1.2em;
  text-align: center;
}

.watch-skip:hover,
.watch-skip:focus-visible {
  border-color: var(--gold-bright);
  color: var(--ivory);
  background: rgba(21, 32, 71, 0.92);
  transform: translateY(-1px);
}

.watch-skip:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .watch-controls,
  .watch-skip {
    transition: none;
  }

  .watch-card.is-playing .watch-controls:not([hidden]) {
    transform: none;
  }
}

.watch-empty {
  grid-column: 1 / -1;
  border: 1px solid var(--hairline);
  background: var(--night);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--ivory-dim);
  font-style: italic;
  max-width: 48ch;
}

.watch-empty a {
  color: var(--gold-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

.watch-empty a:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}

.watch-channels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
}

.watch-channels a {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color 0.25s ease;
  padding: 6px 0;
}

.watch-channels a:hover {
  color: var(--gold-bright);
}

/* ---------- INSTRUMENTS ---------- */
.instruments {
  border-top: 1px solid var(--hairline-strong);
  padding: clamp(2.75rem, 6vw, 4.375rem) 0;
  background: var(--panel);
}

.instruments .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.instruments-intro {
  max-width: 32ch;
  flex: 1 1 220px;
}

.instruments-intro p {
  color: var(--ivory-dim);
  margin-top: 10px;
}

.inst-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "EB Garamond", serif;
  font-style: italic;
  color: var(--ivory);
  font-size: 1.05rem;
  flex: 1 1 220px;
  min-width: 0;
  max-width: 420px;
}

.inst-list li {
  border-bottom: 1px dashed var(--hairline);
  padding-bottom: 12px;
}

/* ---------- FOOTER ---------- */
footer {
  padding: clamp(1.75rem, 4vw, 2.5rem) var(--pad-x) calc(clamp(1.25rem, 3vw, 1.75rem) + env(safe-area-inset-bottom));
  text-align: center;
  background: var(--night);
  border-top: 1px solid var(--hairline);
}

footer .crest {
  margin-bottom: 10px;
}

footer .crest.large img,
footer .crest.large svg {
  width: 44px;
  height: 44px;
}

footer .nav-name {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
}

footer p {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

footer .foot-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  list-style: none;
}

footer .foot-links a {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color 0.25s ease;
  padding: 6px 0;
  display: inline-block;
}

footer .foot-links a:hover {
  color: var(--gold-bright);
}

footer .copy {
  margin-top: 16px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}

/* ---------- CONTACT ---------- */
.page-contact {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.page-contact main {
  flex: 1 1 auto;
  min-width: 0;
}

.contact-section {
  background: var(--panel);
  border-top: 1px solid var(--hairline);
  padding: var(--section-y) 0;
}

.contact-wrap {
  width: 100%;
  max-width: min(720px, var(--content-max));
  min-width: 0;
}

.contact-section .section-head {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-section .section-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 3.4vw, 2.3rem);
  min-width: 0;
}

.contact-lede {
  color: var(--ivory-dim);
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-style: italic;
  font-size: clamp(1rem, 0.4vw + 0.95rem, 1.125rem);
  line-height: 1.45;
  max-width: none;
}

@media (min-width: 700px) {
  .contact-lede {
    white-space: nowrap;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field label {
  font-family: "Outfit", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.contact-field .optional {
  color: var(--ivory-faint);
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 11px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--hairline-strong);
  background: var(--night);
  color: var(--ivory);
  font-family: "EB Garamond", Georgia, serif;
  font-size: 16px;
  line-height: 1.45;
  border-radius: 0;
  appearance: none;
}

.contact-field textarea {
  min-height: min(180px, 40vh);
  resize: vertical;
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 0.5rem;
}

.contact-submit {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold-bright);
  background: transparent;
  color: var(--gold-bright);
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--gold-bright);
  color: var(--night);
}

.contact-submit:disabled {
  opacity: 0.55;
  cursor: wait;
}

.contact-status {
  flex: 1 1 200px;
  min-width: 0;
  font-family: "Outfit", sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
}

.contact-status.is-success {
  color: var(--gold-bright);
}

.contact-status.is-error {
  color: #e8a0a6;
}

.contact-status.is-pending {
  color: var(--ivory-dim);
}

nav a[aria-current="page"] {
  color: var(--ivory);
  border-bottom-color: var(--gold-bright);
}

@media (max-width: 700px) {
  .contact-section {
    padding: clamp(2.5rem, 8vw, 3.5rem) 0;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-status {
    flex-basis: auto;
    text-align: center;
  }
}

/* ---------- BREAKPOINTS ---------- */
@media (max-width: 900px) {
  .bio-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    max-width: 720px;
  }

  .bio-photo {
    max-width: 340px;
  }

  .bio-copy {
    max-width: none;
  }

  .watch-grid {
    grid-template-columns: 1fr;
  }

  .watch-frame {
    margin-bottom: 0;
  }

  .watch-card.is-playing .watch-frame {
    margin-bottom: 96px;
  }

  .watch-card.is-playing:has(.watch-volume-hint) .watch-frame {
    margin-bottom: 118px;
  }

  .watch-controls {
    top: calc(100% + 10px);
    bottom: auto;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    transform: none;
  }

  .watch-volume,
  .watch-skip {
    background: var(--panel);
    backdrop-filter: none;
    box-shadow: none;
  }

  .watch-volume {
    order: 3;
    flex: 1 1 100%;
  }

  .watch-volume-hint {
    order: 4;
  }

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

  .hero-media::after {
    background: linear-gradient(180deg, rgba(11, 19, 48, 0.25) 0%, rgba(11, 19, 48, 0.35) 45%, rgba(11, 19, 48, 0.95) 100%);
  }

  .hero-media img {
    object-position: center 35%;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    justify-content: flex-start;
    gap: 6px 18px;
  }

  nav a {
    font-size: 10.5px;
    letter-spacing: 0.12em;
    padding: 10px 0 4px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .hero-role {
    max-width: 28ch;
  }

  .bio-photo {
    max-width: 280px;
  }

  .section-head::after {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
  }
}

@media (max-width: 700px) {
  .audio-page .gallery-lede {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16.5px;
  }

  .nav-name {
    white-space: normal;
  }

  nav ul {
    width: 100%;
    gap: 4px 14px;
  }

  .bio-copy .dropcap {
    font-size: 3.5rem;
  }

  .quote-band blockquote {
    max-width: 20ch;
  }

  .instruments .wrap {
    flex-direction: column;
  }

  .inst-list {
    max-width: none;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
  }
}

@media (hover: none) {
  .gallery-item:hover img {
    transform: none;
  }
}
