/* ============================================
   212 Titans — Site Styles (v3)
   - Solid full-width header (NOT sticky, NOT floating)
   - Full-bleed image heroes with dark overlay
   - Brighter, more legible body text
   ============================================ */

/* Font pairing: DM Sans for body + Montserrat for display headings (
   big display headlines that need that bold uppercase character. The previous
   humanist body + geometric display — clean, modern, professional). */

:root {
  --white:      #FFFFFF;        /* WAS MISSING — caused black-on-black text bug */
  --red:        #C22F29;
  --red-bright: #FD2725;
  --red-deep:   #A41714;
  --gold:       #F5CB5C;        /* matches Dave's circular arrow accents */
  --silver:     #CCCCCC;
  --gray-211:   #8A8A8A;
  --black:      #0E0E0E;
  --beige:      #ECE7E2;
  --hero-overlay: rgba(15,15,15,0.65);
  --gray-900:   #1A1A1A;
  --gray-800:   #2A2A2A;
  --gray-700:   #555555;
  --gray-500:   #777777;
  --gray-200:   #E5E5E5;
  --gray-100:   #F5F5F5;
  --max-width:  1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: all 0.2s ease; }
a:hover { color: var(--red-bright); }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
h2 {
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); margin-bottom: 0.75rem; }
h4 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
p { margin-bottom: 1rem; font-size: 1.0625rem; }
.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: #FF8682; }

/* Layout */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }
@media (max-width: 768px) { section { padding: 3.5rem 0; } }

/* ============================================
   Header — solid full-width black bar, NOT sticky
   ============================================ */
.site-header {
  background: var(--black);
  border-bottom: 3px solid var(--red);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.site-header.header-hidden { transform: translateY(-100%); }
@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none; }
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img { height: 100px; width: auto; transition: transform 0.25s ease; }
.brand:hover img { transform: scale(1.04); }
@media (max-width: 1024px) { .brand img { height: 84px; } }
@media (max-width: 600px) { .brand img { height: 68px; } }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;                            /* 12px editorial */
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;               /* reserve space, invisible at rest */
  transition: border-color 0.22s ease, color 0.22s ease;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.nav-links a.active {
  border-color: var(--red-bright);
  color: var(--white);
  background: transparent;
}
.nav-cta {
  background: var(--red-bright) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  flex-shrink: 0;
  letter-spacing: 0.12em !important;
  border: 1.5px solid transparent !important;
}
.nav-cta:hover {
  background: var(--red-deep) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 1.5rem;
  padding: 0.4rem 0.7rem;
  line-height: 1;
}
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--black);
    padding: 0.75rem 1rem 1.25rem;
    gap: 0.25rem;
    border-bottom: 3px solid var(--red);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1rem;
    font-size: 1.1875rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-of-type { border-bottom: 0; }
  .nav-cta { text-align: center; align-self: stretch; margin-top: 0.5rem; font-size: 1.0625rem !important; }
}

/* ============================================
   Hero — full-bleed background image w/ dark overlay
   Mixed-weight title centered (e.g. "About Us")
   ============================================ */
.hero {
  position: relative;
  min-height: clamp(380px, 55vh, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  padding: 5rem 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Heavy overlay so the photo is just subtle texture, not visual noise */
  background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.92) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  padding: 0 1.5rem;
}
.hero h1 {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;                              /* ExtraBold (was 900 / Black — too heavy) */
  text-transform: none;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: 1.08;
  letter-spacing: 0.01em;                        /* slightly more open like Dave's */
}
.hero h1 .thin { font-weight: 500; }
.hero h1 .bold { font-weight: 800; }            /* match the rest of the headline */
.hero p.lead {
  color: #FFFFFF;
  font-size: clamp(1.125rem, 1.75vw, 1.375rem);
  margin-top: 1.5rem;
  font-weight: 500;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* Home hero — image background, left-aligned text on a heavy left-side dark gradient */
.hero-home {
  text-align: left;
  align-items: flex-start;
  padding: 7rem 0 5rem;
  min-height: clamp(560px, 75vh, 760px);
}
/* Override centered overlay with a left-heavy gradient: text-side is dark, image-side stays visible */
.hero-home::after {
  background: linear-gradient(90deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.85) 50%,
    rgba(0,0,0,0.5) 100%);
}
.hero-home .hero-content { text-align: left; padding-left: 0; padding-right: 0; }
.hero-home .container { max-width: var(--max-width); width: 100%; padding: 0 1.5rem; }
.hero-home h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6.5vw, 4.375rem);
  text-transform: uppercase;
  font-weight: 800;                              /* ExtraBold to match Dave */
  text-align: left;
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.hero-home .hero-divider {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.6);
  margin: 2.25rem 0 2rem;
}
.hero-home p {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
  max-width: 760px;
  margin-bottom: 0.3rem;
}
.hero-home p strong { color: #FFFFFF; font-weight: 800; }
.hero-home .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
/* Hero buttons — RED outline pill, fill with red on hover */
.hero-home .btn,
.hero .btn {
  background: transparent;
  border: 1.5px solid var(--red-bright);
  border-radius: 999px;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  padding: 0.8rem 1.75rem;
  text-transform: uppercase;
}
.hero-home .btn:hover,
.hero .btn:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ============================================
   Buttons — black rounded pills (matches Dave's site)
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-light:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* ============================================
   Stats strip — small trust signals row
   ============================================ */
.stats-strip {
  background: var(--black);
  color: #FFFFFF;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-top: -120px;
  position: relative;
  z-index: 3;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.stat {
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-grid > .stat:last-child { border-right: 0; }
@media (max-width: 700px) { .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1.25rem; } .stats-grid > .stat:last-child { border-bottom: 0; } }
.stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
}

/* Marquee — "Currently filling" ticker */
.marquee {
  background: var(--gray-100);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee-slide 28s linear infinite;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-700);
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--red-bright); flex-shrink: 0;
}
.marquee-track .label-red { color: var(--red); }
@keyframes marquee-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Careers — role categories grid (replaces broken iframe gracefully) */
.role-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 0 0 2.5rem;
}
.role-cat {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all 0.25s ease;
}
.role-cat:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.role-cat .ico {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(194,47,41,0.08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: 'Montserrat', sans-serif;
}
.role-cat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-transform: none;
  letter-spacing: 0;
}
.role-cat p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* ============================================
   "We Go The Extra Degree. Every Time." headline section
   ============================================ */
.headline-section { padding: 3.25rem 0 2.5rem; text-align: center; }
.headline-flame {
  display: inline-block;
  width: 32px;
  height: auto;
  margin-bottom: 1.5rem;
}
.headline-flame img { width: 100%; height: auto; }
.headline-section h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  text-transform: none;
  margin-bottom: 0;
}
.headline-section h2 .accent {
  color: var(--red);
  display: block;
}

/* ============================================
   Audience cards (Home) — black rounded cards w/ image top
   ============================================ */
.audience { background: var(--white); padding-top: 1rem; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 900px) { .audience-grid { grid-template-columns: 1fr 1fr; } }
.audience-card {
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.audience-card-img {
  position: relative;
  aspect-ratio: 16/8;
  /* No overflow:hidden — let the arrow bleed across the seam */
}
.audience-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.audience-card-arrow {
  position: absolute;
  bottom: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);          /* matches Dave's actual site arrow */
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 2;
  transform: rotate(-45deg);
  font-weight: 700;
}
.audience-card-body { padding: 2.75rem 2rem 2rem; }
.audience-card-body h3 {
  color: var(--white);
  font-size: 1.75rem;
  text-transform: none;
  margin-bottom: 1rem;
  font-weight: 700;
}
.audience-card-body p {
  color: #E0E0E0;       /* brighter than silver for legibility */
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.audience-bullets { list-style: none; margin: 0 0 2rem; }
.audience-bullets li {
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #E0E0E0;
  display: flex;
  align-items: baseline;
  gap: 0.875rem;
}
.audience-bullets .letter {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--red-bright);
  width: 1rem;
}
.audience-card .btn-light { align-self: flex-start; }

/* ============================================
   STEAM Method — 5 white boxes with red letters
   ============================================ */
.steam-section { background: var(--white); padding: 5rem 0; }
.steam-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .steam-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steam-grid { grid-template-columns: repeat(5, 1fr); } }
.steam-box {
  border: 1.5px solid var(--gray-900);
  padding: 2rem 1rem;
  text-align: center;
  background: var(--white);
  transition: all 0.25s ease;
}
.steam-box:hover {
  background: var(--gray-100);
  transform: translateY(-4px);
}
.steam-box .letter {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 1rem;
}
.steam-box h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
  color: var(--black);
}
.steam-box p {
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.55;
}

/* STEAM kicker line (Block B) — display line below each STEAM block */
.steam-kicker {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 2.1rem);
  line-height: 1.3;
  text-align: center;
  color: var(--red);
  margin-top: 2.75rem;
}

/* ============================================
   COMBINED STEAM section — black, sleek, with audience images + gold arrows
   ============================================ */
.steam-combined {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.steam-combined::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,203,92,0.06), transparent 70%);
  pointer-events: none;
}
.steam-combined .container { position: relative; z-index: 1; }
.steam-combined .intro { text-align: center; max-width: 760px; margin: 0 auto 2.5rem; }
.steam-combined .intro h2 {
  color: var(--white);
  text-transform: none;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.steam-combined .intro h2 .accent { color: var(--red-bright); }
.steam-combined .intro p {
  color: var(--silver);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}

/* Two perspectives meeting in the middle — small portrait + gold arrow facing
   inward on each side, decorative only */
.perspectives-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.perspectives-row .persp {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.perspectives-row .persp .img {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.perspectives-row .persp .img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.perspectives-row .persp .arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.perspectives-row .meet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  flex-shrink: 0;
}

/* Top: two audience "bridges" — small image card + label + gold arrow */
.bridges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) { .bridges { grid-template-columns: 1fr; } }
.bridge {
  display: grid;
  grid-template-columns: 96px 1fr 48px;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 0.75rem;
  transition: all 0.25s ease;
  text-decoration: none;
}
.bridge:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.bridge .img {
  width: 96px; height: 96px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.bridge .img img { width: 100%; height: 100%; object-fit: cover; }
.bridge .label {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
}
.bridge .label .small {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.25rem;
}
.bridge .label .big {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}
.bridge .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* The STEAM dual table — single dark surface, FAINT grey hairlines only,
   no bright white separators anywhere. */
.steam-combined .steam-table {
  background: #141414;
  border-top: 3px solid var(--red);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  max-width: 1100px;
  margin: 0 auto;
}
.steam-combined .steam-row {
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: stretch;
  border: 0;                                        /* no separators at all */
}
.steam-combined .steam-row:last-child { border: 0; }
.steam-combined .steam-row .col {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.75rem;
  font-size: 1.0625rem;
  color: #FFFFFF;
  background: #141414;                              /* uniform — no stripes */
}
.steam-combined .steam-row .col-left  { justify-content: flex-end; text-align: right; }
.steam-combined .steam-row .col-right { justify-content: flex-start; text-align: left; }
.steam-combined .steam-row .col-letter {
  color: var(--red-bright);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.75rem;
  text-align: center;
  justify-content: center;
  background: #141414;                              /* same as body — no column color shift */
}
.steam-combined .steam-row.head {
  background: #000000;
  color: #FFFFFF;
}
.steam-combined .steam-row.head .col {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  color: #FFFFFF;
  background: #000000;
  gap: 0.875rem;
}
.steam-combined .steam-row.head .col-left  { justify-content: flex-end;  }
.steam-combined .steam-row.head .col-right { justify-content: flex-start; }
.steam-combined .steam-row.head .head-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.steam-combined .steam-row.head .head-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.steam-combined .steam-row.head .col-letter {
  background: var(--red);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.9375rem;
  letter-spacing: 0.22em;
  border-radius: 4px;
  margin: 0.5rem;
  padding: 0.875rem 0;
}

@media (max-width: 700px) {
  .steam-combined .steam-row { grid-template-columns: 1fr; }
  .steam-combined .steam-row.head { display: none; }
  .steam-combined .steam-row .col-left,
  .steam-combined .steam-row .col-right {
    justify-content: flex-start;
    text-align: left;
  }
  .steam-combined .steam-row .col-left::before  { content: "FOR CLIENTS"; }
  .steam-combined .steam-row .col-right::before { content: "FOR CANDIDATES"; }
  .steam-combined .steam-row .col-left::before,
  .steam-combined .steam-row .col-right::before {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--red-bright);
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  .steam-combined .steam-row .col-letter {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem;
    font-size: 1.875rem;
  }
}

/* ============================================
   Old STEAM dual table (kept for reference, used on /faq.html)
   ============================================ */
.steam-dual {
  background: var(--beige);
  padding: 5rem 0;
}
.steam-dual .intro { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.steam-dual .intro h2 {
  text-transform: none;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.steam-dual .intro h2 .accent { color: var(--red); }
.steam-dual .intro p {
  color: var(--gray-700);
  font-style: italic;
  font-size: 1rem;
  margin: 0;
}
.steam-table {
  background: var(--white);
  border-top: 4px solid var(--red);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  overflow: hidden;
  border-radius: 4px;
}
.steam-row {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--gray-200);
}
.steam-row:last-child { border-bottom: 0; }
.steam-row .col {
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  color: var(--gray-900);
}
.steam-row .col-left  { justify-content: flex-end; text-align: right; }
.steam-row .col-right { justify-content: flex-start; text-align: left; }
.steam-row .col-letter {
  background: var(--white);
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  text-align: center;
  justify-content: center;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
}
.steam-row.head {
  background: var(--black);
  color: var(--white);
}
.steam-row.head .col {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.5rem;
}
.steam-row.head .col-letter {
  background: var(--red);
  color: var(--white);
  border: 0;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.steam-row:nth-child(even):not(.head) { background: var(--gray-100); }

/* Mobile: stack each row */
@media (max-width: 700px) {
  .steam-row { grid-template-columns: 1fr; }
  .steam-row .col-left, .steam-row .col-right {
    justify-content: flex-start;
    text-align: left;
    padding: 0.75rem 1.25rem;
  }
  .steam-row .col-left::before  { content: "FOR CLIENTS"; }
  .steam-row .col-right::before { content: "FOR CANDIDATES"; }
  .steam-row .col-left::before,
  .steam-row .col-right::before {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  .steam-row .col-left, .steam-row .col-right { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .steam-row .col-letter {
    border-left: 0; border-right: 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.875rem;
    font-size: 1.875rem;
  }
  .steam-row.head .col-letter {
    background: var(--red); color: var(--white); border: 0;
  }
  .steam-row.head { display: none; }   /* hide desktop header on mobile */
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-section { background: var(--white); padding: 5rem 0; }
.faq-list { max-width: 820px; margin: 2rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item summary {
  padding: 1.25rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 0 1.25rem;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ============================================
   Blog / Insights
   ============================================ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 700px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); border-color: var(--red); }
.post-card .img { aspect-ratio: 16/9; overflow: hidden; }
.post-card .img img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.post-card .tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.post-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 0.625rem;
  color: var(--black);
  line-height: 1.3;
}
.post-card p {
  color: var(--gray-700);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.post-card .meta {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: auto;
}
.post-card a.read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.post-card a.read-more:hover { color: var(--red-bright); }

/* Blog post body */
.post-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-900);
}
.post-body h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-transform: none; margin-top: 2.5rem; }
.post-body h3 { font-size: 1.25rem; margin-top: 1.75rem; }
.post-body p, .post-body li { margin-bottom: 1rem; }
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-meta-line {
  display: flex; gap: 1rem; align-items: center; font-size: 0.875rem;
  color: var(--gray-500); margin-bottom: 2rem;
}
.post-meta-line .tag { color: var(--red); font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }

/* ============================================
   Animations
   - DEFAULT: visible. JS opt-in via html[data-anim]
   ============================================ */
.fade-in { opacity: 1; transform: none; }
html[data-anim] .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.22,1,.36,1), transform 0.95s cubic-bezier(.22,1,.36,1);
}
html[data-anim] .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger fade for STEAM rows */
html[data-anim] .steam-table .stagger {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html[data-anim] .steam-combined.is-visible .steam-table .stagger:nth-child(2) { transition-delay: 0.05s; }
html[data-anim] .steam-combined.is-visible .steam-table .stagger:nth-child(3) { transition-delay: 0.15s; }
html[data-anim] .steam-combined.is-visible .steam-table .stagger:nth-child(4) { transition-delay: 0.25s; }
html[data-anim] .steam-combined.is-visible .steam-table .stagger:nth-child(5) { transition-delay: 0.35s; }
html[data-anim] .steam-combined.is-visible .steam-table .stagger:nth-child(6) { transition-delay: 0.45s; }
html[data-anim] .steam-combined.is-visible .steam-table .stagger {
  opacity: 1;
  transform: translateY(0);
}

/* Hero loadup — subtle slide+fade on first paint */
@keyframes hero-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: hero-up 0.8s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
.hero-content > *:nth-child(6) { animation-delay: 0.55s; }

/* Card hover lift */
.audience-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* Button hover micro-bounce */
.btn { transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* Footer card hover */
.footer-card { transition: background 0.2s ease, border-color 0.2s ease; }
.footer-card:hover { background: rgba(255,255,255,0.08); }

/* Tile hover (already styled but make smoother) */
.tile { transition: all 0.3s ease; }

@media (prefers-reduced-motion: reduce) {
  html[data-anim] .fade-in,
  html[data-anim] .steam-table .stagger,
  .hero-content > *,
  .audience-card,
  .btn { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Image hover zoom — applies to card and content images */
.audience-card-img img,
.post-card .img img,
.two-col img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.audience-card-img:hover img,
.post-card:hover .img img,
.two-col:hover img {
  transform: scale(1.06);
}

/* Eyebrow underline animation on hover for clickable sections */
.audience-card:hover h3,
.post-card:hover h3 {
  color: var(--gold);
  transition: color 0.25s ease;
}

/* Tile + service-card scroll-fade */
html[data-anim] .tile,
html[data-anim] .commitment li,
html[data-anim] .steam-box,
html[data-anim] .post-card,
html[data-anim] .footer-card,
html[data-anim] .contact-card,
html[data-anim] .contact-info > div,
html[data-anim] .contact-form,
html[data-anim] .deg-tier,
html[data-anim] .deg-link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.22,1,.36,1);
}
html[data-anim] .is-visible .tile,
html[data-anim] .is-visible .commitment li,
html[data-anim] .is-visible .steam-box,
html[data-anim] .is-visible .post-card,
html[data-anim] .is-visible .footer-card,
html[data-anim] .is-visible .contact-card,
html[data-anim] .is-visible .contact-info > div,
html[data-anim] .is-visible .contact-form,
html[data-anim] .is-visible .deg-tier,
html[data-anim] .is-visible .deg-link,
html[data-anim] .tile.is-visible,
html[data-anim] .commitment li.is-visible,
html[data-anim] .steam-box.is-visible,
html[data-anim] .post-card.is-visible,
html[data-anim] .footer-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger the contact-info children + deg-climb tiers */
html[data-anim] .is-visible .contact-info > div:nth-child(1) { transition-delay: 0.05s; }
html[data-anim] .is-visible .contact-info > div:nth-child(2) { transition-delay: 0.15s; }
html[data-anim] .is-visible .contact-info > div:nth-child(3) { transition-delay: 0.25s; }
html[data-anim] .is-visible .contact-info > div:nth-child(4) { transition-delay: 0.35s; }
html[data-anim] .is-visible .contact-info > div:nth-child(5) { transition-delay: 0.45s; }
html[data-anim] .is-visible .contact-form { transition-delay: 0.20s; }
html[data-anim] .is-visible .deg-tier:nth-child(1) { transition-delay: 0.10s; }
html[data-anim] .is-visible .deg-link { transition-delay: 0.30s; }
html[data-anim] .is-visible .deg-tier:nth-child(3) { transition-delay: 0.50s; }

/* Stagger inside tiles-grid + steam-grid */
html[data-anim] .is-visible .tile:nth-child(1),
html[data-anim] .is-visible .steam-box:nth-child(1) { transition-delay: 0.05s; }
html[data-anim] .is-visible .tile:nth-child(2),
html[data-anim] .is-visible .steam-box:nth-child(2) { transition-delay: 0.12s; }
html[data-anim] .is-visible .tile:nth-child(3),
html[data-anim] .is-visible .steam-box:nth-child(3) { transition-delay: 0.19s; }
html[data-anim] .is-visible .tile:nth-child(4),
html[data-anim] .is-visible .steam-box:nth-child(4) { transition-delay: 0.26s; }
html[data-anim] .is-visible .tile:nth-child(5),
html[data-anim] .is-visible .steam-box:nth-child(5) { transition-delay: 0.33s; }

/* Stats counter pulse on reveal */
html[data-anim] .stats-strip .num { transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); transform: scale(0.9); opacity: 0.5; }
html[data-anim] .stats-strip.is-visible .num { transform: scale(1); opacity: 1; }

/* FAQ item hover */
.faq-item summary { transition: color 0.2s ease; }
.faq-item summary:hover { color: var(--red); }

/* Smooth section transitions */
section { scroll-margin-top: 1rem; }

/* ============================================
   211 vs 212 comparison block
   ============================================ */
.comparison-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
}
.comparison-row {
  width: 100%;
  padding: 1.75rem 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.comparison-row .deg {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  flex-shrink: 0;
}
.comparison-row .text { font-family: 'Montserrat', sans-serif; }
.comparison-row .text .label {
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.comparison-row .text .desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  display: block;
}
.comparison-row.gray { background: var(--gray-211); }
.comparison-row.red  { background: var(--red-deep); }
.comparison-arrow {
  color: var(--red);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

/* Service tiles */
.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .tiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .tiles-grid.tiles-5 { grid-template-columns: repeat(5, 1fr); gap: 1rem; } }
.tile {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.25s ease;
}
.tile:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.tile h4 {
  color: var(--black);
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}
.tile p { font-size: 1rem; color: var(--gray-700); margin: 0; }

/* Commitment list */
.commitment {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}
@media (min-width: 768px) { .commitment { grid-template-columns: 1fr 1fr; } }
.commitment li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--gray-100);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  font-size: 1rem;
}
.commitment .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ============================================
   "Want to operate at 212°?" CTA — beige w/ portrait images
   ============================================ */
.cta-banner {
  background: var(--beige);
  color: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-flame { width: 36px; margin: 0 auto 1.5rem; }
.cta-banner-flame img { width: 100%; }
.cta-banner h2 {
  color: var(--black);
  text-transform: none;
  font-size: clamp(1.35rem, 3.4vw, 2.25rem);
  white-space: nowrap;
  margin-bottom: 1rem;
  font-weight: 800;
}
.cta-banner p {
  color: var(--gray-900);
  font-size: 1.125rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}
/* CTA section: photos absolutely positioned to the OUTER edges of the section,
   centered text always lives in the middle and is never crowded. */
.cta-banner { position: relative; }
.cta-banner .container { max-width: 1200px; position: relative; z-index: 2; }
.cta-banner .cta-text-block {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-photos { display: none; }
@media (min-width: 1100px) {
  .cta-photos {
    display: block;
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    pointer-events: none;
    z-index: 1;
  }
  .cta-photos .photo {
    position: absolute;
    width: 200px;
    height: 240px;
    border-radius: 24px;
    overflow: hidden;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  }
  .cta-photos .photo img { width: 100%; height: 100%; object-fit: cover; }
  .cta-photos .left  { left: 1rem; }
  .cta-photos .right { right: 1rem; }
}

/* Two col */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.two-col img { border-radius: 20px; box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.two-col p { color: var(--gray-700); }

/* ============================================
   Contact form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-info h3 { margin-bottom: 1rem; font-size: 1.625rem; text-transform: none; }
.contact-info .role {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-700);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  margin-bottom: 2rem;
}
.contact-card {
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 18px;
  margin-bottom: 1rem;
}
.contact-card .label {
  color: var(--silver);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact-card .value {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 600;
}
.contact-card a.value { color: var(--white); }
.contact-card a.value:hover { color: var(--red-bright); }

.contact-form {
  background: var(--gray-100);
  padding: 2.25rem;
  border-radius: 24px;
  border-top: 4px solid var(--red);
}
.contact-form h3 { font-size: 1.625rem; text-transform: none; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 600px) { .form-row.two-up { grid-template-columns: 1fr 1fr; } }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--gray-900);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group label .req { color: var(--red); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--silver);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(194,47,41,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status {
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  font-weight: 600;
  display: none;
  font-size: 0.9375rem;
}
.form-status.success { display: block; background: #e6f7ec; color: #18733b; border: 1px solid #b8e6c8; }
.form-status.error   { display: block; background: #fbeaea; color: #b41d1a; border: 1px solid #f0bcbb; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--black);
  color: #E0E0E0;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; align-items: start; }
  /* Resources — leftmost, left-aligned (default) */
  .footer-grid > div:nth-child(3) { order: 1; }
  /* Human Touch — middle, centered content */
  .footer-grid > div:nth-child(2) {
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Brand — rightmost, right-aligned content */
  .footer-grid > div:nth-child(1) {
    order: 3;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .footer-grid > div:nth-child(1) .social-row { justify-content: flex-end; order: -1; }
}
.footer-brand img { height: 96px; width: auto; margin-bottom: 1.5rem; }
.footer-brand p { color: #E0E0E0; font-size: 1rem; margin-bottom: 0; max-width: 320px; }
.footer-col h3, .footer-col h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 0.875rem 1.125rem;
  margin-bottom: 0.625rem;
}
.footer-card .lbl {
  color: #E0E0E0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.125rem;
}
.footer-card a, .footer-card span {
  color: var(--white);
  font-weight: 600;
  font-size: 1.0625rem;
}
.footer-card a:hover { color: var(--red-bright); }
.social-row { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.2s ease;
}
.social-icon svg { width: 20px; height: 20px; fill: currentColor; }
.social-icon:hover { background: var(--red); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #999;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--red-bright); }
@media (max-width: 768px) {
  .site-footer { padding: 3rem 0 2.5rem; }
  .footer-bottom { padding: 1.25rem 0.5rem 0.5rem; text-align: center; justify-content: center !important; line-height: 1.5; }
  .footer-bottom span { display: inline-block; padding: 0 0.5rem; }
}

/* Misc */
.text-center { text-align: center; }
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}
.sk