:root {
  color-scheme: dark;
  --ink: #f4efe6;
  --muted: #c9bfb1;
  --dim: #91887d;
  --black: #050505;
  --charcoal: #10100f;
  --charcoal-2: #171513;
  --line: rgba(244, 239, 230, 0.16);
  --line-strong: rgba(244, 239, 230, 0.28);
  --lamp: #d7a65a;
  --lamp-soft: #f1c879;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--lamp-soft);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  color: var(--ink);
  background: rgba(5, 5, 5, 0.68);
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-lockup img {
  width: 32px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(244, 239, 230, 0.22);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 28px);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header nav a,
.site-footer nav a,
.text-link {
  transition: color 180ms ease, border-color 180ms ease;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: clip;
  display: grid;
  align-items: end;
  padding: 114px clamp(18px, 5vw, 72px) clamp(34px, 6vw, 62px);
  border-bottom: 1px solid var(--line);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 36%, rgba(5, 5, 5, 0.24) 72%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.1) 44%, rgba(5, 5, 5, 0.82) 100%);
}

.hero-content {
  position: relative;
  width: min(650px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lamp-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.2rem, 14vw, 8.6rem);
  line-height: 0.86;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.96;
}

.hero-line {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.35;
}

.age-note {
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #12100d;
}

.button.primary:hover {
  background: var(--lamp-soft);
  border-color: var(--lamp-soft);
}

.button.quiet {
  background: rgba(5, 5, 5, 0.3);
}

.button.quiet:hover {
  border-color: var(--ink);
  background: rgba(244, 239, 230, 0.08);
}

.section-band {
  background: var(--black);
  border-bottom: 1px solid var(--line);
}

.section-band.warm {
  background:
    linear-gradient(180deg, rgba(215, 166, 90, 0.08), rgba(5, 5, 5, 0)),
    var(--charcoal);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(58px, 9vw, 112px) 0;
}

.latest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  align-items: center;
  gap: clamp(34px, 7vw, 88px);
}

.latest-copy {
  max-width: 650px;
}

.teaser,
.what p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--lamp);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fragment-media {
  margin: 0;
}

.fragment-media video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #090807;
  border: 1px solid var(--line);
}

.fragment-media figcaption {
  margin-top: 12px;
  color: var(--dim);
  font-size: 0.86rem;
}

.narrow {
  width: min(820px, calc(100% - 36px));
  margin-left: max(18px, calc((100% - var(--max)) / 2));
}

.what h2 {
  max-width: 780px;
}

.channels-heading {
  max-width: 680px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.channel-list {
  border-top: 1px solid var(--line-strong);
}

.channel-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: color 180ms ease, border-color 180ms ease, padding-left 180ms ease;
}

.channel-row:hover {
  padding-left: 12px;
  border-bottom-color: var(--line-strong);
}

.channel-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 3rem);
  line-height: 1;
}

.channel-detail {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.site-footer {
  background: var(--charcoal-2);
  color: var(--dim);
}

.footer-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 26px;
  padding: 28px 0;
  font-size: 0.82rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand-lockup span {
    max-width: 11ch;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 84svh;
    padding: 108px 18px 34px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.58) 58%, rgba(5, 5, 5, 0.58) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.72) 0%, rgba(5, 5, 5, 0.14) 42%, rgba(5, 5, 5, 0.9) 100%);
  }

  h1 {
    font-size: clamp(4rem, 22vw, 6.5rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 72px 96px;
  }

  .button {
    padding-inline: 12px;
  }

  .latest-layout {
    grid-template-columns: 1fr;
  }

  .fragment-media video {
    max-height: 78svh;
  }

  .narrow {
    width: min(100% - 36px, 820px);
    margin-inline: auto;
  }

  .channel-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 112px;
  }

  .footer-inner,
  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .primary {
    grid-column: 1 / -1;
  }
}

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