:root {
  --bg: #090305;
  --bg-deep: #15070b;
  --bg-soft: #2a0f17;
  --surface: #1d0b11;
  --surface-soft: #2f131c;
  --text: #f8ede3;
  --muted: #ccb7a7;
  --muted-strong: #e8d4c4;
  --gold: #e8b25d;
  --gold-soft: #f3d4a3;
  --red: #8a162b;
  --wine: #5e0f21;
  --line: rgba(232, 178, 93, 0.32);
  --line-soft: rgba(232, 178, 93, 0.18);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 28px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 6%, rgba(205, 53, 85, 0.21), transparent 36%),
    radial-gradient(circle at 90% 2%, rgba(243, 191, 106, 0.13), transparent 42%),
    linear-gradient(180deg, var(--bg) 0%, #0d0407 52%, #070203 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.85) 0.45px, transparent 0.45px);
  background-size: 2.2px 2.2px;
}

body::after {
  background: radial-gradient(circle at 50% 10%, transparent 0%, rgba(0, 0, 0, 0.52) 72%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(3.2rem, 6vw, 5.2rem) 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 6vw, 4.6rem);
}

h2 {
  font-size: clamp(1.4rem, 3.3vw, 2.55rem);
}

.kicker {
  margin: 0;
  font-size: 0.73rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.section-lead {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 56ch;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: #fff;
  color: #000;
  padding: 0.55rem 0.8rem;
}

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

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 2px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(10px);
  background: rgba(10, 3, 6, 0.88);
  border-bottom: 1px solid var(--line-soft);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 39px;
  height: 39px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #f5d49f, #b97320);
  color: #3a1400;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(232, 178, 93, 0.35);
}

.brand-text {
  display: grid;
  gap: 0.06rem;
}

.brand-text strong {
  font-size: 0.91rem;
  letter-spacing: 0.09em;
}

.brand-text small {
  font-size: 0.69rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.34rem;
  width: 0;
  height: 1px;
  background: var(--gold-soft);
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-soft);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1.1rem;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

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

.btn-small {
  padding: 0.52rem 0.9rem;
  font-size: 0.8rem;
}

.btn-primary {
  color: #fff8ef;
  background: linear-gradient(132deg, var(--red), #b42544 58%, #d24a57 100%);
  box-shadow: 0 10px 24px rgba(169, 39, 66, 0.42);
}

.btn-secondary {
  color: #ffe3c1;
  border-color: rgba(243, 180, 94, 0.46);
  background: rgba(232, 178, 93, 0.12);
}

.btn-ghost {
  color: var(--muted-strong);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.btn.is-disabled,
.btn[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.64;
  transform: none;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: min(93svh, 920px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line-soft);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 90%);
}

.hero-lights {
  position: absolute;
  inset: -40% -5% auto -5%;
  height: 75%;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 45%, rgba(178, 38, 62, 0.37), transparent 36%),
    radial-gradient(circle at 72% 30%, rgba(247, 188, 90, 0.23), transparent 44%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: end;
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-title {
  margin-top: 0.65rem;
  max-width: 12ch;
  text-wrap: balance;
}

.hero-tagline {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold-soft);
  max-width: 30ch;
}

.hero-description {
  margin: 1rem 0 0;
  color: var(--muted-strong);
  max-width: 56ch;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-board {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 22%, rgba(243, 180, 94, 0.13), transparent 48%),
    linear-gradient(155deg, rgba(44, 14, 22, 0.95), rgba(20, 8, 12, 0.95));
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.hero-feature {
  border-radius: var(--radius);
  border: 1px solid rgba(232, 178, 93, 0.26);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.9rem;
}

.hero-feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.hero-feature-title {
  margin: 0.3rem 0 0;
  font-size: 1.18rem;
}

.hero-feature-episode {
  margin: 0.4rem 0 0;
  color: var(--muted-strong);
}

.hero-feature-meta {
  margin-top: 0.55rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-feature-note {
  margin: 0.75rem 0 0.85rem;
  color: var(--muted);
}

.hero-live {
  margin-top: 0.85rem;
}

.hero-live-title {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-live-track {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.5rem;
}

.live-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-radius: 11px;
  border: 1px solid rgba(232, 178, 93, 0.18);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.live-item:hover {
  border-color: rgba(232, 178, 93, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.live-item strong {
  display: block;
  font-size: 0.95rem;
}

.live-meta {
  color: var(--muted);
  font-size: 0.78rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--gold-soft);
  border-bottom: 1px solid rgba(243, 180, 94, 0.45);
  padding-bottom: 0.08rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 1rem;
  align-items: start;
}

.about-lead {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted-strong);
}

.about-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.about-points li {
  border-left: 1px solid var(--line);
  padding: 0.55rem 0 0.55rem 0.85rem;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(232, 178, 93, 0.05), transparent 66%);
}

.release-feed {
  display: grid;
  gap: 0.75rem;
}

.release-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(45, 15, 23, 0.86), rgba(20, 8, 12, 0.9));
  padding: 0.82rem;
  box-shadow: var(--shadow-soft);
}

.release-item-new {
  border-color: rgba(243, 180, 94, 0.46);
}

.release-main {
  min-width: 0;
}

.release-project {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.release-title {
  margin: 0.25rem 0 0;
  font-size: 1rem;
}

.release-meta {
  margin: 0.38rem 0 0;
  display: flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.release-actions {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}

.projects-rhythm {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.95rem;
}

.project-card {
  position: relative;
  grid-column: span 4;
  display: grid;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(160deg, rgba(38, 13, 20, 0.95), rgba(19, 8, 11, 0.95));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 178, 93, 0.4);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.project-card-wide {
  grid-column: span 8;
}

.project-card-tall .project-poster {
  aspect-ratio: 4 / 5;
}

.project-card[data-tone="ruby"] {
  background: linear-gradient(155deg, rgba(62, 13, 25, 0.94), rgba(24, 8, 12, 0.94));
}

.project-card[data-tone="ember"] {
  background: linear-gradient(155deg, rgba(58, 24, 12, 0.92), rgba(24, 10, 8, 0.94));
}

.project-card[data-tone="midnight"] {
  background: linear-gradient(155deg, rgba(24, 15, 34, 0.94), rgba(10, 7, 16, 0.95));
}

.project-poster-wrap {
  position: relative;
}

.project-poster {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--line-soft);
}

.project-status {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
}

.project-content {
  padding: 0.88rem;
}

.project-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.6rem;
}

.project-topline h3 {
  font-size: 1.1rem;
}

.project-summary {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.project-meta {
  margin: 0.72rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(243, 180, 94, 0.34);
  padding: 0.18rem 0.56rem;
  font-size: 0.76rem;
  color: #f8dcb2;
}

.project-progress {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.project-progress-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  overflow: hidden;
  margin: 0.4rem 0 0.85rem;
}

.project-progress-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ca3950, #f0bd6a);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.team-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: linear-gradient(150deg, rgba(42, 14, 22, 0.88), rgba(19, 8, 12, 0.9));
  padding: 0.95rem;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 178, 93, 0.38);
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.72rem;
  font-weight: 800;
  color: #2f1300;
  background: linear-gradient(140deg, #f5d49f, #ba7523);
}

.member-role {
  margin: 0.28rem 0 0;
  color: var(--gold-soft);
  font-size: 0.87rem;
}

.member-about {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.member-focus {
  margin: 0.7rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px dashed rgba(243, 180, 94, 0.25);
  color: var(--muted-strong);
  font-size: 0.85rem;
}

.support-panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 89% 24%, rgba(243, 180, 94, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(64, 17, 28, 0.95), rgba(20, 8, 12, 0.96));
  box-shadow: var(--shadow);
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.support-copy h2 {
  margin-top: 0.4rem;
}

.support-copy p {
  margin: 0.75rem 0 0;
  color: var(--muted-strong);
  max-width: 48ch;
}

.support-links-grid {
  display: grid;
  gap: 0.68rem;
}

.support-card {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(243, 180, 94, 0.34);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem;
}

.support-card h3 {
  font-size: 1rem;
}

.support-card p {
  margin: 0.36rem 0 0.72rem;
  color: var(--muted);
}

.contacts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.contact-item {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: linear-gradient(150deg, rgba(36, 12, 18, 0.8), rgba(18, 7, 11, 0.85));
  padding: 0.8rem;
}

.contact-item h3 {
  font-size: 1rem;
}

.contact-note {
  margin: 0.35rem 0 0.68rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-link {
  color: var(--gold-soft);
  font-weight: 700;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid var(--line-soft);
  background: #070203;
  padding-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding-bottom: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.35rem;
}

.footer-logo {
  margin: 0;
  font-size: 1.2rem;
  font-family: "Unbounded", "Manrope", sans-serif;
}

.footer-grid h3 {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gold-soft);
}

.footer-grid nav,
.footer-grid div {
  display: grid;
  align-content: start;
  gap: 0.32rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  color: #a58d7d;
  font-size: 0.82rem;
  padding: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.16rem 0.52rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.badge-ongoing {
  background: rgba(246, 183, 92, 0.22);
  color: #ffdeb2;
}

.badge-soon {
  background: rgba(146, 198, 255, 0.24);
  color: #c8e6ff;
}

.badge-done {
  background: rgba(145, 221, 178, 0.2);
  color: #cff8df;
}

.badge-release {
  background: rgba(246, 82, 118, 0.26);
  color: #ffd0dd;
}

.badge-neutral {
  background: rgba(255, 255, 255, 0.15);
  color: #f2e4d8;
}

.projects-page .project-hero {
  padding-top: clamp(2.4rem, 6vw, 3.8rem);
  padding-bottom: 1.3rem;
}

.project-page-lead {
  margin: 0.9rem 0 0;
  max-width: 70ch;
  color: var(--muted-strong);
}

.project-catalog {
  padding-top: 1.2rem;
}

.project-detail-list {
  display: grid;
  gap: 1rem;
}

.project-detail {
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(155deg, rgba(37, 13, 20, 0.92), rgba(18, 7, 11, 0.95));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
}

.project-detail[data-tone="ruby"] {
  background: linear-gradient(155deg, rgba(60, 14, 25, 0.92), rgba(21, 8, 12, 0.96));
}

.project-detail[data-tone="ember"] {
  background: linear-gradient(155deg, rgba(64, 27, 14, 0.9), rgba(23, 10, 8, 0.95));
}

.project-detail[data-tone="midnight"] {
  background: linear-gradient(155deg, rgba(26, 16, 39, 0.9), rgba(10, 7, 17, 0.95));
}

.project-detail-poster-wrap {
  position: relative;
  min-height: 100%;
}

.project-detail-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-content {
  padding: 0.95rem;
}

.project-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.8rem;
}

.project-detail-head h2 {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
}

.project-detail-meta {
  margin: 0.68rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.project-detail-summary {
  margin: 0.78rem 0 0;
  color: var(--muted-strong);
}

.project-team-line,
.project-inwork {
  margin: 0.78rem 0 0;
  color: var(--muted);
}

.episodes {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.episode-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(243, 180, 94, 0.24);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.62rem;
}

.episode-new {
  border-color: rgba(243, 180, 94, 0.46);
}

.episode-number {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1.25rem;
}

.episode-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.55rem;
}

.episode-head h3 {
  font-size: 0.98rem;
}

.episode-date {
  margin: 0;
  color: var(--muted);
  font-size: 0.81rem;
  text-align: right;
}

.episode-actions {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.project-external {
  margin-top: 0.85rem;
}

.compact-footer {
  margin-top: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .project-card {
    grid-column: span 6;
  }

  .project-card-wide {
    grid-column: span 12;
  }
}

@media (max-width: 940px) {
  .hero-shell,
  .about-layout,
  .support-panel,
  .project-detail {
    grid-template-columns: 1fr;
  }

  .hero-board {
    max-width: 640px;
  }

  .project-detail-poster-wrap {
    max-height: 340px;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 2.6rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 71px;
    z-index: 140;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(12, 4, 8, 0.98);
    padding: 0.75rem;
  }

  .main-nav.open {
    display: flex;
  }

  .release-item {
    grid-template-columns: 1fr;
  }

  .projects-rhythm {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card-wide {
    grid-column: auto;
  }

  .team-grid,
  .contacts-grid,
  .support-links-grid {
    grid-template-columns: 1fr;
  }

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

  .episode-number {
    justify-content: flex-start;
    padding-left: 0.25rem;
  }

  .episode-date {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
