@font-face {
  font-family: 'Tiempos Text';
  src: url('/fonts/tiempos-text-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Apercu';
  src: url('/fonts/apercu-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS — matched from Track Inspections sister-site screenshots
   ═══════════════════════════════════════════════════════════════ */
:root {
  --olive:      #4b4f38;   /* dark olive green — dark section backgrounds */
  --olive-deep: #3d4030;   /* deeper olive — navbar */
  --cream:      #f0d9a8;   /* warm sand/cream — light sections, text on dark */
  --gold:       #c9a46a;   /* gold/amber — accent headings, icons on dark */
  --gold-border: rgba(201, 164, 106, 0.35); /* dividers, input borders */
  --dark:       #2a2c1e;   /* dark text on cream sections */
  --body:       #5a5640;   /* body text on cream */
  --input-bg:   rgba(255, 255, 255, 0.07);
  --rail-black: #22211E;   /* railroad black — section backgrounds, footer */
  --oxide-red:  #7C3F32;   /* oxide red — primary CTA, accents */
}

/* ═══════════════════════════════════════════════════════════════
   HOUNDSTOOTH PATTERN — approved asset at /public/houndstooth.png.
   Do NOT replace with CSS gradients or SVG; use the image directly.
   .houndstooth-strip is the layout shell; .houndstooth-pattern applies the fill.
   ═══════════════════════════════════════════════════════════════ */
.houndstooth-pattern {
  background-image: url("/houndstooth.png");
  background-repeat: repeat;
  background-size: 18px 18px;
  background-position: center;
}

.houndstooth-strip {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   BASE
   ═══════════════════════════════════════════════════════════════ */
.site-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Apercu', system-ui, sans-serif;
  color: var(--dark);
  background: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════
   NAVBAR — sticky, dark olive, gold accents
   ═══════════════════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--olive-deep);
  border-bottom: 1px solid var(--gold-border);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-logo-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}

.nav-brand-line {
  font-family: 'Apercu', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-links li button,
.nav-links li a {
  display: inline-block;
  background: none;
  border: none;
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 10px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links li button:hover,
.nav-links li a:hover,
.nav-links li button.nav-active {
  color: var(--gold);
}

.nav-link-outline {
  border: 1px solid var(--gold-border) !important;
  border-radius: 3px;
}
.nav-link-outline.nav-active {
  border-color: var(--gold) !important;
}

.nav-cta {
  background-color: var(--cream) !important;
  color: var(--dark) !important;
  border-radius: 4px !important;
  padding: 8px 16px !important;
  font-weight: 700 !important;
  transition: background-color 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background-color: var(--gold) !important;
  color: var(--olive-deep) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   LOGO LOCKUP — horizontal hero arrangement
   ═══════════════════════════════════════════════════════════════ */
.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.logo-lockup-word {
  font-family: 'Apercu', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION — approved asset at /public/hero-bg.jpg.
   Do NOT replace with gradients or generated imagery.
   Overlay is a pure CSS pseudo-element for text readability only.
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Subtle dark overlay for text readability — does not alter the source image */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(34, 33, 30, 0.64);
  z-index: 1;
}

/* Gold-bordered inner frame — signature element from screenshots */
.hero-frame {
  position: relative;
  z-index: 2;
  width: calc(100% - 80px);
  max-width: 1060px;
  border: 1px solid rgba(201, 164, 106, 0.45);
  border-radius: 3px;
  padding: 80px 64px;
  text-align: center;
  margin: 40px auto;
}

.hero-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
  margin: 0 0 16px;
}

.hero-subtitle {
  font-family: 'Apercu', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2.5px;
  color: rgba(240, 217, 168, 0.72);
  margin-bottom: 44px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-block;
  background: var(--oxide-red);
  border: 1px solid var(--oxide-red);
  color: var(--cream);
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero-cta-btn:hover {
  background: #9b5040;
  border-color: #9b5040;
  color: var(--cream);
}

.hero-cta-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201, 164, 106, 0.65);
  color: var(--cream);
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s;
}
.hero-cta-outline:hover {
  background: rgba(201, 164, 106, 0.12);
  border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE HERO — reusable olive banner for inner pages
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background-color: var(--rail-black);
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}

.page-hero-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 14px;
}

.page-hero-subtitle {
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: rgba(240, 217, 168, 0.65);
  margin: 0;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   MAP SECTION — approved asset at /public/map-section.png.
   Do NOT replace with generated maps or SVG. Image only.
   ═══════════════════════════════════════════════════════════════ */
.map-section {
  width: 100%;
  line-height: 0; /* removes inline-block gap beneath img */
}

.map-section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats-section { background-color: var(--rail-black); }

.stats-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.stat-value {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.stat-check-icon { color: var(--oxide-red); display: flex; }

.stat-label {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.stats-body {
  font-family: 'Apercu', sans-serif;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.88;
  max-width: 600px;
  margin: 0 auto 44px;
  text-align: center;
}

.stats-map-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* Approved map asset — rendered at natural image dimensions */
.stats-map-img {
  display: block;
  max-width: 50%;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION — cream, photo + text
   ═══════════════════════════════════════════════════════════════ */
.about-section {
  background-color: var(--cream);
  padding: 88px 32px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

.about-photo-col { flex: 0 0 380px; }

.about-photo-frame {
  border: 2px solid rgba(90, 86, 64, 0.35);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.team-photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.about-text-col { flex: 1; }

/* ─ Shared heading styles ─ */
.section-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 22px;
}

.section-heading-light {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 12px;
}

.section-subheading {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-top: 8px;
}

.section-subheading-dark {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--body);
  max-width: 500px;
  margin: 12px auto 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 52px;
}

.section-cta-row {
  text-align: center;
  margin-top: 44px;
}

.about-body {
  font-family: 'Apercu', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 24px;
}

.about-quote {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(16px, 2.2vw, 23px);
  font-style: italic;
  font-weight: 500;
  color: var(--dark);
  border-left: 3px solid var(--oxide-red);
  padding-left: 22px;
  margin: 0 0 28px;
  line-height: 1.45;
}

.text-link-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
  transition: color 0.2s;
}
.text-link-btn:hover { color: var(--olive); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION — olive, numbered grid (homepage teaser)
   ═══════════════════════════════════════════════════════════════ */
.services-section { background-color: var(--rail-black); }

.services-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(201, 164, 106, 0.12);
  border: 1px solid rgba(201, 164, 106, 0.12);
}

.service-card {
  background: #2b2a26;
  border-top: 2px solid rgba(201, 164, 106, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  padding: 36px 30px;
  transition: border-top-color 0.2s, background 0.2s;
}
.service-card:hover {
  background: rgba(124, 63, 50, 0.18);
  border-top-color: var(--oxide-red);
}

.service-card-number {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.service-card-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 12px;
}

.service-card-body {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(240, 217, 168, 0.72);
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES SERVED
   ═══════════════════════════════════════════════════════════════ */
.industries-section {
  background-color: var(--cream);
  border-top: 3px solid var(--rail-black);
  border-bottom: 1px solid var(--gold-border);
}

.industries-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--gold-border);
  border-left: 1px solid var(--gold-border);
}

.industry-item {
  padding: 32px 28px;
  border-right: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.industry-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}

.industry-name {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════
   CTA BAND — cream background, centered call-to-action
   ═══════════════════════════════════════════════════════════════ */
.cta-band {
  background-color: var(--cream);
  padding: 80px 32px;
  text-align: center;
  border-top: 1px solid rgba(90, 86, 64, 0.15);
}

.cta-band-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
  line-height: 1.2;
}

.cta-band-sub {
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--body);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-band-phone {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.cta-band-phone:hover { color: var(--olive); }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background-color: var(--oxide-red);
  color: var(--cream);
  border: none;
  border-radius: 30px;
  font-family: 'Apercu', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.btn-primary:hover { background-color: #9b5040; color: var(--cream); }

/* On dark (olive) sections, invert to cream pill */
.cta-olive .btn-primary,
.contact-phone-band .btn-primary,
.cta-band-dark .btn-primary {
  background-color: var(--cream);
  color: var(--dark);
}
.cta-band-dark .btn-primary:hover { background-color: var(--gold); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(201, 164, 106, 0.65);
  color: var(--gold);
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--rail-black);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — timeline, values, certs
   ═══════════════════════════════════════════════════════════════ */
.timeline-section { background-color: var(--olive); }

.timeline-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 32px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 40px 1fr;
  gap: 0 20px;
  min-height: 100px;
}

.timeline-year {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-align: right;
  padding-top: 2px;
  letter-spacing: 1px;
}

.timeline-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--gold-border);
  margin: 8px 0;
}

.timeline-body {
  padding-bottom: 36px;
}

.timeline-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 10px;
}

.timeline-text {
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(240, 217, 168, 0.72);
}

/* Values */
.values-section {
  background-color: var(--cream);
  padding: 80px 32px;
}

.values-content { max-width: 1100px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 52px;
}

.value-card-rule {
  width: 32px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 18px;
}

.value-card-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px;
}

.value-card-body {
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--body);
}

/* Certifications */
.certs-section { background-color: var(--olive); }

.certs-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 48px;
}

.cert-item {
  background: var(--olive);
  padding: 32px 28px;
}

.cert-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.cert-body {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240, 217, 168, 0.65);
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE — detail cards, process, coverage
   ═══════════════════════════════════════════════════════════════ */
.services-detail-section {
  background-color: var(--cream);
  padding: 72px 0;
}

.services-detail-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(90, 86, 64, 0.12);
  border: 1px solid rgba(90, 86, 64, 0.12);
}

.service-detail-card {
  background: var(--cream);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  transition: background 0.2s;
}
.service-detail-card:hover { background: rgba(201, 164, 106, 0.08); }

.service-detail-number {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.service-detail-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
}

.service-detail-summary {
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--body);
}

.service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-detail-list li {
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--body);
  padding-left: 18px;
  position: relative;
}
.service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* Process */
.process-section { background-color: var(--olive); }

.process-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--gold-border);
  background: rgba(255,255,255,0.03);
}

.process-step-number {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 14px;
}

.process-step-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 0 12px;
}

.process-step-body {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(240, 217, 168, 0.65);
}

.process-step-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 18px;
  z-index: 1;
  opacity: 0.6;
}

/* Coverage */
.coverage-section {
  background-color: var(--cream);
  padding: 80px 32px;
}

.coverage-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.coverage-text { flex: 1; }

.coverage-body {
  font-family: 'Apercu', sans-serif;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 20px;
}

.coverage-phone {
  display: inline-block;
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}
.coverage-phone:hover { color: var(--olive); }

.coverage-states {
  flex: 0 0 260px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: flex-start;
  padding-top: 52px;
}

.coverage-state-tag {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(75, 79, 56, 0.35);
  padding: 7px 14px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   TEAM PAGE
   ═══════════════════════════════════════════════════════════════ */
.team-page-section {
  background-color: var(--cream);
  padding: 72px 32px;
}

.team-page-content { max-width: 1000px; margin: 0 auto; }

.team-page-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(90,86,64,0.12);
  border: 1px solid rgba(90,86,64,0.12);
  margin-top: 52px;
}

.team-page-card {
  background: var(--cream);
  display: flex;
  gap: 40px;
  padding: 48px 40px;
  align-items: flex-start;
}

.team-page-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  border: 2px solid rgba(75,79,56,0.2);
}

.team-page-name {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}

.team-page-title {
  font-family: 'Apercu', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

.team-page-bio {
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  line-height: 1.78;
  color: var(--body);
  margin-bottom: 20px;
}

.team-page-credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-page-credentials li {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--olive);
  border: 1px solid rgba(75,79,56,0.35);
  padding: 6px 13px;
  border-radius: 2px;
}

/* Philosophy quote */
.philosophy-section {
  background-color: var(--olive);
  padding: 64px 32px;
}

.philosophy-content { max-width: 780px; margin: 0 auto; }

.philosophy-quote-block { text-align: center; }

.philosophy-quote {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.5;
  margin: 0 0 24px;
}

.philosophy-attribution {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* Creds */
.team-creds-section { background-color: var(--olive); }

.team-creds-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}

.creds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-border);
  border: 1px solid var(--gold-border);
  margin-top: 48px;
}

.cred-item {
  background: var(--olive);
  padding: 32px 28px;
}

.cred-label {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.cred-desc {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240,217,168,0.65);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-page-section {
  background-color: var(--cream);
  padding: 72px 32px;
}

.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: flex-start;
}

.contact-intro {
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
  margin: 14px 0 36px;
}

/* Full-width form */
.contact-full-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--body);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid rgba(90, 86, 64, 0.25);
  border-radius: 3px;
  color: var(--dark);
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(90, 86, 64, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* Info panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 68px;
}

.contact-info-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(90,86,64,0.15);
}

.contact-info-phone {
  display: block;
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.contact-info-phone:hover { color: var(--olive); }

.contact-info-email {
  display: block;
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-email:hover { color: var(--olive); }

.contact-info-address {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  font-style: normal;
  line-height: 1.7;
  color: var(--body);
}

.contact-info-note {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--body);
  margin: 0;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-list li {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  color: var(--body);
  padding-left: 16px;
  position: relative;
}
.contact-info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 2px;
  background: var(--gold);
}

/* Contact phone band */
.contact-phone-band { background-color: var(--olive); }

.contact-phone-band-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
}

.contact-phone-band-label {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-phone-band-number {
  display: block;
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 36px;
  transition: color 0.2s;
}
.contact-phone-band-number:hover { color: var(--cream); }

.contact-phone-band-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact-phone-band-copy {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.5;
  margin: 0;
}

.form-error {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #8b2020;
  background: rgba(139, 32, 32, 0.07);
  border: 1px solid rgba(139, 32, 32, 0.2);
  border-radius: 3px;
  padding: 12px 16px;
  margin: 0;
}
.form-error a { color: #8b2020; }

.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* Contact success */
.contact-success-full {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 48px 0;
}

.contact-success-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.contact-success-body {
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--body);
  margin: 0;
}

.contact-success-body a {
  color: var(--olive);
}

/* ═══════════════════════════════════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════════════════════════════════ */
.login-page {
  min-height: calc(100vh - 68px);
  background-color: var(--olive);
  display: flex;
  flex-direction: column;
}

.login-content {
  flex: 1;
  max-width: 440px;
  margin: 0 auto;
  padding: 64px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--cream);
  margin: 20px 0 8px;
}

.login-subtitle {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgba(240, 217, 168, 0.55);
  margin-bottom: 44px;
}

.login-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

/* Login form inputs on dark background */
.login-form .form-group label {
  color: rgba(240, 217, 168, 0.6);
  text-align: left;
}

.login-form .form-group input {
  background: var(--input-bg);
  border: 1px solid rgba(201,164,106,0.38);
  color: var(--cream);
}
.login-form .form-group input::placeholder { color: rgba(240,217,168,0.35); }
.login-form .form-group input:focus { border-color: rgba(201,164,106,0.75); }

.login-form .btn-primary {
  background-color: var(--cream);
  color: var(--dark);
  margin-top: 8px;
}
.login-form .btn-primary:hover { background-color: var(--gold); color: var(--olive-deep); }

.login-error {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--cream);
  background: rgba(201,164,106,0.15);
  border: 1px solid rgba(201,164,106,0.35);
  border-radius: 3px;
  padding: 14px 16px;
  text-align: left;
}
.login-error a { color: var(--gold); }

.login-help {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  color: rgba(240,217,168,0.5);
  margin: 16px 0;
}

.inline-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.login-back-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(240,217,168,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: color 0.2s;
  margin-top: 8px;
}
.login-back-btn:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--rail-black);
  border-top: 1px solid rgba(201, 164, 106, 0.2);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 36px;
  display: flex;
  align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 16px; }

.footer-name {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 5px;
}

.footer-tagline {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav button,
.footer-nav a {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(240,217,168,0.6);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}
.footer-nav button:hover, .footer-nav a:hover { color: var(--gold); }

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: auto;
}

.footer-phone {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 22px;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--cream); }

.footer-email {
  font-family: 'Apercu', sans-serif;
  font-size: 12px;
  color: rgba(240,217,168,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--cream); }

.footer-address {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-style: normal;
  line-height: 1.7;
  color: rgba(240,217,168,0.5);
}

.footer-region {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: rgba(240,217,168,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 164, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 36px;
}

.footer-bottom span {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: rgba(240,217,168,0.35);
}

.footer-privacy-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: rgba(240,217,168,0.35);
  padding: 0;
  transition: color 0.2s;
}
.footer-privacy-link:hover { color: var(--cream); }

/* ── Privacy Policy page ── */
.privacy-section {
  background: var(--cream);
  padding: 72px 24px;
}

.privacy-content {
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Apercu', sans-serif;
  color: var(--dark);
}

.privacy-effective {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 28px;
}

.privacy-intro {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
  color: var(--body);
}

.privacy-content h2 {
  font-family: 'Tiempos Text', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--olive-deep);
  margin: 44px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold-border);
}

.privacy-content h3 {
  font-family: 'Apercu', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin: 24px 0 8px;
}

.privacy-content p,
.privacy-content address {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
  margin-bottom: 16px;
  font-style: normal;
}

.privacy-content ul {
  font-size: 14px;
  line-height: 1.8;
  color: var(--body);
  padding-left: 24px;
  margin-bottom: 16px;
}

.privacy-content a {
  color: var(--olive);
  text-decoration: underline;
}
.privacy-content a:hover { color: var(--olive-deep); }

.privacy-address {
  background: rgba(75,79,56,0.07);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤960px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-inner { flex-direction: column; gap: 44px; }
  .about-photo-col { flex: none; width: 100%; max-width: 440px; margin: 0 auto; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .creds-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step-arrow { display: none; }

  .coverage-content { flex-direction: column; gap: 40px; }
  .coverage-states { flex: none; padding-top: 0; }

  .contact-page-inner { grid-template-columns: 1fr; }
  .contact-info-panel { padding-top: 0; }
  .form-row { grid-template-columns: 1fr; }

  .service-detail-card { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }

  .team-page-card { flex-direction: column; gap: 24px; }

  .footer-inner { gap: 40px; }
  .footer-contact-col { margin-left: 0; }

  .logo-lockup-word { font-size: 14px; letter-spacing: 4px; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤640px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--olive-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 20px;
    border-bottom: 1px solid var(--gold-border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li button,
  .nav-links li a { width: 100%; text-align: left; padding: 12px 28px; border-radius: 0; }
  .nav-link-outline { border-left: none !important; border-right: none !important; border-radius: 0 !important; }
  .nav-cta { border-radius: 0 !important; text-align: center !important; margin-top: 4px; }

  .navbar-inner { padding: 0 20px; }

  .hero-frame { width: calc(100% - 36px); padding: 44px 20px; margin: 18px; }
  .logo-lockup { gap: 12px; margin-bottom: 32px; }
  .logo-lockup-word { font-size: 10px; letter-spacing: 3px; }

  .stats-row { gap: 28px; }

  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; gap: 28px; }
  .certs-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .about-section, .values-section { padding: 60px 20px; }
  .services-content, .certs-content, .team-creds-content, .process-content { padding: 60px 20px; }

  .timeline-item { grid-template-columns: 60px 28px 1fr; gap: 0 12px; }
  .timeline-year { font-size: 14px; }

  .team-page-grid { background: none; border: none; gap: 24px; }
  .team-page-card { background: rgba(90,86,64,0.06); border: 1px solid rgba(90,86,64,0.12); border-radius: 2px; padding: 28px 20px; }

  .footer-inner { flex-direction: column; gap: 36px; padding: 40px 24px; }

  .page-hero-content { padding: 48px 20px; }

  .contact-page-section { padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .hero-cta-row { flex-direction: column; gap: 12px; }

  .compliance-callout { padding: 60px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   LANDING PAGES — shared template styles
   ═══════════════════════════════════════════════════════════════ */

/* Intro section */
.lp-intro-section {
  background: var(--cream);
  border-bottom: 1px solid var(--gold-border);
}
.lp-intro-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.lp-intro-content .section-heading { margin-bottom: 28px; }

.lp-body {
  font-family: 'Apercu', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--body);
  margin-bottom: 20px;
}

/* Features section (dark olive) */
.lp-features-section { background: var(--rail-black); }
.lp-features-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 32px;
}
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 52px;
}
.lp-feature-card { }
.lp-feature-rule {
  width: 28px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 16px;
}
.lp-feature-title {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin: 0 0 10px;
}
.lp-feature-body {
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(240, 217, 168, 0.7);
}

/* Two-column section */
.lp-twocol-section {
  background: var(--cream);
  border-top: 1px solid var(--gold-border);
}
.lp-twocol-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.lp-twocol-text { flex: 1; }
.lp-twocol-text .section-heading { margin-bottom: 24px; }
.lp-twocol-list { flex: 0 0 380px; }
.lp-list-heading {
  font-family: 'Apercu', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}
.lp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Apercu', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  padding: 10px 0;
  border-bottom: 1px solid var(--gold-border);
}
.lp-checklist li:last-child { border-bottom: none; }
.lp-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  position: relative;
}
.lp-check::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 6px;
  height: 9px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

/* Trust / credential strip */
.lp-trust-section {
  background: var(--rail-black);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.lp-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.lp-trust-item { text-align: center; }
.lp-trust-value {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.lp-trust-label {
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(240, 217, 168, 0.6);
}

/* Plain text section */
.lp-text-section {
  background: var(--cream);
  border-top: 1px solid var(--gold-border);
}
.lp-text-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.lp-text-content .section-heading { margin-bottom: 28px; }

/* ── FAQ Section ── */
.lp-faq-section {
  background: var(--cream);
  border-top: 1px solid var(--gold-border);
}
.lp-faq-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 32px;
}
.lp-faq-content .section-heading { margin-bottom: 40px; }
.lp-faq-list { margin: 0; padding: 0; }
.lp-faq-item {
  border-bottom: 1px solid var(--gold-border);
  padding: 28px 0;
}
.lp-faq-item:first-child { border-top: 1px solid var(--gold-border); }
.lp-faq-q {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 12px;
}
.lp-faq-a {
  font-family: 'Apercu', sans-serif;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--body);
  margin: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-twocol-inner { flex-direction: column; gap: 44px; }
  .lp-twocol-list { flex: none; width: 100%; }
}
@media (max-width: 600px) {
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-trust-inner { justify-content: center; }
  .lp-faq-q { font-size: 16px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPLIANCE CALLOUT
   ═══════════════════════════════════════════════════════════════ */
.compliance-callout {
  background: var(--rail-black);
  padding: 88px 32px;
}

.compliance-inner {
  max-width: 820px;
  margin: 0 auto;
}

.compliance-eyebrow {
  font-family: 'Apercu', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--oxide-red);
  margin: 0 0 14px;
}

.compliance-rule {
  width: 40px;
  height: 2px;
  background: var(--oxide-red);
  margin-bottom: 32px;
}

.compliance-heading {
  font-family: 'Tiempos Text', Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 680px;
}

.compliance-body {
  font-family: 'Apercu', sans-serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(240, 217, 168, 0.82);
  max-width: 640px;
  margin: 0 0 36px;
}

.compliance-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
  max-width: 600px;
}

.compliance-point {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Apercu', sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  color: rgba(240, 217, 168, 0.88);
}

.compliance-dash {
  width: 20px;
  height: 2px;
  background: var(--oxide-red);
  flex-shrink: 0;
}

.compliance-cta {
  display: inline-block;
  background: var(--oxide-red);
  color: var(--cream);
  font-family: 'Apercu', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.compliance-cta:hover {
  background: #9b5040;
}

/* ── Static HTML: <a> elements replacing <button> elements ── */
a.nav-logo-btn,
a.hero-cta-btn,
a.btn-primary,
a.btn-outline,
a.text-link-btn,
a.footer-privacy-link {
  text-decoration: none;
}
a.nav-active {
  color: var(--gold) !important;
}
