:root {
  --bg: #07070a;
  --bg-soft: #0d0c11;
  --paper: #f4eee8;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f0ea;
  --muted: rgba(247, 240, 234, 0.68);
  --coral: #ef8a82;
  --coral-dim: rgba(239, 138, 130, 0.72);
  --gold: #c4ab76;
  --blue: #3657ff;
  --display: "Sarpanch", sans-serif;
  --body: "JetBrains Mono", monospace;
  --editorial: "Geo", sans-serif;
  --brand: "Asimovian", sans-serif;
  --radius-xl: 44px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

*:where(h1, h2, h3, p, a, span, small, strong) {
  min-width: 0;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 138, 130, 0.16), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(54, 87, 255, 0.11), transparent 18%),
    linear-gradient(180deg, #07070a 0%, #09080d 36%, #0a090d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 160ms ease,
    opacity 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

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

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--coral);
  color: #09070b;
}

.skip-link:focus {
  top: 18px;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  width: min(980px, calc(100vw - 48px));
  padding: 28px 28px 26px;
  background: rgba(244, 238, 232, 0.98);
  color: #09070b;
  border: 1px solid rgba(9, 7, 11, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.cookie-banner-copy {
  display: grid;
  gap: 10px;
}

.cookie-banner-kicker {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.08;
}

.cookie-banner-text {
  margin: 0;
  max-width: 60ch;
  color: rgba(9, 7, 11, 0.74);
  font-size: 0.98rem;
  line-height: 1.55;
}

.cookie-banner-text a {
  color: #09070b;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner-actions {
  display: grid;
  gap: 12px;
  align-content: start;
}

.cookie-btn {
  appearance: none;
  border: 1px solid #09070b;
  background: transparent;
  color: #09070b;
  min-height: 60px;
  padding: 0 18px;
  font-family: var(--editorial);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #f7f0ea;
}

.cookie-btn-primary:hover {
  background: #2849f4;
  border-color: #2849f4;
}

.cookie-btn-secondary:hover {
  background: rgba(9, 7, 11, 0.06);
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 36vw;
  height: 36vw;
  filter: blur(72px);
  opacity: 0.22;
}

.ambient-left {
  top: 8vh;
  left: -12vw;
  background: radial-gradient(circle, rgba(239, 138, 130, 0.95), transparent 60%);
}

.ambient-right {
  top: 26vh;
  right: -14vw;
  background: radial-gradient(circle, rgba(54, 87, 255, 0.9), transparent 58%);
}

.container {
  width: min(1260px, calc(100vw - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  min-width: 0;
}

.site-nav a,
.header-meta {
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
}

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

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

.brand strong,
h1,
h2,
h3 {
  font-family: var(--display);
}

.brand strong {
  display: block;
  font-family: var(--brand);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-family: var(--editorial);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(239, 138, 130, 0.42);
  color: var(--coral);
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header-meta {
  justify-self: end;
  display: flex;
  gap: 18px;
  color: var(--muted);
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-meta a {
  color: var(--text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: #050507;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    backdrop-filter 180ms ease,
    -webkit-backdrop-filter 180ms ease;
}

.header-bar {
  grid-template-columns: 84px 1fr auto;
  gap: 24px;
  min-height: 104px;
}

body.is-scrolled .site-header {
  background: rgba(5, 5, 7, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo .brand-mark {
  width: 68px;
  height: 68px;
  border: 0;
  border-radius: 0;
  background: none;
  color: transparent;
  font-size: 0;
  letter-spacing: 0;
}

.masthead-title {
  justify-self: center;
  text-align: center;
}

.masthead-title a {
  color: var(--coral);
  font-family: var(--editorial);
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--editorial);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-trigger-lines {
  display: grid;
  gap: 8px;
}

.menu-trigger-lines span {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-trigger-lines span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.menu-open .menu-trigger-lines span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-trigger-lines span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  justify-items: end;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
}

.menu-sheet {
  width: min(460px, 100vw);
  height: 100vh;
  padding: 34px 28px 28px;
  background:
    radial-gradient(circle at 78% 16%, rgba(239, 138, 130, 0.12), transparent 18%),
    radial-gradient(circle at 18% 72%, rgba(54, 87, 255, 0.12), transparent 22%),
    #07070a;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(100%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.menu-open .menu-sheet {
  transform: translateX(0);
}

.menu-sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 2;
  padding-bottom: 10px;
  background: linear-gradient(180deg, rgba(7, 7, 10, 0.96), rgba(7, 7, 10, 0.9));
}

.menu-close {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--editorial);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.masthead-title a:hover,
.site-logo:hover,
.menu-trigger:hover,
.menu-close:hover {
  color: var(--paper);
}

.menu-nav {
  display: grid;
  align-content: start;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-nav a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-nav a.active {
  color: var(--coral);
}

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

.menu-meta {
  display: grid;
  gap: 18px;
  align-content: end;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-home {
  padding-top: 44px;
}

.hero-shell {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
  justify-content: center;
  padding: 34px 0 10px;
}

.hero-kicker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.hero-kicker .eyebrow {
  margin-inline: auto;
  text-align: center;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  font-family: var(--editorial);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  justify-self: center;
  transform: translateX(106px);
}

.hero-center h1 {
  width: auto;
  max-width: 13.5ch;
  margin-inline: auto;
  text-align: center;
  place-self: center;
  text-wrap: balance;
}

.hero-center .lead {
  margin-inline: auto;
  max-width: 56ch;
  text-align: center;
}

.hero-ledger-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1080px);
  gap: 10px;
  margin-inline: auto;
}

.hero-ledger-grid span {
  justify-content: center;
  min-height: 42px;
}

.hero-stats-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1080px);
  margin-inline: auto;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  opacity: 0.48;
  filter: blur(0.1px);
}

.hero-orbit-left {
  width: min(52vw, 620px);
  height: min(22vw, 250px);
  top: 96px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
}

.hero-orbit-right {
  width: min(56vw, 680px);
  height: min(22vw, 250px);
  top: 92px;
  left: 50%;
  transform: translateX(-50%) rotate(12deg);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero-shell::before {
  width: 420px;
  height: 420px;
  top: 26px;
  left: 50%;
  background: radial-gradient(circle, rgba(54, 87, 255, 0.26), transparent 64%);
  filter: blur(48px);
  opacity: 0.82;
  transform: translateX(140px);
}

.hero-shell::after {
  width: 280px;
  height: 280px;
  top: 96px;
  left: 50%;
  background: radial-gradient(circle, rgba(239, 138, 130, 0.12), transparent 64%);
  filter: blur(40px);
  opacity: 0.56;
  transform: translateX(-220px);
}

.roster-title-centered {
  align-items: start;
}

.roster-title-centered .muted {
  justify-self: end;
  max-width: 44ch;
}

.roster-grid-arched {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
}

.writer-tile-tall {
  grid-row: span 2;
}

.writer-tile-wide {
  grid-column: span 2;
}

.writer-portrait-arched {
  border-radius: 220px 220px 24px 24px;
}

.writer-portrait-sliced {
  position: relative;
  overflow: hidden;
}

.writer-portrait-sliced::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(6, 7, 10, 0.94) 0,
      rgba(6, 7, 10, 0.94) 14px,
      transparent 14px,
      transparent 32px
    );
  mix-blend-mode: multiply;
  opacity: 0.44;
}

.writer-lane {
  display: inline-flex;
  align-items: center;
  align-self: start;
  min-height: 28px;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--paper);
  font-family: var(--editorial);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-meta-group {
  display: grid;
  gap: 6px;
}

.menu-meta-group p {
  margin: 0;
}

.menu-meta-label {
  color: var(--coral);
  font-family: var(--editorial);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-meta-value {
  color: var(--text);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.5;
}

.hero,
.section,
.inner-hero {
  padding: clamp(56px, 7vw, 88px) 0;
}

.hero-home {
  padding-top: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 32px;
  align-items: end;
}

.inner-hero-wide {
  padding-top: 42px;
}

.writers-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
  grid-template-areas:
    "kicker kicker"
    "title title"
    ". lead";
  column-gap: 44px;
  row-gap: 18px;
  align-items: start;
}

.writers-hero-kicker {
  grid-area: kicker;
}

.writers-hero-title {
  grid-area: title;
  max-width: 18ch;
}

.writers-hero-lead {
  grid-area: lead;
  justify-self: end;
  max-width: 38ch;
  margin: 0;
}

.legal-page .section {
  padding-top: 28px;
}

.legal-doc {
  display: grid;
  gap: 18px;
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 36px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, #121017, #0c0b10);
}

.legal-doc h1,
.legal-doc h2,
.legal-doc p,
.legal-doc li {
  margin: 0;
}

.legal-doc > h1 {
  max-width: 18ch;
}

.legal-doc h2 {
  margin-top: 12px;
  color: var(--paper);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.legal-doc p,
.legal-doc li {
  color: var(--muted);
  line-height: 1.85;
}

.legal-doc ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.legal-doc strong {
  color: var(--paper);
}

.legal-doc a {
  color: var(--paper);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-head-wide {
  max-width: 88ch;
}

.eyebrow {
  margin: 0;
  color: var(--coral);
  font-family: var(--editorial);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  max-width: 11.5ch;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.lead,
.muted {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 64ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-actions,
.contact-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: center;
}

.contact-panel-actions {
  justify-content: flex-end;
  align-content: center;
  margin-top: 0;
}

.contact-panel-actions .btn {
  min-width: 220px;
}

.hero-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-ledger span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-primary {
  background: var(--paper);
  color: #09070b;
  border-color: var(--paper);
}

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

.hero-copy {
  padding: 0 12px 0 0;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.hero-rail {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-stats {
  display: grid;
  gap: 10px;
  grid-column: span 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.hero-note {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.hero-note {
  position: relative;
  overflow: hidden;
}

.hero-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), rgba(54, 87, 255, 0.5));
}

.hero-note p {
  margin: 0;
}

.hero-note p + p {
  margin-top: 10px;
}

.stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.name-ribbon {
  overflow: hidden;
  padding: 14px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.name-ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  width: max-content;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: name-ribbon-scroll 26s linear infinite;
  will-change: transform;
}

.name-ribbon-track span {
  display: inline-block;
  flex: 0 0 auto;
}

@keyframes name-ribbon-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 14px), 0, 0);
  }
}

.section-roster {
  padding-top: 34px;
}

.roster-shell {
  display: grid;
  gap: 28px;
}

.roster-title {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: end;
}

.roster-grid {
  display: grid;
  gap: 18px;
}

.roster-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
}

.inner-page .roster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
}

.writer-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #131118;
}

.writer-tile-1,
.writer-tile-6 {
  grid-row: span 2;
}

.writer-tile-3 {
  grid-column: span 2;
}

.writer-portrait {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--artist-position, center 22%);
  filter: saturate(1.02) contrast(1.03);
}

.tone-1 .writer-portrait,
.tone-1.news-thumb,
.tone-1.placement-card .placement-image {
  background-color: #5d4930;
}

.tone-2 .writer-portrait,
.tone-2.news-thumb,
.tone-2.placement-card .placement-image {
  background-color: #24232c;
}

.tone-3 .writer-portrait,
.tone-3.news-thumb,
.tone-3.placement-card .placement-image {
  background-color: #3c3450;
}

.tone-4 .writer-portrait,
.tone-4.news-thumb,
.tone-4.placement-card .placement-image {
  background-color: #ddd9d2;
}

.section-roster .roster-grid-home .writer-tile:nth-child(1) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(1) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb20e66bb8bad50ab683acd2f6");
  --artist-position: center 20%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(2) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(2) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb949cb6d26a885dca6ee9b05e");
  --artist-position: center 18%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(3) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(3) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb351342194cb97193ed1d4386");
  --artist-position: center 26%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(4) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(4) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb6a01d62c22e19a0fafbf5b10");
  --artist-position: center 18%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(5) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(5) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb25fb5d179805d6677706d6b5");
  --artist-position: center 16%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(6) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(6) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab67616d0000b2732b64a0721a93f95cbd8f928d");
  --artist-position: center 20%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(7) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(7) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb30ea6b50f71b1f1725584396");
  --artist-position: center 18%;
}

.section-roster .roster-grid-home .writer-tile:nth-child(8) .writer-portrait,
.inner-page .roster-grid .writer-tile:nth-child(8) .writer-portrait {
  background-image: url("https://i.scdn.co/image/ab6761610000e5eb5baca946e88701395969703d");
  --artist-position: center 20%;
}

.writer-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.66) 68%, rgba(0, 0, 0, 0.82) 100%);
}

.writer-caption h3 {
  color: var(--gold);
  font-size: clamp(1.1rem, 1.7vw, 1.7rem);
}

.writer-caption p {
  margin: 0;
  color: rgba(247, 240, 234, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-roster .roster-grid-home {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 16px;
}

.section-roster .roster-grid-home .writer-tile {
  grid-column: span 1;
  grid-row: span 1;
  border-radius: 0;
}

.section-roster .roster-grid-home .writer-portrait,
.section-roster .roster-grid-home .writer-portrait-arched,
.section-roster .roster-grid-home .writer-portrait-sliced {
  border-radius: 0;
  background-size: cover;
}

.section-roster .roster-grid-home .writer-portrait-sliced::before {
  display: none;
}

.section-roster .roster-grid-home .writer-caption {
  gap: 3px;
  padding: 10px 12px 11px;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.54) 68%, rgba(0, 0, 0, 0.76) 100%);
}

.section-roster .roster-grid-home .writer-caption h3 {
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  line-height: 1.02;
}

.section-roster .roster-grid-home .writer-caption p {
  font-size: 0.84rem;
  line-height: 1.32;
  max-width: 34ch;
}

.section-roster .roster-grid-home .writer-lane {
  max-width: 100%;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  background: rgba(0, 0, 0, 0.32);
  padding: 4px 6px;
}

.section-manifesto {
  padding-top: 34px;
}

.manifesto-shell,
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  min-height: 240px;
  min-width: 0;
  padding: 26px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(239, 138, 130, 0.06), transparent 40%);
}

.audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.55;
}

.audience-card h3 {
  max-width: none;
  font-size: clamp(2rem, 2.45vw, 3rem);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

.audience-card p {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: none;
}

.manifesto-stack {
  display: grid;
  gap: 24px;
}

.manifesto-stack p {
  margin: 0;
  color: rgba(247, 240, 234, 0.9);
  font-family: var(--editorial);
  font-size: clamp(1.65rem, 2.5vw, 2.8rem);
  line-height: 1.12;
}

.section-services {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-card {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-rows {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-index {
  color: var(--coral);
  font-family: var(--editorial);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.editorial-triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.operating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.operating-note {
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.operating-note h3 {
  color: var(--gold);
}

.operating-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.editorial-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-note p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-catalog {
  background:
    radial-gradient(circle at 10% 12%, rgba(239, 138, 130, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.025));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.catalog-shell {
  display: grid;
  gap: 28px;
}

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

.catalog-card {
  min-height: 230px;
  display: grid;
  gap: 18px;
  align-content: end;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lane-1 {
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 138, 130, 0.18), transparent 22%),
    linear-gradient(180deg, #16121a, #0f0d12);
}

.lane-2 {
  background:
    radial-gradient(circle at 78% 22%, rgba(54, 87, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #12131a, #0a0b12);
}

.lane-3 {
  background:
    radial-gradient(circle at 52% 58%, rgba(196, 171, 118, 0.16), transparent 18%),
    linear-gradient(180deg, #171414, #0f0d10);
}

.lane-4 {
  background:
    linear-gradient(180deg, rgba(239, 138, 130, 0.09), transparent 42%),
    linear-gradient(180deg, #141118, #0b0a0f);
}

.lane-index {
  color: var(--coral);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-placements {
  padding-top: 52px;
}

.placement-shell {
  display: grid;
  gap: 28px;
}

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

.placement-card {
  display: grid;
  gap: 16px;
}

.placement-card .placement-image {
  min-height: 280px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.placement-card .placement-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.08), rgba(7, 7, 10, 0.26));
}

.placement-grid .placement-card:nth-child(1) .placement-image {
  background-image: url("../../img/unsplash/film-set.jpg");
  background-position: center 48%;
}

.placement-grid .placement-card:nth-child(2) .placement-image {
  background-image: url("../../img/unsplash/concert-crowd.jpg");
  background-position: center 42%;
}

.placement-grid .placement-card:nth-child(3) .placement-image {
  background-image: url("../../img/unsplash/stage-spotlight.jpg");
  background-position: center 38%;
}

.placement-card p {
  margin: 0;
  color: var(--muted);
}

.section-news {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.news-shell {
  display: grid;
  gap: 28px;
}

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

.news-lead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.news-lead-visual {
  min-height: 330px;
  border-radius: 18px;
  background-image:
    linear-gradient(180deg, rgba(9, 7, 11, 0.08), rgba(9, 7, 11, 0.28)),
    url("../../img/unsplash/producer-studio.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 42%;
}

.news-lead-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.news-lead-copy p,
.news-stack-item p,
.news-card p,
.news-copy p {
  margin: 0;
  color: var(--muted);
}

.news-stack {
  display: grid;
  gap: 14px;
  counter-reset: news-stack;
}

.news-stack-item {
  position: relative;
  padding: 18px 18px 18px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.news-stack-item::before {
  counter-increment: news-stack;
  content: "0" counter(news-stack);
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--coral);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-contact {
  padding-top: 52px;
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 34px;
  border-radius: 40px;
  background: var(--paper);
  color: #09070b;
}

.contact-panel .eyebrow {
  color: #c46f67;
}

.contact-panel .muted {
  color: rgba(9, 7, 11, 0.65);
}

.contact-panel h2 {
  max-width: 18ch;
}

.inner-page .hero {
  padding-top: 72px;
}

.news-list {
  display: grid;
  gap: 28px;
}

.news-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.news-thumb {
  min-height: 280px;
  border-radius: 18px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.news-list .news-row:nth-child(1) .news-thumb {
  background-image: url("../../img/unsplash/producer-studio.jpg");
  background-position: center 34%;
}

.news-list .news-row:nth-child(2) .news-thumb {
  background-image: url("../../img/unsplash/city-night.jpg");
  background-position: center 46%;
}

.news-list .news-row:nth-child(3) .news-thumb {
  background-image: url("../../img/unsplash/recording-guitar.jpg");
  background-position: center 44%;
}

.news-list .news-row:nth-child(4) .news-thumb {
  background-image: url("../../img/unsplash/vinyl-record.jpg");
  background-position: center 54%;
}

.news-list .news-row:nth-child(5) .news-thumb {
  background-image: url("../../img/unsplash/dj-mixer.jpg");
  background-position: center 52%;
}

.news-copy h2 {
  margin: 10px 0 14px;
}

.bullet-list {
  margin: 0 0 24px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 24px;
}

.route-list {
  display: grid;
  gap: 14px;
}

.route-row,
.sync-panel,
.office-panel {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.sync-panel,
.office-panel {
  position: relative;
}

.sync-panel::before,
.office-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--coral), rgba(54, 87, 255, 0.45));
}

.route-label {
  margin: 0 0 8px;
  color: var(--coral);
  font-family: var(--editorial);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-row a {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.route-row p:last-child,
.office-panel p,
.sync-panel p {
  color: var(--muted);
}

.site-footer {
  padding: 76px 0 34px;
}

.footer-sheet {
  padding: 34px;
  border-radius: 42px;
  background: var(--paper);
  color: #09070b;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.22);
}

.footer-sheet-top {
  display: grid;
  gap: 14px;
}

.footer-sheet-top .eyebrow,
.footer-links .eyebrow {
  color: #c46f67;
}

.footer-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.footer-routes {
  display: grid;
  gap: 18px;
}

.footer-routes p,
.footer-cities p,
.footer-meta p {
  margin: 0;
}

.footer-routes span {
  display: block;
  color: rgba(9, 7, 11, 0.44);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-routes a {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.footer-cities {
  display: grid;
  align-content: end;
  gap: 12px;
  color: rgba(9, 7, 11, 0.72);
}

.footer-cities p:first-child {
  color: #d7776f;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-sheet-line {
  height: 1px;
  margin: 28px 0;
  background: rgba(9, 7, 11, 0.12);
}

.footer-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: end;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-legal a {
  color: rgba(9, 7, 11, 0.66);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-routes a:hover,
.footer-routes a:focus-visible {
  color: #09070b;
}

.footer-meta {
  display: grid;
  gap: 12px;
  color: rgba(9, 7, 11, 0.68);
  min-width: 0;
  justify-self: end;
  max-width: 42ch;
  text-align: right;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

@media (max-width: 1400px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-copy h1 {
    max-width: 11.5ch;
  }

  .hero-rail {
    max-width: 920px;
  }

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

  .hero-orbit-left,
  .hero-orbit-right {
    width: min(66vw, 760px);
  }
}

@media (max-width: 1280px) {
  .header-bar {
    grid-template-columns: 84px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 0;
    min-height: 104px;
  }

  .hero-rail {
    grid-template-columns: 1.2fr 1fr;
  }

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

@media (max-width: 1120px) {
  .header-bar,
  .hero-grid,
  .manifesto-shell,
  .news-feature,
  .news-lead,
  .footer-sheet-grid,
  .footer-bottom,
  .contact-card,
  .inner-hero-grid,
  .contact-panel,
  .news-row {
    grid-template-columns: 1fr;
  }

  .header-bar {
    grid-template-columns: 84px 1fr auto;
    justify-items: stretch;
    align-items: center;
    padding: 0;
  }

  .masthead-title {
    justify-self: center;
  }

  .roster-grid-home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .inner-page .roster-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .writer-tile-3 {
    grid-column: span 1;
  }

  .editorial-triptych,
  .audience-grid,
  .operating-grid,
  .placement-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card:nth-child(2n),
  .placement-card:nth-child(2) {
    transform: none;
  }

  .service-row {
    grid-template-columns: 70px 1fr;
  }

  .service-row p {
    grid-column: 2;
  }

  .hero-ledger-grid,
  .hero-stats-grid {
    width: 100%;
  }

  .hero-ledger-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .writers-hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "lead";
    row-gap: 18px;
  }

  .writers-hero-lead {
    justify-self: start;
    max-width: 60ch;
  }

  .roster-title-centered .muted {
    justify-self: start;
  }

  .writer-tile-wide {
    grid-column: span 1;
  }
}

@media (max-width: 1440px) {
  .manifesto-shell,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1260px, calc(100vw - 24px));
  }

  .header-bar {
    grid-template-columns: 64px 1fr auto;
    gap: 16px;
    min-height: 88px;
  }

  .site-logo .brand-mark {
    width: 54px;
    height: 54px;
    font-size: 1.25rem;
  }

  .masthead-title a {
    font-size: 1.18rem;
  }

  .menu-trigger {
    gap: 12px;
    font-size: 0.76rem;
  }

  .menu-trigger-lines span {
    width: 26px;
  }

  .menu-sheet {
    width: 100vw;
    padding: 26px 20px 24px;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
  }

  .cookie-banner-actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    min-height: 54px;
  }

  .hero-shell {
    gap: 22px;
    padding-top: 10px;
  }

  .hero-center h1 {
    max-width: 12.8ch;
  }

  .hero-center {
    transform: none;
  }

  .writers-hero-title {
    max-width: 12ch;
  }

  .writers-hero-lead {
    max-width: 100%;
  }

  .hero-orbit-left,
  .hero-orbit-right {
    width: 92vw;
    height: 160px;
    top: 120px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(0deg);
  }

  .hero-orbit-right {
    top: 168px;
  }

  .hero-ledger-grid {
    grid-template-columns: 1fr;
  }

  .roster-title {
    grid-template-columns: 1fr;
  }

  .roster-grid-home {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .inner-page .roster-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .writer-tile-1,
  .writer-tile-6 {
    grid-row: span 1;
  }
  .footer-sheet,
  .contact-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .footer-routes a {
    font-size: 1.4rem;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .roster-grid-arched {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .writer-tile-tall,
  .writer-tile-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .writer-portrait-arched {
    border-radius: 140px 140px 22px 22px;
  }

  .section-roster .roster-grid-home .writer-portrait-arched,
  .section-roster .roster-grid-home .writer-portrait-sliced,
  .section-roster .roster-grid-home .writer-portrait {
    border-radius: 0;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row p {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .hero,
  .section,
  .inner-hero {
    padding: 48px 0;
  }

  .hero-center h1,
  .writers-hero-title,
  .inner-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4.25rem);
    line-height: 0.96;
  }

  .lead,
  .hero-center .lead,
  .writers-hero-lead,
  .footer-meta p,
  .footer-cities p,
  .footer-routes p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .footer-bottom,
  .footer-sheet-grid {
    gap: 22px;
  }

  .footer-routes a {
    font-size: 1.18rem;
  }

  .menu-nav a {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
}
