/* ==========================================================================
   BOSS FIRE INC — Design System
   Industrial / Editorial aesthetic | Navy + Gold | Commercial fire protection
   Brand colors extracted from official logo (V3 — April 2026)
   ========================================================================== */

/* Self-hosted Bebas Neue (matches official logo lettering) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=JetBrains+Mono:wght@400;500;700&family=Inter+Tight:wght@300;400;500;600;700;800&display=swap');

@font-face {
  font-family: 'Bebas Neue';
  src: url('../assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  /* COLORS — Boss Fire brand (exact, from logo) */
  --navy: #2A327B;           /* Brand Navy — from logo background */
  --navy-deep: #1F2561;      /* Dark sections */
  --navy-light: #3A4296;     /* Hover states / light dark surfaces */
  --navy-darker: #15193F;    /* Ultra-dark contrast */
  --gold: #FEC10E;           /* Brand Gold — from logo flame/shield */
  --gold-bright: #FFD04A;    /* Hover state on gold */
  --gold-deep: #D6A20A;      /* Pressed / strong emphasis */
  --red: #C8272A;
  --red-deep: #8C1C1F;
  --white: #FFFFFF;
  --off-white: #F5F2EC;
  --cream: #EFE7D4;
  --gray-100: #E8E6E1;
  --gray-200: #C9C5BC;
  --gray-400: #7A7568;
  --gray-600: #3D3A32;
  --black: #000000;

  /* TYPE */
  --f-display: 'Bebas Neue', 'Arial Narrow', 'Oswald', 'Impact', sans-serif;  /* Site-wide headlines — matches brand logo */
  --f-logo: 'Bebas Neue', 'Arial Narrow', 'Arial', sans-serif;                /* Logo lettering (same face) */
  --f-editorial: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Inter Tight', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* SPACING */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 2.5rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* LAYOUT */
  --container: 1320px;
  --container-narrow: 960px;

  /* MOTION */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--navy-darker);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--gold-deep);
}
.eyebrow--light { color: var(--gold-bright); }
.eyebrow--light::before { background: var(--gold-bright); }

.h-hero {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 10vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  /* Bebas Neue glyphs are natively uppercase — don't force text-transform */
}
.h-1 {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.005em;
}
.h-2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.01em;
}
.h-3 {
  font-family: var(--f-display);
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
}
.h-editorial {
  font-family: var(--f-editorial);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.lead {
  font-size: clamp(1.1rem, 1.4vw, 1.375rem);
  line-height: 1.5;
  color: var(--gray-600);
  max-width: 60ch;
}
.body-large { font-size: 1.1rem; line-height: 1.65; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
section { padding: clamp(var(--sp-8), 6vw, var(--sp-12)) 0; }
.section-sm { padding: clamp(var(--sp-5), 4vw, var(--sp-8)) 0; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(254, 193, 14, 0.15);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-3) var(--sp-6);
  max-width: var(--container);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--white);
}
.nav__logo-mark {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: contain;
}
.nav__logo-text {
  font-family: var(--f-logo);   /* Bebas Neue — matches brand logo */
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__logo-text span {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.nav__link {
  position: relative;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: var(--sp-2) 0;
  transition: color 0.2s var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link--has-menu::after {
  content: '↓';
  margin-left: 4px;
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.2s;
}
.nav__item { position: relative; }
.nav__item:hover .nav__submenu { display: block; }
.nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--navy-deep);
  border: 1px solid rgba(254, 193, 14, 0.2);
  min-width: 260px;
  padding: var(--sp-2);
}
.nav__submenu a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  color: var(--white);
  font-size: 0.875rem;
  border-left: 2px solid transparent;
  transition: all 0.15s;
}
.nav__submenu a:hover {
  background: var(--navy-light);
  color: var(--gold);
  border-left-color: var(--gold);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gold);
  color: var(--navy) !important;
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav__cta:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}

/* Promoted phone in nav — visually equal weight to CTA */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--white);
  text-decoration: none;
  padding: var(--sp-2) 0;
  line-height: 1;
  transition: color 0.2s;
}
.nav__phone:hover { color: var(--gold); }
.nav__phone-dot {
  width: 8px; height: 8px;
  background: #3DDC7A;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(61, 220, 122, 0.2);
  flex-shrink: 0;
}
.nav__phone-num {
  font-family: var(--f-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.nav__mobile-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
}

@media (max-width: 960px) {
  .nav__menu {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--navy-deep);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    transform: translateY(-120%);
    transition: transform 0.3s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); }

  /* All top-level nav links get the same bottom border for visual consistency */
  .nav__link {
    padding: var(--sp-3);
    border-bottom: 1px solid rgba(254, 193, 14, 0.1);
    display: block;
  }
  .nav__item {
    border-bottom: 1px solid rgba(254, 193, 14, 0.1);
  }
  /* The link inside .nav__item already has a border-bottom, so drop it
     when it's nested — the .nav__item border does the work instead */
  .nav__item .nav__link {
    border-bottom: none;
  }

  /* Show dropdown arrow, rotate when expanded */
  .nav__link--has-menu::after {
    content: '↓';
    float: right;
    transition: transform 0.2s var(--ease);
  }
  .nav__item.is-expanded .nav__link--has-menu::after {
    transform: rotate(180deg);
  }

  /* Mobile submenu: inline accordion (hidden by default, shown when parent .nav__item.is-expanded) */
  .nav__submenu {
    display: none;
    position: static;
    top: auto; left: auto;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    border-top: 1px solid rgba(254, 193, 14, 0.1);
    min-width: 0;
    padding: 0;
  }
  .nav__item.is-expanded .nav__submenu {
    display: block;
  }
  .nav__submenu a {
    padding: var(--sp-3) var(--sp-3) var(--sp-3) var(--sp-6);
    border-bottom: 1px solid rgba(254, 193, 14, 0.05);
    border-left: none;
  }
  .nav__submenu a:last-child { border-bottom: none; }

  /* Disable desktop hover behavior on mobile */
  .nav__item:hover .nav__submenu { display: none; }
  .nav__item.is-expanded:hover .nav__submenu { display: block; }

  .nav__mobile-toggle { display: block; }
  .nav__cta {
    margin-top: var(--sp-3);
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

/* ==========================================================================
   STICKY CTA BAR (every page)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy-deep);
  border-top: 2px solid var(--gold);
  z-index: 90;
  display: flex;
  justify-content: center;
  padding: var(--sp-3) var(--sp-4);
  gap: var(--sp-3);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  gap: var(--sp-3);
  width: 100%;
  max-width: var(--container);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sticky-cta__msg {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.sticky-cta__msg strong { color: var(--gold); font-weight: 700; }
.sticky-cta__actions { display: flex; gap: var(--sp-2); }

@media (max-width: 720px) {
  .sticky-cta__msg { display: none; }
  .sticky-cta__actions { width: 100%; }
  .sticky-cta .btn { flex: 1; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 1.75rem;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 193, 14, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn--lg {
  padding: 1.15rem 2.25rem;
  font-size: 0.98rem;
}
.btn--phone {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--phone:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn__arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ==========================================================================
   ICON SYSTEM (SVG replacements for emoji — P8)
   .icon--inline = aligned with text at roughly 1em height
   .icon--star = star size for ratings (larger feel)
   ========================================================================== */
.icon {
  display: inline-block;
  vertical-align: -0.125em;
  flex-shrink: 0;
}
.icon--inline {
  width: 1em;
  height: 1em;
}
.icon--star {
  width: 1.1em;
  height: 1.1em;
  color: var(--gold);
}
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
  line-height: 1;
}
/* Buttons should size their icons slightly larger than text */
.btn .icon--inline {
  width: 1.15em;
  height: 1.15em;
}
/* Nav mobile toggle needs visible SVG, not text-sized */
.nav__mobile-toggle {
  color: var(--white);
}
.nav__mobile-toggle svg {
  width: 26px;
  height: 26px;
  display: block;
}
/* Sticky CTA icons align with the larger button text */
.sticky-cta .btn .icon--inline {
  width: 1.1em;
  height: 1.1em;
}

/* ==========================================================================
   HERO — Home
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: var(--sp-12) 0 var(--sp-16);
  border-bottom: 1px solid rgba(254, 193, 14, 0.15);
  isolation: isolate;  /* new stacking context so z-index stays scoped */
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  /* poster is visible immediately; actual video source is lazy-attached by main.js */
}
/* Navy wash on top of the skyline — legibility without obliterating the image */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(21, 25, 63, 0.86) 0%, rgba(21, 25, 63, 0.70) 50%, rgba(21, 25, 63, 0.55) 100%),
    linear-gradient(180deg, rgba(21, 25, 63, 0) 55%, rgba(21, 25, 63, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
/* grid-bg and glow are deprecated on the homepage; empty rules keep them harmless if referenced elsewhere */
.hero__grid-bg, .hero__glow { display: none; }
.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-10);
  align-items: end;
}
.hero__content { max-width: 820px; }
.hero__title {
  margin: var(--sp-4) 0 var(--sp-5);
  color: var(--white);
}
.hero__title .accent { color: var(--gold); }
/* Trust chip — readable, above the fold */
.hero__trust {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(254, 193, 14, 0.35);
  padding: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-5);
}
.hero__trust-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; line-height: 1; }
.hero__trust-rating {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero__trust-count {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
}
.hero__trust-count b { color: var(--white); font-weight: 600; }
.hero__trust a { color: inherit; text-decoration: none; }

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 54ch;
  margin-bottom: var(--sp-6);
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: var(--sp-8);
}
/* Phone button styled to match the primary CTA's visual weight */
.hero__phone-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  text-decoration: none;
  transition: border-color 0.2s var(--ease);
  line-height: 1;
}
.hero__phone-btn:hover { border-color: var(--gold); }
.hero__phone-btn-label {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 3px;
}
.hero__phone-btn-num {
  font-family: var(--f-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

/* Credentials — 4 cells separated by hairlines, no decorative left-border stripes */
.hero__credentials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: var(--sp-6);
  margin-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__cred {
  padding: 0 var(--sp-5);
}
.hero__cred:first-child { padding-left: 0; }
.hero__cred + .hero__cred {
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.hero__cred-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
}
.hero__cred-num .accent { color: var(--gold); }
.hero__cred-lbl {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
  font-weight: 500;
}

/* Optional stat column (kept for aside use on non-home pages); home no longer uses it */
.hero__aside {
  display: none; /* Homepage doesn't use a right-rail aside anymore */
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__credentials { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4) 0; }
  .hero__cred:nth-child(3) { border-left: none; padding-left: 0; }
  .hero__cred:nth-child(3) { padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,0.10); }
  .hero__cred:nth-child(4) { padding-top: var(--sp-4); border-top: 1px solid rgba(255,255,255,0.10); }
}
@media (max-width: 520px) {
  .hero__credentials { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   LIVE TICKER — deprecated, removed from homepage. Rules retained as no-op
   in case any other page references them.
   ========================================================================== */
.ticker { display: none; }

/* ==========================================================================
   SERVICES GRID — asymmetric, with featured service
   ========================================================================== */
.services-section { background: var(--off-white); padding-bottom: var(--sp-8); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: end;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--gray-200);
}
.services-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: var(--sp-3);
}
.service-card {
  position: relative;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--navy);
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}
.service-card--featured {
  grid-column: 1;
  grid-row: span 2;
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: var(--sp-8) var(--sp-8) var(--sp-7);
  position: relative;
}
.service-card--featured::after {
  content: '';
  position: absolute;
  right: -60px; bottom: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(254, 193, 14, 0.16), transparent 65%);
  pointer-events: none;
}
.service-card--featured > * { position: relative; z-index: 2; }
.service-card--all {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  border-color: var(--gold);
  padding: var(--sp-5) var(--sp-6);
  min-height: 72px;
}
.service-card--all .service-card__title {
  margin-bottom: 0;
  font-size: 1.5rem;
}
.service-card__tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-darker);
  margin-bottom: var(--sp-4);
}
.service-card--featured .service-card__tag { color: var(--gold); }
.service-card__title {
  font-family: var(--f-display);
  font-size: 1.6rem;
  line-height: 0.95;
  margin-bottom: var(--sp-3);
  letter-spacing: 0.015em;
  color: var(--navy);
}
.service-card--featured .service-card__title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  color: var(--white);
  max-width: 11ch;
}
.service-card__desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: var(--sp-4);
  flex-grow: 1;
}
.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}
.service-card__link {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.service-card--featured .service-card__link { color: var(--gold); }
.service-card__link::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .service-card__link::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: var(--sp-4); margin-bottom: var(--sp-6); }
  .services-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .service-card { padding: var(--sp-5); }
  .service-card--featured { grid-column: 1 / -1; grid-row: auto; padding: var(--sp-7) var(--sp-6); }
  .service-card--featured .service-card__title { max-width: none; }
  .service-card--all { flex-direction: column; align-items: flex-start; gap: var(--sp-2); padding: var(--sp-5); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { padding: var(--sp-6) var(--sp-5); }
}

/* ==========================================================================
   STATS BAR — hairline dividers instead of left-border stripes
   ========================================================================== */
.stats-bar {
  background: var(--navy-deep);
  color: var(--white);
  padding: var(--sp-10) 0;
  border-top: 1px solid rgba(254, 193, 14, 0.2);
  border-bottom: 1px solid rgba(254, 193, 14, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 var(--sp-6);
}
.stat:first-child { padding-left: 0; }
.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 5vw, 4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-bottom: var(--sp-2);
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5) 0; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(2) { border-left: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(4) { border-left: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(3) { padding-left: 0; }
}

/* ==========================================================================
   EDITORIAL SECTION (Why Boss Fire)
   ========================================================================== */
.editorial { background: var(--cream); position: relative; }
.editorial__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-10);
  align-items: start;
}
.editorial__label {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.editorial__drop {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: var(--sp-4) 0 var(--sp-5);
  color: var(--navy);
  max-width: 14ch;
}
.editorial__drop .accent { color: var(--red-deep); }
.editorial__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-600);
}
.editorial__body p + p { margin-top: var(--sp-4); }
.editorial__body strong { color: var(--navy); }
.editorial__quote {
  font-family: var(--f-editorial);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--navy);
  padding: var(--sp-6) 0;
  margin: var(--sp-6) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.editorial__attr {
  display: block;
  margin-top: var(--sp-3);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  font-style: normal;
}

@media (max-width: 900px) {
  .editorial__grid { grid-template-columns: 1fr; }
}
.editorial__img {
  margin-top: var(--sp-6);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.editorial__img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.editorial__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
}

   ========================================================================== */
.proof {
  background: #1F2561 !important;
  color: var(--white);
  padding: var(--sp-10) 0;
  position: relative;
  isolation: isolate;
  border-top: 4px solid var(--gold);
}
.proof__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-10);
  align-items: center;
}
.proof__score {
  display: flex;
  flex-direction: column;
}
.proof__score-num {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--navy-darker);
}
.proof__score-num small {
  color: var(--navy);
  font-size: 0.48em;
}
.proof__score-meta {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: var(--sp-2);
}
.proof__quote {
  font-family: var(--f-editorial);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  max-width: 48ch;
}
.proof__quote cite {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: var(--sp-3);
}
.proof__link {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy-deep);
  text-decoration: underline;
  text-decoration-color: var(--navy-deep));
  text-underline-offset: 4px;
  white-space: nowrap;
}
.proof__link:hover { text-decoration-color: var(--gold); }

@media (max-width: 900px) {
  .proof__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    text-align: left;
  }
}

/* ==========================================================================
   PROCESS / TIMELINE
   ========================================================================== */
.process {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--sp-8);
  border-top: 1px solid rgba(254, 193, 14, 0.2);
}
.process__step {
  padding: var(--sp-6) var(--sp-5);
  border-right: 1px solid rgba(254, 193, 14, 0.2);
  position: relative;
}
.process__step:last-child { border-right: none; }
.process__step-num {
  font-family: var(--f-display);
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: var(--sp-4);
}
.process__step-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.015em;
  margin-bottom: var(--sp-3);
}
.process__step-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step { border-bottom: 1px solid rgba(254, 193, 14, 0.2); }
  .process__step:nth-child(2) { border-right: none; }
}
@media (max-width: 520px) {
  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-right: none; }
}

/* ==========================================================================
   CREDENTIALS STRIP
   ========================================================================== */
.creds {
  background: var(--white);
  padding: var(--sp-8) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.creds__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.creds__label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  line-height: 1.4;
  max-width: 200px;
}
.creds__list {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  align-items: center;
}
.creds__badge {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.creds__badge span {
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  font-weight: 400;
}
@media (max-width: 720px) {
  .creds__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { background: var(--off-white); }
.testimonials__header {
  text-align: center;
  margin-bottom: var(--sp-10);
}
.testimonials__rating {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  background: var(--navy);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.testimonials__rating strong { color: var(--white); font-family: var(--f-display); font-size: 1.1rem; letter-spacing: 0.02em; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.testimonial {
  background: var(--white);
  padding: var(--sp-6);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  position: relative;
}
.testimonial__stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}
.testimonial__quote {
  font-family: var(--f-editorial);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
  flex-grow: 1;
}
.testimonial__attr {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-200);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
}
@media (max-width: 900px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COMPLIANCE TOOL SECTION TEASER
   ========================================================================== */
.tool-teaser {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.tool-teaser::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(254, 193, 14, 0.15), transparent 60%);
  filter: blur(40px);
}
.tool-teaser__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-10);
  align-items: center;
}
.tool-teaser__list {
  margin: var(--sp-6) 0;
}
.tool-teaser__list li {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.tool-teaser__list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}
.tool-preview {
  background: var(--navy);
  border: 1px solid rgba(254, 193, 14, 0.3);
  padding: var(--sp-5);
  font-family: var(--f-mono);
  font-size: 0.85rem;
  line-height: 1.5;
  position: relative;
}
.tool-preview::before {
  content: 'SAMPLE OUTPUT';
  position: absolute;
  top: -10px; left: var(--sp-5);
  background: var(--gold);
  color: var(--navy);
  padding: 2px var(--sp-3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  font-weight: bold;
}
.tool-preview__line {
  display: flex;
  justify-content: space-between;
  padding: var(--sp-2) 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.tool-preview__line span:last-child { color: var(--gold); }
@media (max-width: 900px) {
  .tool-teaser__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ (AI SEO gold — structured, citation-ready)
   ========================================================================== */
.faq { background: var(--white); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-10);
}
.faq__header .h-1 { color: var(--navy); }
.faq__list {
  border-top: 1px solid var(--gray-200);
}
.faq__item {
  border-bottom: 1px solid var(--gray-200);
  padding: var(--sp-5) 0;
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0.015em;
  color: var(--navy);
  user-select: none;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__toggle {
  font-family: var(--f-mono);
  color: var(--gold-deep);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}
details[open] .faq__toggle { transform: rotate(45deg); }
.faq__a {
  padding-top: var(--sp-4);
  color: var(--gray-600);
  line-height: 1.65;
  font-size: 1rem;
}
.faq__a p + p { margin-top: var(--sp-3); }

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

/* ==========================================================================
   CTA CLOSER
   ========================================================================== */
.closer {
  background: var(--gold);
  color: var(--navy);
  padding: var(--sp-12) 0;
  position: relative;
  overflow: hidden;
}
.closer__inner {
  position: relative;
  max-width: 860px;
}
.closer__title {
  font-family: var(--f-display);
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-5);
}
.closer__sub {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: var(--sp-8);
  max-width: 60ch;
}
.closer__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-12) 0 var(--sp-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.footer__logo-text {
  font-family: var(--f-logo);   /* Bebas Neue — matches brand logo */
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.footer__logo-text span {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}
.footer__tagline {
  font-family: var(--f-editorial);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 32ch;
}
.footer__phone {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: var(--sp-2);
}
.footer__col-title {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__links li {
  padding: var(--sp-2) 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(254, 193, 14, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
}
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE HEADER (non-home pages)
   ========================================================================== */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-10) 0 var(--sp-12);
  border-bottom: 1px solid rgba(254, 193, 14, 0.15);
  position: relative;
  overflow: hidden;
}
/* Photo background variant */
.page-head--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-head__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30, 36, 90, 0.93) 0%,
    rgba(30, 36, 90, 0.82) 50%,
    rgba(30, 36, 90, 0.65) 100%
  );
  z-index: 1;
}
.page-head--photo .page-head__grid-bg,
.page-head--photo .page-head__inner,
.page-head--photo .container { position: relative; z-index: 2; }

.page-head__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254, 193, 14, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 193, 14, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-head__inner {
  position: relative;
  max-width: 900px;
}
.breadcrumb {
  display: flex;
  gap: var(--sp-2);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-5);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb__sep::before { content: '/'; margin: 0 var(--sp-1); }
.page-head__title { margin: var(--sp-4) 0 var(--sp-5); }
.page-head__sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
}

/* ==========================================================================
   SERVICE PAGE LAYOUT
   ========================================================================== */
.svc-photo-band {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
  position: relative;
}
.svc-photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(248, 245, 240, 0.3) 100%
  );
  pointer-events: none;
}
.svc-photo-band img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.svc-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  padding: var(--sp-12) 0;
}
.svc-intro__title { margin-bottom: var(--sp-5); }
.svc-intro__body { font-size: 1.1rem; line-height: 1.7; color: var(--gray-600); }
.svc-intro__body p + p { margin-top: var(--sp-4); }

.svc-checklist {
  background: var(--cream);
  padding: var(--sp-6);
  border-left: 3px solid var(--gold);
}
.svc-checklist__title {
  font-family: var(--f-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.svc-checklist ul li {
  padding: var(--sp-3) 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.98rem;
}
.svc-checklist ul li::before {
  content: '▲';
  color: var(--red);
  font-size: 0.7em;
  margin-top: 0.4em;
  flex-shrink: 0;
}

.svc-types {
  background: var(--off-white);
}
.svc-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
.svc-type {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: var(--sp-5);
  transition: all 0.2s;
}
.svc-type:hover { border-color: var(--gold); transform: translateY(-2px); }
.svc-type__tag {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--sp-3);
}
.svc-type__title {
  font-family: var(--f-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  line-height: 1.1;
}
.svc-type__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .svc-intro { grid-template-columns: 1fr; padding: var(--sp-10) 0; }
  .svc-types__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LANDING PAGE — Google Ads variants
   ========================================================================== */
.lp-hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-8) 0 var(--sp-10);
  position: relative;
  overflow: hidden;
}
.lp-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(254, 193, 14, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(254, 193, 14, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(254, 193, 14, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.lp-hero__badge::before {
  content: '●';
  color: #2ECC71;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.lp-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.lp-hero__title .accent { color: var(--gold); }
.lp-hero__sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--sp-6);
  max-width: 55ch;
}
.lp-hero__bullets {
  list-style: none;
  margin-bottom: var(--sp-7);
}
.lp-hero__bullets li {
  padding: var(--sp-2) 0;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 1rem;
}
.lp-hero__bullets li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  font-size: 1.2em;
}
.lp-hero__trust {
  display: flex;
  gap: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(254, 193, 14, 0.2);
  flex-wrap: wrap;
}
.lp-trust {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.lp-trust strong { color: var(--gold); display: block; font-size: 1.3rem; margin-bottom: 2px; font-family: var(--f-display); letter-spacing: 0.01em; }

/* Form card */
.lp-form {
  background: var(--white);
  color: var(--navy);
  padding: var(--sp-6);
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  position: sticky;
  top: 100px;
}
.lp-form__head {
  text-align: center;
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: var(--sp-5);
}
.lp-form__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.lp-form__sub {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
}
.lp-form__field { margin-bottom: var(--sp-4); }
.lp-form__label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: var(--sp-2);
}
.lp-form__input,
.lp-form__select,
.lp-form__textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--f-body);
  font-size: 0.95rem;
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  transition: all 0.15s;
}
.lp-form__input:focus,
.lp-form__select:focus,
.lp-form__textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.lp-form__textarea { resize: vertical; min-height: 80px; }
.lp-form__btn {
  width: 100%;
  padding: var(--sp-4);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: var(--sp-2);
}
.lp-form__btn:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.lp-form__small {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: var(--sp-4);
  font-family: var(--f-mono);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .lp-hero__inner { grid-template-columns: 1fr; }
  .lp-form { position: static; }
}

/* ==========================================================================
   CONTACT FORM PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  padding: var(--sp-12) 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.contact-block__label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--sp-3);
}
.contact-block__value {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--navy);
}
.contact-block__value a:hover { color: var(--gold-deep); }
.contact-block__note {
  font-family: var(--f-mono);
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: var(--sp-2);
}
.contact-form {
  background: var(--white);
  padding: var(--sp-8);
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   LOCATION PAGE
   ========================================================================== */
.loc-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-8);
  align-items: end;
}
.loc-coords {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  text-align: right;
  line-height: 1.5;
}
.loc-coords strong { display: block; color: var(--gold); font-size: 0.8rem; margin-bottom: 2px; }
@media (max-width: 720px) {
  .loc-hero-grid { grid-template-columns: 1fr; }
  .loc-coords { text-align: left; }
}

.loc-areas {
  background: var(--cream);
}
.loc-areas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}
.loc-area {
  background: var(--white);
  padding: var(--sp-4);
  border-left: 2px solid var(--gold);
  font-family: var(--f-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
@media (max-width: 720px) {
  .loc-areas__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   COMPLIANCE TOOL
   ========================================================================== */
.tool-wrapper {
  background: var(--cream);
  min-height: 70vh;
  padding: var(--sp-12) 0;
}
.tool-card {
  background: var(--white);
  max-width: 780px;
  margin: 0 auto;
  border-top: 6px solid var(--gold);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.tool-progress {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tool-progress__bar {
  flex: 1;
  margin: 0 var(--sp-5);
  height: 3px;
  background: rgba(255,255,255,0.15);
  position: relative;
}
.tool-progress__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.tool-body {
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
}
.tool-question {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.015em;
}
.tool-subq {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: var(--sp-6);
}
.tool-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.tool-option {
  padding: var(--sp-5);
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.15s;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.tool-option:hover {
  border-color: var(--gold);
  background: var(--white);
}
.tool-option.is-selected {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 2px var(--gold) inset;
}
.tool-option__title {
  font-family: var(--f-display);
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
}
.tool-option__desc {
  font-size: 0.85rem;
  color: var(--gray-600);
}
.tool-input {
  width: 100%;
  padding: var(--sp-4);
  font-family: var(--f-body);
  font-size: 1rem;
  background: var(--off-white);
  border: 2px solid var(--gray-200);
  color: var(--navy);
  margin-bottom: var(--sp-5);
}
.tool-input:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.tool-actions {
  display: flex;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--gray-200);
  justify-content: space-between;
}
.tool-actions .btn { min-width: 140px; }

.tool-result {
  padding: var(--sp-8);
}
.tool-result__head {
  text-align: center;
  padding-bottom: var(--sp-6);
  border-bottom: 2px solid var(--gold);
  margin-bottom: var(--sp-6);
}
.tool-result__title {
  font-family: var(--f-display);
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  line-height: 1;
}
.tool-result__section {
  margin-bottom: var(--sp-8);
}
.tool-result__section h4 {
  font-family: var(--f-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--navy);
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tool-result__section h4 span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.15em;
}
.tool-result__list li {
  padding: var(--sp-3) 0;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.98rem;
}
.tool-result__list li::before {
  content: '✓';
  color: var(--gold-deep);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}
.tool-result__warn {
  background: #FFF7E0;
  border-left: 3px solid var(--gold);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-4) 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.tool-result__cta {
  background: var(--navy);
  color: var(--white);
  padding: var(--sp-8);
  margin: var(--sp-6) calc(-1 * var(--sp-8)) calc(-1 * var(--sp-8));
  text-align: center;
}
.tool-result__cta h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  color: var(--gold);
}

@media (max-width: 600px) {
  .tool-options { grid-template-columns: 1fr; }
  .tool-body, .tool-result { padding: var(--sp-5); }
}

/* ==========================================================================
   UTILITY
   ========================================================================== */
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  white-space: nowrap;
}