/* ============================================================
   BPoA Mockup Shared Stylesheet — Theme-aligned
   Mirrors the new bpoas.com Astra+Elementor theme.
   Fonts: Sk-Modernist (display/nav) + Helvetica (body) — both hot-linked from staging.
   Brand: #c2262c red, #00264F navy, #1e293b slate, #F0F5FA light bg.
   ============================================================ */

@font-face {
  font-family: 'Modernist';
  src: url('https://bpoas.wpenginepowered.com/wp-content/uploads/2025/07/Sk-Modernist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Modernist';
  src: url('https://bpoas.wpenginepowered.com/wp-content/uploads/2025/07/Sk-Modernist-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #c2262c;
  --red-dark: #8a1a1f;
  --red-mid: #e25b5f;
  --red-soft: #fdf2f2;
  --navy: #00264F;
  --navy-dark: #001930;
  --slate: #1e293b;
  --slate-2: #0f172a;
  --slate-3: #334155;
  --gray: #475569;
  --gray-mid: #94a3b8;
  --gray-light: #e2e8f0;
  --gray-lightest: #f1f5f9;
  --bg: #F0F5FA;
  --green: #15803d;
  --amber: #b45309;
  --black: #111111;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Helvetica", "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--slate);
  line-height: 1.6;
  font-size: 16px;
  background: white;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
video { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); text-decoration: underline; }
h1, h2, h3, h4, h5 {
  font-family: inherit;
  font-weight: 700;
  line-height: 1.18;
  color: var(--slate);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
h1 { font-size: 56px; font-weight: 800; line-height: 1.05; letter-spacing: -0.015em; }
h2 { font-size: 38px; font-weight: 700; line-height: 1.1; letter-spacing: -0.012em; }
h3 { font-size: 24px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; }
ul, ol { margin: 0 0 18px; padding-left: 22px; }
li { margin-bottom: 8px; }
strong { font-weight: 700; color: var(--slate); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 32px; }

/* TOP UTILITY BAR — RED, mirrors actual site */
.utility-bar {
  background: var(--red);
  color: white;
  padding: 11px 0;
  font-size: 14px;
  font-family: 'Modernist', "Helvetica", sans-serif;
  font-weight: 400;
}
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.utility-bar .utility-contact { display: flex; gap: 22px; align-items: center; }
.utility-bar .utility-contact a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.utility-bar .utility-contact a:hover { text-decoration: underline; color: white; }
.utility-bar .utility-contact .sep { width: 1px; height: 14px; background: rgba(255,255,255,0.4); }
.utility-bar .utility-socials { display: flex; gap: 10px; align-items: center; }
.utility-bar .utility-socials a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.15s;
}
.utility-bar .utility-socials a:hover { background: rgba(255,255,255,0.32); text-decoration: none; color: white; }
.utility-bar .utility-socials svg { width: 14px; height: 14px; fill: currentColor; }
.utility-bar .utility-contact a svg { width: 14px; height: 14px; fill: currentColor; opacity: 0.9; }

/* MAIN HEADER — NAVY with white Modernist nav */
.header {
  background: var(--navy);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 94px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 60px; width: auto; }
.nav { display: flex; gap: 36px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav > a {
  color: white;
  font-family: 'Modernist', "Helvetica", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.nav-item > a:hover, .nav > a:hover { color: white; opacity: 0.78; text-decoration: none; }
.nav-item > a.has-sub::after, .nav > a.has-sub::after { content: " ▾"; font-size: 10px; vertical-align: 2px; }
.nav-item:hover > a.has-sub::after { transform: rotate(180deg); display: inline-block; }

/* Subnav dropdown */
.subnav {
  position: absolute;
  top: calc(100% + 14px);
  left: -22px;
  min-width: 280px;
  background: white;
  padding: 10px 0;
  box-shadow: 0 14px 32px rgba(0,0,0,0.20);
  border-top: 4px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 100;
}
.nav-item:hover .subnav, .nav-item.is-open .subnav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover::before {
  /* Invisible bridge between nav item and dropdown so hover doesn't break */
  content: "";
  position: absolute;
  top: 100%;
  left: -22px;
  right: -22px;
  height: 14px;
}
.subnav a {
  display: block;
  padding: 10px 24px;
  color: var(--slate);
  font-family: 'Modernist', "Helvetica", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-transform: none;
  text-decoration: none;
  line-height: 1.3;
  transition: background 0.1s, color 0.1s;
}
.subnav a:hover { background: var(--bg); color: var(--red); text-decoration: none; }
.subnav a.subnav-cta {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.subnav a.subnav-cta:hover { color: var(--red-dark); background: var(--red-soft); }
.subnav hr { margin: 6px 24px; border: 0; border-top: 1px solid var(--gray-light); }
.header-cta { display: flex; gap: 12px; align-items: center; }

/* BUTTONS — Elementor-style: rectangular, plain */
.btn {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: 'Modernist', "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 0;
  border: 2px solid var(--red);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: white; text-decoration: none; }
.btn.lg { padding: 16px 32px; font-size: 15px; }
.btn.xl { padding: 20px 38px; font-size: 16px; }
.btn.outline { background: transparent; border-color: var(--red); color: var(--red); padding: 10px 22px; }
.btn.outline:hover { background: var(--red); color: white; }
.btn.outline-white { background: transparent; border: 2px solid white; color: white; padding: 10px 22px; }
.btn.outline-white:hover { background: white; color: var(--navy); border-color: white; }
.btn.solid-white { background: white; color: var(--navy); border: 2px solid white; padding: 10px 22px; }
.btn.solid-white:hover { background: var(--red); border-color: var(--red); color: white; }
.btn.dark { background: var(--slate); border-color: var(--slate); }
.btn.dark:hover { background: var(--slate-2); border-color: var(--slate-2); }
.btn.ghost { background: transparent; color: var(--slate); padding-left: 0; padding-right: 0; border: none; }
.btn.ghost:hover { background: transparent; color: var(--red); }
.text-link { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; text-decoration: none; white-space: nowrap; letter-spacing: 0.04em; text-transform: uppercase; }
.text-link:hover { color: white; text-decoration: underline; }

/* Backwards-compat: legacy .topbar gets the same red-bar treatment as utility-bar */
.topbar { background: var(--red); color: white; font-size: 13.5px; padding: 10px 0; text-align: center; font-weight: 500; font-family: 'Modernist', "Helvetica", sans-serif; }
.topbar a { color: white; text-decoration: underline; font-weight: 700; }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--slate-2);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.45) 0%, rgba(15,23,42,0.78) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding: 140px 32px 110px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-mid);
  margin-bottom: 22px;
}
.hero h1 {
  color: white;
  font-size: 72px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 920px;
  font-weight: 800;
}
.hero h1.smaller { font-size: 56px; }
.hero h1.medium { font-size: 60px; }
.hero p.sub {
  font-size: 21px;
  line-height: 1.5;
  max-width: 720px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
  font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.hero .stats .stat .num {
  font-size: 38px;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero .stats .stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-top: 8px;
}

/* PAGE HEADER (smaller hero for sub-pages) */
.page-header {
  position: relative;
  background: var(--slate-2);
  color: white;
  overflow: hidden;
}
.page-header-media { position: absolute; inset: 0; z-index: 0; }
.page-header-media img { width: 100%; height: 100%; object-fit: cover; }
.page-header-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0.82) 100%);
}
.page-header .container {
  position: relative;
  z-index: 1;
  padding: 96px 32px 80px;
}
.page-header .breadcrumb {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.page-header .breadcrumb a { color: var(--red-mid); text-decoration: none; }
.page-header h1 {
  color: white;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  max-width: 880px;
  font-weight: 800;
}
.page-header p.sub {
  font-size: 19px;
  color: rgba(255,255,255,0.86);
  max-width: 720px;
  margin: 0;
  line-height: 1.5;
}

/* SECTIONS */
section { padding: 96px 0; }
section.alt { background: var(--bg); }
section.dark { background: var(--slate-2); color: rgba(255,255,255,0.86); }
section.dark h2, section.dark h3, section.dark h4 { color: white; }
section.dark a { color: var(--red-mid); }
section.red { background: var(--red); color: white; }
section.red h2 { color: white; }
section.tight { padding: 64px 0; }

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
section.dark .section-eyebrow, section.red .section-eyebrow { color: var(--red-mid); }
section.red .section-eyebrow { color: rgba(255,255,255,0.85); }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; }
.section-head h2 { margin: 0 0 14px; }
.section-head p { font-size: 18px; color: var(--gray); line-height: 1.55; margin: 0; }
section.dark .section-head p { color: rgba(255,255,255,0.78); }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }

/* CARDS — clean, theme-aligned */
.card {
  background: white;
  border: 1px solid var(--gray-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-light);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-img-tall { aspect-ratio: 4/5; overflow: hidden; background: var(--gray-light); }
.card-img-tall img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 24px 26px 26px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-size: 22px; margin: 0 0 10px; font-weight: 700; }
.card p { color: var(--gray); font-size: 15px; line-height: 1.55; margin: 0 0 16px; flex: 1; }
.card .meta {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 10px;
}
.card-cta {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-cta::after { content: "→"; font-size: 16px; transition: transform 0.15s; }
.card-cta:hover { color: var(--red-dark); text-decoration: none; }
.card-cta:hover::after { transform: translateX(3px); }

/* TOURNAMENT CARD */
.tournament-card {
  background: white;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.tournament-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,23,42,0.10);
}
.tournament-card .t-img {
  aspect-ratio: 16/9;
  background: var(--slate-2);
  position: relative;
  overflow: hidden;
}
.tournament-card .t-img img { width: 100%; height: 100%; object-fit: cover; }
.tournament-card .t-img.logo { display: flex; align-items: center; justify-content: center; padding: 24px; background: white; border-bottom: 1px solid var(--gray-light); }
.tournament-card .t-img.logo img { width: auto; height: 100%; max-height: 140px; object-fit: contain; }
.tournament-card .t-meta {
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.tournament-card .t-img:not(.logo)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,23,42,0.85));
}
.tournament-card .t-dates {
  font-weight: 700;
  font-size: 13px;
  color: white;
}
.tournament-card .t-ages {
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 9px;
}
.tournament-card .t-body { padding: 22px 24px 24px; }
.tournament-card .t-body h3 { font-size: 22px; margin: 0 0 8px; }
.tournament-card .t-body p { color: var(--gray); font-size: 14.5px; margin: 0 0 16px; line-height: 1.5; }
.tournament-card .t-body .card-cta { font-size: 12.5px; }

/* FIELD CARD */
.field-card {
  background: white;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.field-card .field-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--slate-2);
}
.field-card .field-img img { width: 100%; height: 100%; object-fit: cover; }
.field-card .field-body { padding: 24px 26px 28px; }
.field-card .field-name { font-size: 24px; margin: 0 0 6px; font-weight: 800; }
.field-card .field-tagline { font-size: 16px; color: var(--gray); margin: 0 0 14px; line-height: 1.5; }
.field-card .field-dim {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-3);
  font-weight: 700;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.field-card .field-sponsor { font-size: 13px; color: var(--gray); margin-top: 6px; }

/* PILLARS */
.pillar { padding: 12px; text-align: left; }
.pillar .pillar-num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.pillar h3 { font-size: 22px; margin: 0 0 10px; font-weight: 700; }
.pillar p { color: var(--gray); font-size: 15.5px; line-height: 1.6; }

/* PULL QUOTE */
.pull-quote { text-align: center; max-width: 880px; margin: 0 auto; }
.pull-quote q {
  font-size: 32px;
  line-height: 1.3;
  color: var(--slate);
  font-weight: 700;
  display: block;
  margin: 0 0 24px;
  quotes: "\201C" "\201D";
  letter-spacing: -0.01em;
}
section.dark .pull-quote q { color: white; }
.pull-quote .src {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
section.dark .pull-quote .src { color: var(--red-mid); }

/* TESTIMONIAL */
.testimonial {
  background: white;
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--red);
  padding: 28px 30px;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate);
}
.testimonial .who {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}

/* TWO-COLUMN SPLIT */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse .img-block { order: -1; }
.split .copy h2 { font-size: 42px; line-height: 1.08; }
.split .copy p { font-size: 17px; color: var(--gray); line-height: 1.65; }
.split .img-block {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--slate-2);
}
.split .img-block img { width: 100%; height: 100%; object-fit: cover; }
.split.wide .img-block { aspect-ratio: 5/4; }

/* DIVISIONS / PRICING SIDEBAR */
.divisions {
  background: white;
  border: 1px solid var(--gray-light);
  padding: 30px;
  position: sticky;
  top: 110px;
}
.divisions h3 {
  font-size: 22px;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--red);
  font-weight: 800;
}
.divisions .div-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  gap: 12px;
}
.divisions .div-row:last-of-type { border-bottom: none; padding-bottom: 4px; }
.divisions .div-age { font-weight: 800; font-size: 18px; color: var(--slate); }
.divisions .div-fee { font-size: 14px; color: var(--gray); margin-top: 2px; }
.divisions .div-deadline { font-size: 12px; color: var(--amber); margin-top: 4px; font-weight: 700; }
.divisions .div-cta {
  background: var(--red);
  color: white;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 13px;
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}
.divisions .div-cta:hover { background: var(--red-dark); color: white; text-decoration: none; }

/* FORM */
.form-block {
  background: white;
  border: 1px solid var(--gray-light);
  padding: 38px 40px;
  max-width: 560px;
  margin: 0 auto;
}
.form-block h3 { font-size: 28px; margin: 0 0 8px; font-weight: 800; }
.form-block p { color: var(--gray); font-size: 15px; margin: 0 0 24px; }
.form-block label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 14px 0 6px;
}
.form-block input, .form-block select, .form-block textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-light);
  font-family: inherit;
  font-size: 15px;
  color: var(--slate);
  background: white;
  border-radius: 0;
}
.form-block input:focus, .form-block select:focus, .form-block textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-block .btn { margin-top: 22px; width: 100%; }
section.dark .form-block { background: white; color: var(--slate); }
section.dark .form-block h3 { color: var(--slate); }
section.dark .form-block p { color: var(--gray); }

/* FAQ */
.faq-row {
  border-bottom: 1px solid var(--gray-light);
  padding: 24px 0;
}
.faq-row h4 {
  font-size: 19px;
  margin: 0 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 700;
}
.faq-row h4::after { content: "+"; color: var(--red); font-weight: 400; font-size: 28px; line-height: 0.7; }
.faq-row p { color: var(--gray); font-size: 16px; line-height: 1.6; margin: 0; }

/* INFO CALLOUT */
.callout {
  background: var(--red-soft);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
}
.callout p { margin: 0; }
.callout strong { color: var(--red-dark); }
.callout.dark { background: var(--slate); color: white; border-left-color: var(--red-mid); }
.callout.dark strong { color: white; }

/* PARTNER LOGO ROW */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.partner-logos img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  margin: 0 auto;
  filter: grayscale(0.4);
  opacity: 0.85;
  transition: all 0.2s;
}
.partner-logos img:hover { filter: none; opacity: 1; }

/* PRESS LOGO STRIP */
.press-strip {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 24px 0;
}
.press-strip span {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.04em;
  font-style: italic;
  opacity: 0.75;
}
section.dark .press-strip span { color: rgba(255,255,255,0.7); }

/* STICKY BOTTOM BAR */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--slate-2);
  color: white;
  padding: 14px 0;
  z-index: 40;
  display: none;
  border-top: 3px solid var(--red);
}
.sticky-bar.show { display: block; }
.sticky-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-bar .label { font-size: 14px; font-weight: 700; }

/* FOOTER */
.footer {
  background: var(--slate-2);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 32px;
  font-size: 14px;
}
.footer h4 {
  color: white;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  font-weight: 700;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer .footer-logo img { height: 56px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.footer a:hover { color: white; }
.footer .brand-bit p { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.6; }
.footer .brand-bit .tagline { color: rgba(255,255,255,0.55); font-style: italic; margin-top: 18px; font-size: 14px; }
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .links a { margin-left: 18px; }

/* MOCKUP BANNER (non-production indicator) */
.mockup-banner {
  background: #1c2530;
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  font-weight: 600;
  border-bottom: 2px solid var(--red);
}
.mockup-banner a { color: white; text-decoration: underline; }
.mockup-banner .pill {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-left: 8px;
}
.mockup-banner .pill.fix { background: var(--amber); }
.mockup-banner .pill.keep { background: var(--gray-mid); }

/* UTILITIES */
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .partner-logos { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (max-width: 820px) {
  .container, .container-narrow { padding: 0 22px; }
  .nav { display: none; }
  .header .container { height: 72px; }
  .logo img { height: 44px; }
  .utility-bar { padding: 8px 0; font-size: 12.5px; }
  .utility-bar .utility-contact { gap: 12px; }
  .utility-bar .utility-contact a { font-size: 12.5px; }
  .utility-bar .utility-contact .sep { display: none; }
  .utility-bar .utility-socials a { width: 24px; height: 24px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 8px 14px; font-size: 12px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero .container, .page-header .container { padding: 72px 22px 64px; min-height: auto; }
  .hero h1 { font-size: 40px; }
  .hero h1.smaller, .hero h1.medium { font-size: 32px; }
  .hero p.sub { font-size: 17px; }
  .page-header h1 { font-size: 36px; }
  section { padding: 64px 0; }
  .section-head h2 { font-size: 28px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
}
