/* =========================================================
   HVAC Service Tampa — Lead Funnel
   Direction: trust + urgency. Deep navy (authority) + hot
   orange (action). Mobile-first, single conversion goal.
   ========================================================= */

:root {
  /* Palette */
  --navy-950: #071a33;
  --navy-900: #0b2545;
  --navy-800: #13335f;
  --navy-700: #1e4a82;
  --ice-50: #f6fafd;
  --ice-100: #eef4fa;
  --ice-200: #dbe7f2;
  --ink-900: #0c1524;
  --ink-700: #2a3647;
  --ink-500: #5a6678;
  --ink-400: #8591a3;
  --line: #e2e8f0;

  --orange-600: #e85a1c;
  --orange-500: #ff6b2c;
  --orange-400: #ff8a4a;
  --orange-100: #ffe4d1;

  --green-600: #139266;
  --green-100: #d7f2e3;

  /* Tokens */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(10, 23, 46, 0.06),
    0 2px 6px rgba(10, 23, 46, 0.04);
  --shadow: 0 6px 20px -6px rgba(10, 23, 46, 0.18),
    0 2px 6px rgba(10, 23, 46, 0.06);
  --shadow-lg: 0 20px 50px -12px rgba(10, 23, 46, 0.28);
  --shadow-cta: 0 10px 24px -6px rgba(232, 90, 28, 0.45);

  --font-display: 'Cabinet Grotesk', 'Cabinet Grotesk Fallback', 'Inter', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Satoshi Fallback', 'Inter', system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --max-narrow: 820px;
}

/* Font-metric-matched fallbacks — prevents CLS when Fontshare webfonts swap in.
   Metrics calibrated so Arial (widely cached) closely matches Cabinet Grotesk
   and Satoshi x-height/advance, eliminating hero-area reflow. */
@font-face {
  font-family: 'Cabinet Grotesk Fallback';
  src: local('Arial');
  size-adjust: 98%;
  ascent-override: 95%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Satoshi Fallback';
  src: local('Arial');
  size-adjust: 100%;
  ascent-override: 92%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
}

.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;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.container--narrow {
  max-width: var(--max-narrow);
}

/* =========================================================
   Ribbon + topbar
   ========================================================= */
.ribbon {
  background: var(--navy-950);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ribbon__inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}
.ribbon strong {
  color: var(--orange-400);
  font-weight: 700;
}
.ribbon__dot {
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 107, 44, 0.8);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 44, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 44, 0);
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy-900);
}
.logo__mark {
  width: 28px;
  height: 28px;
  color: var(--orange-500);
}
.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.logo__accent {
  color: var(--orange-500);
}

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy-900);
  padding: 7px 13px 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--ice-200);
  background: #fff;
  transition: border-color .2s ease, background .2s ease;
}
.topbar__phone:hover {
  border-color: var(--orange-500);
  background: var(--ice-50);
}
.icon-phone {
  width: 15px;
  height: 15px;
  color: var(--orange-500);
  flex: 0 0 15px;
}
.topbar__phone-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-900);
  letter-spacing: -0.005em;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 64px) 0 clamp(32px, 5vw, 72px);
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 50%,
      rgba(255, 255, 255, 0.55) 100%
    ),
    radial-gradient(
      1100px 600px at 85% -10%,
      rgba(255, 107, 44, 0.15),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 10% 110%,
      rgba(30, 74, 130, 0.12),
      transparent 60%
    ),
    image-set(
      url('/img/hero-home.avif') type('image/avif'),
      url('/img/hero-home.webp') type('image/webp'),
      url('/img/hero-home.jpg') type('image/jpeg')
    ) center right / cover no-repeat,
    linear-gradient(180deg, var(--ice-50) 0%, #fff 70%);
  overflow: hidden;
}
@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.92) 40%,
        rgba(255, 255, 255, 0.75) 100%
      ),
      image-set(
        url('/img/hero-home.avif') type('image/avif'),
        url('/img/hero-home.webp') type('image/webp'),
        url('/img/hero-home.jpg') type('image/jpeg')
      ) center / cover no-repeat,
      linear-gradient(180deg, var(--ice-50) 0%, #fff 70%);
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    var(--ice-200) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.hero__grid {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: #fff;
  border: 1px solid var(--ice-200);
  color: var(--navy-800);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.hero__badge svg {
  width: 14px;
  height: 14px;
  color: #f5a623;
}
.hero__badge strong {
  color: var(--navy-900);
  font-weight: 700;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy-900);
  margin: 16px 0 16px;
  text-wrap: balance;
}
.hero__highlight {
  position: relative;
  color: var(--orange-600);
  white-space: nowrap;
}
.hero__highlight::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 2%;
  height: 14%;
  background: rgba(255, 107, 44, 0.22);
  border-radius: 4px;
  z-index: -1;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 58ch;
  margin: 0 0 24px;
}

/* Lead form */
.lead {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow);
}
.lead__row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-bottom: 12px;
}
@media (min-width: 520px) {
  .lead__row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.lead__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ice-200);
  background: var(--ice-50);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink-900);
  transition: border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}
.lead__input::placeholder {
  color: var(--ink-400);
}
.lead__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--navy-700);
  box-shadow: 0 0 0 4px rgba(30, 74, 130, 0.12);
}
.lead__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--ice-200);
  font-size: 13px;
  color: var(--ink-500);
}
.lead__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lead__trust-item svg {
  width: 14px;
  height: 14px;
  color: var(--green-600);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px -6px rgba(232, 90, 28, 0.55);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--lg {
  padding: 14px 22px;
  font-size: 16px;
}
.btn--xl {
  width: 100%;
  padding: 18px 22px;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.btn__arrow {
  width: 18px;
  height: 18px;
}

.hero__or {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-size: 15px;
  flex-wrap: wrap;
}
.hero__phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  text-decoration: none;
  border-bottom: 2px solid var(--orange-500);
}
.hero__phone:hover {
  color: var(--orange-600);
}

.authority {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--ink-700);
  font-size: 13px;
  font-weight: 600;
}
.authority li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.authority svg {
  width: 16px;
  height: 16px;
  color: var(--navy-700);
}

/* Proof card (right column) */
.proof-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 74, 130, 0.04) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.proof-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.proof-card__pulse {
  width: 10px;
  height: 10px;
  background: var(--green-600);
  border-radius: 50%;
  position: relative;
}
.proof-card__pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green-600);
  animation: ping 1.8s infinite ease-out;
}
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2.6);
    opacity: 0;
  }
}
.proof-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-card__list li {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--ice-50);
  border-radius: var(--radius);
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid var(--ice-100);
}
.proof-card__when {
  font-size: 12px;
  color: var(--ink-500);
  font-weight: 600;
  flex-shrink: 0;
  min-width: 64px;
  padding-top: 1px;
}
.proof-card__what {
  color: var(--ink-700);
}
.proof-card__what strong {
  color: var(--navy-900);
}
.proof-card__foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.proof-card__stat {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--navy-900);
  line-height: 1.1;
}
.proof-card__label {
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* =========================================================
   Logos strip
   ========================================================= */
.logos {
  padding: 28px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ice-50);
  text-align: center;
}
.logos__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 700;
  margin: 0 0 14px;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-800);
  opacity: 0.8;
}

/* =========================================================
   Generic section
   ========================================================= */
.section {
  padding: clamp(56px, 8vw, 110px) 0;
}
.section--dark {
  background: var(--navy-900);
  color: #eef4fa;
}
.section--muted {
  background: var(--ice-50);
}
.section--accent {
  background: linear-gradient(
    180deg,
    var(--navy-900) 0%,
    var(--navy-950) 100%
  );
  color: #eef4fa;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin: 0 0 12px;
}
.eyebrow--light {
  color: var(--orange-400);
}
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 32px;
  text-wrap: balance;
  max-width: 22ch;
}
.section--dark .section__title,
.section--accent .section__title,
.section__title--light {
  color: #fff;
}

.lead-copy {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 0 24px;
  max-width: 58ch;
}

/* =========================================================
   Pain grid
   ========================================================= */
.pain-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pain {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px;
  border-radius: var(--radius-lg);
}
.pain__icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.pain h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.pain p {
  font-size: 15px;
  line-height: 1.55;
  color: #c7d4e4;
  margin: 0;
}

/* =========================================================
   Solution
   ========================================================= */
.solution {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .solution {
    grid-template-columns: 1.2fr 1fr;
  }
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--ink-700);
  line-height: 1.5;
}
.steps strong {
  color: var(--navy-900);
  display: block;
  margin-bottom: 2px;
}
.steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--orange-100);
  color: var(--orange-600);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.price-card::before {
  content: 'No-obligation estimate';
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--orange-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.price-card__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.price-card__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed var(--ice-200);
  font-size: 15px;
  color: var(--ink-700);
}
.price-card__row strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 16px;
}
.price-card__row:last-of-type {
  border-bottom: none;
}
.price-card__foot {
  margin-top: 14px;
  padding: 14px;
  background: var(--green-100);
  color: #0b5a3f;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================================
   Benefits
   ========================================================= */
.benefits {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .benefits {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.benefit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, background 0.2s ease;
}
.benefit:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
}
.benefit__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  color: var(--orange-400);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.benefit__num span {
  font-size: 18px;
  color: #c7d4e4;
  font-weight: 600;
  margin-left: 2px;
}
.benefit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin: 0 0 6px;
}
.benefit p {
  font-size: 14px;
  color: #c7d4e4;
  margin: 0;
  line-height: 1.55;
}

/* =========================================================
   Stats + testimonials
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
  padding: 22px;
  background: var(--ice-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ice-200);
}
@media (min-width: 720px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  text-align: center;
  padding: 8px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy-900);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat span {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 6px;
}

.testimonials {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin: 0;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testimonial__stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-700);
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-500);
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--ice-200);
}
.testimonial figcaption strong {
  display: block;
  color: var(--navy-900);
  font-size: 14px;
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.review-sources {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-500);
}
.review-sources a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.review-sources a:hover {
  color: var(--orange-600);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 18px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--navy-700);
}
.faq summary {
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--orange-500);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after {
  content: '−';
}
.faq p {
  padding: 0 0 16px;
  margin: 0;
  color: var(--ink-700);
  font-size: 15px;
  line-height: 1.6;
}
.faq strong {
  color: var(--navy-900);
}

/* =========================================================
   Final CTA
   ========================================================= */
.final {
  background: radial-gradient(
      900px 500px at 20% 20%,
      rgba(255, 107, 44, 0.2),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 90% 100%,
      rgba(30, 74, 130, 0.4),
      transparent 60%
    ),
    var(--navy-950);
  color: #fff;
  padding: clamp(60px, 8vw, 110px) 0;
  text-align: center;
}
.final__eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-400);
  font-weight: 700;
  margin: 0 0 16px;
}
.final__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.final__sub {
  font-size: 17px;
  color: #c7d4e4;
  max-width: 56ch;
  margin: 0 auto 28px;
  line-height: 1.55;
}
.lead--final {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  max-width: 520px;
  margin-inline: auto;
}
.lead--final .lead__input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.lead--final .lead__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.lead--final .lead__input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--orange-400);
  box-shadow: 0 0 0 4px rgba(255, 138, 74, 0.2);
}

.final__or {
  margin-top: 22px;
  font-size: 13px;
  color: #8aa1bf;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.final__phone {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 40px);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 3px solid var(--orange-500);
  padding-bottom: 4px;
}
.final__phone:hover {
  color: var(--orange-400);
}
.final__trust {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 14px;
  color: #c7d4e4;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--navy-950);
  color: #8aa1bf;
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}
.footer__brand p {
  font-size: 13px;
  margin-top: 8px;
  max-width: 40ch;
  line-height: 1.55;
}
.footer__brand .logo__text {
  color: #fff;
  font-size: 22px;
}
.footer__meta {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  font-size: 13px;
  line-height: 1.55;
}
@media (min-width: 520px) {
  .footer__meta {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer__meta strong {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer__meta a {
  color: var(--orange-400);
  text-decoration: none;
  font-weight: 700;
}
.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-size: 12px;
  color: #607595;
  margin: 0;
}

/* =========================================================
   Sticky mobile CTA
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -8px rgba(232, 90, 28, 0.6),
    0 4px 10px rgba(10, 23, 46, 0.3);
  z-index: 50;
}
.sticky-cta svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 820px) {
  .sticky-cta {
    display: inline-flex;
  }
  body {
    padding-bottom: 84px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =========================================================
   Interior page components
   ========================================================= */
.breadcrumbs {
  font-size: 13px;
  color: var(--ink-500);
  padding: 18px 0 0;
}
.breadcrumbs a {
  color: var(--ink-500);
  text-decoration: none;
  border-bottom: 1px dotted var(--ice-200);
}
.breadcrumbs a:hover {
  color: var(--navy-700);
  border-bottom-color: var(--navy-700);
}
.breadcrumbs span[aria-current] {
  color: var(--navy-900);
  font-weight: 600;
}

.page-hero {
  padding: clamp(28px, 5vw, 64px) 0 clamp(32px, 5vw, 56px);
  background: radial-gradient(
      900px 500px at 90% -10%,
      rgba(255, 107, 44, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--ice-50) 0%, #fff 70%);
  position: relative;
  overflow: hidden;
}
.page-hero__grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .page-hero__grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 14px 0 16px;
  text-wrap: balance;
}
.page-hero__sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0 0 24px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}
.btn--ghost {
  background: #fff;
  color: var(--navy-900);
  border: 1.5px solid var(--ice-200);
}
.btn--ghost:hover {
  border-color: var(--navy-700);
  transform: translateY(-1px);
}

/* Service cards grid */
.svc-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .svc-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 1200px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* CTA-style connector card used as a final-row filler so the last
   row of the hub grid doesn't leave an orphan slot. */
.svc-card--cta {
  background: linear-gradient(135deg, #fff4ec 0%, #ffffff 80%);
  border-color: #ffd6bf;
}
.svc-card--cta .svc-card__title { color: var(--orange-600); }
.svc-card--cta .svc-card__link { color: var(--orange-600); }
.svc-card--cta:hover { border-color: var(--orange-500); }
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease,
    box-shadow 0.2s ease;
}
.svc-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.svc-card__icon {
  width: 36px;
  height: 36px;
  color: var(--orange-500);
}
.svc-card h3,
.svc-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
}
.svc-card__cta,
.svc-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-600);
  margin-top: 4px;
}

/* Location chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}
.area-chip {
  padding: 7px 14px;
  background: var(--ice-50);
  border: 1px solid var(--ice-200);
  border-radius: 999px;
  font-size: 13px;
  color: var(--navy-800);
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.area-chip:hover {
  background: #fff;
  border-color: var(--navy-700);
  color: var(--navy-900);
}

/* Inline lead form used on interior pages */
.inline-lead {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 88px;
}
.inline-lead h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.inline-lead p {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0 0 14px;
}

/* Prose body for service content */
.prose {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 65ch;
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--navy-900);
  letter-spacing: -0.015em;
  margin: 32px 0 12px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-900);
  margin: 22px 0 8px;
}
.prose ul {
  padding-left: 20px;
  margin: 12px 0;
}
.prose li {
  margin-bottom: 6px;
}
.prose strong {
  color: var(--navy-900);
}
.prose a {
  color: var(--navy-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose a:hover {
  color: var(--orange-600);
}

/* Interior section spacing (previously a 2-col grid, but every
   current template wraps a single .container inside, so the grid
   was reserving a 360px phantom column on the right. Keep the
   class as a spacing hook only; the actual two-column layouts
   (.solution, .page-hero__grid) handle their own grids. */
.interior {
  gap: clamp(24px, 3vw, 40px);
}

/* Sticky sidebar on service/area two-column layouts so the right
   card follows the scroll instead of leaving dead space when the
   left column is longer. */
@media (min-width: 900px) {
  .solution__card {
    position: sticky;
    top: 88px;
    align-self: start;
  }
}

/* Align grid columns to top so the left column doesn't visually
   center against a shorter right card. */
.solution { align-items: start; }

/* Comparison table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th,
.compare-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody tr:nth-child(even) td {
  background: #fafcfe;
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-900);
  background: var(--ice-50);
  font-size: 14px;
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--navy-900);
}
.compare-table td strong { color: var(--orange-600); }

/* Stack the comparison table on small screens. */
@media (max-width: 720px) {
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .compare-table {
    border: none;
    border-radius: 0;
    overflow: visible;
  }
  .compare-table thead {
    position: absolute;
    left: -9999px;
    top: -9999px;
  }
  .compare-table tbody tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    margin-bottom: 14px;
    padding: 0;
    background: #fff;
    overflow: hidden;
  }
  .compare-table tbody tr:nth-child(even) td { background: transparent; }
  .compare-table tbody tr td {
    border-bottom: 1px dashed var(--ice-200);
    padding: 11px 14px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    text-align: right;
  }
  .compare-table tbody tr td:last-child { border-bottom: none; }
  .compare-table tbody tr td:first-child {
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--navy-900);
    font-size: 15px;
    background: var(--ice-50);
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    display: block;
    text-align: left;
  }
  .compare-table tbody tr td::before {
    content: attr(data-col);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-500);
    text-align: left;
    flex: 0 0 auto;
  }
  .compare-table tbody tr td:first-child::before { content: none; }
}

/* Secondary nav */
.subnav {
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 62px;
  z-index: 30;
}
.subnav__inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 20px;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav a {
  font-size: 13px;
  color: var(--ink-500);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.subnav a:hover,
.subnav a[aria-current="page"] {
  background: var(--ice-50);
  color: var(--navy-900);
}

/* =========================================================
   TRUST BAND — three documentary photos
   ========================================================= */
.trust-band {
  padding: clamp(36px, 5vw, 72px) 0;
  background: #fff;
}
.trust-band__grid {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .trust-band__grid { grid-template-columns: repeat(3, 1fr); }
}
.trust-band__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.trust-band__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ice-100);
  box-shadow: 0 1px 2px rgba(15, 30, 60, 0.06),
              0 12px 32px -16px rgba(15, 30, 60, 0.25);
}
.trust-band__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.trust-band__item:hover .trust-band__frame img {
  transform: scale(1.02);
}
.trust-band__item figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}
.trust-band__item figcaption strong {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}
.trust-band__item figcaption span {
  font-size: 14.5px;
  color: var(--navy-700);
  line-height: 1.45;
}

/* =========================================================
   INTERIOR PAGE PHOTO PLACEMENTS — trust psychology
   (reused across service/area/combo/problem templates)
   ========================================================= */

/* Two-up trust strip: used mid-page on service/area/combo */
.trust-strip {
  padding: clamp(28px, 4vw, 56px) 0;
  background: #fff;
}
.trust-strip--muted { background: var(--ice-050, #f6f8fb); }
.trust-strip__inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(18px, 2.5vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .trust-strip--two .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .trust-strip--three .trust-strip__inner { grid-template-columns: repeat(3, 1fr); }
}
.trust-strip figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-strip__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ice-100);
  box-shadow: 0 1px 2px rgba(15, 30, 60, 0.06),
              0 10px 28px -18px rgba(15, 30, 60, 0.22);
}
.trust-strip__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.trust-strip figure:hover .trust-strip__frame img { transform: scale(1.02); }
.trust-strip figcaption {
  display: flex; flex-direction: column; gap: 3px;
  padding: 0 2px;
}
.trust-strip figcaption strong {
  font-family: var(--font-display);
  font-size: 16.5px; font-weight: 700;
  color: var(--navy-900); line-height: 1.3;
}
.trust-strip figcaption span {
  font-size: 14px; color: var(--navy-700); line-height: 1.5;
}

/* Wide neighborhood/atmospheric band: full-width image with caption overlay bottom-left */
.trust-band-wide {
  padding: clamp(20px, 3vw, 40px) 0;
}
.trust-band-wide__frame {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ice-100);
  box-shadow: 0 1px 2px rgba(15, 30, 60, 0.06),
              0 16px 42px -22px rgba(15, 30, 60, 0.28);
}
@media (max-width: 600px) {
  .trust-band-wide__frame { aspect-ratio: 4 / 3; }
}
.trust-band-wide__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.trust-band-wide__caption {
  position: absolute;
  left: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 32px);
  max-width: 520px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px -12px rgba(15, 30, 60, 0.3);
}
.trust-band-wide__caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16.5px; font-weight: 700;
  color: var(--navy-900); line-height: 1.3;
  margin-bottom: 3px;
}
.trust-band-wide__caption span {
  font-size: 14px; color: var(--navy-700); line-height: 1.5;
}

/* Inline figure — sits inside a prose column (service_page.html right after pricing) */
.prose-figure {
  margin: 22px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prose-figure__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 10px;
  background: var(--ice-100);
  box-shadow: 0 1px 2px rgba(15, 30, 60, 0.06),
              0 8px 20px -14px rgba(15, 30, 60, 0.2);
}
.prose-figure__frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.prose-figure figcaption {
  font-size: 13.5px;
  color: var(--navy-700);
  font-style: italic;
  line-height: 1.45;
  padding-left: 2px;
}

/* =========================================================
   PH-BAND — PSL-style photo blocks (homepage only)
   Pattern A: .ph-split (side-by-side copy + photo)
   Pattern B: .ph-feature (stacked header + wide photo)
   ========================================================= */
.ph-band {
  padding: clamp(48px, 7vw, 96px) 0;
  background: #fff;
}
.ph-band--muted { background: var(--ice-050, #f6f8fb); }
.ph-band.ph-tight { padding: clamp(32px, 4vw, 56px) 0; }

.ph-split {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  align-items: center;
}
/* Engage side-by-side sooner so copy doesn't stretch into an
   overly wide single column on tablet / narrow laptop widths. */
@media (min-width: 760px) {
  .ph-split { grid-template-columns: 1.05fr 1fr; }
}
/* In single-column mode (under 760px) cap the text block so long
   sentences don't span the full container width. */
@media (max-width: 759px) {
  .ph-split > .ph-copy { max-width: 60ch; }
}
.ph-copy .s-lbl {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500, #ff6b2c);
  margin-bottom: 12px;
}
.ph-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.15;
  margin: 0 0 18px 0;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}
.ph-copy p {
  font-size: 17px;
  color: var(--navy-700);
  line-height: 1.65;
  margin: 0 0 18px 0;
  max-width: 58ch;
}
.ph-copy ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ph-copy ul li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--navy-800, var(--navy-900));
  line-height: 1.5;
}
.ph-copy ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange-500, #ff6b2c);
  font-weight: 800;
}
/* Inline CTA text beneath the bullet list — no button chrome so it
   reads as supporting copy next to the photo rather than a second,
   competing CTA. */
.ph-copy__cta {
  margin: 8px 0 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--navy-700);
  max-width: 48ch;
}
.ph-copy__cta a {
  color: var(--orange-600);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--orange-200, #ffd6bf);
  transition: border-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.ph-copy__cta a:hover {
  border-bottom-color: var(--orange-500);
}

.ph-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ice-100);
  box-shadow: 0 2px 4px rgba(15, 30, 60, 0.06),
              0 20px 48px -20px rgba(15, 30, 60, 0.3);
  aspect-ratio: 4 / 3;
}
.ph-card picture,
.ph-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-cap {
  position: absolute;
  left: clamp(14px, 2vw, 20px);
  bottom: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 6px 18px -8px rgba(15, 30, 60, 0.25);
  font-size: 14px;
  color: var(--navy-700);
  line-height: 1.5;
}
.ph-cap strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}

/* Pattern B: Feature (stacked) */
.ph-feature {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 36px);
}
.ph-feature-hd {
  max-width: 680px;
  margin: 0;
  text-align: left;
  /* Orange hairline rule ties eyebrow + heading together */
  padding-left: 18px;
  border-left: 2px solid var(--orange-500, #ff6b2c);
}
@media (max-width: 640px) {
  .ph-feature-hd {
    max-width: 520px;
    padding-left: 14px;
  }
  .ph-feature-hd h2 { font-size: clamp(23px, 6vw, 28px); }
}
.ph-feature-hd .s-lbl {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-500, #ff6b2c);
  margin-bottom: 10px;
}
.ph-feature-hd h2 {
  /* Editorial serif for documentary-feel section — contrasts Cabinet Grotesk elsewhere */
  font-family: 'Zodiak', Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 500;
  color: var(--navy-900);
  line-height: 1.22;
  margin: 0 0 14px 0;
  letter-spacing: -0.005em;
  max-width: 22ch;
  text-wrap: balance;
}
.ph-feature-hd p {
  font-size: 17px;
  color: var(--navy-700);
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}
.ph-feature > .ph-card {
  aspect-ratio: 21 / 9;
  max-width: 960px;
  margin-inline: auto;
  width: 100%;
}
@media (max-width: 640px) {
  .ph-feature > .ph-card { aspect-ratio: 4 / 3; }
}

/* =========================================================
   Audit fixes: mobile nav drawer, nav spacing, CTA trim
   ========================================================= */

/* Desktop: show nav links in topbar */
.topbar__nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}
.topbar__nav a {
  color: var(--navy-700);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.topbar__nav a:hover {
  color: var(--navy-900);
  border-bottom-color: var(--orange-500);
}

/* Hamburger — hidden on desktop */
.topbar__menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ice-200);
  border-radius: 10px;
  color: var(--navy-900);
  cursor: pointer;
}
.topbar__menu-btn:hover { background: var(--ice-50); }
.topbar__menu-btn svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
  .topbar__nav { display: none; }
  .topbar__menu-btn { display: inline-flex; }
  /* Compact topbar on mobile: keep only the icon in the phone pill
     (the sticky bottom-right CTA and hamburger drawer already expose
     the full number, so a second label here just crowds the header). */
  .topbar { padding: 10px 14px; gap: 8px; }
  .topbar__phone {
    padding: 0;
    width: 38px;
    height: 38px;
    justify-content: center;
    gap: 0;
  }
  .topbar__phone-num { display: none; }
  .icon-phone { width: 17px; height: 17px; flex-basis: 17px; }
  .logo__text { font-size: 17px; white-space: nowrap; }
  .logo__mark { width: 24px; height: 24px; }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(10, 23, 46, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  justify-content: flex-end;
}
.mobile-drawer[hidden] { display: none; }
.mobile-drawer__panel {
  width: min(340px, 88vw);
  height: 100%;
  background: #fff;
  padding: 18px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: -20px 0 60px rgba(10, 23, 46, 0.3);
  animation: drawerIn .22s ease-out;
}
@keyframes drawerIn {
  from { transform: translateX(8%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer__close {
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ice-200);
  border-radius: 10px;
  color: var(--navy-900);
  cursor: pointer;
}
.mobile-drawer__close svg { width: 20px; height: 20px; }
.mobile-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer__nav a {
  display: block;
  padding: 14px 10px;
  border-radius: 10px;
  color: var(--navy-900);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border: 1px solid transparent;
}
.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:focus-visible {
  background: var(--ice-50);
  border-color: var(--ice-200);
}
.mobile-drawer__call {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--orange-500), var(--orange-600));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(232, 90, 28, 0.55);
}

/* Breadcrumbs › separator */
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__sep {
  color: var(--ink-500);
  padding: 0 6px;
}

/* Tighten dead-space after hero on interior pages.
   The page-hero sets generous bottom padding; the following
   section shouldn't add another full block on top. */
.page-hero + .section {
  padding-top: clamp(24px, 3vw, 40px);
}

/* Mobile footer legibility */
@media (max-width: 640px) {
  .footer__legal { font-size: 13px; line-height: 1.55; }
  .footer__meta { font-size: 14px; }
}

/* On mobile, hide the authority list under the hero so we don't
   stack 3 CTA-looking rows (form + phone + authority). */
@media (max-width: 640px) {
  .hero .authority { display: none; }
  .hero__or { margin-top: 8px; font-size: 15px; }
}
