:root {
  /* Warm espresso / charcoal — softer than flat black */
  --bg: #151311;
  --bg-elevated: #1f1d1b;
  --text: #f8f8f5;
  --text-muted: #a8a79f;
  /* Warm charcoal on white / light surfaces — softer than pure black */
  --ink-on-light: #4f4d48;
  --accent: #e8c547;
  --accent-dim: #b8942e;
  --border: #353230;
  --overlay-base: 21, 19, 17;
  --font-display: "Syne", system-ui, sans-serif;
  --font-condensed: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-hero: "Nunito", var(--font-body);
  --radius: 10px;
  --header-h: 7rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.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;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration: underline;
}

/* Header — nav only, stacked top-right, white type */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.1rem 0 0.85rem;
  min-height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(var(--overlay-base), 0.94);
  border-bottom-color: var(--border);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  position: absolute;
  left: 1.5rem;
  top: 0.15rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 102;
}

.nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  box-shadow: 0 6px 0 #fff, 0 -6px 0 #fff;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__panel {
  padding: 0.7rem 1.15rem 0.75rem 1.35rem;
  border-radius: 12px;
  background: rgba(var(--overlay-base), 0.58);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(var(--overlay-base), 0.4);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled .nav__panel {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
}

.nav__list--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  text-align: right;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.4;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.55);
}

.site-header.is-scrolled .nav a {
  text-shadow: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  opacity: 0.88;
}

@media (max-width: 720px) {
  :root {
    --header-h: 3.75rem;
  }

  .site-header {
    min-height: var(--header-h);
    padding: 0.85rem 0;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--overlay-base), 0.97);
    padding: 2rem 1.5rem 2rem;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
  }

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

  .nav__list--stack {
    align-items: flex-end;
    gap: 1rem;
  }

  .nav__panel {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
  }

  .site-header.is-scrolled .nav__panel {
    padding: 0;
  }

  .nav__list--stack a {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-shadow: 0 0 24px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.8);
  }
}

/* Hero — full banner image (no crop): intrinsic height, overlay for copy */
.hero {
  position: relative;
  width: 100%;
}

.hero__media {
  position: relative;
  z-index: 0;
  width: 100%;
  line-height: 0;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(var(--overlay-base), 0.78) 0%,
    rgba(var(--overlay-base), 0.36) 32%,
    rgba(var(--overlay-base), 0.08) 58%,
    rgba(var(--overlay-base), 0.2) 100%
  );
}

@media (max-width: 768px) {
  .hero__veil {
    background: linear-gradient(
      125deg,
      rgba(var(--overlay-base), 0.78) 0%,
      rgba(var(--overlay-base), 0.3) 50%,
      rgba(var(--overlay-base), 0.16) 100%
    );
  }
}

.hero__shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 0.5rem) 1.25rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}

.hero__content {
  max-width: 22rem;
  overflow: visible;
  pointer-events: auto;
}

@media (min-width: 900px) {
  .hero__content {
    max-width: 26rem;
    margin-right: auto;
  }
}

.hero__title {
  font-family: var(--font-hero);
  font-style: normal;
  font-weight: 800;
  /* ~50% larger than previous clamp(2.25rem, 7vw, 3.75rem) */
  font-size: clamp(3.375rem, 10.5vw, 5.625rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: lowercase;
  margin: 0 0 0.975rem;
  padding-bottom: 0.06em;
  color: #fff;
  overflow: visible;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.75), 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero__dot {
  font-weight: 800;
  opacity: 0.72;
  margin-left: 0.02em;
}

.hero__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.hero__actions .btn {
  font-size: clamp(0.63rem, 1.87vw, 0.715rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.19rem;
  justify-content: center;
  border-radius: 2px;
  text-shadow: none;
  background: #fff;
  color: var(--ink-on-light);
  border: 1px solid #e8e8e6;
}

.hero__actions .btn--primary,
.hero__actions .btn--ghost {
  background: #fff;
  color: var(--ink-on-light);
  border: 1px solid #e8e8e6;
  box-shadow: none;
}

.hero__actions .btn:hover,
.hero__actions .btn:focus-visible {
  background: #f2f2f0;
  border-color: #d0d0cc;
  color: var(--ink-on-light);
}

/* Phone: taller hero (square-ish), image fills; clear space for hamburger */
@media (max-width: 720px) {
  .hero {
    min-height: clamp(320px, min(88vw, 74vh), 540px);
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  .hero__img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 26%;
  }

  .hero__shell {
    padding: calc(var(--header-h) + 0.5rem) 1.25rem 1.25rem 4.35rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #f2d56e;
  border-color: #f2d56e;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--text);
  color: var(--text);
}

/* Sections */
.section {
  padding: 1.65rem 1.5rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.section--about {
  padding-top: 1.65rem;
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-kicker {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.35rem;
}

.section__head {
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  text-transform: lowercase;
  color: var(--text);
}

.section__sub {
  margin: 0;
  color: var(--text-muted);
  max-width: 34rem;
}

/* Music — matched embeds */
.embed-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 880px) {
  .embed-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.embed-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.embed-card__label {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
}

.embed-frame {
  display: block;
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 400px;
  border-radius: 8px;
  background: var(--bg);
}

.embed-card--links {
  min-height: 0;
}

.link-pick {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 1 auto;
  min-height: 0;
}

.link-pick__feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  padding: 1.1rem 1.2rem;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(
    145deg,
    rgba(232, 197, 71, 0.12) 0%,
    rgba(var(--overlay-base), 0.88) 55%
  );
  border: 1px solid rgba(232, 197, 71, 0.35);
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.link-pick__feature:hover,
.link-pick__feature:focus-visible {
  border-color: var(--accent);
  background: linear-gradient(
    145deg,
    rgba(232, 197, 71, 0.18) 0%,
    rgba(var(--overlay-base), 0.94) 60%
  );
}

.link-pick__feature-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.link-pick__feature-title {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.link-pick__feature-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.link-pick__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.link-pick__row {
  display: block;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: var(--ink-on-light);
  text-decoration: none;
  background: #fff;
  border: 1px solid #e8e8e6;
  border-radius: 8px;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.link-pick__row:hover,
.link-pick__row:focus-visible {
  background: #f2f2f0;
  border-color: #d0d0cc;
  color: var(--ink-on-light);
}

/* Video */
.video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {
  margin: 0;
}

.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-card__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About */
.about {
  display: grid;
  gap: 1rem;
  align-items: start;
}

@media (min-width: 800px) {
  .about {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3rem;
    align-items: start;
  }
}

.about__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about__visual img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Desktop: nudge copy down next to photo; stacked mobile stays tight */
.about__copy {
  padding-top: 0;
}

@media (min-width: 800px) {
  .about__copy {
    padding-top: 2.85rem;
  }
}

.about__title {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.1rem);
  letter-spacing: 0.03em;
  text-transform: lowercase;
  line-height: 1.22;
  margin: 0 0 1rem;
  padding-top: 0;
}

.about__copy .about__dot {
  font-weight: 800;
  opacity: 0.72;
  margin-left: 0.02em;
}

.about__lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 2.8vw, 1.42rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  max-width: 28rem;
}

.about__copy strong {
  font-family: var(--font-hero);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* Contact */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.35rem;
  max-width: 32rem;
}

.contact-list__label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.contact-list__value {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
  line-height: 1.35;
}

.contact-list__value:hover,
.contact-list__value:focus-visible {
  text-decoration: underline;
}

.config-note {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.config-note code {
  font-size: 0.8em;
  color: var(--accent-dim);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.site-footer__brand {
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: 1.05em;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0 0.2em;
}

.site-footer__inline {
  color: var(--text-muted);
  text-decoration: none;
}

.site-footer__inline:hover,
.site-footer__inline:focus-visible {
  color: var(--accent);
}

.site-footer__top {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  text-align: inherit;
}

.site-footer__top:hover,
.site-footer__top:focus-visible {
  color: var(--text);
}
