:root {
  --bg: #292929;
  --panel: #4b4b4b;
  --muted: #777770;
  --accent: #f13223;
  --text: #f4f4f4;
  --text-dim: #d6d6d6;
  --ring: rgba(241, 50, 35, 0.35);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  --border-soft: 1px solid rgba(255, 255, 255, 0.06);
  --border-card: 1px solid rgba(255, 255, 255, 0.10);
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(241, 50, 35, 0.20), transparent 60%),
    radial-gradient(700px 500px at 90% 0%, rgba(241, 50, 35, 0.12), transparent 55%),
    linear-gradient(180deg, #1f1f1f, var(--bg));
  color: var(--text);
}

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

a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(241, 50, 35, 0.65);
}

.container,
.band__inner,
.page-hero__inner {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.content,
body .content {
  padding: 18px 0 36px;
}

body:has(.site-header.is-overlay) .content,
body.has-hero .content {
  padding-top: 0;
}

/* =========================
   HEADER / NAV
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(41, 41, 41, 0.78);
  border-bottom: var(--border-soft);
}

.site-header.is-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.brand-mark {
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(241, 50, 35, 0.12);
  transform: rotate(45deg);
}

.brand-text {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  color: var(--accent);
  font-weight: 950;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text-dim);
  text-decoration: none !important;
}

.nav-link:hover {
  background: rgba(75, 75, 75, 0.35);
  border-color: rgba(255, 255, 255, 0.10);
}

.nav-link.is-active {
  color: var(--text);
  border-color: rgba(241, 50, 35, 0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.site-header.is-overlay .nav-link {
  color: rgba(244, 244, 244, 0.88);
}

.site-header.is-overlay .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.site-header.is-overlay .nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

/* =========================
   TYPE / BUTTONS
========================= */

h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.lead {
  max-width: 70ch;
  margin: 0;
  color: var(--text-dim);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(75, 75, 75, 0.35);
  color: var(--text);
  font-weight: 800;
  text-decoration: none !important;
}

.btn:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-primary {
  background: var(--accent);
  border-color: rgba(241, 50, 35, 0.70);
  box-shadow: 0 10px 22px rgba(241, 50, 35, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost { background: transparent; }

.btn-pill {
  border-radius: 999px !important;
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

/* =========================
   FULL BLEED / BANDS
========================= */

.full-bleed {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}

.band {
  padding: clamp(48px, 6vw, 84px) 0;
}

.band--dark,
.band--graphic,
.band--solid,
.band--partners {
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
}

.band--dark {
  background: rgba(0, 0, 0, 0.25);
}

.band--graphic {
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(241, 50, 35, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(75, 75, 75, 0.35), rgba(41, 41, 41, 0.15));
}

.band--solid {
  background: #232323;
}

.band--partners {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.82);
}

/* =========================
   PAGE HERO
========================= */

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(420px, 62vh, 620px);
  padding: 120px 0 34px;
  background-image: var(--bg);
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.10)),
    radial-gradient(900px 600px at 20% 10%, rgba(241, 50, 35, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.80));
}

.page-hero__inner,
.hero-slide__content {
  position: relative;
}

.page-hero__kicker,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-hero__kicker::before,
.hero-kicker::before {
  content: "";
  width: 38px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  box-shadow: 0 0 0 4px rgba(241, 50, 35, 0.12);
}

.page-hero__title,
.hero-title {
  margin: 10px 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-hero__subtitle,
.hero-subtitle {
  color: rgba(244, 244, 244, 0.88);
  font-size: 16px;
}

.page-hero__subtitle {
  max-width: 70ch;
  margin: 0;
}

/* =========================
   HOME HERO CAROUSEL
========================= */

.hero-carousel {
  margin-top: 10px;
}

.hero-carousel__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  max-height: 97vh;
}

.hero-carousel__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(0%);
  transition: transform 500ms ease;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  display: grid;
  align-items: end;
  height: 100%;
  padding: 28px;
  background-image: var(--bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
  text-decoration: none !important;
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.10)),
    radial-gradient(900px 600px at 20% 10%, rgba(241, 50, 35, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.75));
}

.hero-slide__content {
  max-width: 720px;
}

.hero-subtitle {
  max-width: 68ch;
  margin: 0 0 16px;
}

.hero-cta,
.what-we-do__actions,
.about-split__actions,
.contact-card__actions,
.partner-block__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-carousel__btn {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(41, 41, 41, 0.55);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-carousel__btn:hover,
.social-btn:hover {
  border-color: rgba(241, 50, 35, 0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.hero-carousel__btn--left { left: 14px; }
.hero-carousel__btn--right { right: 14px; }

.hero-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.dot.is-active {
  background: var(--accent);
  border-color: rgba(241, 50, 35, 0.85);
  box-shadow: 0 0 0 4px rgba(241, 50, 35, 0.18);
}

/* =========================
   GENERIC SECTIONS
========================= */

.section-head { margin-bottom: 14px; }

.feature-grid,
.team-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.mini-card,
.contact-card {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(75, 75, 75, 0.28);
}

.split,
.what-we-do,
.about-split,
.partner-block__grid,
.partner-cta {
  display: grid;
  gap: 20px;
}

.split,
.what-we-do {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.mini-card {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(75, 75, 75, 0.22);
}

.mini-title {
  margin-bottom: 4px;
  font-weight: 950;
}

.mini-body { color: var(--text-dim); }

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(75, 75, 75, 0.22);
  color: var(--text-dim);
  font-weight: 900;
  letter-spacing: 0.10em;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 18px 0 28px;
  border-top: var(--border-soft);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-accent {
  color: rgba(241, 50, 35, 0.9);
  font-weight: 900;
}

/* =========================
   TEAM
========================= */

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.team-card {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  appearance: none;
  cursor: pointer;
}

.team-card__media,
.bm-modal__photoWrap,
.what-we-do__media,
.about-split__media,
.partner-block__shot {
  overflow: hidden;
}

.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  border: var(--border-card);
  background: rgba(75, 75, 75, 0.22);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.team-card__media img,
.bm-modal__photo,
.what-we-do__media img,
.about-split__media img,
.partner-block__shot,
.partner-block__logoimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__media img {
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.74)),
    radial-gradient(900px 600px at 20% 10%, rgba(241, 50, 35, 0.16), transparent 60%);
}

.team-card:hover .team-card__media {
  transform: translateY(-4px) rotate(-0.6deg);
  border-color: rgba(241, 50, 35, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  animation: bmWiggle 520ms ease-in-out;
}

.team-card:hover .team-card__media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

.team-card__meta {
  padding: 10px 8px 0;
}

.team-card__name {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.team-card__sub {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 12.5px;
}

@keyframes bmWiggle {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-3px) rotate(-0.8deg); }
  55%  { transform: translateY(-4px) rotate(0.9deg); }
  100% { transform: translateY(-4px) rotate(-0.6deg); }
}

/* =========================
   TEAM MODAL
========================= */

body.bm-modal-open {
  overflow: hidden;
}

.bm-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  overflow-y: auto;
  padding: 14px;
  -webkit-overflow-scrolling: touch;
}

.bm-modal.is-open {
  display: block;
}

.bm-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(6px);
  touch-action: manipulation;
}

.bm-modal__panel {
  position: relative;
  width: min(980px, calc(100% - 24px));
  margin: 56px auto;
  border-radius: 20px;
  border: var(--border-card);
  background: rgba(41, 41, 41, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  overflow: visible;
}

.bm-modal__close {
  position: sticky;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(244, 244, 244, 0.92);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.bm-modal__content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 16px;
  padding: 16px;
}

.bm-modal__photoWrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  border: var(--border-card);
  background: rgba(75, 75, 75, 0.22);
}

.bm-modal__name {
  margin: 6px 0 4px;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.bm-modal__title {
  margin-bottom: 12px;
  color: var(--text-dim);
  font-weight: 800;
}

.bm-modal__bio {
  margin: 0 0 14px;
  color: rgba(244, 244, 244, 0.88);
  line-height: 1.55;
}

.bm-modal__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn,
.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(75, 75, 75, 0.25);
  text-decoration: none !important;
}

.social-btn {
  border-radius: 12px;
}

.icon-btn {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.social-btn svg,
.icon {
  width: 20px;
  height: 20px;
  fill: rgba(244, 244, 244, 0.92);
}

/* =========================
   PARTNERS
========================= */

.partners-hero {
  display: flex;
  align-items: flex-end;
  min-height: 78vh;
  padding: 9rem 0 4.25rem;
  background-position: center;
  background-size: cover;
}

.partners-hero__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.partners-hero__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.partners-hero__title {
  margin: 0.65rem 0 0;
  font-size: clamp(2.1rem, 5.3vw, 4.25rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partners-hero__title--accent { opacity: 0.92; }

.partners-hero__subtitle {
  max-width: 62ch;
  margin: 1.15rem 0 1.75rem;
  font-size: 1.05rem;
  opacity: 0.88;
}

.partner-block {
  padding-top: 1.25rem;
}

.partner-block__top {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.partner-block__name {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.partner-block__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.partner-block__grid {
  grid-template-columns: 1fr 1.2fr;
  gap: 2.25rem;
  align-items: center;
}

.partner-block__logo {
  display: grid;
  place-items: center;
}

.partner-block__logoimg {
  width: min(520px, 100%);
  height: auto;
  object-fit: contain;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.45));
}

.partner-block__copy p {
  margin-top: 0;
  opacity: 0.92;
}

.partner-block__icons {
  margin-top: 1.1rem;
  gap: 0.6rem;
}

.partner-block__label {
  margin: 2.5rem 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
  text-transform: uppercase;
}

.partner-block__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.partner-block__shot {
  height: 360px;
  border-radius: 18px;
  border: var(--border-card);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.partner-cta {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 1.5rem;
}

.partner-cta__title {
  margin-top: 0;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.partner-cta__list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  opacity: 0.92;
}

.contact-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.contact-card__title { margin-top: 0; }

.contact-lines {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.contact-line {
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: var(--border-card);
  background: rgba(0, 0, 0, 0.18);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal--left { transform: translateX(-28px); }
.reveal--right { transform: translateX(28px); }
.reveal.is-visible { transform: translateX(0) translateY(0); opacity: 1; }

/* =========================
   HOME: WHAT WE DO
========================= */

.what-we-do {
  gap: clamp(20px, 4vw, 40px);
}

.what-we-do__content,
.about-split__content {
  display: flex;
  flex-direction: column;
}

.what-we-do__content {
  gap: 18px;
}

.what-we-do__content .section-head {
  margin-bottom: 0;
}

.what-we-do__actions,
.about-split__actions,
.contact-card__actions {
  gap: 12px;
}

.what-we-do__media,
.about-split__media {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: var(--border-card);
  box-shadow: var(--shadow);
}

.what-we-do__media {
  background: rgba(75, 75, 75, 0.22);
}

/* =========================
   ABOUT / STORY
========================= */

.about-split {
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: center;
}

.about-split__content {
  gap: 18px;
}

.about-split__actions {
  margin-top: 6px;
}

.about-split__media {
  background: rgba(255, 255, 255, 0.04);
}

.about-quote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-quote__text {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.5;
  font-weight: 700;
}

.about-split--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-split--reverse .about-split__media {
  order: -1;
}

.story-section .section-head {
  margin-bottom: 10px;
}

.story-section .section-head h2 {
  margin-bottom: 10px;
}

.story-section .about-split {
  align-items: center;
}

.story-section .about-split__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 30px;
}

@media (max-width: 900px) {
  .story-section .about-split__content {
    padding-top: 0;
  }
}

.story-section .section-head {
  margin-bottom: 0;
}

.story-section .section-head h2 {
  margin-bottom: 0;
}

.story-section .about-split__content p:first-of-type {
  margin-top: 0;
}

.story-section .about-split__content p {
  margin-bottom: 0;
}

.story-section .about-split__media{
  align-self: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1020px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .partners-hero {
    min-height: 70vh;
    padding: 7.5rem 0 3.25rem;
  }

  .partner-block__grid,
  .partner-block__gallery,
  .partner-cta {
    grid-template-columns: 1fr;
  }

  .partner-block__shot {
    height: 280px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .brand,
  .nav {
    justify-content: center;
  }

  .nav {
    gap: 8px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 14px;
  }

  .split,
  .what-we-do,
  .about-split,
  .about-split--reverse,
  .bm-modal__content {
    grid-template-columns: 1fr;
  }

  .about-split--reverse .about-split__media {
    order: 0;
  }
}

@media (max-width: 850px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-slide {
    padding: 22px 14px;
  }

  .hero-kicker {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero-kicker::before {
    width: 24px;
    height: 2px;
  }

  .hero-title {
    margin: 6px 0;
    font-size: 18px;
    line-height: 1.1;
  }

  .hero-subtitle {
    max-width: 85%;
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-cta {
    gap: 6px;
  }

  .btn {
    padding: 5px 9px;
    border-radius: 9px;
    font-size: 11px;
  }
}

@media (max-width: 700px) {
  .bm-modal__panel {
    margin: 18px auto;
  }
}

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

@media (max-width: 560px) {
  .header-inner {
    align-items: center;
  }

  .nav {
    gap: 8px;
  }

  .nav-link {
    padding: 7px 9px;
    font-size: 13px;
  }

  .brand-text {
    font-size: 13px;
    text-align: center;
  }
}

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

/* First story section: center image against text block */
.story-section .about-split{
  align-items: start; /* keep text behavior */
}

.story-section .about-split__media{
  align-self: center; /* <-- THIS is the fix */
}

/* =========================
   NEWS & MEDIA BLOG
========================= */

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.news-filters,
.news-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-filter-chip,
.news-tag,
.news-category-badge,
.news-date {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}

.news-filter-chip {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(75, 75, 75, 0.24);
  color: var(--text-dim);
  font-weight: 850;
  text-decoration: none !important;
}

.news-filter-chip.is-active,
.news-filter-chip:hover {
  color: var(--text);
  border-color: rgba(241, 50, 35, 0.55);
  box-shadow: 0 0 0 4px var(--ring);
}

.featured-post {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  margin-bottom: 22px;
  padding: 18px;
  border: var(--border-card);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
}

.featured-post__media,
.news-card__media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: var(--border-card);
  background: rgba(75, 75, 75, 0.22);
}

.featured-post__media {
  aspect-ratio: 16 / 10;
}

.news-card__media {
  aspect-ratio: 16 / 9;
}

.featured-post__media img,
.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.featured-post:hover .featured-post__media img,
.news-card:hover .news-card__media img {
  transform: scale(1.04);
}

.featured-post__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.featured-post__meta,
.news-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-category-badge {
  padding: 8px 10px;
  background: rgba(241, 50, 35, 0.14);
  border: 1px solid rgba(241, 50, 35, 0.32);
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-date {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-weight: 700;
}

.featured-post__title,
.news-card__title {
  margin: 0;
  line-height: 1.08;
}

.featured-post__title {
  font-size: clamp(28px, 3.2vw, 38px);
}

.news-card__title {
  font-size: 20px;
}

.featured-post__excerpt,
.news-card__excerpt,
.article-body {
  color: rgba(244, 244, 244, 0.88);
}

.news-tag {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
  font-weight: 700;
}

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

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: var(--border-card);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.article-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(380px, 60vh, 560px);
  padding: 120px 0 34px;
  background: linear-gradient(180deg, #191919, #111);
  background-position: center;
  background-size: cover;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.10)),
    radial-gradient(900px 600px at 20% 10%, rgba(241, 50, 35, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.86));
}

.article-hero__inner {
  position: relative;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.article-shell {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 22px;
  border: var(--border-card);
  background: rgba(0, 0, 0, 0.24);
  box-shadow: var(--shadow);
}

.article-body {
  font-size: 16px;
  line-height: 1.75;
}

.article-body p:first-child {
  margin-top: 0;
}

.article-related-list {
  display: grid;
  gap: 10px;
}

.article-related-item {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none !important;
}

.article-related-item__title {
  font-weight: 850;
}

.article-related-item__date {
  color: var(--text-dim);
  font-size: 13px;
}

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

@media (max-width: 900px) {
  .featured-post,
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .news-card-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   NEWS & MEDIA HARD FIXES
========================= */

.featured-post,
.news-card,
.article-shell,
.article-layout,
.article-hero,
.article-hero__inner,
.featured-post__content,
.news-card__body,
.article-body {
  opacity: 1 !important;
  visibility: visible !important;
}

.featured-post,
.news-card {
  position: relative;
  z-index: 1;
}

.featured-post__media,
.news-card__media {
  position: relative;
  z-index: 1;
  min-height: 220px;
}

.featured-post__media img,
.news-card__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 220px;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.featured-post__content,
.news-card__body,
.article-body,
.article-shell,
.article-hero__inner {
  position: relative;
  z-index: 2;
}

.featured-post__title,
.featured-post__title a,
.news-card__title,
.news-card__title a,
.featured-post__excerpt,
.news-card__excerpt,
.article-body,
.article-body p,
.article-body li,
.article-body h1,
.article-body h2,
.article-body h3,
.article-body strong,
.article-body em {
  color: #f4f4f4 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.article-body a,
.featured-post a,
.news-card a {
  opacity: 1 !important;
  visibility: visible !important;
}

.article-hero {
  background-color: #111 !important;
}

.article-hero__overlay {
  pointer-events: none;
}

.news-hub {
  position: relative;
  z-index: 1;
  background: #1f1f22;
}

.news-hub .band__inner {
  position: relative;
  z-index: 2;
}

.news-hub + section,
.news-hub + .band,
.news-hub + footer {
  position: relative;
  z-index: 0;
  margin-top: 0;
}

.band--dark:has(.article-layout) {
  background: #1f1f22;
}

.article-detail-band .band__inner {
  max-width: 1400px;
  padding-left: 24px;
  padding-right: 24px;
}

.partners-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.logo-pill--link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.logo-pill--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.logo-pill--link:active {
  transform: translateY(0);
}

.news-upcoming {
  align-items: start;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}

.news-upcoming__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mini-card--news {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.mini-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.mini-body--excerpt {
  margin-top: 8px;
}

.news-upcoming .section-head {
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .news-upcoming {
    grid-template-columns: 1fr;
  }
}

.band--light {
  background: linear-gradient(
    to bottom,
    #0e0e11 0%,
    #141419 100%
  );
}

/* =========================
   HOME PAGE MOBILE DRIFT FIX
   narrow, page-specific patch
========================= */

.home-page {
  overflow-x: hidden;
}

.home-page .hero-carousel,
.home-page .band,
.home-page .band__inner,
.home-page .what-we-do,
.home-page .split,
.home-page .news-upcoming,
.home-page .logo-row {
  min-width: 0;
}

.home-page .hero-carousel {
  overflow: hidden;
}

.home-page .hero-carousel__viewport,
.home-page .hero-carousel__track,
.home-page .hero-slide,
.home-page .hero-slide__content {
  min-width: 0;
}

.home-page .hero-slide__content,
.home-page .band__inner {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .home-page .what-we-do,
  .home-page .split,
  .home-page .news-upcoming {
    grid-template-columns: 1fr;
  }

  .home-page .hero-slide__content,
  .home-page .band__inner {
    width: min(1100px, calc(100% - 24px));
  }

  .home-page .news-upcoming__col,
  .home-page .what-we-do__content,
  .home-page .what-we-do__media,
  .home-page .mini-card,
  .home-page .logo-pill {
    width: 100%;
  }

  .home-page .logo-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .home-page .hero-slide__content,
  .home-page .band__inner {
    width: calc(100% - 20px);
  }

  .home-page .hero-carousel__btn {
    left: 10px;
    right: 10px;
  }
}

/* =========================
   NAV MOBILE OPTIMIZATION
========================= */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

/* Keep nav on one line */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 18px);
  flex-wrap: nowrap;
  min-width: 0;
}

/* Prevent wrapping */
.nav-link {
  white-space: nowrap;
  flex-shrink: 1;

  /* Responsive font scaling */
  font-size: clamp(11px, 1.1vw, 15px);
}

/* Brand should not explode layout */
.brand {
  flex-shrink: 0;
  min-width: 0;
}

/* Shrink brand text slightly on smaller screens */
.brand-text {
  font-size: clamp(12px, 1.2vw, 16px);
  white-space: nowrap;
}

/* =========================
   SMALL SCREENS (TABLET / MOBILE)
========================= */

@media (max-width: 900px) {
  .nav {
    gap: 10px;
  }

  .nav-link {
    font-size: clamp(10px, 2.5vw, 13px);
  }

  .brand-text {
    font-size: clamp(11px, 2.5vw, 14px);
  }
}

/* =========================
   VERY SMALL SCREENS
========================= */

@media (max-width: 600px) {
  .nav {
    gap: 8px;
  }

  .nav-link {
    font-size: clamp(9px, 2.8vw, 12px);
  }

  /* Optional: shorten labels if needed */
  .nav-link:nth-child(2)::after {
    content: "";
  }
}

.team-card__name {
  color: #e53935;
  font-weight: 700;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.team-card:hover .team-card__name {
  color: #ff4d4d;
  text-shadow: 0 0 8px rgba(229, 57, 53, 0.6);
}