:root {
  --color-bg: #080808;
  --color-surface: #111111;
  --color-surface-2: #1a1a1a;
  --color-accent: #1565c0;
  --color-accent-hover: #0d47a1;
  --color-accent-on-dark: #5daadc;
  --color-accent-2: #F2C94C;
  --color-text: #f0f0f0;
  --color-text-muted: #8c8c8c;
  --color-border: rgba(255,255,255,0.07);
  --color-nav-bg: rgba(8,8,8,0.90);
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.25s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --container-max: 1280px;
  --container-px: clamp(1.5rem, 5vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ===========================
   SKIP LINK
   =========================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: left var(--transition);
}

.skip-link:focus {
  left: 1rem;
  z-index: 9999;
}

/* ===========================
   CONTAINER
   =========================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* ===========================
   SECTIONS
   =========================== */
.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  background-color: var(--color-bg);
}

.section--alt {
  background-color: var(--color-surface);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(1.25rem, 3vw, 3rem);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  padding-bottom: 0.75rem;
}
.section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}
/* Center the underline for centered headers */
.section__header--centered .section__title::after,
.section__header:not(.section__header--split) .section__title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section__subtitle {
  margin-top: 0.75rem;
  font-size: clamp(0.95rem, 2.5vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(8, 8, 8, 0.98);
  box-shadow: var(--shadow);
}

.nav__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem var(--container-px);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.nav__logo img {
  height: 5rem;
  width: auto;
  filter: invert(1);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  text-transform: uppercase;
  line-height: 1;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: var(--radius);
  transition: background var(--transition);
  z-index: 1001;
}

.nav__toggle:hover {
  background: var(--color-border);
}

.nav__toggle-line {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

.nav--open .nav__toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav--open .nav__toggle-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav--open .nav__toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav__item {
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 1px;
}

.nav__link:hover {
  color: var(--color-accent);
  background: rgba(45, 156, 219, 0.06);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link--active {
  color: var(--color-accent);
}

.nav__link--active::after {
  transform: scaleX(1);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav__cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(45, 156, 219, 0.4);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: #04080f;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  display: flex;
  align-items: center;
}

/* Full-bleed photo layer — background-image set by Hugo template */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.88;
  filter: brightness(1.0) contrast(1.05) saturate(0.90);
}

/* Split-hero leftover — hidden */
.hero--split .hero__inner,
.hero__text,
.hero__media,
.hero__photo,
.hero__media-caption,
.hero__grain {
  display: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(4,8,15,0.56) 0%, rgba(4,8,15,0.32) 55%, rgba(4,8,15,0.60) 100%),
    radial-gradient(ellipse 90% 70% at 50% 30%, rgba(45,156,219,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(45,156,219,0.6) 30%, rgba(45,156,219,0.8) 50%, rgba(45,156,219,0.6) 70%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem var(--container-px);
  max-width: 900px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-block;
  font-size: clamp(0.72rem, 1.8vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 9vw, 7rem);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.2rem, 13vw, 3rem); }
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  box-shadow: 0 6px 24px rgba(45, 156, 219, 0.45);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  border-color: #ffffff;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* ===========================
   SERVICES
   =========================== */
.services__grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 768px) {
  .services__grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
  }
  .service-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
  }
  .service-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .service-card__title {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
  }
  .service-card__desc,
  .service-card__text {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(45, 156, 219, 0.15);
  border-color: rgba(45, 156, 219, 0.2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(45, 156, 219, 0.12);
  border: 1px solid rgba(45, 156, 219, 0.45);
  border-radius: var(--radius);
  color: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(45, 156, 219, 0.10);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card__icon svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.service-card:hover .service-card__icon {
  background: rgba(45, 156, 219, 0.20);
  border-color: rgba(45, 156, 219, 0.6);
  box-shadow: 0 0 28px rgba(45, 156, 219, 0.18);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.2;
}

.service-card__text {
  font-size: 1.0rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  flex: 1;
}

/* ===========================
   CLIENTS
   =========================== */
.clients-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: var(--color-surface-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: 0 var(--container-px);
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.client-item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.05);
}

.client-item img {
  height: clamp(1.75rem, 4vw, 2.5rem);
  width: auto;
  object-fit: contain;
}

/* ===========================
   POSTS / BLOG
   =========================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

@media (max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .posts-grid { grid-template-columns: 1fr; }
}

.post-card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
  border-left-color: var(--color-accent);
  box-shadow: var(--shadow), -2px 0 0 var(--color-accent);
  transform: translateY(-2px);
}

.post-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* picture wrapper must be block so cards don't collapse */
.post-card picture {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.post-card picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card:hover .post-card__img {
  transform: scale(1.04);
}

.post-card__img-wrap {
  overflow: hidden;
  flex-shrink: 0;
}

/* ── Post card thumbnail (YouTube or image or placeholder) ── */
.post-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: #0a1626;
}
.post-card__thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.25s ease;
}
.post-card:hover .post-card__thumb-img {
  transform: scale(1.04);
  opacity: 0.85;
}
.post-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1626 0%, #111d33 50%, #0d2040 100%);
}
/* Play badge overlay on YouTube thumbnail cards */
.post-card__play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.post-card__play-icon {
  width: 56px;
  height: 40px;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
  transition: transform 0.15s ease, filter 0.15s ease;
}
.post-card:hover .post-card__play-icon {
  transform: scale(1.18);
  filter: drop-shadow(0 5px 20px rgba(0,0,0,0.85));
}

.post-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.post-card__date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.3;
  transition: color var(--transition);
}

.post-card:hover .post-card__title {
  color: var(--color-accent);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color var(--transition), gap var(--transition);
}

.post-card__link:hover {
  color: var(--color-accent-hover);
  gap: 0.625rem;
}

/* Full-card click zone — stretches the link to cover the entire card */
.post-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

/* ===========================
   SINGLE POST
   =========================== */
/* (post-header styles defined in SINGLE / INTERIOR PAGES section below) */

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--container-px);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-text);
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-top: 2.25em;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

.prose h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.prose h3 {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
}

.prose p {
  margin-bottom: 1.5em;
  color: rgba(240, 240, 240, 0.85);
}

.prose a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--color-accent-hover);
}

.prose strong {
  color: var(--color-text);
  font-weight: 700;
}

.prose em {
  color: var(--color-accent-2);
  font-style: italic;
}

.prose blockquote {
  border-left: 4px solid var(--color-accent);
  margin: 2em 0;
  padding: 1rem 1.5rem;
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.prose ul,
.prose ol {
  margin-bottom: 1.5em;
  padding-left: 1.75rem;
}

.prose li {
  margin-bottom: 0.5em;
  color: rgba(240, 240, 240, 0.85);
}

.prose img:not(.vid-thumb__img) {
  border-radius: var(--radius-lg);
  margin: 2em 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.prose code {
  background: var(--color-surface-2);
  color: var(--color-accent-2);
  padding: 0.2em 0.45em;
  border-radius: 0.25rem;
  font-size: 0.875em;
  font-family: 'Fira Code', 'Cascadia Code', monospace;
}

.prose pre {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 2em 0;
}

.prose pre code {
  background: none;
  padding: 0;
  color: var(--color-text);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5em 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  transition: color var(--transition), gap var(--transition);
}

.back-link:hover {
  color: var(--color-accent);
  gap: 0.75rem;
}

/* ===========================
   LIST PAGE
   =========================== */
.page-header {
  padding: clamp(6rem, 14vw, 10rem) 0 clamp(3rem, 6vw, 4rem);
  background: linear-gradient(180deg, #0d1b2a 0%, var(--color-bg) 100%);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1.05;
  margin-bottom: 0.875rem;
}

.page-header__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: #040404;
  border-top: 1px solid var(--color-border);
}
.footer-inner {
  padding-top: clamp(3rem, 7vw, 5rem);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 300px;
}
.footer-brand__logo-link { display: inline-block; }
.footer-brand__logo { max-width: 160px; height: auto; opacity: 0.9; }

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
}

.footer-brand__tagline {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 0.25rem;
}
.footer-brand__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
  margin-top: 0.25rem;
}
.footer-brand__location svg { flex-shrink: 0; opacity: 0.5; }

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav__title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 1rem;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav__link {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-nav__link--cta {
  color: var(--color-accent);
  font-weight: 600;
}
.footer-nav__link:hover { color: var(--color-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
}
.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.25);
  margin: 0;
}
.footer-bottom__sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,.2);
  margin: 0;
}
.footer-bottom__built-by {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,.18);
  margin: 0;
  padding: 0.4rem 0 0.9rem;
}
.footer-bottom__built-by a {
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom__built-by a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: unset; }
  .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
}

/* ===========================
   GHOST BUTTON
   =========================== */
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  text-shadow: none;
  font-weight: 500;
  min-height: 48px;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
}

/* Mobile: downplay ghost to a subtle secondary link */
@media (max-width: 768px) {
  .btn--ghost {
    font-size: 0.8rem;
    padding: 0.55rem 1.25rem;
    border-color: rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.65);
    min-height: 44px;
  }
}

/* ===========================
   NAVIGATION — RESPONSIVE
   =========================== */

/* Desktop: show menu, hide hamburger */
@media (min-width: 769px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}

/* Dropdown — desktop hover */
.nav__item--has-dropdown {
  position: relative;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  flex-direction: column;
  min-width: 200px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
  z-index: 200;
  gap: 0;
  /* Small padding-top so the dropdown connects flush to the trigger */
  padding-top: 0.5rem;
}

/* Invisible bridge fills the gap between trigger and dropdown */
.nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  /* Hover removed — dropdown is click-only (avoids gap-collapse over adjacent nav items) */
}

.nav__item--has-dropdown.nav__item--open .nav__dropdown {
  display: flex;
}

.nav__dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown-link:hover {
  background: rgba(45, 156, 219, 0.1);
  color: var(--color-accent);
}

/* Hire Me CTA in nav */
.nav__link--cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.4rem 1rem;
  margin-left: 0.5rem;
}

.nav__link--cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Full-page dimmer overlay — injected into body via JS to escape backdrop-filter stacking context */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 997;
  cursor: pointer;
}

.nav-overlay--active {
  display: block;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
    margin-left: auto; /* push to far right — nav__brand has a zero-size <nav> sibling that would center the button with space-between */
  }

  /* Menu hidden by default on mobile */
  .nav__menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* Fully opaque so page content does not bleed through */
    background: #07101f;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.75rem var(--container-px) 1.25rem;
    border-bottom: 2px solid rgba(45,156,219,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    gap: 0;
    list-style: none;
    margin: 0;
    z-index: 999;
    /* Allow scrolling when dropdown expands past viewport */
    max-height: calc(100svh - var(--nav-height, 4rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

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

  .nav__item {
    display: block;
    width: 100%;
  }

  .nav__link {
    display: block;
    width: 100%;
    padding: 0.75rem 0.75rem;
    white-space: normal;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav__link--cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    margin-left: 0;
  }

  /* Dropdown: collapsed by default on mobile, toggled via JS */
  .nav__item--has-dropdown .nav__dropdown {
    display: flex;
    flex-direction: column;
    position: static;
    background: rgba(45,156,219,0.07);
    box-shadow: none;
    border: none;
    border-left: 2px solid rgba(45,156,219,0.35);
    padding: 0 0 0 0.5rem;
    margin: 0 0 0.25rem 0.75rem;
    list-style: none;
    pointer-events: none;
    /* Smooth expand — collapsed by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.2s ease;
  }

  .nav__item--has-dropdown.nav__item--open .nav__dropdown {
    max-height: 500px;
    overflow: visible;
    opacity: 1;
    padding: 0.25rem 0 0.5rem 0.5rem;
    pointer-events: auto;
  }

  .nav__dropdown-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    border-left: none;
  }

  .nav__dropdown-link:hover {
    color: #ffffff;
    background: rgba(45,156,219,0.1);
  }

  /* Dropdown toggle arrow on mobile — reset base ::after (underline indicator) and render as inline chevron */
  .nav__item--has-dropdown > .nav__link::after {
    content: '';
    position: static;
    display: inline-block;
    width: 0;
    height: 0;
    bottom: auto;
    left: auto;
    right: auto;
    background: none;
    transform: none;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255,255,255,0.55);
    margin-left: 0.5rem;
    vertical-align: middle;
    transition: transform 0.2s;
  }

  .nav__item--has-dropdown.nav__item--open > .nav__link::after {
    transform: rotate(180deg);
  }
}

/* ===========================
   SPLIT HERO LAYOUT — cinematic full-bleed with directional overlay
   =========================== */
.hero--split {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  background: linear-gradient(135deg, #04080f 0%, #08122a 60%, #0b1835 100%);
  overflow: hidden;
}

.hero--split .hero__bg-photo {
  display: none;
}

.hero--split::before {
  content: none;
}

/* Cinematic directional overlay: dark on left (text), lighter right reveals photo */
.hero--split::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Left panel — solid cover for text legibility */
    linear-gradient(
      to right,
      rgba(4, 8, 15, 0.95) 0%,
      rgba(4, 8, 15, 0.75) 30%,
      rgba(4, 8, 15, 0.30) 52%,
      rgba(4, 8, 15, 0.00) 70%
    ),
    /* Bottom panel — full cover all the way across */
    linear-gradient(
      to top,
      rgba(4, 8, 15, 1.00) 0%,
      rgba(4, 8, 15, 0.90) 10%,
      rgba(4, 8, 15, 0.55) 28%,
      rgba(4, 8, 15, 0.00) 52%
    );
  z-index: 1;
  pointer-events: none;
}

/* Inner wrapper */
.hero__split-inner {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 0 var(--container-px);
  max-width: 1200px;
  margin: 0 auto;
  pointer-events: none;
}

.hero__split-inner > * {
  pointer-events: auto;
}

/* Photo: full-bleed absolute background */
.hero__photo-col {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Mobile background picture — hidden on desktop */
.hero__mob-bg-picture { display: none; }

.hero__portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 0;
  display: block;
  opacity: 0.92;
  will-change: auto;
}

.hero__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 6rem 3rem;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 660px;
  background: linear-gradient(to right, rgba(4,8,15,0.82) 0%, rgba(4,8,15,0.60) 50%, rgba(4,8,15,0.00) 100%);
  border-radius: 0;
  margin-left: 0;
}

.hero__text-col .hero__eyebrow {
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero__text-col .hero__title {
  font-size: clamp(3rem, 6vw, 6.5rem);
  text-align: left;
  margin-bottom: 1.25rem;
  line-height: 0.95;
  text-shadow: 0 2px 24px rgba(4,8,15,0.7), 0 1px 4px rgba(4,8,15,0.5);
}

.hero__text-col .hero__subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 12px rgba(4,8,15,0.6);
}

.hero__text-col .hero__actions {
  justify-content: flex-start;
}

/* Hire Me button — white bg, dark text with thin black outline */
.hero__text-col .hero__actions .btn--ghost {
  background: #ffffff;
  color: #04080f;
  border-color: #ffffff;
  text-shadow: none;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero__text-col .hero__actions .btn--ghost:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: #04080f;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  /* On mobile, swap to CSS background-image (same approach as sterlingsignco).
     A CSS background is bound to the element's own box — it cannot be
     independently composited by iOS Safari, so the address-bar transition
     never causes the "zoom" artefact that a position:absolute <img> produces. */
  .hero--split {
    height: 100vh;   /* fallback */
    height: 100svh;  /* stable viewport height */
    min-height: 0;
    max-height: -webkit-fill-available;
    padding-top: 0;
    padding-bottom: 0;
    align-items: flex-end;
    overflow: hidden;
  }

  /* Mobile background picture element — replaces CSS background-image var() trick */
  .hero__mob-bg-picture {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .hero__mob-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    display: block;
  }

  /* Bottom-to-top scrim: photo visible at top, readable text zone at bottom */
  .hero--split::after {
    background: linear-gradient(
      to bottom,
      rgba(4, 8, 15, 0.04) 0%,
      rgba(4, 8, 15, 0.04) 35%,
      rgba(4, 8, 15, 0.68) 62%,
      rgba(4, 8, 15, 0.93) 100%
    );
  }

  .hero__split-inner {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 3rem;
    width: 100%;
  }

  /* Brighter photo — the skyline should be the hero */
  .hero__portrait {
    opacity: 0.82;
    object-position: center 8%;
  }

  /* Hide the desktop photo col on mobile — mob-bg-picture handles the background */
  .hero__photo-col {
    display: none;
  }

  .hero__text-col {
    padding: 0 1.5rem 1rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
    background: none; /* scrim handled by ::after */
    position: relative;
    z-index: 2;
  }

  .hero__text-col .hero__eyebrow {
    font-size: clamp(0.68rem, 2.2vw, 0.76rem);
    letter-spacing: 0.04em;
    white-space: normal;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100vw - 3rem);
    line-height: 1.55;
    margin-bottom: 1rem;
  }

  .hero__text-col .hero__title {
    font-size: clamp(2.6rem, 10.5vw, 4rem);
    text-align: center;
    text-shadow: 0 2px 28px rgba(4,8,15,0.9), 0 1px 8px rgba(4,8,15,0.7);
    margin-bottom: 1rem;
  }

  .hero__text-col .hero__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.93);
    text-shadow: 0 1px 18px rgba(4,8,15,0.85);
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  /* Buttons: side by side — equal width */
  .hero__text-col .hero__actions {
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .hero__text-col .hero__actions .btn {
    flex: 1;
    min-width: 0;
    font-size: 0.82rem;
    padding: 0.8rem 0.75rem;
    letter-spacing: 0.04em;
  }
}

/* ===========================
   CLIENTS STRIP
   =========================== */
.clients-strip {
  background: #f8f9fb;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 2.5rem 0;
}

.clients-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  overflow-x: hidden;
}

.clients-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 30, 50, 0.72);
  white-space: nowrap;
  margin: 0;
  flex-shrink: 0;
  padding-right: 1rem;
  border-right: 1px solid rgba(20, 30, 50, 0.15);
}

.clients-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 80px;
}

.client-logo {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1) opacity(0.7);
  transition: filter 0.2s;
}

.client-logo:hover {
  filter: grayscale(0) contrast(1) opacity(1);
}

.logo-cell .brand-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 30, 50, 0.65);
  white-space: nowrap;
  padding: 0.35rem 0.65rem;
  border: 1.5px solid rgba(20, 30, 50, 0.25);
  border-radius: 3px;
  line-height: 1;
}

.logo-cell .brand-name--natgeo {
  background: #FFCC00;
  color: #1a1008;
  border-color: #e6b800;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.82rem;
  font-style: italic;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
}

/* ===========================
   ABOUT / STAT CARDS
   =========================== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .about__inner {
    gap: 2rem;
  }
}

/* Stats as horizontal full-width band of 4 */
.section--stats {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--color-dark);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(45, 156, 219, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0;
  background: linear-gradient(135deg, rgba(45, 156, 219, 0.10) 0%, rgba(11, 24, 53, 0.60) 100%);
}

.stat-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(45, 156, 219, 0.15);
  border-left: none;
  border-radius: 0;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card__num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(45, 156, 219, 0.55);
}

.stat-card__label {
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.2;
}

@media (max-width: 600px) {
  .about__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2) {
    border-right: none;
  }

  /* Mobile logo bar: centered column layout */
  .clients-strip .container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .clients-strip__label {
    border-right: none;
    padding-right: 0;
    text-align: center;
  }

  .clients-strip__logos {
    width: 100%;
    justify-content: center;
    gap: 0.75rem 1.25rem;
  }

  .logo-cell {
    height: 36px;
    min-width: 72px;
  }
}

.about__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: 0.6rem;
}

.about__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1.2rem;
}

.about__body {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
}

.about__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about__highlights li {
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.about__highlights li strong {
  color: #fff;
}

/* ===========================
   EQUIPMENT BRANDS GRID
   =========================== */
.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2.5rem 2rem;
  padding: 1rem 0;
  max-width: 720px;
  margin: 0 auto;
}

.brands__logo {
  height: 38px;
  max-width: 150px;
  width: auto;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.8);
  object-fit: contain;
  transition: opacity 0.3s, filter 0.3s;
}

.brands__logo:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

@media (max-width: 600px) {
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

/* ===========================
   WORK GRID (magazine layout)
   =========================== */
.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 380px 380px;
  gap: 1.25rem;
}

.work-card--feature {
  grid-row: span 2;
}

@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .work-card--feature {
    grid-row: auto;
  }
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #0a1628;
  display: block;
}

.work-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card__img {
  transform: scale(1.04);
}

.work-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top,
    rgba(4, 8, 15, 0.98) 0%,
    rgba(4, 8, 15, 0.95) 30%,
    rgba(4, 8, 15, 0.80) 55%,
    rgba(4, 8, 15, 0.55) 75%,
    rgba(4, 8, 15, 0.20) 90%,
    transparent 100%);
}

.work-card__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(4, 8, 15, 0.72);
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.work-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.work-card__excerpt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}

.work-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-card__link:hover {
  color: #fff;
}

/* ===========================
   SECTION TITLE (canonical)
   =========================== */
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.05;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.about__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

/* Service card title stronger contrast */
.service-card__title {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: #ffffff;
  letter-spacing: 0.06em;
}

.service-card__text {
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.875rem;
}

.section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section__header--centered .section__title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===========================
   SINGLE / INTERIOR PAGES
   =========================== */

/* Compact header used on all single pages */
.post-header {
  padding: calc(var(--nav-height, 4rem) + 3.5rem) 0 3rem;
  background: linear-gradient(160deg, #04080f 0%, #08122a 55%, #0b1835 100%);
  text-align: center;
  border-bottom: 1px solid rgba(45, 156, 219, 0.18);
}

.post-header__inner {
  max-width: 820px;
  margin: 0 auto;
}

.post-header__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.post-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 auto 0.5rem;
}

.post-header__subtitle {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.60);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* Wider prose for interior pages */
.page-prose {
  max-width: 780px;
  padding-top: 1.75rem;
  padding-bottom: 3rem;
}

/* When a YouTube embed is the first element in prose, remove its top margin */
.page-prose > .yt-facade:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .page-prose {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

/* ── Blog post navigation bar (back link + date) ─────────────────────────── */
.post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2.5rem;
  padding-bottom: 0;
  max-width: 780px;
}

.post-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition), gap var(--transition);
}

.post-nav__back:hover { color: var(--color-accent); gap: 0.625rem; }

.post-nav__back svg { flex-shrink: 0; }

.post-nav__date {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ── Visual separator + breathing room between video and body text ───────── */
.page-prose > .yt-facade + p,
.page-prose > .yt-facade__iframe + p {
  padding-top: 2rem;
  margin-top: 0;
  border-top: 1px solid rgba(45, 156, 219, 0.2);
}

/* ── Blog post readability — lead paragraph ──────────────────────────────── */
.page-prose > p:first-of-type {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  color: rgba(240, 248, 255, 0.97);
  line-height: 1.9;
  font-weight: 400;
}

/* ── Experience category pages — network / brand nameplates ──────────────── */
/* Compact left-bordered label replaces generic big article subheading */
.page-prose h2 {
  font-size: clamp(0.6875rem, 1.4vw, 0.8125rem);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(93, 170, 220, 0.07);
  border: none;
  border-left: 3px solid var(--color-accent-on-dark);
  border-bottom: none;
  padding: 0.45rem 0.9rem;
  margin-top: 2.5rem;
  margin-bottom: 0.625rem;
  border-radius: 0 3px 3px 0;
  line-height: 1.4;
}

/* Extra breathing room before the first network label */
.page-prose > p:first-child + h2 {
  margin-top: 3.25rem;
}

/* Show/episode listings grouped under a network label */
.page-prose h2 + p {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 0.25rem;
  color: rgba(200, 220, 240, 0.82);
}

/* Show / film titles */
.page-prose h2 + p strong {
  color: rgba(240, 248, 255, 0.96);
  font-weight: 700;
}

/* Production company / studio name — keep amber accent */
.page-prose h2 + p em {
  font-style: normal;
  color: var(--color-accent-2);
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}

/* ── Footer Reilly Media credit ─────────────────────────────────────────── */
.footer-rm-link { display: inline-flex; align-items: center; gap: 0.45rem; }
.footer-rm-mark { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; background: #fff; color: #0c0e14; border-radius: 4px; font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: 0.02em; flex-shrink: 0; opacity: 1; }

/* ── Blog post metadata card (Network / Role / Year) ─────────────────────── */
.post-meta {
  margin-top: 2.75rem;
  padding: 1.375rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 2.4;
  color: var(--color-text-muted);
}

.post-meta strong {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--color-accent);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  vertical-align: middle;
}

/* ── Blog post pagination (prev / next) ──────────────────────────────────── */
.post-pagination {
  max-width: 780px;
  padding-top: 0;
  padding-bottom: 3rem;
}

.post-pagination__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.post-pagination__item {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  max-width: 48%;
}

.post-pagination__item--next {
  padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  text-align: right;
}

.post-pagination__item:hover {
  background: rgba(45, 156, 219, 0.07);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.post-pagination__arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.post-pagination__item:hover .post-pagination__arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.post-pagination__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.post-pagination__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1;
}

.post-pagination__title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.post-pagination__item:hover .post-pagination__title { color: var(--color-accent); }

.post-pagination__spacer { display: block; }

@media (max-width: 640px) {
  .post-pagination__inner { flex-direction: column; gap: 0.75rem; }
  .post-pagination__item { max-width: 100%; width: 100%; box-sizing: border-box; }
  .post-pagination__item--next { flex-direction: row; text-align: left; padding: 0.75rem 0.75rem 0.75rem 1.25rem; justify-content: space-between; }
  .post-pagination__text { flex: 1; min-width: 0; }
  .post-pagination__title { max-width: none; white-space: normal; }
}

/* CTA band at bottom of pages */
.section--cta-band {
  background: linear-gradient(135deg, #05101d 0%, #071526 100%);
  border-top: 1px solid rgba(45, 156, 219, 0.18);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cta-band__text {
  flex: 1 1 auto;
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  line-height: 1.05;
}

.cta-band__sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section--cta-band {
    padding: 3rem 0;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
  }

  .cta-band__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-band__title {
    margin-bottom: 0;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .cta-band__sub {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .cta-band__inner .btn {
    align-self: center;
    width: fit-content;
    padding: 0.875rem 2rem;
  }
}

/* ===========================
   HIRE PAGE (schedule-location-sound)
   =========================== */

.hire-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: linear-gradient(150deg, #04080f 0%, #08122a 50%, #0b1835 100%);
  border-bottom: 1px solid rgba(45, 156, 219, 0.18);
  text-align: center;
  padding: calc(var(--nav-height, 4rem) + 4rem) 0 5rem;
}

.hire-hero__inner {
  max-width: 780px;
  margin: 0 auto;
}

.hire-hero__eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  padding: 0.3rem 1rem;
  border: 1px solid rgba(45, 156, 219, 0.4);
  border-radius: 2rem;
}

.hire-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hire-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hire-hero__cta {
  font-size: 1.125rem;
  padding: 0.875rem 2.5rem;
}

/* Hire cards */
.hire-info {
  background: var(--color-bg);
}

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

@media (max-width: 900px) {
  .hire-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hire-card {
  background: rgba(45, 156, 219, 0.06);
  border: 1px solid rgba(45, 156, 219, 0.18);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hire-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(45, 156, 219, 0.12);
  border: 1px solid rgba(45, 156, 219, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.hire-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.hire-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.hire-card__body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin: 0;
}

.hire-card__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-top: auto;
}

.hire-card__link:hover {
  color: var(--color-accent-hover);
}

.hire-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(45, 156, 219, 0.35);
  border-radius: 3px;
  padding: 0.2rem 0.7rem;
  margin-top: auto;
}

/* Hire gear list */
.hire-gear {
  background: linear-gradient(135deg, #05101d 0%, #071526 100%);
  border-top: 1px solid rgba(45, 156, 219, 0.15);
}

.hire-gear__inner {
  max-width: 700px;
}

.hire-gear__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hire-gear__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.hire-gear__list li {
  padding-left: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}

.hire-gear__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.6rem;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--radius);
  color: var(--color-accent);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ── Hire — Booking Form ─────────────────────────────────────────────────── */
.hire-form-section { background: #0d0d0d; }
.hire-form__inner { max-width: 780px; }
.hire-form__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.hire-form__sub { color: rgba(255,255,255,0.5); font-size: 0.9375rem; margin-bottom: 2.5rem; }
.hire-form { display: flex; flex-direction: column; gap: 1.25rem; }
.hire-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.hire-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.hire-form__field--full { grid-column: 1 / -1; }
.hire-form__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.hire-form__label span { color: var(--color-accent-on-dark); }
.hire-form__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.65rem 0.875rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.hire-form__input::placeholder { color: rgba(255,255,255,0.22); }
.hire-form__input:focus { outline: none; border-color: var(--color-accent-on-dark); background: rgba(255,255,255,0.07); }
.hire-form__select { cursor: pointer; }
.hire-form__select option { background: #1a1a1a; color: #fff; }
.hire-form__textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.hire-form__actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hire-form__status { font-size: 0.875rem; margin: 0; }
.hire-form__status--success { color: #4ade80; }
.hire-form__status--error   { color: #f87171; }
.hire-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
@media (max-width: 560px) {
  .hire-form__row { grid-template-columns: 1fr; }
}

/* ── Selected Credits Grid ──────────────────────────────────────── */
.section--credits { background: var(--color-dark); }

.cat-featured {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}

.cat-featured__heading {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .credits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .credits-grid { grid-template-columns: 1fr; } }

/* ── Work page category filter pills ───────────────────────────── */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.work-filter {
  padding: 0.4375rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.work-filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.work-filter--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.work-filter--active:hover {
  background: var(--color-accent-hover, var(--color-accent));
  border-color: var(--color-accent-hover, var(--color-accent));
  color: #fff;
}
.work-filter-count {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  min-height: 1.25rem;
}
.work-empty-state {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-text-muted);
  font-size: 1rem;
}
/* Hide filtered-out cards */
.credit-video-card[hidden] { display: none; }

.credit-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.credit-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.credit-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1626;
}

.credit-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.credit-card:hover .credit-card__img { transform: scale(1.04); }

.credit-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1626 0%, #0d2040 100%);
}

.credit-card__network {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
}

.credit-card__body {
  padding: 1.0625rem 1.25rem 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex-grow: 1;
}

.credit-card__tag {
  font-size: 0.5875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(45, 156, 219, 0.1);
  border: 1px solid rgba(45, 156, 219, 0.2);
  border-radius: 3px;
  padding: 0.175rem 0.5rem;
  display: inline-flex;
  align-self: flex-start;
}

.credit-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(240, 245, 255, 0.92);
  margin: 0;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.credit-card:hover .credit-card__title { color: var(--color-accent); }

/* ── Credit video card (homepage yt-facade + post link) ────────── */
.credit-video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.credit-video-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
/* Suppress default yt-facade vertical margin inside card */
.credit-video-card .yt-facade { margin: 0; }
/* Iframe sits flush at top of card after play */
.credit-video-card .yt-facade__iframe { margin: 0; border-radius: 0; }

/* ── No-embed cards (NFL Films etc.) — open YouTube in new tab ───── */
/* Show "Watch on YouTube ↗" hint on hover so users know it opens externally */
.yt-facade--link-out .vid-thumb::after {
  content: 'Watch on YouTube \2197';
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.72);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.yt-facade--link-out:hover .vid-thumb::after,
.yt-facade--link-out:focus-within .vid-thumb::after { opacity: 1; }
.credit-video-card__body {
  padding: 0.75rem 1rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.credit-video-card__link {
  margin-top: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity var(--transition);
}
.credit-video-card__link:hover { opacity: 0.7; }

/* ── 404 Page ───────────────────────────────────────────────────── */
.error-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-404__inner {
  max-width: 600px;
  padding: var(--space-16) var(--container-padding);
}
.error-404__code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  line-height: 1;
  color: var(--color-accent);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.05em;
}
.error-404__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.05em;
}
.error-404__message {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin: 0 0 var(--space-8);
}

/* ── YouTube click-to-play embed (credit-card layout + play button) ───────── */
/* Thumbnail fetched at build time via Hugo — zero YouTube requests on page load */
.yt-facade {
  margin: 2.5rem 0;
}
.yt-facade:focus-within .vid-thumb {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
/* Inner wrapper — mirrors .credit-card__img-wrap exactly */
.vid-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1626;
  border-radius: 12px;
  cursor: pointer;
}
.vid-thumb__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
  margin: 0;
}
.vid-thumb:hover .vid-thumb__img {
  transform: scale(1.04);
  opacity: 0.85;
}
.vid-thumb__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1626 0%, #0d2040 100%);
}
.vid-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1;
}
.vid-thumb__play-icon {
  width: 72px;
  height: 51px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.55));
  transition: transform 0.15s ease, filter 0.15s ease;
}
@media (min-width: 900px) {
  .vid-thumb__play-icon { width: 48px; height: 34px; }
}
.vid-thumb:hover .vid-thumb__play-icon,
.vid-thumb__play:focus .vid-thumb__play-icon {
  transform: scale(1.14);
  filter: drop-shadow(0 5px 22px rgba(0,0,0,0.8));
}
/* Iframe that replaces the facade after user clicks play */
.yt-facade__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 12px;
  margin: 2.5rem 0;
}

/* ── Internal page hero banner ────────────────────────────────────────────── */
.page-hero {
  position: relative !important;
  min-height: 45vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
}
@media (max-width: 768px) {
  .page-hero {
    min-height: 52vh !important;
    align-items: flex-start !important;
  }
}
.page-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center 35% !important;
  background-repeat: no-repeat !important;
  opacity: 0.55 !important;
}
.page-hero__bg-picture {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  opacity: 0.55 !important;
}
.page-hero__bg-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: right bottom !important;
  display: block !important;
}
.page-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.45) 100%
  ) !important;
}
.page-hero__content {
  position: relative !important;
  z-index: 2 !important;
  padding: 9rem var(--container-padding, 1.5rem) 4rem !important;
}
@media (max-width: 768px) {
  .page-hero__content {
    padding: 10.5rem var(--container-px, 1.5rem) 3rem !important;
  }
}
.page-hero__eyebrow {
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--color-accent) !important;
  margin: 0 0 0.75rem !important;
}
.page-hero__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.25rem, 6vw, 4rem) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  line-height: 1.05 !important;
  margin: 0 0 0.5rem !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6) !important;
}
.page-hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
  color: rgba(255,255,255,0.80) !important;
  max-width: 600px !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}

/* ── Canary Drones page ────────────────────────────────────────────────── */

/* Hero */
.drone-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--color-dark);
}
.drone-hero__bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.drone-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 640px) {
  .drone-hero__bg-img {
    object-position: center top;
  }
}
@media (max-width: 900px) {
  .drone-hero {
    min-height: 80vh;
  }
}
@media (max-width: 640px) {
  .drone-hero {
    min-height: 70vh;
  }
}
.drone-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(4,8,15,.88) 0%,
      rgba(4,8,15,.72) 40%,
      rgba(4,8,15,.48) 72%,
      rgba(4,8,15,.18) 100%
    );
  z-index: 1;
}
.drone-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 1.5rem;
}
@media (max-width: 640px) {
  .drone-hero__content {
    padding-top: 8rem; /* 128px — clears 113px fixed nav with breathing room */
  }
}
.drone-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
}
.drone-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.25rem;
}
.drone-hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.7);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.drone-hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn--ghost:hover { border-color: var(--color-accent); background: rgba(45,156,219,.1); }

/* Credentials bar */
.drone-creds {
  background: #0a1628;
  border-top: 1px solid rgba(45,156,219,.2);
  border-bottom: 1px solid rgba(45,156,219,.2);
  padding: 2rem 0;
}
.drone-creds__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.drone-cred {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: rgba(255,255,255,.85);
}
.drone-cred__icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  stroke: var(--color-accent);
}
.drone-cred strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
.drone-cred span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
}
@media (max-width: 900px) {
  .drone-creds__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .drone-creds__grid { grid-template-columns: 1fr; }
}

/* Services section */
.drone-services { background: var(--color-dark); }
.drone-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.drone-svc-card {
  background: #0d1b2a;
  border: 1px solid rgba(45,156,219,.15);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
.drone-svc-card:hover {
  border-color: rgba(45,156,219,.45);
  transform: translateY(-3px);
}
.drone-svc-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem;
  background: rgba(45,156,219,.12);
  border-radius: 6px;
}
.drone-svc-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent);
}
.drone-svc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.75rem;
}
.drone-svc-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.drone-svc-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.drone-svc-card__features li {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  padding-left: 1.1rem;
  position: relative;
}
.drone-svc-card__features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.7rem;
}
@media (max-width: 900px) {
  .drone-services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .drone-services__grid { grid-template-columns: 1fr; }
}

/* About section */
.drone-about { background: #06111f; }
.drone-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.drone-about__image-col { position: relative; }
.drone-about__img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  max-height: 620px;
  object-position: center 15%;
}
.drone-about__text-col h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.5rem;
}
.drone-about__text-col p {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin: 0 0 1rem;
}
.drone-about__text-col p strong { color: #fff; }
.drone-about__creds {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.drone-about__cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.drone-about__cred svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  stroke: var(--color-accent);
}
.drone-about__quote {
  border-left: 3px solid var(--color-accent);
  margin: 1.5rem 0 0;
  padding: 0.75rem 1.25rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .drone-about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .drone-about__image-col { order: -1; }
  .drone-about__img { max-height: 420px; }
}

/* CTA section */
.drone-cta {
  background: linear-gradient(135deg, #0a1628 0%, #04080f 100%);
  border-top: 1px solid rgba(45,156,219,.2);
  text-align: center;
}
.drone-cta__inner { max-width: 640px; margin: 0 auto; }
.drone-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.drone-cta p {
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin: 0 0 2rem;
}
.drone-cta__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.drone-cta__detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.drone-cta__detail svg { width: 1.25rem; height: 1.25rem; stroke: var(--color-accent); }
.drone-cta__detail:hover { color: var(--color-accent); }
.btn--lg { padding: 0.875rem 2.25rem; font-size: 0.95rem; }
.eyebrow--light { color: var(--color-accent); }

/* ── On Location photo grid ───────────────────────────────────────────── */
.on-location { background: var(--color-dark); }
.on-location .section__header { margin-bottom: 2.5rem; }
.on-location__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.on-location__item { position: relative; overflow: hidden; border-radius: 8px; margin: 0; aspect-ratio: 3/4; }
.on-location__item picture { display: block; width: 100%; height: 100%; }
.on-location__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.on-location__item:hover img { transform: scale(1.04); }
.on-location__item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(transparent, rgba(4,8,15,.75));
  color: rgba(255,255,255,.8);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .on-location__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .on-location__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Equipment Page ───────────────────────────────────────────────────── */

/* Package cards */
.equip-packages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.equip-pkg {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s ease;
}
.equip-pkg:hover { border-color: rgba(45,156,219,.4); }
.equip-pkg__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(45,156,219,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.equip-pkg__icon { width: 26px; height: 26px; stroke: var(--color-accent); }
.equip-pkg__title { font-family: var(--font-heading); font-size: clamp(1.4rem,2.5vw,2rem); letter-spacing: 0.04em; color: var(--color-text); margin: 0; }
.equip-pkg__body { color: var(--color-text-muted); line-height: 1.7; margin: 0; }
.equip-pkg__body a { color: var(--color-accent); text-decoration: none; }
.equip-pkg__body a:hover { text-decoration: underline; }
.equip-pkg__tags {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.equip-pkg__tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(45,156,219,.1);
  color: var(--color-accent);
  border: 1px solid rgba(45,156,219,.25);
}

/* Gear grid */
.equip-gear__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.equip-gear__card {
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.equip-gear__card:hover { border-color: rgba(45,156,219,.35); transform: translateY(-2px); }
.equip-gear__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.equip-gear__logo-wrap {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.equip-gear__logo { max-height: 36px; max-width: 160px; width: auto; height: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.equip-gear__name { font-family: var(--font-heading); font-size: 1.15rem; letter-spacing: 0.04em; color: var(--color-text); margin: 0; }
.equip-gear__desc { font-size: 0.88rem; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

/* Responsive */
@media (max-width: 768px) {
  .equip-packages__grid { grid-template-columns: 1fr; }
  .equip-gear__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .equip-gear__grid { grid-template-columns: 1fr; }
  .equip-pkg { padding: 1.75rem; }
}

/* ── Overview / Experience Page ───────────────────────────────────────── */
.overview-stats {
  background: #0b1622;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.overview-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.overview-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.overview-stat:last-child { border-right: none; }
.overview-stat__num {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: 0.03em;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.overview-stat__label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.overview-lead { padding-block: 4rem; background: var(--color-dark); }
.overview-lead__inner { max-width: 760px; }
.overview-lead__text {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.8;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.5rem;
  margin: 0;
}

.overview-formats { background: var(--color-dark); }
.overview-formats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 0;
}
.overview-fmt {
  background: var(--color-dark-2, #0f1a27);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.overview-fmt:hover {
  border-color: rgba(45,156,219,.25);
  box-shadow: 0 4px 24px rgba(45,156,219,.06);
}
.overview-fmt--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.overview-fmt--link:hover .overview-fmt__title {
  color: var(--color-accent);
}
.overview-fmt--link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.overview-fmt__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(45,156,219,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.overview-fmt__icon-wrap svg { stroke: var(--color-accent); }
.overview-fmt__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}
.overview-fmt__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
}
.overview-fmt__body {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.overview-fmt__credits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0;
}
.overview-fmt__credits li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
}
.overview-formats__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn--ghost:hover { background: var(--color-accent); color: var(--color-dark); }

/* Overview responsive */
@media (max-width: 900px) {
  .overview-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .overview-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .overview-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.06); }
  .overview-stat:last-child, .overview-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 768px) {
  .overview-formats__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .overview-stats__grid { grid-template-columns: 1fr 1fr; }
  .overview-fmt { padding: 1.5rem; }
}

/* ── Credit List Page ─────────────────────────────────────────────────── */
.credits-section { background: var(--color-dark); }
.credits-section--alt { background: #080f18; }
.credits-section__header {
  margin-bottom: 2.5rem;
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
}
.credits-section__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.35rem;
}
.credits-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin: 0;
}

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

.credits-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s ease;
}
.credits-card:hover { border-color: rgba(45,156,219,.2); }

.credits-card__network {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.credits-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credits-card__list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.credits-card__show {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.credits-card__detail {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}
.credits-card__prod {
  font-size: 0.72rem;
  color: var(--color-accent);
  opacity: 0.8;
  font-style: italic;
}
.credits-card__sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,.3);
  margin-top: 0.1rem;
}

/* Credits responsive */
@media (max-width: 1024px) {
  .credits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .credits-grid { grid-template-columns: 1fr; }
  .credits-card { padding: 1.25rem; }
}
