:root {
  /* Company maroon */
  --red: #550000;
  --red-light: #7a0000;
  --red-deep: #3d0000;
  --red-pale: #fbf0f0;
  --navy: #0E1F3D;
  --charcoal: #1C1C1C;
  --warm-white: #FAF8F5;
  --off-white: #F2EFE9;
  --mid-gray: #8A8880;
  --border: rgba(0,0,0,0.09);
  --header-h: 68px;
  --font-display: 'VigorDT', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'VigorDT', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
@font-face {
  font-family: 'VigorDT';
  src: url('../fonts/fonnts.com-VigorDT-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
  /* Letters + space only — VigorDT maps digits (e.g. 4) to icon glyphs */
  unicode-range: U+0020, U+0041-005A, U+0061-007A;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Same-origin tab navigations: smooth cross-document transitions (Chromium 126+). Ignored elsewhere. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }

  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }
}

/* Subtle incoming-page motion when arriving from another page on this site (Safari / Firefox). */
@media (prefers-reduced-motion: no-preference) {
  html.page-same-site-enter main {
    animation: pageSameSiteIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

@keyframes pageSameSiteIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Keep pages snappy: no scroll-reveal hiding/delay */
.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; transition: none; }

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex-shrink: 0;
  color: rgba(255,255,255,0.65);
  margin-top: 0;
}
.icon svg { width: 100%; height: 100%; display: block; }

/* Icon standards: consistent stroke rendering across contexts */
.icon svg,
.social-link svg,
.svc-icon svg,
.split-icon svg,
.team-icon svg,
.whatsapp-float svg,
.back-to-top svg,
.lightbox-close svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.footer-credit {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.footer-credit:hover { color: #fff; }

/* ── Utility Bar ─────────────────────────────────────────────────── */
.util-bar {
  position: relative;
  z-index: 10;
  height: 38px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.util-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.util-bar-address,
.util-bar-phones {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 11.5px;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.util-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.55);
}
.util-bar-phone-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.3;
}
.util-bar-phone-stack a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  transition: color 0.18s;
}
.util-bar-phone-stack a:hover { color: #fff; }

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: transform 0.32s ease, box-shadow 0.2s ease, background 0.2s ease;
}
nav.nav-scroll-hidden {
  transform: translateY(-110%);
  box-shadow: none;
}
body:not(.header-transparent) main {
  padding-top: var(--header-h);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo picture {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.footer-brand picture {
  display: block;
  line-height: 0;
}
.brand-logo {
  width: 72px;
  height: 54px;
  object-fit: contain;
  display: block;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
}
.nav-logo-text { font-size: 22px; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.02em; color: var(--red); line-height: 1.15; }
.nav-logo-sub { font-size: 10px; font-weight: 400; color: var(--mid-gray); letter-spacing: 0.04em; }
.nav-links,
.nav-primary {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.nav-primary a {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 8px;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-primary a:hover {
  color: var(--red);
}

.nav-links a::before,
.nav-links a::after,
.nav-primary a::before,
.nav-primary a::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.nav-links a::before,
.nav-primary a::before {
  top: 0;
  right: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(2px, -2px);
}

.nav-links a::after,
.nav-primary a::after {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(-2px, 2px);
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-primary a:hover::before,
.nav-primary a:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 44px;
  border-radius: 22px;
  background: #550000;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 6px 16px rgba(85,0,0,0.35);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.nav-cta:hover {
  background: #6a0000;
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 8px 20px rgba(85,0,0,0.4);
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
  background: #470000;
  border-color: rgba(255,255,255,0.1);
  color: #fff;
  box-shadow: 0 4px 10px rgba(85,0,0,0.28);
}
.nav-cta.nav-active {
  background: #550000;
  border-color: rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: 0 6px 16px rgba(85,0,0,0.35);
}
.nav-cta.nav-active:hover,
.nav-cta.nav-active:active {
  color: #fff;
}
.nav-cta::before,
.nav-cta::after {
  content: none !important;
}
.nav-cta:focus-visible {
  outline: 3px solid rgba(85,0,0,0.35);
  outline-offset: 3px;
  color: #fff;
}
.nav-active { color: var(--red) !important; font-weight: 600; }

/* Mobile nav (implemented using existing tokens/sizes) */
.nav-hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-hamburger-lines {
  width: 18px;
  height: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(28,28,28,0.85);
  border-radius: 2px;
}
.nav-mobile {
  position: relative;
  z-index: 8;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.22s ease, opacity 0.18s ease;
}
.nav-mobile-inner {
  padding: 14px 5% 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 14px 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta { display: inline-flex; width: max-content; margin-top: 4px; border-bottom: none; padding: 10px 24px; font-size: 14px; }
.nav-mobile.is-open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
}

main { padding-top: 0; }

/* Hide utility bar on mobile — too cramped */
@media (max-width: 767px) {
  .util-bar { display: none; }
  main { padding-top: 0; }
}

/* SHARED BUTTONS */
.btn-red {
  font-size: 14px; font-weight: 600; padding: 13px 30px;
  background: var(--red); color: #fff; border-radius: 5px;
  border: 1px solid var(--red);
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-red:hover { background: transparent; color: var(--red); border-color: var(--red); transform: translateY(-1px); }
.btn-red:active {
  background: transparent;
  transform: translateY(1px);
  color: var(--red);
  opacity: 1;
}
.btn-red:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
  color: #fff;
}
.btn-outline {
  font-size: 14px; font-weight: 500; padding: 13px 30px;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: 5px;
  text-decoration: none; letter-spacing: 0.03em;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before,
.section-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.text-accent { color: var(--red); }

/* Polygon band (adapted from https://stackoverflow.com/a/55169378, CC BY-SA 4.0) */
.cta-band,
footer,
.vhb-overlay {
  position: relative;
  overflow: hidden;
}
.cta-band::before,
footer::before,
.vhb-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  clip-path: polygon(0 50%, 100% 0, 100% 50%, 0 100%);
  opacity: 0.92;
  pointer-events: none;
}
.cta-band > *,
footer > *,
.vhb-overlay > * {
  position: relative;
  z-index: 1;
}
.cta-band::before { opacity: 0.38; }
footer::before { opacity: 0.22; }
.vhb-overlay::before { opacity: 0.12; }
.section-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}
.section-body-tight { max-width: 440px; }
.arrow-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--red);
  font-weight: 600;
  margin-top: 16px;
  letter-spacing: 0.01em;
}
.arrow-link span { transition: transform 0.2s ease; }
.arrow-link:hover span { transform: translateX(4px); }

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 54px 5% 52px;
  border-bottom: 1px solid var(--border);
}
.header-transparent .page-hero {
  padding-top: calc(54px + var(--header-h));
}
.page-hero-inner { position: relative; }
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 35%, rgba(85,0,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 60%, rgba(14,31,61,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.0) 0%, rgba(255,255,255,0.0) 100%);
  opacity: 1;
}
.page-hero-inner { max-width: 920px; margin: 0 auto; }
.page-hero-dark {
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.page-hero-dark::before {
  background:
    radial-gradient(ellipse 70% 60% at 15% 35%, rgba(255,255,255,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 85% 60%, rgba(255,255,255,0.14) 0%, transparent 60%),
    linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.00) 100%);
}
.page-hero-dark .page-hero-title { color: #fff; }
.page-hero-dark .page-hero-eyebrow { color: rgba(255,255,255,0.85); }
.page-hero-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 40%, rgba(255,255,255,0.00) 65%),
    radial-gradient(ellipse 60% 70% at 78% 40%, rgba(255,255,255,0.12) 0%, transparent 55%);
  opacity: 1;
}
.page-hero-light { background: #fff; }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 720px;
  color: rgba(28,28,28,0.68);
}
.page-hero-dark .page-hero-sub { color: rgba(255,255,255,0.62); }

/* SESSION 2 — HERO */
.hero {
  height: 86vh;
  min-height: 600px;
  display: block;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, #1a0a06 0%, #2d1208 40%, #0E1F3D 100%);
}
.hero-bg-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  opacity: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--header-h) 5% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 40px;
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-h1 em { color: var(--red-light); font-style: italic; }
.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 460px;
  margin-bottom: 36px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}
.hero-points span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.social-link svg { width: 22px; height: 22px; display: block; }
.social-link:hover { transform: translateY(-2px); background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); }

/* Persistent social rail (rest of page) */
.social-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 120;
}
.social-rail .social-link {
  background: linear-gradient(165deg, #e8c4c4 0%, #deb8b8 50%, #d4adad 100%);
  border-color: rgba(255, 255, 255, 0.55);
  color: #5a1a1a;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 14px rgba(120, 40, 40, 0.18);
}

.social-rail .social-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(165deg, #f0d4d4 0%, #e6c4c4 100%);
  border-color: rgba(255, 255, 255, 0.75);
  color: #4a1010;
}
@media (max-width: 768px) {
  .social-rail { display: none; }
}

/* Transparent ("colorless") header variant, used on services */
.header-transparent .util-bar,
.header-transparent nav {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.header-transparent .util-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
}
.header-transparent nav {
  /* inherits position:fixed from nav */
  z-index: 200;
}
.header-transparent .nav-mobile {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 199;
}
.header-transparent .nav-logo-text { color: var(--red); }
.header-transparent .nav-logo-sub,
.header-transparent .nav-links a {
  color: rgba(255,255,255,0.88);
}
.header-transparent .nav-links a:hover { color: #fff; }
.header-transparent .nav-active { color: var(--red) !important; }
.header-transparent .nav-hamburger { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.22); }
.header-transparent .nav-hamburger-lines span { background: rgba(255,255,255,0.85); }
.header-transparent .nav-cta {
  background: #550000;
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}
.header-transparent .nav-cta:hover {
  background: #6a0000;
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* Prevent "white band" behind transparent header on services / about / careers v2 */
.page-services.header-transparent main,
.page-about.header-transparent main,
.page-careers.header-transparent main {
  padding-top: 0;
}
.page-services.header-transparent .svc-v2-hero,
.page-about.header-transparent .abt-v2-hero,
.page-careers.header-transparent .cr-v2-hero {
  padding-top: calc(46px + var(--header-h));
}
.page-services.header-transparent nav,
.page-about.header-transparent nav,
.page-careers.header-transparent nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

/* Match homepage top-bar look on inner pages */
.page-services nav,
.page-about nav,
.page-careers nav,
.page-contact nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(12px, 2vw, 24px);
}

.page-services .nav-logo,
.page-about .nav-logo,
.page-careers .nav-logo,
.page-contact .nav-logo {
  grid-column: 1;
  justify-self: start;
  min-width: 0;
}

.page-services .nav-primary,
.page-about .nav-primary,
.page-careers .nav-primary,
.page-contact .nav-primary {
  grid-column: 2;
  justify-self: center;
  gap: clamp(22px, 4.5vw, 56px);
  letter-spacing: 0.02em;
}

.page-services .nav-actions,
.page-about .nav-actions,
.page-careers .nav-actions,
.page-contact .nav-actions {
  grid-column: 3;
  justify-self: end;
}

.page-services .nav-logo-text,
.page-about .nav-logo-text,
.page-careers .nav-logo-text,
.page-contact .nav-logo-text,
.page-services .nav-primary a,
.page-about .nav-primary a,
.page-careers .nav-primary a,
.page-contact .nav-primary a,
.page-services .nav-cta,
.page-about .nav-cta,
.page-careers .nav-cta,
.page-contact .nav-cta {
  font-family: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
}

.page-services.header-transparent .nav-primary a,
.page-about.header-transparent .nav-primary a,
.page-careers.header-transparent .nav-primary a,
.page-contact .nav-primary a {
  color: rgba(28, 28, 28, 0.9);
}

.page-services.header-transparent .nav-primary a:hover,
.page-about.header-transparent .nav-primary a:hover,
.page-careers.header-transparent .nav-primary a:hover,
.page-contact .nav-primary a:hover {
  color: var(--red);
}

.page-services.header-transparent .nav-hamburger,
.page-about.header-transparent .nav-hamburger,
.page-careers.header-transparent .nav-hamburger,
.page-contact .nav-hamburger {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
}

.page-services.header-transparent .nav-hamburger-lines span,
.page-about.header-transparent .nav-hamburger-lines span,
.page-careers.header-transparent .nav-hamburger-lines span,
.page-contact .nav-hamburger-lines span {
  background: rgba(28, 28, 28, 0.86);
}

/* ── Services page v2 (Stitch-inspired layout + maroon/blue palette) ──────── */
.page-services {
  --svc-brand: #550000;
  --svc-brand-deep: #3d0000;
  --svc-blue: #2E57C1;
  --svc-blue-deep: #043da9;
  --svc-surface: #f7fafd;
  --svc-muted: #5c6470;
  --svc-ink: #181c1e;
  --svc-radius-lg: 1.25rem;
  --svc-radius-xl: 2rem;
  --svc-radius-2xl: 2.5rem;
}
.page-services .svc-v2-hero,
.page-services .svc-v2-stats,
.page-services .svc-v2-block,
.page-services .svc-v2-addons,
.page-services .svc-v2-cta {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.page-services .svc-v2-hero h1,
.page-services .svc-v2-block h2,
.page-services .svc-v2-addons h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

.svc-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 5% 56px;
  background: linear-gradient(165deg, #f7fafd 0%, #ffffff 45%, #eef3fb 100%);
}
.svc-v2-hero::before,
.svc-v2-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.55;
}
.svc-v2-hero::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: rgba(85, 0, 0, 0.08);
}
.svc-v2-hero::after {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: -60px;
  background: rgba(46, 87, 193, 0.1);
}
.svc-v2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.svc-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--svc-blue);
  background: rgba(46, 87, 193, 0.1);
  border: 1px solid rgba(46, 87, 193, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.svc-v2-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--svc-ink);
  margin: 0 0 18px;
}
.svc-v2-hero h1 .svc-v2-accent {
  color: var(--svc-brand);
  font-style: italic;
  font-weight: 800;
}
.svc-v2-hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--svc-muted);
  max-width: 640px;
  margin: 0 auto 36px;
}

.svc-v2-stats {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .svc-v2-stats { grid-template-columns: repeat(4, 1fr); }
}
.svc-v2-stat {
  background: #fff;
  border: 1px solid rgba(144, 111, 108, 0.22);
  border-radius: var(--svc-radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(14, 31, 61, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-v2-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(46, 87, 193, 0.12);
}
.svc-v2-stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  color: var(--svc-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-v2-stat-icon svg { width: 32px; height: 32px; }
.svc-v2-stat-num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--svc-ink);
  margin-bottom: 4px;
}
.svc-v2-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(92, 100, 112, 0.85);
}

.svc-v2-block {
  padding: 56px 5%;
}
.svc-v2-block--surface { background: #f1f4f7; }
.svc-v2-block--white { background: #fff; }

.svc-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.svc-v2-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (min-width: 900px) {
  .svc-v2-row {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .svc-v2-row--reverse {
    flex-direction: row-reverse;
  }
}

.svc-v2-media {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 520px;
}
.svc-v2-media-deco {
  position: absolute;
  inset: -14px;
  border-radius: var(--svc-radius-2xl);
  background: rgba(46, 87, 193, 0.08);
  transform: rotate(2.5deg);
  z-index: 0;
}
.svc-v2-block--surface .svc-v2-media-deco {
  background: rgba(85, 0, 0, 0.07);
  transform: rotate(-2.5deg);
}
.svc-v2-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(420px, 58vw);
  object-fit: cover;
  border-radius: var(--svc-radius-2xl);
  border: 4px solid #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  display: block;
}
@media (min-width: 900px) {
  .svc-v2-media img { height: 460px; }
}
.svc-v2-float {
  display: none;
  position: absolute;
  right: -8px;
  bottom: -18px;
  z-index: 2;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: var(--svc-radius-xl);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}
@media (min-width: 1024px) {
  .svc-v2-float { display: block; }
}
.svc-v2-float-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--svc-ink);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-v2-float-title svg { width: 22px; height: 22px; color: var(--svc-brand); }
.svc-v2-float p {
  font-size: 12px;
  line-height: 1.45;
  color: var(--svc-muted);
  margin: 0;
}

.svc-v2-copy {
  flex: 1;
  min-width: 0;
  max-width: 520px;
}
.svc-v2-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--svc-ink);
  margin: 0 0 14px;
}
.svc-v2-copy > p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--svc-muted);
  margin: 0 0 20px;
}
.svc-v2-checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.svc-v2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--svc-ink);
}
.svc-v2-checklist svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--svc-blue);
  margin-top: 1px;
}

.svc-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: var(--svc-radius-lg);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.svc-v2-btn:active { transform: scale(0.98); }
.svc-v2-btn--primary {
  background: var(--svc-blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(46, 87, 193, 0.35);
}
.svc-v2-btn--primary:hover {
  background: var(--svc-blue-deep);
  box-shadow: 0 12px 28px rgba(46, 87, 193, 0.4);
}
.svc-v2-btn--outline {
  background: transparent;
  color: var(--svc-blue);
  border: 2px solid var(--svc-blue);
}
.svc-v2-btn--outline:hover {
  background: rgba(46, 87, 193, 0.06);
}

.svc-v2-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}
.svc-v2-mini {
  padding: 14px;
  border-radius: var(--svc-radius-lg);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.svc-v2-block--surface .svc-v2-mini {
  background: #fff;
  border-color: rgba(14, 31, 61, 0.08);
}
.svc-v2-mini svg {
  width: 24px;
  height: 24px;
  color: var(--svc-brand);
  margin-bottom: 8px;
}
.svc-v2-mini h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--svc-ink);
}
.svc-v2-mini p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--svc-muted);
  margin: 0;
}

/* Add-ons bento */
.svc-v2-addons {
  padding: 56px 5% 64px;
  background: #fff;
}
.svc-v2-addons-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
}
.svc-v2-addons-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--svc-ink);
  margin: 0 0 8px;
}
.svc-v2-addons-head p {
  margin: 0;
  font-size: 1rem;
  color: var(--svc-muted);
}
.svc-v2-bento {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .svc-v2-bento {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .svc-v2-bento-tall { grid-row: span 2; }
  .svc-v2-bento-wide { grid-column: span 2; }
}
.svc-v2-bento-card {
  border-radius: var(--svc-radius-2xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.svc-v2-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.svc-v2-bento-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.svc-v2-bento-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.svc-v2-bento-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.svc-v2-bento-neutral {
  background: #ebeef3;
  border: 1px solid rgba(144, 111, 108, 0.2);
  color: var(--svc-ink);
}
.svc-v2-bento-neutral p { color: var(--svc-muted); }
.svc-v2-bento-red {
  background: var(--svc-brand);
  border: 1px solid var(--svc-brand-deep);
  color: #fff;
}
.svc-v2-bento-red p { color: rgba(255, 255, 255, 0.9); }
.svc-v2-bento-red svg { color: #fff; }
.svc-v2-bento-blue {
  background: var(--svc-blue);
  border: 1px solid var(--svc-blue-deep);
  color: #fff;
}
.svc-v2-bento-blue p { color: rgba(255, 255, 255, 0.9); }
.svc-v2-bento-blue svg { color: #fff; }
.svc-v2-bento-wide {
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #f7fafd;
  border: 1px solid rgba(144, 111, 108, 0.2);
}
.svc-v2-bento-wide .svc-v2-bento-wide-icon {
  flex-shrink: 0;
}
.svc-v2-bento-wide .svc-v2-bento-wide-icon svg {
  width: 72px;
  height: 72px;
  color: rgba(85, 0, 0, 0.35);
  margin: 0;
}
@media (max-width: 767px) {
  .svc-v2-bento-wide { flex-direction: column; align-items: flex-start; }
}

/* Dark CTA strip */
.svc-v2-cta {
  padding: 48px 5% 56px;
  background: #fff;
}
.svc-v2-cta-panel {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 3rem;
  background: #2d3133;
  padding: 48px 28px 52px;
  text-align: center;
}
.svc-v2-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 16.66%
  );
  opacity: 0.35;
  pointer-events: none;
}
.svc-v2-cta-inner {
  position: relative;
  z-index: 1;
}
.svc-v2-cta h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.svc-v2-cta p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 auto 28px;
}
.svc-v2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.svc-v2-cta .svc-v2-btn--primary {
  background: var(--svc-brand);
  border: none;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
}
.svc-v2-cta .svc-v2-btn--primary:hover {
  background: var(--svc-brand-deep);
}
.svc-v2-cta .svc-v2-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 16px 28px;
  font-size: 15px;
  backdrop-filter: blur(8px);
}
.svc-v2-cta .svc-v2-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 720px) {
  .svc-v2-media img { height: 280px; }
}

/* ── About page v2 (Stitch-inspired; photo frames match services .svc-v2-media) ─ */
.page-about {
  --svc-brand: #550000;
  --svc-brand-deep: #3d0000;
  --svc-blue: #2E57C1;
  --svc-blue-deep: #043da9;
  --svc-muted: #5c6470;
  --svc-ink: #181c1e;
  --svc-radius-lg: 1.25rem;
  --svc-radius-xl: 2rem;
  --svc-radius-2xl: 2.5rem;
}
.page-about .abt-v2-hero,
.page-about .abt-v2-trust,
.page-about .abt-v2-mv,
.page-about .abt-v2-iso,
.page-about .abt-v2-values,
.page-about .abt-v2-cta {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.page-about .abt-v2-hero h1,
.page-about .abt-v2-mv h2,
.page-about .abt-v2-iso h2,
.page-about .abt-v2-values h2,
.page-about .abt-v2-values h3,
.page-about .abt-v2-cta h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

.abt-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 5% 64px;
  background: linear-gradient(165deg, #f7fafd 0%, #ffffff 50%, #eef3fb 100%);
}
.abt-v2-hero::before,
.abt-v2-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  opacity: 0.5;
}
.abt-v2-hero::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -40px;
  background: rgba(85, 0, 0, 0.08);
}
.abt-v2-hero::after {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: -40px;
  background: rgba(46, 87, 193, 0.1);
}
.abt-v2-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}
@media (min-width: 900px) {
  .abt-v2-hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }
}
.abt-v2-hero-copy {
  flex: 1;
  min-width: 0;
}
.abt-v2-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--svc-brand);
  background: #ffe4e4;
  border: 1px solid rgba(85, 0, 0, 0.2);
  margin-bottom: 20px;
}
.abt-v2-hero h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--svc-ink);
  margin: 0 0 18px;
}
.abt-v2-hero-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--svc-muted);
  margin: 0 0 28px;
  max-width: 34rem;
}
.abt-v2-hero-accent {
  color: var(--svc-brand);
  font-style: italic;
}
.abt-v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.abt-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--svc-radius-lg);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.abt-v2-btn:active { transform: scale(0.98); }
.abt-v2-btn--primary {
  background: var(--svc-brand);
  color: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(85, 0, 0, 0.35);
}
.abt-v2-btn--primary:hover {
  background: var(--svc-brand-deep);
  box-shadow: 0 12px 28px rgba(85, 0, 0, 0.4);
}
.abt-v2-btn--outline {
  background: transparent;
  color: var(--svc-blue);
  border: 2px solid var(--svc-blue);
}
.abt-v2-btn--outline:hover {
  background: rgba(46, 87, 193, 0.06);
}

/* Photo frame: same treatment as .svc-v2-media + img on services */
.abt-v2-photo-frame {
  position: relative;
  flex: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .abt-v2-photo-frame { margin: 0; }
}
.abt-v2-photo-deco {
  position: absolute;
  inset: -14px;
  border-radius: var(--svc-radius-2xl);
  background: rgba(46, 87, 193, 0.08);
  transform: rotate(2.5deg);
  z-index: 0;
}
.abt-v2-photo-stack {
  position: relative;
  z-index: 1;
  border-radius: var(--svc-radius-2xl);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}
.abt-v2-photo-stack img {
  width: 100%;
  height: min(420px, 58vw);
  object-fit: cover;
  display: block;
}
.abt-v2-photo-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(46, 87, 193, 0.28) 0%,
    transparent 22%,
    transparent 78%,
    rgba(46, 87, 193, 0.22) 100%
  );
}
@media (min-width: 900px) {
  .abt-v2-photo-stack img { height: 460px; }
}
@media (max-width: 720px) {
  .abt-v2-photo-stack img { height: 280px; }
}

.abt-v2-trust {
  background: #2d3133;
  padding: 56px 5%;
}
.abt-v2-trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}
@media (min-width: 768px) {
  .abt-v2-trust-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.abt-v2-trust-card {
  padding: 28px 20px;
  border-radius: var(--svc-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
}
.abt-v2-trust-card:hover {
  background: rgba(255, 255, 255, 0.05);
}
.abt-v2-trust-num {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #550000;
  margin-bottom: 8px;
}
.abt-v2-trust-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.abt-v2-mv {
  padding: 56px 5%;
  background: #f1f4f7;
}
.abt-v2-mv-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .abt-v2-mv-inner { grid-template-columns: 1fr 1fr; }
}
.abt-v2-mv-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--svc-radius-2xl);
  padding: 40px 36px;
}
.abt-v2-mv-card--light {
  background: #fff;
  border: 1px solid rgba(228, 190, 185, 0.55);
  box-shadow: 0 4px 20px rgba(14, 31, 61, 0.06);
}
.abt-v2-mv-card--dark {
  background: #2d3133;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.abt-v2-mv-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 16px;
}
.abt-v2-mv-card--light h2 { color: var(--svc-brand); }
.abt-v2-mv-card--dark h2 { color: #e8b4c4; }
.abt-v2-mv-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
.abt-v2-mv-card--light p { color: var(--svc-muted); }
.abt-v2-mv-card--dark p { color: rgba(241, 244, 247, 0.88); }
.abt-v2-mv-wm {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0.1;
  pointer-events: none;
  color: var(--svc-ink);
}
.abt-v2-mv-card--dark .abt-v2-mv-wm {
  color: #fff;
  opacity: 0.12;
}
.abt-v2-mv-wm svg {
  width: 100px;
  height: 100px;
}
.abt-v2-mv-accent {
  margin-top: 28px;
  height: 4px;
  width: 72px;
  border-radius: 2px;
  background: var(--svc-brand);
}
.abt-v2-mv-card--dark .abt-v2-mv-accent {
  background: #550000;
}

.abt-v2-iso {
  padding: 56px 5% 64px;
  background: #fff;
}
.abt-v2-iso-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}
.abt-v2-iso-inner > h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--svc-ink);
  margin: 0 0 12px;
}
.abt-v2-iso-intro {
  margin: 0 auto 40px;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--svc-muted);
}
.abt-v2-iso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .abt-v2-iso-grid { grid-template-columns: repeat(3, 1fr); }
}
.abt-v2-iso-card {
  padding: 32px 24px;
  border-radius: var(--svc-radius-xl);
  background: #fff;
  border: 1px solid rgba(15, 31, 61, 0.1);
  box-shadow: 0 8px 30px rgba(13, 65, 172, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.abt-v2-iso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 65, 172, 0.1);
}
.abt-v2-iso-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: var(--svc-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.abt-v2-iso-icon--blue {
  background: rgba(46, 87, 193, 0.12);
  color: var(--svc-blue);
}
.abt-v2-iso-icon--rose {
  background: #ffe4e4;
  color: var(--svc-brand);
}
.abt-v2-iso-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--svc-ink);
}
.abt-v2-iso-tag {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #906f6c;
  margin-bottom: 12px;
}
.abt-v2-iso-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--svc-muted);
}
.abt-v2-iso-meta {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(92, 100, 112, 0.9);
}

.abt-v2-values {
  padding: 56px 5% 64px;
  background: #ebeef3;
}
.abt-v2-values-head {
  max-width: 1120px;
  margin: 0 auto 32px;
}
.abt-v2-values-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-brand);
  margin-bottom: 8px;
}
.abt-v2-values-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--svc-ink);
  margin: 0;
}
.abt-v2-bento {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .abt-v2-bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(0, auto);
  }
  .abt-v2-bento-reliability { grid-column: span 2; }
  .abt-v2-bento-precision { grid-column: span 3; }
}
.abt-v2-bento-card {
  border-radius: var(--svc-radius-2xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.abt-v2-bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
.abt-v2-bento-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.abt-v2-bento-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.abt-v2-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.abt-v2-bento-icon svg {
  width: 26px;
  height: 26px;
}
.abt-v2-bento-neutral {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: var(--svc-ink);
}
.abt-v2-bento-neutral p { color: var(--svc-muted); }
.abt-v2-bento-neutral .abt-v2-bento-icon {
  background: var(--svc-brand);
  color: #fff;
}
.abt-v2-bento-red {
  background: var(--svc-brand);
  border: 1px solid var(--svc-brand-deep);
  color: #fff;
}
.abt-v2-bento-red p { color: rgba(255, 255, 255, 0.85); }
.abt-v2-bento-red .abt-v2-bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.abt-v2-bento-blue {
  background: var(--svc-blue);
  border: 1px solid var(--svc-blue-deep);
  color: #fff;
}
.abt-v2-bento-blue p { color: rgba(255, 255, 255, 0.85); }
.abt-v2-bento-blue .abt-v2-bento-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.abt-v2-bento-dark {
  background: #2d3133;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.abt-v2-bento-dark p { color: rgba(241, 244, 247, 0.82); }
.abt-v2-bento-dark .abt-v2-bento-icon {
  background: #550000;
  color: #fff;
}
.abt-v2-bento-wide {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 0;
}
.abt-v2-bento-wide .abt-v2-bento-wide-copy {
  flex: 1;
  min-width: 0;
}
.abt-v2-bento-photo {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 220px;
  border-radius: var(--svc-radius-xl);
  border: 4px solid #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.abt-v2-bento-photo .abt-v2-photo-vignette {
  opacity: 0.38;
}
.abt-v2-bento-photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
@media (max-width: 899px) {
  .abt-v2-bento-wide {
    flex-direction: column;
    align-items: flex-start;
  }
  .abt-v2-bento-photo {
    max-width: none;
  }
  .abt-v2-bento-photo img {
    height: 200px;
  }
}

.abt-v2-cta {
  padding: 48px 5% 64px;
  background: #fff;
}
.abt-v2-cta-panel {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: var(--svc-radius-2xl);
  background: var(--svc-brand);
  padding: 48px 28px 52px;
  text-align: center;
  border: 1px solid var(--svc-brand-deep);
}
.abt-v2-cta-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.12) 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.abt-v2-cta-inner {
  position: relative;
  z-index: 1;
}
.abt-v2-cta-panel h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}
.abt-v2-cta-panel > .abt-v2-cta-inner > p {
  margin: 0 auto 28px;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.abt-v2-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.abt-v2-cta .abt-v2-btn--white {
  background: #fff;
  color: var(--svc-brand);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.abt-v2-cta .abt-v2-btn--white:hover {
  background: #f7f7f7;
}
.abt-v2-cta .abt-v2-btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.abt-v2-cta .abt-v2-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ── Careers page v2 (Stitch-inspired + maroon #550000) ─────────────────── */
.page-careers {
  --svc-brand: #550000;
  --svc-brand-deep: #3d0000;
  --svc-blue: #2e57c1;
  --svc-muted: #5c6470;
  --svc-ink: #181c1e;
  --svc-radius-lg: 1.25rem;
  --svc-radius-xl: 2rem;
  --svc-radius-2xl: 2.5rem;
}
.page-careers .cr-v2-hero,
.page-careers .cr-v2-stat,
.page-careers .cr-v2-culture,
.page-careers .cr-v2-opportunities,
.page-careers .cr-v2-pitch {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.page-careers .cr-v2-hero h1,
.page-careers .cr-v2-opportunities h2,
.page-careers .cr-v2-pitch h2,
.page-careers .cr-v2-culture h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

.cr-v2-hero {
  position: relative;
  min-height: min(92vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1d21;
}
.cr-v2-hero-media {
  position: absolute;
  inset: 0;
}
.cr-v2-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cr-v2-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 31, 61, 0.55) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.62) 100%
  );
  pointer-events: none;
}
.cr-v2-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 32px 5% 56px;
  max-width: 44rem;
  margin: 0 auto;
}
.cr-v2-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 18px;
}
.cr-v2-hero-lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.cr-v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--svc-radius-lg);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.cr-v2-btn:active { transform: scale(0.98); }
.cr-v2-btn--solid {
  background: var(--svc-brand);
  color: #fff;
  border: 1px solid var(--svc-brand-deep);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.cr-v2-btn--solid:hover {
  background: var(--svc-brand-deep);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}
.cr-v2-btn--solid svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cr-v2-stat {
  background: #f1f4f7;
  padding: 20px 5%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.cr-v2-stat-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--svc-muted);
}
.cr-v2-stat-inner strong {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--svc-brand);
  letter-spacing: -0.02em;
}
.cr-v2-stat-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(85, 0, 0, 0.25);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cr-v2-stat-dot { display: none; }
}

.cr-v2-culture {
  padding: 56px 5%;
  background: #fff;
}
.cr-v2-culture-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (min-width: 900px) {
  .cr-v2-culture-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}
.cr-v2-culture-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--svc-ink);
  margin: 0 0 14px;
}
.cr-v2-culture-copy p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--svc-muted);
}
.cr-v2-culture-copy p:last-of-type {
  margin-bottom: 0;
}

.cr-v2-opportunities {
  padding: 64px 5% 72px;
  background: #f7fafd;
}
.cr-v2-opportunities-inner {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.cr-v2-opportunities-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--svc-brand);
  margin-bottom: 10px;
}
.cr-v2-opportunities h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--svc-ink);
  margin: 0 0 16px;
}
.cr-v2-opportunities-body {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--svc-muted);
}
.cr-v2-opportunities-note {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(24, 28, 30, 0.72);
}
.cr-v2-opportunities-note a {
  color: var(--svc-brand);
  font-weight: 700;
  text-decoration: none;
}
.cr-v2-opportunities-note a:hover {
  text-decoration: underline;
}

.cr-v2-pitch {
  background: #2d3133;
  padding: 56px 5% 64px;
  text-align: center;
}
.cr-v2-pitch-inner {
  max-width: 36rem;
  margin: 0 auto;
}
.cr-v2-pitch h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}
.cr-v2-pitch-lead {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}
.cr-v2-pitch .cr-v2-btn--solid {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 720px) {
  .cr-v2-hero { min-height: 520px; }
}

/* ── Contact page v2 (Stitch-inspired, maroon #550000) ─────────────────── */
.page-contact .cnt-v2-hero,
.page-contact .cnt-v2-main,
.page-contact .cnt-v2-trust {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.page-contact .cnt-v2-hero h1,
.page-contact .cnt-v2-form-panel h2,
.page-contact .cnt-v2-info-card h2,
.page-contact .cnt-v2-trust-card h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
}

.cnt-v2-hero {
  background: #550000;
  padding: 52px 5% 60px;
  text-align: center;
}
.cnt-v2-hero-inner {
  max-width: 44rem;
  margin: 0 auto;
}
.cnt-v2-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 16px;
}
.cnt-v2-hero-em {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}
.cnt-v2-hero-sub {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.cnt-v2-main {
  padding: 48px 5% 64px;
  background: #eef3fb;
}
.cnt-v2-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 960px) {
  .cnt-v2-main-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }
}

.cnt-v2-form-panel {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid rgba(222, 192, 187, 0.55);
  box-shadow: 0 4px 24px rgba(45, 0, 0, 0.06);
  padding: 28px 24px 32px;
}
@media (min-width: 600px) {
  .cnt-v2-form-panel { padding: 32px 36px 40px; }
}
.cnt-v2-form-panel h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #550000;
  margin: 0 0 22px;
}
.cnt-v2-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.cnt-v2-form-grid .cnt-v2-field-full {
  grid-column: 1 / -1;
}
.cnt-v2-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cnt-v2-field span.cnt-v2-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5c6470;
}
.cnt-v2-field input,
.cnt-v2-field select,
.cnt-v2-field textarea {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(138, 113, 109, 0.35);
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cnt-v2-field input:focus,
.cnt-v2-field select:focus,
.cnt-v2-field textarea:focus {
  outline: none;
  border-color: #550000;
  box-shadow: 0 0 0 3px rgba(85, 0, 0, 0.12);
}
.cnt-v2-field textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 600px) {
  .cnt-v2-form-grid {
    grid-template-columns: 1fr;
  }
}
.cnt-v2-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background: #550000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 22px rgba(85, 0, 0, 0.25);
}
.cnt-v2-submit:hover {
  background: #3d0000;
  box-shadow: 0 12px 28px rgba(85, 0, 0, 0.3);
}
.cnt-v2-submit:active {
  transform: scale(0.99);
}
.cnt-v2-submit:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.cnt-v2-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cnt-v2-info-card {
  position: relative;
  background: #e5eeff;
  border: 1px solid rgba(138, 113, 109, 0.28);
  border-radius: 1.25rem;
  padding: 26px 22px 56px;
}
@media (min-width: 600px) {
  .cnt-v2-info-card { padding: 28px 28px 56px; }
}
.cnt-v2-info-card h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #2d0000;
  margin: 0 0 22px;
}
.cnt-v2-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}
.cnt-v2-info-row:last-of-type {
  margin-bottom: 0;
}
.cnt-v2-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(85, 0, 0, 0.1);
  color: #550000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cnt-v2-info-icon svg {
  width: 24px;
  height: 24px;
}
.cnt-v2-info-label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #550000;
  margin-bottom: 6px;
}
.cnt-v2-info-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #181c1e;
}
.cnt-v2-info-text a {
  color: #550000;
  font-weight: 700;
  text-decoration: none;
}
.cnt-v2-info-text a:hover {
  text-decoration: underline;
}
.cnt-v2-wa-bubble {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}
.cnt-v2-wa-bubble:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.cnt-v2-wa-bubble svg {
  width: 28px;
  height: 28px;
}

.cnt-v2-map {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(138, 113, 109, 0.28);
  height: min(360px, 52vh);
  background: #1a1d21;
  box-shadow: 0 8px 28px rgba(14, 31, 61, 0.12);
}
.cnt-v2-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
  transition: filter 0.4s ease;
}
.cnt-v2-map:hover iframe {
  filter: grayscale(0) contrast(1);
}
.cnt-v2-map-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  color: #550000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 1;
}

.cnt-v2-trust {
  padding: 52px 5% 64px;
  background: #dce9ff;
}
.cnt-v2-trust-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .cnt-v2-trust-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.cnt-v2-trust-card {
  background: #fff;
  border: 1px solid rgba(222, 192, 187, 0.45);
  border-radius: 1.1rem;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(45, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cnt-v2-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(14, 31, 61, 0.1);
}
.cnt-v2-trust-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  color: #550000;
}
.cnt-v2-trust-icon svg {
  width: 40px;
  height: 40px;
}
.cnt-v2-trust-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #550000;
  margin: 0 0 10px;
}
.cnt-v2-trust-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #5c6470;
}


.hero-seals {
  position: absolute;
  top: 104px;
  right: 6%;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 3;
  width: auto;
}
.hero-trust-stamp {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 0 12px auto;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.25));
  opacity: 0.98;
}
.hero-trust-strip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
  white-space: normal;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 0;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 850;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-cert {
  font-size: 12px;
  font-weight: 850;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.trust-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.trust-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-seals {
    position: static;
    margin-top: 22px;
    align-self: flex-start;
  }
  .hero-trust-stamp {
    width: 132px;
    margin: 0 0 10px 0;
  }
  .hero-trust-strip {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    padding: 12px 14px;
  }
  .hero-trust-item { min-width: max-content; }
  .trust-divider {
    width: 1px;
    height: 26px;
    background: rgba(255,255,255,0.16);
  }
}

/* Featured work copy right */
.featured-copy { grid-column: 2; justify-self: end; max-width: 520px; }

/* Slightly larger selected client logos */
.logo-card--xl img { max-width: 150px; max-height: 50px; opacity: 0.70; }
.logo-card--speke img {
  max-width: 200px !important;
  max-height: 62px !important;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
}

/* Contact map should fit container */
.map-card iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* About ISO seals (match hero size) */
.cert-badge {
  min-width: 64px;
  height: auto;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}
.cert-badge::before { display: none; }
.cert-badge::after { display: none; }

.hero-scroll {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Trusted logos */
.trusted-logos {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.clients-eyebrow {
  text-align: center;
  padding: 18px 5% 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28,28,28,0.55);
}
.clients-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--charcoal);
  margin: 10px auto 10px;
  max-width: 920px;
  padding: 0 5%;
}
.clients-sub {
  font-size: 14px;
  line-height: 1.75;
  text-align: center;
  color: rgba(28,28,28,0.62);
  margin: 0 auto 18px;
  max-width: 760px;
  padding: 0 5%;
}
.logo-marquee-wrap {
  padding: 0 0 24px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.logo-marquee-track {
  width: max-content;
  display: flex;
  gap: 12px;
  align-items: center;
  animation: logoMarquee 30s linear infinite;
  padding: 0 5%;
}
.logo-marquee-wrap:hover .logo-marquee-track { animation-play-state: paused; }
@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-card {
  min-height: 118px;
  min-width: 220px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 58%, rgba(248,248,248,0.9) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px 12px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(800px) translateY(0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.26s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.logo-card::before {
  content: '';
  position: absolute;
  inset: -30% 60% -30% -80%;
  background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.58) 45%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.logo-card img {
  width: 100%;
  max-width: 130px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) contrast(1.06);
  opacity: 0.62;
  transform: translateZ(0) scale(1);
  transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}
.logo-card:hover img {
  filter: grayscale(0) saturate(1.08) contrast(1.08);
  opacity: 1;
  transform: scale(1.05);
}
.logo-card:hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg);
  border-color: rgba(85,0,0,0.28);
  box-shadow: 0 14px 28px rgba(14,31,61,0.12), 0 6px 14px rgba(85,0,0,0.12);
}
.logo-card:nth-child(odd):hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg) rotateY(-2deg);
}
.logo-card:nth-child(even):hover {
  transform: perspective(800px) translateY(-4px) rotateX(2deg) rotateY(2deg);
}
.logo-card:hover::before {
  transform: translateX(180%);
}
.logo-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(28,28,28,0.72);
  text-align: center;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}
.logo-card:hover .logo-name {
  color: rgba(14,31,61,0.86);
  transform: translateY(-1px);
}

/* Staggered micro-delays for richer interaction rhythm */
.logo-card:nth-child(6n + 1) { transition-delay: 0ms; }
.logo-card:nth-child(6n + 2) { transition-delay: 24ms; }
.logo-card:nth-child(6n + 3) { transition-delay: 48ms; }
.logo-card:nth-child(6n + 4) { transition-delay: 72ms; }
.logo-card:nth-child(6n + 5) { transition-delay: 96ms; }
.logo-card:nth-child(6n + 6) { transition-delay: 120ms; }

.logo-card:nth-child(6n + 1) img,
.logo-card:nth-child(6n + 1) .logo-name,
.logo-card:nth-child(6n + 1)::before { transition-delay: 0ms; }
.logo-card:nth-child(6n + 2) img,
.logo-card:nth-child(6n + 2) .logo-name,
.logo-card:nth-child(6n + 2)::before { transition-delay: 24ms; }
.logo-card:nth-child(6n + 3) img,
.logo-card:nth-child(6n + 3) .logo-name,
.logo-card:nth-child(6n + 3)::before { transition-delay: 48ms; }
.logo-card:nth-child(6n + 4) img,
.logo-card:nth-child(6n + 4) .logo-name,
.logo-card:nth-child(6n + 4)::before { transition-delay: 72ms; }
.logo-card:nth-child(6n + 5) img,
.logo-card:nth-child(6n + 5) .logo-name,
.logo-card:nth-child(6n + 5)::before { transition-delay: 96ms; }
.logo-card:nth-child(6n + 6) img,
.logo-card:nth-child(6n + 6) .logo-name,
.logo-card:nth-child(6n + 6)::before { transition-delay: 120ms; }

/* SESSION 2 — STATS BAR */
.stats-section {
  background: linear-gradient(90deg, var(--navy) 0%, #18345e 55%, var(--red) 115%);
  padding: 48px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-plus { color: rgba(255,255,255,0.65); font-size: 36px; }
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* SESSION 4 — SERVICES SPLITS */
.service-splits {
  padding: 72px 5% 84px;
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}
.split:last-child { border-bottom: none; }
.split-image {
  border-radius: 10px;
  min-height: 320px;
  background: linear-gradient(145deg, #e8e0d4, #d0c8bc);
  border: 1px solid var(--border);
  overflow: hidden;
}

.split-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.split-text h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.split-text p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
  margin-bottom: 14px;
}
.split-text ul {
  padding-left: 18px;
  color: rgba(28,28,28,0.72);
  line-height: 1.8;
  font-size: 13px;
}
.split-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(85,0,0,0.18), rgba(85,0,0,0.08)),
    #fff;
  border: 1px solid rgba(85,0,0,0.26);
  box-shadow: 0 8px 18px rgba(85,0,0,0.12);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.split-icon svg { width: 24px; height: 24px; display: block; }
.split:hover .split-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(85,0,0,0.18);
}
.section-reverse .split-image { order: 2; }
.section-reverse .split-text { order: 1; }

/* Service images now use real <img> tags on services.html for reliability. */

/* CTA band */
.cta-band {
  background: var(--red);
  padding: 54px 5%;
}
.cta-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-band-action {
  position: relative;
  z-index: 1;
  padding: 18px 18px;
  border-radius: 14px;
  background: rgba(14, 31, 61, 0.92);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.cta-band-action::before {
  content: '';
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -26px;
  width: 46px;
  background: rgba(14, 31, 61, 0.92);
  transform: skewX(-16deg);
}
.cta-band-action .btn-red { position: relative; z-index: 1; }

/* ABOUT — MISSION/VISION */
.mv-section {
  padding: 72px 5%;
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
}
.mv-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mv-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(28,28,28,0.72);
}

/* BLOG */
.blog-list { padding: 72px 5% 86px; background: var(--off-white); }
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  padding: 16px 16px 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--charcoal);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.blog-thumb {
  position: relative;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
}
.blog-thumb-1 { background: linear-gradient(135deg, #e8e2d8, #d4ccc4); }
.blog-thumb-2 { background: linear-gradient(135deg, #fef0ee, #e8d0c8); }
.blog-thumb-3 { background: linear-gradient(135deg, #eef0fa, #d4dce8); }
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.blog-meta {
  font-size: 12px;
  font-weight: 600;
  color: rgba(28,28,28,0.55);
  margin-bottom: 8px;
}
.blog-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.blog-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28,28,28,0.7);
}

/* BLOG ARTICLE */
.article-shell { padding: 64px 5% 86px; background: #fff; }
.header-transparent .article-shell { padding-top: calc(64px + var(--header-h)); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.back-link-bottom { margin-top: 18px; }
.article-hero {
  height: 300px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #e8e2d8, #d4ccc4);
  margin: 18px 0 22px;
}
.article-head { max-width: 880px; margin: 0 auto 22px; }
.article-tag-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.article-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-date { font-size: 12px; color: rgba(28,28,28,0.55); font-weight: 600; }
.article-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.article-author { font-size: 13px; color: rgba(28,28,28,0.6); font-weight: 600; }
.prose { max-width: 880px; margin: 0 auto; }
.prose p { font-size: 15px; line-height: 1.9; color: rgba(28,28,28,0.78); margin-bottom: 14px; }
.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin: 22px 0 10px;
  letter-spacing: -0.01em;
}
.related { max-width: 1100px; margin: 44px auto 0; }
.related-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* CONTACT */
.contact-shell { padding: 72px 5% 86px; background: var(--off-white); }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; font-weight: 700; color: rgba(28,28,28,0.7); }
.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
  font-size: 13px;
}
.form-grid textarea { resize: vertical; }
.form-full { grid-column: 1 / -1; }
.form-success { color: var(--red); font-weight: 700; margin-top: 12px; font-size: 13px; }
.form-error { color: #c00; font-weight: 600; margin-top: 12px; font-size: 13px; }
.contact-side { display: grid; gap: 20px; }
.contact-detail { margin-top: 10px; font-size: 13px; color: rgba(28,28,28,0.72); line-height: 1.7; }
.contact-label { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(28,28,28,0.5); margin-bottom: 4px; }
.contact-detail a { color: var(--red); text-decoration: none; font-weight: 700; }
.contact-detail a:hover { color: var(--red-light); }
.sep { padding: 0 6px; color: rgba(28,28,28,0.4); }
.map-card { padding: 0; overflow: hidden; }
.map-placeholder {
  height: 300px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--mid-gray);
}

/* SESSION 3 — VIDEO HERO BAND */
.video-hero-band {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(155deg, #2d1208, #0E1F3D);
}
.vhb-video-wrap {
  position: absolute;
  inset: 0;
}
.vhb-video-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.0) 55%),
    linear-gradient(155deg, rgba(45,18,8,0.55), rgba(14,31,61,0.85));
}
.vhb-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vhb-overlay {
  position: absolute;
  inset: 0;
  background: #fff;
}
/* (band handled by polygon helper below) */
.vhb-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}
.vhb-content h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 18px;
}

/* SESSION 3 — ABOUT SPLIT */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--warm-white);
}
.about-image {
  position: relative;
  background: linear-gradient(145deg, #e8e0d4, #d0c8bc);
  overflow: hidden;
}

.about-img,
.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.about-img.is-loaded,
.about-video.is-loaded {
  opacity: 1;
}
.about-image::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--red);
}
.about-copy {
  padding: 64px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist {
  list-style: none;
  margin-top: 22px;
  border-top: 1px solid var(--border);
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: rgba(28,28,28,0.75);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
}

/* SESSION 3 — SERVICES GRID */
.services-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  overflow: hidden;
  color: rgba(28,28,28,0.86);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card::before,
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.svc-card::before {
  background: var(--off-white);
  opacity: 1;
}
.svc-card::after {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.10) 100%),
    none;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.svc-card:hover::before { opacity: 0; transition-duration: 0.08s; }
.svc-card:hover::after { opacity: 1; transform: scale(1.12); transition-duration: 0.12s; }
.svc-card:hover { border-color: rgba(14,31,61,0.18); }
.svc-card:hover h3 { color: #fff; }
.svc-card:hover p { color: rgba(255,255,255,0.82); }

/* Only apply the image layer on hover so it doesn't block initial load */
.svc-card:hover::after {
  background-image:
    linear-gradient(to top, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.22) 58%, rgba(0,0,0,0.10) 100%),
    var(--svc-img, none);
}
.svc-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.35) 58%, rgba(255,255,255,0.10) 100%),
    rgba(255,255,255,0.22);
  border: 1px solid rgba(14,31,61,0.10);
  box-shadow: 0 10px 22px rgba(0,0,0,0.08), inset 0 1px 1px rgba(255,255,255,0.26);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(14,31,61,0.82);
  margin-bottom: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.svc-card:hover .svc-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.25), inset 0 1px 1px rgba(255,255,255,0.24);
}
.svc-icon svg { width: 34px; height: 34px; display: block; }
.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: rgba(28,28,28,0.92);
}
.svc-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(28,28,28,0.68);
}

/* Vibrant service-specific hues + image previews */
.svc-janitorial {
  --svc-grad: linear-gradient(135deg, rgba(85,0,0,0.92), rgba(14,31,61,0.88));
  --svc-img: url("https://ace-media.zyntel.net/media/service-janitorial.webp");
}
.svc-grounds {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(24,94,72,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/new-service-grounds.webp");
}
.svc-waste {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(67,115,173,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/service-waste.webp");
}
.svc-fumigation {
  --svc-grad: linear-gradient(135deg, rgba(85,0,0,0.86), rgba(14,31,61,0.92));
  --svc-img: url("https://ace-media.zyntel.net/media/service-fumigation.webp");
}
.svc-laundry {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(85,0,0,0.72));
  --svc-img: url("https://ace-media.zyntel.net/media/service-laundry.webp");
}
.svc-residential {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(85,0,0,0.72));
  --svc-img: url("https://ace-media.zyntel.net/media/clean-residential.webp");
}
.svc-facade {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.88), rgba(67,115,173,0.82));
  --svc-img: url("https://ace-media.zyntel.net/media/service-facade.webp");
}
.svc-landscaping {
  --svc-grad: linear-gradient(135deg, rgba(24,94,72,0.90), rgba(14,31,61,0.88));
  --svc-img: url("https://ace-media.zyntel.net/media/landscaping.webp");
}
.svc-maintenance {
  --svc-grad: linear-gradient(135deg, rgba(14,31,61,0.92), rgba(123,82,168,0.78));
  --svc-img: url("https://ace-media.zyntel.net/media/mentainance.webp");
}

/* Featured media */
.featured-media {
  background: #0b162c;
  padding: 110px 5%;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.featured-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.featured-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(11,22,44,0.85) 0%, rgba(11,22,44,0.60) 52%, rgba(11,22,44,0.18) 100%),
    radial-gradient(ellipse 75% 60% at 75% 45%, rgba(85,0,0,0.18) 0%, transparent 60%);
}
.featured-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.featured-copy .btn-red { margin-top: 14px; }
.featured-copy .section-title { color: #fff; }
.featured-copy .section-body { color: rgba(255,255,255,0.75); }
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.10) 62%, rgba(0,0,0,0.06) 100%);
}

/* SESSION 3 — WHY ACE */
.why-ace {
  background: #fff;
  padding: 76px 5%;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
}
.why-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  color: rgba(85,0,0,0.15);
  margin-bottom: 12px;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: rgba(28,28,28,0.7); line-height: 1.7; }

/* SESSION 3 — TEAM */
.team-section {
  background: var(--off-white);
  padding: 88px 5%;
}
.team-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.team-photo {
  height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--red);
}
.team-photo-1 { background: linear-gradient(145deg, var(--off-white), #d8d0c4); }
.team-photo-2 { background: linear-gradient(145deg, #e8d8f0, #d4c0e0); }
.team-photo-3 { background: linear-gradient(145deg, #daecd6, #b8d4c0); }
.team-initials {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.team-initials-purple { background: #7B52A8; }
.team-icon {
  width: 64px;
  height: 64px;
  border-radius: 99px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.85), rgba(255,255,255,0.38));
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,28,28,0.7);
}
.team-icon svg { width: 26px; height: 26px; display: block; }
.team-card:hover .team-icon { transform: translateY(-2px); }
.team-info { padding: 22px 22px 26px; }
.team-name { font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.team-info p { font-size: 13px; line-height: 1.7; color: rgba(28,28,28,0.72); }

/* SESSION 3 — HOUSEHELPERS TEASER */
.hh-teaser {
  background: var(--navy);
  padding: 80px 5%;
}
.hh-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hh-pill {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(85,0,0,0.15);
  border: 1px solid rgba(85,0,0,0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}
.hh-inner h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.hh-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 22px;
  max-width: 640px;
}
.hh-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hh-tags span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.hh-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hh-form input[type="email"] {
  width: min(420px, 100%);
  padding: 14px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
}
.hh-form input::placeholder { color: rgba(255,255,255,0.55); }
.hh-form button {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.hh-form button:hover { background: var(--red-light); }
.form-note {
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* Before/after gallery */
.before-after {
  background: var(--charcoal);
  padding: 88px 5%;
}
.before-after .gallery-eyebrow,
.before-after .gallery-title {
  display: block;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a090;
  margin-bottom: 10px;
}
.gallery-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.ba-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.ba-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px;
}
.ba-card h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba-image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
}
.ba-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ba-image-wrap figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.64);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 5px 9px;
}

/* Testimonials */
.testimonials {
  padding: 82px 5%;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--off-white);
  padding: 28px;
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(28,28,28,0.78);
  margin-bottom: 14px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px 5%;
}
.lightbox.is-open { display: flex; }
.lightbox-inner {
  width: min(980px, 100%);
  position: relative;
}
.lightbox video {
  width: 100%;
  max-height: 82vh;
  height: auto;
  border-radius: 10px;
  background: #000;
  object-fit: contain;
}
.lightbox video.crop-top { object-fit: cover; object-position: top; }

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(17,17,17,0.28);
  color: #fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  cursor: pointer;
}
.back-to-top.is-visible { display: inline-flex; }
.back-to-top.is-visible {
  animation: backToTopShake 0.55s ease-in-out 0.02s 1 both;
}
.back-to-top:hover { background: rgba(17,17,17,0.42); transform: translateY(-2px) rotate(-2deg); }
.back-to-top svg { width: 18px; height: 18px; display: block; }

@keyframes backToTopShake {
  0% { transform: translateY(0) rotate(0); }
  18% { transform: translateY(-2px) rotate(-6deg); }
  36% { transform: translateY(1px) rotate(6deg); }
  54% { transform: translateY(-2px) rotate(-5deg); }
  72% { transform: translateY(1px) rotate(4deg); }
  100% { transform: translateY(0) rotate(0); }
}

.facility-band {
  background: var(--warm-white);
  padding: 100px 5%;
  border-top: 1px solid var(--border);
}
.facility-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.facility-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.facility-list li {
  font-size: 14px;
  color: rgba(28,28,28,0.78);
  padding-left: 20px;
  position: relative;
}
.facility-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.facility-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .facility-band-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ABOUT — Mission/Vision split */
.mv-split { background: #fff; padding: 90px 5%; border-bottom: 1px solid var(--border); }
.mv-split-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mv-block { padding: 52px 48px; background: #fff; }
.mv-block-accent {
  background:
    radial-gradient(ellipse 70% 70% at 20% 25%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(ellipse 70% 70% at 80% 70%, rgba(85,0,0,0.18), transparent 55%),
    rgba(14, 31, 61, 0.96);
  border: 1px solid rgba(255,255,255,0.10);
}
.mv-block-accent h2 {
  color: #ffffff !important;
}
.mv-block-accent p {
  color: rgba(255,255,255,0.78) !important;
}
.mv-block-accent .mv-icon {
  color: var(--red-light);
}
.mv-icon { width: 40px; height: 40px; color: var(--red); margin-bottom: 20px; }
.mv-icon svg { width: 100%; height: 100%; }
.mv-block h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--charcoal); }
.mv-block p { font-size: 15px; line-height: 1.8; color: rgba(28,28,28,0.72); }
@media (max-width: 768px) { .mv-split-inner { grid-template-columns: 1fr; } }

/* ABOUT — Accreditation band */
.accreditation-band {
  background: #fff;
  padding: 90px 5%;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.accreditation-band::before {
  content: none;
}
.accreditation-band > * { position: relative; z-index: 1; }
.accreditation-band .section-eyebrow { color: var(--red) !important; }
.accreditation-band .section-title { color: var(--charcoal) !important; }
.accreditation-band .section-body { color: rgba(28,28,28,0.72) !important; }
.accreditation-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.accreditation-copy {
  position: relative;
  z-index: 0;
}
.accreditation-copy::before { content: none; }
.accreditation-copy > * { position: relative; z-index: 1; }
.accreditation-certs { display: flex; flex-direction: column; gap: 16px; }
.cert-card { display: flex; gap: 20px; align-items: flex-start; background: var(--off-white); border: 1px solid var(--border); border-radius: 8px; padding: 22px 24px; }
.cert-badge {
  min-width: 58px;
  height: 58px;
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.2;
  color: rgba(55, 27, 0, 0.92);
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,0.32), rgba(255,255,255,0.06) 58%, rgba(0,0,0,0.0) 59%),
    radial-gradient(circle at 50% 50%, rgba(255, 210, 120, 0.65), rgba(160, 100, 22, 0.25));
  border: 1px solid rgba(255, 212, 130, 0.65);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
}
.cert-badge::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 999px;
  border: 2px dashed rgba(85, 45, 0, 0.35);
}
.cert-badge::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(60, 30, 0, 0.58);
}
.cert-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.cert-info p { font-size: 13px; line-height: 1.65; color: rgba(28,28,28,0.68); margin: 0; }
.cert-meta {
  display: block;
  font-size: 11px;
  color: rgba(28,28,28,0.45);
  letter-spacing: 0.04em;
  margin-top: 6px;
  font-style: italic;
}
@media (max-width: 768px) { .accreditation-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ABOUT — Stats strip */
.stats-strip { background: var(--red); padding: 44px 5%; }
.stats-strip-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.strip-stat { border: 1px solid rgba(255,255,255,0.18); border-radius: 10px; padding: 18px 18px; background: rgba(255,255,255,0.08); }
.strip-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 6px; }
.strip-label { font-size: 12px; color: rgba(255,255,255,0.72); line-height: 1.5; }
@media (max-width: 768px) { .stats-strip-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-strip-inner { grid-template-columns: 1fr; } }

/* ABOUT — Values band */
.values-band { background: #fff; padding: 90px 5%; border-bottom: 1px solid var(--border); }
.values-inner { max-width: 1100px; margin: 0 auto; }
.values-band .why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 1024px) {
  .values-band .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* CAREERS */
.openings-section { padding: 80px 5%; background: #fff; }
.openings-inner { max-width: 800px; margin: 0 auto; }
.openings-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.opening-card { border: 1px solid var(--border); border-radius: 8px; padding: 28px 30px; background: #fff; transition: box-shadow 0.2s; }
.opening-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.opening-meta { display: flex; gap: 14px; margin-bottom: 10px; }
.opening-dept, .opening-location { font-size: 11px; font-weight: 700; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(28,28,28,0.5); }
.opening-dept { color: var(--red); }
.opening-title { font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.opening-desc { font-size: 14px; line-height: 1.75; color: rgba(28,28,28,0.72); margin-bottom: 20px; }
.careers-cta { margin-top: 48px; padding: 28px 30px; background: var(--off-white); border-radius: 8px; font-size: 14px; color: rgba(28,28,28,0.72); text-align: center; }
.careers-cta a { color: var(--red); font-weight: 700; text-decoration: none; }

.whatsapp-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 121;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  background: rgba(17,17,17,0.28);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 36px rgba(0,0,0,0.24);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}
.whatsapp-float:hover {
  background: rgba(17,17,17,0.40);
  transform: translateY(-1px);
}
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  display: block;
}

.lightbox-inner.is-portrait {
  width: min(520px, 100%);
}
.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(17,17,17,0.7);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 18px; height: 18px; }

/* FOOTER */
footer { background: #111; padding: 60px 5% 40px; position: relative; }
/* (band handled by polygon helper below) */
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-logo {
  width: 92px;
  height: 68px;
  object-fit: contain;
  display: block;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
/* (og-preview removed — OG image is now used in-page) */

@media (max-width: 768px) {
  .featured-inner { grid-template-columns: 1fr; }
}
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  text-decoration: none;
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.85); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-col a.red-link { color: rgba(85,0,0,0.7); }
.footer-col a.red-link:hover { color: var(--red-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  justify-content: center;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom p + p { margin-left: 18px; }

/* Responsive */
@media (max-width: 768px) {
  .page-home.header-transparent nav,
  .page-services nav,
  .page-about nav,
  .page-careers nav,
  .page-contact nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    column-gap: 8px;
  }
  .page-home .nav-logo,
  .page-services .nav-logo,
  .page-about .nav-logo,
  .page-careers .nav-logo,
  .page-contact .nav-logo {
    grid-column: auto;
    justify-self: auto;
    flex: 1 1 auto;
    min-width: 0;
  }
  .page-home .nav-actions,
  .page-services .nav-actions,
  .page-about .nav-actions,
  .page-careers .nav-actions,
  .page-contact .nav-actions {
    grid-column: auto;
    justify-self: auto;
    flex-shrink: 0;
  }
  .nav-logo { gap: 8px; }
  /* Let brand text wrap/shrink in flex row (Safari/WebKit min-width:auto fix) */
  .nav-logo > div {
    min-width: 0;
    flex: 1 1 auto;
  }
  .nav-logo-text {
    font-size: clamp(14px, 4.2vw, 18px);
    line-height: 1.12;
  }
  .brand-logo {
    width: 52px;
    height: 48px;
  }
  .footer-brand-logo {
    width: 76px;
    height: 70px;
  }
  nav { padding: 0 4%; }
  .nav-cta {
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 18px;
  }
  .nav-links,
  .nav-primary { display: none; }
  .nav-hamburger { display: inline-flex; }
  .hero { min-height: 640px; }
  .hero-inner { padding: 0 5%; }
  .hero-left { padding-top: 96px; padding-bottom: 0; }
  .page-home .hero-inner {
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 56px;
  }
  .hero-badge { top: auto; bottom: 22px; right: 5%; }
  .stats-section { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.2); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .video-hero-band { height: 280px; }
  .vhb-overlay { background: #fff; }
  .vhb-content h2 { font-size: 34px; }

  .about-split { grid-template-columns: 1fr; }
  .about-image { height: 300px; }
  .about-image::after { right: auto; left: 0; top: auto; bottom: 0; width: 100%; height: 3px; }
  .about-copy { padding: 44px 6%; }
  .about-copy { order: 1; }
  .about-image { order: 2; }
  .section-title { font-size: 32px; }

  .section-head { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .ba-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .ba-image-wrap img { height: 210px; }
  .clients-title { font-size: 22px; }
  .logo-card { min-width: 180px; min-height: 110px; }
  .logo-card img { max-width: 110px; max-height: 36px; }
  .logo-marquee-track { animation-duration: 24s; }

  .page-hero-title { font-size: 38px; }
  .page-hero-sub { font-size: 15px; }
  .split { grid-template-columns: 1fr; }
  .section-reverse .split-image { order: 1; }
  .section-reverse .split-text { order: 2; }
  .split-image { min-height: 240px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .mv-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-title { font-size: 34px; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-section { grid-template-columns: 1fr; }
  .stat-item { border-right: none; padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 26px 22px; }
  .blog-grid { grid-template-columns: 1fr; }
  .ba-images { grid-template-columns: 1fr; }
  .ba-image-wrap img { height: 190px; }
  .logo-card { min-width: 156px; min-height: 98px; }
  .logo-card img { max-width: 102px; max-height: 34px; }
  .logo-name { font-size: 10px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 12px; }
}

/* ── Homepage (Stitch-inspired) ─────────────────────────────────── */
.page-home {
  --hp-coral: #d86456;
  --font-display: 'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
}

/* Homepage header — white bar at all widths; 3-col grid only on desktop.
   (A later `display: grid` was overriding the mobile flex row and caused
   Safari/iOS to overlap the Contact pill on the logo text when nav-primary is hidden.) */
.page-home.header-transparent nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.page-home .nav-logo {
  min-width: 0;
}

@media (min-width: 769px) {
  .page-home.header-transparent nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(12px, 2vw, 24px);
  }

  .page-home .nav-logo {
    grid-column: 1;
    justify-self: start;
  }

  .page-home .nav-primary {
    grid-column: 2;
    justify-self: center;
    gap: clamp(22px, 4.5vw, 56px);
    letter-spacing: 0.02em;
  }

  .page-home .nav-actions {
    grid-column: 3;
    justify-self: end;
  }
}

.page-home .nav-primary a {
  letter-spacing: 0.06em;
  padding: 8px 4px;
}

.page-home.header-transparent .nav-logo-text {
  color: var(--red);
}

.page-home.header-transparent .nav-logo-sub {
  color: rgba(28, 28, 28, 0.55);
}

.page-home.header-transparent .nav-primary a {
  color: rgba(28, 28, 28, 0.9);
}

.page-home.header-transparent .nav-primary a:hover {
  color: var(--red);
}

.page-home.header-transparent .nav-active {
  color: var(--red) !important;
}

.page-home.header-transparent .nav-cta {
  background: #550000;
  border-color: rgba(255,255,255,0.14);
  color: #fff;
}

.page-home.header-transparent .nav-cta:hover {
  background: #6a0000;
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: 0 8px 20px rgba(85,0,0,0.4);
}

.page-home.header-transparent .nav-cta:active {
  background: #470000;
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.page-home.header-transparent .nav-hamburger {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
}

.page-home.header-transparent .nav-hamburger-lines span {
  background: rgba(28, 28, 28, 0.86);
}

.page-home .hero-bg-overlay {
  background:
    linear-gradient(180deg, rgba(8, 6, 10, 0.5) 0%, rgba(8, 6, 10, 0.28) 42%, rgba(8, 6, 10, 0.55) 100%),
    radial-gradient(ellipse 95% 75% at 50% 36%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.page-home .hero-bg-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(48vh, 420px);
  background: linear-gradient(
    to top,
    var(--warm-white) 0%,
    rgba(250, 248, 245, 0.94) 32%,
    rgba(250, 248, 245, 0) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.page-home .hero-inner {
  max-width: 920px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding-top: calc(var(--header-h) + clamp(28px, 7vh, 64px));
  padding-bottom: clamp(72px, 14vh, 120px);
}

.page-home .hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@keyframes hpHeroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@-webkit-keyframes hpHeroFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroVideoKen {
  0% { transform: scale(1); }
  100% { transform: scale(1.045); }
}

@-webkit-keyframes heroVideoKen {
  0% { -webkit-transform: scale(1); transform: scale(1); }
  100% { -webkit-transform: scale(1.045); transform: scale(1.045); }
}

/* Visible when motion is reduced or animations are unavailable */
.page-home .hero .hp-hero-line,
.page-home .hero .hero-buttons--hp,
.page-home .hero .hero-trust-glass,
.page-home .hero-scroll {
  opacity: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .hero-bg video {
    -webkit-animation: heroVideoKen 32s ease-in-out infinite alternate;
    animation: heroVideoKen 32s ease-in-out infinite alternate;
    transform-origin: 50% 42%;
    -webkit-transform-origin: 50% 42%;
  }

  .page-home .hero .hp-hero-line,
  .page-home .hero .hero-buttons--hp,
  .page-home .hero .hero-trust-glass,
  .page-home .hero-scroll {
    opacity: 0;
    -webkit-animation: hpHeroFade 1.35s cubic-bezier(0.25, 0.46, 0.45, 0.98) forwards;
    animation: hpHeroFade 1.35s cubic-bezier(0.25, 0.46, 0.45, 0.98) forwards;
    will-change: opacity;
  }

  .page-home .hero .hp-hero-line:nth-child(1) {
    -webkit-animation-delay: 0.12s;
    animation-delay: 0.12s;
  }
  .page-home .hero .hp-hero-line:nth-child(2) {
    -webkit-animation-delay: 0.32s;
    animation-delay: 0.32s;
  }
  .page-home .hero .hero-buttons--hp {
    -webkit-animation-delay: 0.52s;
    animation-delay: 0.52s;
  }
  .page-home .hero .hero-trust-glass {
    -webkit-animation-delay: 0.78s;
    animation-delay: 0.78s;
  }
  .page-home .hero-scroll {
    -webkit-animation-delay: 1.02s;
    animation-delay: 1.02s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .hero-bg video {
    -webkit-animation: none;
    animation: none;
    -webkit-transform: none;
    transform: none;
  }
}

.page-home .hp-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.04em;
  margin-bottom: 28px;
}

.page-home .hero-h1.hp-hero-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.page-home .hero-buttons--hp {
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

@media (max-width: 480px) {
  .page-home .hero-buttons--hp {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }
  .page-home .hero-buttons--hp .btn-hp-primary,
  .page-home .hero-buttons--hp .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .page-home .hero-h1 {
    font-size: clamp(30px, 9vw, 44px);
  }
}

.hp-hero-tag {
  margin: 0 0 16px;
}

.hp-hero-tag span {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5c4b8;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 164, 148, 0.45);
  background: rgba(0, 0, 0, 0.28);
}

.hp-hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}

.page-home .hp-hero-line--accent {
  color: #f2a89a;
  font-style: normal;
}

.page-home .hp-hero-line--accent em {
  font-style: italic;
  font-weight: 800;
  color: inherit;
}

.hp-hero-line--accent {
  color: #ffc8bc;
}

.hero-trust-glass {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.22);
}

.hero-trust-glass-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.hero-trust-glass-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  color: #ff6a67;
  display: grid;
  place-items: center;
  opacity: 0.95;
}

.hero-trust-glass-icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.hero-trust-glass-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero-trust-glass-kicker {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-trust-glass-label {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.25;
}

.hero-trust-glass-divider {
  width: 1px;
  align-self: stretch;
  min-height: 44px;
  background: rgba(255, 255, 255, 0.22);
  margin: 0 6px;
  flex-shrink: 0;
}

.hero-live-card {
  position: absolute;
  right: clamp(12px, 3vw, 40px);
  bottom: clamp(88px, 12vh, 140px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  z-index: 4;
  text-align: left;
}

.hero-live-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ece4df, #c9bfb8);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 800;
  color: #4a3028;
  flex-shrink: 0;
}

.hero-live-body {
  min-width: 0;
}

.hero-live-role {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(28, 28, 28, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-live-status {
  margin: 4px 0 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
  flex-shrink: 0;
}

.btn-hp-primary.btn-hp-primary--maroon {
  border-radius: 12px;
  padding: 13px 28px;
  background: #550000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(85, 0, 0, 0.35);
}

.btn-hp-primary.btn-hp-primary--maroon:hover {
  background: #6a0000;
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-hp-primary.btn-hp-primary--maroon:active {
  background: #470000;
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-hero-ghost {
  border-radius: 12px !important;
  padding: 13px 28px !important;
  font-weight: 600 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.42) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.62) !important;
  color: #fff !important;
}

.page-home .hero-scroll {
  bottom: clamp(20px, 5vh, 40px);
  z-index: 5;
}

.page-home .hero-sub {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  max-width: 520px;
}

@media (max-width: 900px) {
  .hero-live-card {
    position: static;
    margin: 28px auto 0;
    bottom: auto;
    right: auto;
  }
}

@media (max-width: 640px) {
  .hero-trust-glass {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .hero-trust-glass-divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 0;
  }
  .hero-trust-glass-item {
    gap: 10px;
  }
}

.btn-hp-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--hp-coral);
  color: #fff;
  border: 1px solid var(--hp-coral);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}

.btn-hp-primary:hover {
  background: #c24e42;
  border-color: #c24e42;
  color: #fff;
  transform: translateY(-1px);
}

.btn-hp-primary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.btn-hp-arrow {
  font-size: 1.05em;
  font-weight: 500;
  line-height: 1;
}

.btn-outline--hero {
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
}

.stats-section.stats-section--maroon {
  background: var(--red);
  padding: 40px 5%;
  justify-items: center;
  column-gap: 26px;
}

.stats-section.stats-section--maroon .stat-item {
  border-right-color: rgba(255, 255, 255, 0.14);
  width: 100%;
  max-width: 250px;
  text-align: center;
}

.stats-section.stats-section--maroon .stat-label {
  letter-spacing: 0.14em;
}

.hp-services {
  background: #fff;
  border-top: 1px solid rgba(85, 0, 0, 0.06);
  border-bottom: 1px solid rgba(85, 0, 0, 0.05);
}

.hp-services-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px 32px;
  margin-bottom: 36px;
}

.hp-services-head-main {
  flex: 1 1 360px;
  max-width: 820px;
}

.hp-catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-bottom: 4px;
}

.hp-catalog-link:hover {
  color: var(--red-light);
  text-decoration: underline;
}

.hp-catalog-icon {
  display: inline-flex;
  color: var(--red);
}

.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.hp-services-grid .svc-card.hp-svc-tile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 168px;
  padding: 22px 22px 26px;
  border-radius: 16px;
  border-color: rgba(85, 0, 0, 0.14);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 12px 36px rgba(85, 0, 0, 0.08);
}

.hp-services-grid .svc-card.hp-svc-tile--hero {
  min-height: 360px;
  padding: 26px 28px 32px;
}

.hp-svc-kicker {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 2;
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5c4b8;
}

.hp-services-grid .svc-card.hp-svc-tile::before {
  opacity: 0;
}

.hp-services-grid .svc-card.hp-svc-tile::after {
  opacity: 1;
  transform: scale(1);
  background-image:
    linear-gradient(to top, rgba(94, 14, 14, 0.72) 0%, rgba(83, 9, 9, 0.34) 42%, rgba(25, 18, 22, 0.2) 100%),
    var(--svc-img);
}

.hp-services-grid .svc-card.hp-svc-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.hp-services-grid .svc-card.hp-svc-tile:hover::after {
  transform: scale(1.05);
}

.hp-services-grid .svc-card.hp-svc-tile h3 {
  margin-top: 0;
  color: #fff;
  font-size: 17px;
}

.hp-services-grid .svc-card.hp-svc-tile p {
  color: rgba(255, 255, 255, 0.82);
}

.hp-services-grid .svc-card.hp-svc-tile .svc-icon {
  margin-bottom: auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(4) {
  grid-column: 1 / span 4;
  grid-row: 3;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(5) {
  grid-column: 5 / span 4;
  grid-row: 3;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(6) {
  grid-column: 9 / span 4;
  grid-row: 3;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(7) {
  grid-column: 1 / span 4;
  grid-row: 4;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(8) {
  grid-column: 5 / span 4;
  grid-row: 4;
}

.hp-services-grid .svc-card.hp-svc-tile:nth-child(9) {
  grid-column: 9 / span 4;
  grid-row: 4;
}

.hp-difference {
  background: var(--red);
  color: #fff;
  padding: 88px 5%;
}

.hp-diff-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hp-diff-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 14px;
}

.hp-diff-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 32px;
}

.hp-diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hp-diff-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.hp-diff-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hp-diff-list h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hp-diff-list p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.hp-diff-media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.hp-diff-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  min-height: 420px;
  max-height: 560px;
}

.social-rail--elevated .social-link--brand {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(165deg, #efd6d6 0%, #e4c6c6 50%, #dababa 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 8px 18px rgba(120, 40, 40, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: #5a1818;
}

.social-rail--elevated .social-link--brand:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(165deg, #f7e4e4 0%, #edd4d4 100%);
  color: #441010;
  box-shadow:
    0 12px 24px rgba(120, 40, 40, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.social-svg--fill {
  stroke: none !important;
  fill: currentColor;
}

/* Crisp Instagram (stroke) + solid Facebook “f” */
.social-icon-stroke {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon-stroke .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-rail--elevated .social-link--brand svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1024px) {
  .hp-services-grid .svc-card.hp-svc-tile:nth-child(n) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }

  .hp-services-grid .svc-card.hp-svc-tile--hero {
    min-height: 280px;
  }

  .hp-diff-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hp-diff-media img {
    min-height: 300px;
    max-height: 420px;
  }
}

@media (max-width: 768px) {
  .page-home .hp-services-grid {
    grid-template-columns: 1fr;
  }

  .hp-services-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hp-catalog-link {
    margin-bottom: 0;
  }
}
