:root {
  color-scheme: dark;
  --ink: #f6f2ea;
  --soft: #d6d9d8;
  --muted: #9ea8aa;
  --dim: #707b80;
  --black: #050708;
  --night: #0b1114;
  --glass: #122029;
  --blueglass: #203743;
  --warm: #c8a46c;
  --warm-soft: #e1c58c;
  --line: rgba(246, 242, 234, 0.14);
  --line-strong: rgba(246, 242, 234, 0.28);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(32, 55, 67, 0.18), rgba(5, 7, 8, 0) 520px),
    var(--black);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

a:focus-visible {
  outline: 2px solid var(--warm-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: 18px;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(5, 7, 8, 0.72);
  border-bottom: 1px solid rgba(246, 242, 234, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 1px solid rgba(225, 197, 140, 0.5);
  background: #081015;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.hero {
  position: relative;
  min-height: 84svh;
  overflow: clip;
  display: grid;
  align-items: end;
  padding: 112px 18px 42px;
  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: 58% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.94) 0%, rgba(5, 7, 8, 0.74) 42%, rgba(5, 7, 8, 0.42) 76%, rgba(5, 7, 8, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 7, 8, 0.64) 0%, rgba(5, 7, 8, 0.16) 44%, rgba(5, 7, 8, 0.92) 100%);
}

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

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

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

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

h1 {
  max-width: 9.5ch;
  font-size: 4rem;
  line-height: 0.92;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.02;
}

.hero-line {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: 1.14rem;
  line-height: 1.45;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 0.76rem;
  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: #0a1013;
}

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

.button.quiet {
  background: rgba(5, 7, 8, 0.34);
}

.button.quiet:hover {
  border-color: var(--ink);
  background: rgba(246, 242, 234, 0.08);
}

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

section[id] {
  scroll-margin-top: 76px;
}

.section-band.cool {
  background:
    linear-gradient(180deg, rgba(18, 32, 41, 0.72), rgba(5, 7, 8, 0.98)),
    var(--night);
}

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

.latest-layout,
.fragment-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.latest-copy,
.fragment-copy,
.channels-heading {
  max-width: 680px;
}

.latest-copy p,
.fragment-copy p,
.what p {
  margin: 20px 0 0;
  color: var(--soft);
  font-size: 1.06rem;
}

.latest-copy .hook {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.42;
}

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

.text-link.muted {
  border-bottom-color: rgba(158, 168, 170, 0.5);
  color: var(--muted);
}

.teaser-media {
  margin: 0;
}

.teaser-media video {
  width: 100%;
  max-height: 78svh;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #080b0c;
  border: 1px solid var(--line);
}

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

blockquote {
  margin: 30px 0 0;
  padding: 0 0 0 18px;
  border-left: 1px solid var(--warm);
  color: var(--ink);
}

blockquote p {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.35;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 12px;
}

.image-pair img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.image-pair img:first-child {
  margin-top: 34px;
}

.image-pair img:last-child {
  margin-bottom: 34px;
}

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

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

.channels-heading {
  margin-bottom: 36px;
}

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

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

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

.channel-name {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.78rem;
  line-height: 1.05;
}

.channel-detail {
  color: var(--muted);
  font-size: 1rem;
}

.channel-row.placeholder .channel-detail::before {
  content: "Pending";
  display: inline-flex;
  margin-right: 10px;
  padding: 3px 7px;
  border: 1px solid rgba(225, 197, 140, 0.32);
  color: var(--warm-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
}

.site-footer {
  background: #080c0e;
  color: var(--dim);
}

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

.footer-inner p {
  margin: 0;
}

@media (min-width: 680px) {
  .site-header {
    padding: 15px 28px;
  }

  .site-header nav {
    gap: 24px;
  }

  .hero {
    padding: 120px 36px 54px;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero-line {
    font-size: 1.26rem;
  }

  .section-inner {
    padding: 82px 0;
  }
}

@media (min-width: 900px) {
  .latest-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.56fr);
    align-items: center;
    gap: 68px;
  }

  .fragment-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(330px, 0.72fr);
    align-items: center;
    gap: 70px;
  }

  h1 {
    font-size: 6.4rem;
  }

  h2 {
    font-size: 4rem;
  }

  .section-inner {
    padding: 104px 0;
  }
}

@media (max-width: 560px) {
  .brand-lockup span:last-child {
    max-width: 14ch;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header nav {
    gap: 10px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 82svh;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-line {
    font-size: 1.06rem;
  }

  .hero-actions,
  .inline-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .text-link {
    width: 100%;
  }

  .image-pair {
    gap: 8px;
  }

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

  .channel-name {
    font-size: 1.55rem;
  }

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

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