/* ==========================================================================
   Inspire Digital Radio — stylesheet
   ========================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-alt: #111114;
  --surface: #18181c;
  --surface-2: #202024;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4f4f2;
  --text-muted: #a8a8b0;
  --silver: #d8d9dd;
  --red: #e2141f;
  --red-bright: #ff3b3b;
  --red-glow: rgba(226, 20, 31, 0.45);

  --font-head: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 8px;
  --header-h: 76px;

  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--text-muted);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
}

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

  .hero-wave span {
    animation: none !important;
    transform: scaleY(0.75) !important;
  }

  .play-btn::after {
    display: none;
  }

  .schedule-status.is-live .schedule-dot {
    animation: none !important;
    box-shadow: 0 0 0 4px var(--red-glow) !important;
  }
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--red);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
  font-weight: 600;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red-bright);
  display: inline-block;
}

.section {
  padding: clamp(3.5rem, 7vw, 7rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: #fff;
  box-shadow: 0 8px 24px -8px var(--red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px var(--red-glow);
}

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

.btn-ghost:hover {
  border-color: var(--silver);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(10, 10, 12, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-grid {
  width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
}

.header-grid .brand {
  grid-column: 1;
  justify-self: start;
}

.header-grid .nav-links {
  grid-column: 2;
  justify-content: center;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.header-grid .nav-actions {
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}

.brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 9px;
}

.brand span em {
  font-style: normal;
  color: var(--red-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--red-bright);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.icon-link:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  text-align: left;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(50% 55% at 20% 20%, var(--red-glow), transparent 70%),
    radial-gradient(40% 40% at 90% 60%, rgba(216, 217, 221, 0.08), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Animated soundwave background */
.hero-wave {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(10px, 1.6vw, 22px);
  padding: 12% 4% 0;
}

.hero-wave span {
  flex: 1 1 auto;
  min-width: 10px;
  height: var(--h, 50%);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(0deg, rgba(226, 20, 31, 0.55) 0%, rgba(255, 59, 59, 0.7) 65%, rgba(255, 179, 179, 0.55) 100%);
  box-shadow: 0 0 18px 2px rgba(226, 20, 31, 0.4);
  transform-origin: bottom;
  animation-name: wave-bounce;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.55); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 0.85; }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(10, 10, 12, 0.78) 38%, rgba(10, 10, 12, 0.32) 68%, rgba(10, 10, 12, 0.08) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 22%, transparent 80%, var(--bg) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

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

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  max-width: 22ch;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  line-height: 1.35;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}

.hero-sub {
  max-width: 50ch;
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------- Hero actions (play button + labels) ---------- */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: clamp(2rem, 5vw, 2.6rem) 0 2rem;
}

.hero-actions-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-actions-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(76px, 9vw, 96px);
  height: clamp(76px, 9vw, 96px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red));
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 55px -15px var(--red-glow), 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 65px -12px var(--red-glow), 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.play-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.play-btn svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
  flex-shrink: 0;
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 59, 59, 0.35);
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.92); opacity: 0.9; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { transform: scale(1.28); opacity: 0; }
}

.hero-player-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

/* ---------- Feature cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(226, 20, 31, 0.4);
  background: var(--surface-2);
}

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(226, 20, 31, 0.25), rgba(226, 20, 31, 0.05));
  color: var(--red-bright);
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Schedule ---------- */
.schedule-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.schedule-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.schedule-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.schedule-status.is-live {
  color: var(--red-bright);
}

.schedule-status.is-live .schedule-dot {
  background: var(--red-bright);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: schedule-pulse 1.4s ease-out infinite;
}

@keyframes schedule-pulse {
  0% { box-shadow: 0 0 0 0 var(--red-glow); }
  100% { box-shadow: 0 0 0 8px transparent; }
}

.schedule-main h3 {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.schedule-main p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 42ch;
}

.schedule-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.schedule-days {
  display: flex;
  gap: 0.4rem;
}

.schedule-days span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.schedule-days span.is-today {
  border-color: var(--red-bright);
  color: var(--text);
}

.schedule-days span.is-live {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #fff;
}

.schedule-time {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.schedule-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 1.75rem 0 0;
}

@media (max-width: 640px) {
  .schedule-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-meta {
    align-items: flex-start;
    width: 100%;
  }

  .schedule-days {
    order: 2;
  }

  .schedule-time {
    order: 1;
  }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 190px;
  gap: 1rem;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.gallery figure:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery figure:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.gallery figure:nth-child(3) { grid-column: span 2; grid-row: span 1; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery figure:hover img {
  transform: scale(1.06);
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent);
}

/* ---------- Community / Facebook ---------- */
.community {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.community-copy {
  padding-top: 0.4rem;
}

.fb-embed-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  overflow: hidden;
}

.fb-embed-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.fb-embed-label svg {
  color: #1877f2;
  flex-shrink: 0;
}

.fb-embed-wrap iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-sm);
  display: block;
}

.fb-fallback {
  display: none;
  padding: 3rem 1.5rem;
  text-align: center;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 50% 100%, var(--red-glow), transparent 70%);
  opacity: 0.6;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  max-width: 24ch;
  margin-inline: auto;
  margin-bottom: 0.6em;
}

.cta-banner p {
  max-width: 50ch;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

/* ---------- About page specifics ---------- */
.page-banner {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 50% 0%, var(--red-glow), transparent 70%);
  opacity: 0.7;
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.prose {
  max-width: 720px;
}

.prose p {
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
}

.pillar .eyebrow {
  margin-bottom: 0.6rem;
}

.pillar h3 {
  font-size: 1.2rem;
  color: var(--text);
}

.promise-list {
  display: grid;
  gap: 0.9rem;
}

.promise-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: var(--text);
  font-weight: 500;
}

.promise-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--red-bright);
  margin-top: 3px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.split-copy {
  padding-top: 0.4rem;
}

.split img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* ---------- Store badges ---------- */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.store-badges img {
  height: 54px;
  width: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badges a:hover img {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-row input,
.form-row textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red-bright);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn {
  justify-self: start;
}

.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-self: stretch;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text);
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-info-item:hover {
  border-color: var(--red-bright);
  transform: translateY(-2px);
}

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

.contact-info-item > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-info-item > span:last-child > span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(226, 20, 31, 0.25), rgba(226, 20, 31, 0.05));
  color: var(--red-bright);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer-col {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  max-width: 34ch;
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--red-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .split.reverse .split-media {
    order: -1;
  }

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

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .footer-col {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }
}

@media (max-width: 720px) {
  .hero-scrim {
    background:
      linear-gradient(90deg, var(--bg) 0%, rgba(10, 10, 12, 0.92) 55%, rgba(10, 10, 12, 0.75) 100%),
      linear-gradient(0deg, var(--bg) 0%, transparent 22%, transparent 80%, var(--bg) 100%);
  }

  .header-grid {
    grid-template-columns: auto 1fr auto;
  }

  .header-grid .nav-links {
    border: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100svh - var(--header-h));
    z-index: 500;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: var(--bg);
    padding: 0.5rem 1.5rem 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow-y: auto;
  }

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

  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .gallery figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery figure:nth-child(2) { grid-column: span 1; }
  .gallery figure:nth-child(3) { grid-column: span 1; }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }
}
