:root {
  --red: #C42B2B;
  --red-dark: #9A1C1C;
  --red-glow: rgba(196, 43, 43, 0.12);

  --navy: #2E3852;
  --navy-deep: #1F2940;
  --navy-light: #4A5777;

  --gold: #D4A245;
  --gold-light: #E2C67A;

  --cream: #FAF8F4;
  --warm-100: #F1EEE8;
  --warm-200: #E0DCD4;
  --warm-300: #BFBAB1;
  --warm-400: #8E8880;
  --warm-500: #6B655E;
  --warm-600: #4A4540;
  --warm-700: #2E2B28;
  --warm-800: #1C1A18;

  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-back: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--warm-700);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Georgia', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  text-wrap: balance;
}
h2 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--warm-300); border-radius: 1px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

.has-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }

.section-padding { padding: 5rem 0; }
@media (min-width: 768px) { .section-padding { padding: 6.5rem 0; } }

.section-alt { background: var(--warm-100); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 250ms var(--ease);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(255,255,255,0.25);
  transition: width 250ms var(--ease);
}
.btn:hover::before {
  width: 4px;
}

.btn-red {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196, 43, 43, 0.3);
}

.btn-blue {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-blue:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 30, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--warm-300);
}
.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.top-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  padding: 0;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar a { color: rgba(255,255,255,0.6); transition: color 200ms var(--ease); }
.top-bar a:hover { color: var(--gold-light); }
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.top-bar-left {
  display: flex;
  gap: 1.5rem;
}
.top-bar-left span,
.top-bar > .container > div > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar i {
  color: var(--gold);
  font-size: 0.625rem;
  opacity: 0.7;
}
.top-bar strong { color: var(--gold-light); font-weight: 600; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(240, 237, 234, 0.97);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 2px solid var(--warm-200);
  border-top: 4px solid var(--red);
  transition: all 400ms var(--ease);
}
.nav-wrap.scrolled {
  box-shadow: 0 1px 3px rgba(13, 15, 22, 0.04), 0 8px 32px rgba(13, 15, 22, 0.06);
  background: rgba(240, 237, 234, 0.98);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
}
.nav-logo img {
  height: 46px;
  width: auto;
  transition: height 300ms var(--ease);
}
.nav-wrap.scrolled .nav-logo img {
  height: 40px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }

.nav-links > li > a {
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--warm-500);
  padding: 0.5rem 0.875rem;
  border-radius: 2px;
  transition: color 250ms var(--ease);
  position: relative;
  letter-spacing: 0.005em;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--red);
  border-radius: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 300ms var(--ease);
}
.nav-links > li > a:hover {
  color: var(--navy);
}
.nav-links > li > a:hover::after {
  transform: scaleX(1);
}
.nav-links > li > a.active {
  color: var(--navy);
  font-weight: 600;
}
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; }
.nav-dropdown-toggle i {
  font-size: 0.5rem;
  margin-left: 0.25rem;
  opacity: 0.4;
  transition: transform 250ms var(--ease);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(13, 15, 22, 0.04), 0 16px 48px rgba(13, 15, 22, 0.1);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms var(--ease);
  z-index: 200;
  border: 2px solid var(--warm-200);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-dropdown-toggle i { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--warm-500);
  border-radius: 2px;
  transition: all 200ms var(--ease);
}
.nav-dropdown-menu a:hover {
  background: var(--warm-100);
  color: var(--navy);
  padding-left: 1rem;
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  background: var(--navy) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
  font-size: 0.8125rem !important;
  transition: all 250ms var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--navy-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 41, 86, 0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta i { font-size: 0.7rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 300ms var(--ease);
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(3) { width: 60%; transition: all 300ms var(--ease); }
.hamburger:hover span:nth-child(3) { width: 100%; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { width: 100%; transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: block;
  background: #fff;
  border-top: 1px solid var(--warm-100);
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease), padding 400ms var(--ease);
}
.mobile-menu.open { max-height: 600px; padding: 0.5rem 1.5rem 1rem; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 0.75rem 0.875rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--warm-600);
  border-radius: 2px;
  transition: all 200ms var(--ease);
  min-height: 44px;
}
.mobile-menu a:hover { background: var(--warm-100); color: var(--navy); }

.mobile-submenu {
  padding-left: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease);
}
.mobile-submenu.open { max-height: 300px; }
.mobile-submenu a { font-size: 0.875rem; color: var(--warm-500); padding: 0.6rem 0.875rem; }
.mobile-services-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-services-toggle i {
  transition: transform 200ms var(--ease);
  font-size: 0.65rem;
  opacity: 0.5;
}
.mobile-services-toggle.open i { transform: rotate(180deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  background-image:
    linear-gradient(135deg, rgba(26, 30, 46, 0.6) 0%, transparent 50%),
    linear-gradient(315deg, rgba(196, 43, 43, 0.06) 0%, transparent 40%),
    linear-gradient(135deg, #0a0d14 0%, var(--navy-deep) 35%, #080a10 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 29, 34, 0.07) 0%, transparent 65%);
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.hero-text {
  max-width: 680px;
  padding-bottom: 3.5rem;
}

.hero-image {
  display: none;
}
@media (min-width: 900px) {
  .hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: end;
  }
  .hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 676px;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.25));
    opacity: 0;
    animation: hero-fade-up 700ms var(--ease) 500ms forwards;
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: hero-fade-up 600ms var(--ease) 200ms forwards;
}
.hero-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
  opacity: 0.8;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  opacity: 0;
  animation: hero-fade-up 700ms var(--ease) 350ms forwards;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 540px;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: hero-fade-up 700ms var(--ease) 500ms forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: hero-fade-up 700ms var(--ease) 650ms forwards;
}

.hero-credential {
  margin-top: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
  animation: hero-fade-up 600ms var(--ease) 800ms forwards;
}

.hero-services-row {
  display: flex;
  width: 100%;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  animation: hero-fade-up 600ms var(--ease) 850ms forwards;
}

.hero-service-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 250ms var(--ease), background 250ms var(--ease);
}

.hero-service-link:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-service-link i {
  font-size: 0.875rem;
  color: var(--red);
  opacity: 0.7;
  transition: opacity 250ms var(--ease);
}

.hero-service-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.hero-service-link:hover i {
  opacity: 1;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero.has-grain::before { opacity: 0.02; }
.page-hero.warm-tint { background: linear-gradient(135deg, var(--navy) 0%, #2a1a1a 100%); }
.page-hero.cool-tint { background: linear-gradient(135deg, var(--navy) 0%, #1a2a3a 100%); }

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.45); transition: color 200ms; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { margin: 0 0.125rem; font-size: 0.65rem; }

.section-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}
.section-heading--left h2 {
  border-left: 4px solid var(--red);
  padding-left: 1rem;
}
.section-heading .accent-bar {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 1rem;
  border-radius: 2px;
}
.section-heading p {
  font-size: 1.0625rem;
  color: var(--warm-500);
  max-width: 580px;
  margin: 0 auto;
}

.marquee-section {
  background: var(--warm-100);
  border-top: 2px solid var(--warm-200);
  border-bottom: 2px solid var(--warm-200);
  padding: 2.5rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-400);
  margin-bottom: 1.75rem;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;

  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 400ms, filter 400ms;
}

.marquee-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (min-width: 768px) {
  .marquee-track img { height: 64px; }
  .marquee-track { gap: 6rem; }
  .marquee-section { padding: 3rem 0; }
}

@media (min-width: 1024px) {
  .marquee-track img { height: 72px; }
  .marquee-track { gap: 7rem; }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

.partners {
  background: var(--warm-100);
  border-top: 2px solid var(--warm-200);
  border-bottom: 2px solid var(--warm-200);
  padding: 1.75rem 0;
}
.partners .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partners .brand-logo,
.partners-logos span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-400);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: block;
  background: #fff;
  border-radius: 2px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--warm-200);
  position: relative;
  overflow: hidden;
  transition: all 300ms var(--ease);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--warm-300);
  transition: all 300ms var(--ease);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(12, 18, 32, 0.08);
  border-color: var(--warm-300);
}
.service-card:hover::before {
  background: var(--red);
  width: 4px;
}

.service-card .service-icon,
.service-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
  font-weight: 600;
}
.service-card p {
  color: var(--warm-500);
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
  line-height: 1.65;
}
.service-card ul { margin-bottom: 1rem; }
.service-card ul li {
  font-size: 0.8125rem;
  color: var(--warm-500);
  padding: 0.2rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-card ul li i { color: var(--red); font-size: 0.625rem; }

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--red);
  margin-top: 0.5rem;
  transition: gap 250ms var(--ease);
}
.service-card:hover .card-link { gap: 0.625rem; }

.service-card.emergency-card,
.service-card.emergency {
  background: var(--red);
  border-color: var(--red);
}
.service-card.emergency-card::before,
.service-card.emergency::before { background: rgba(255,255,255,0.3); }
.service-card.emergency-card:hover::before,
.service-card.emergency:hover::before { background: #fff; }
.service-card.emergency-card h3,
.service-card.emergency h3 { color: #fff; }
.service-card.emergency-card p,
.service-card.emergency p { color: rgba(255,255,255,0.8); }
.service-card.emergency-card .service-icon,
.service-card.emergency .service-icon { background: rgba(255,255,255,0.15) !important; }
.service-card.emergency-card ul li,
.service-card.emergency ul li { color: rgba(255,255,255,0.75); }
.service-card.emergency-card ul li i,
.service-card.emergency ul li i { color: rgba(255,255,255,0.6); }
.service-card.emergency-card .card-link,
.service-card.emergency .card-link { color: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 2px;
  transition: all 300ms var(--ease);
}
.why-card:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }

.why-card > i,
.why-card .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 2px;
  margin: 0 auto 1.25rem;
  font-size: 1.375rem;
  background: var(--warm-100);
  color: var(--navy);
  border: 2px solid var(--warm-200);
  transition: all 300ms var(--ease);
}

.why-card > i {
  width: 56px;
  height: 56px;
  border-radius: 2px;
}
.why-card:hover > i,
.why-card:hover .icon-wrap {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}

.why-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.why-card p {
  color: var(--warm-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

.services-grid-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--warm-200);
  border-radius: 0;
  overflow: hidden;
  border: 2px solid var(--warm-200);
}
@media (min-width: 768px) { .services-grid-v2 { grid-template-columns: 1fr 1fr; } }

.service-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 2.5rem 2.25rem 2.5rem;
  position: relative;
  transition: background 300ms var(--ease), border-color 300ms var(--ease);
  cursor: pointer;
  min-height: 220px;
  border-left: 3px solid transparent;
}
.service-tile:hover {
  background: var(--cream);
  border-left-color: var(--red);
}

.service-tile h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  transition: color 250ms var(--ease);
}
.service-tile:hover h3 { color: var(--red); }

.service-tile > p {
  color: var(--warm-500);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 360px;
  margin-bottom: 2rem;
}
.service-tile-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: var(--warm-100);
  color: var(--warm-500);
  font-size: 0.75rem;
  margin-top: auto;
  align-self: flex-end;
  transition: all 300ms var(--ease);
}
.service-tile:hover .service-tile-arrow {
  background: var(--navy);
  color: #fff;
  transform: translateX(3px);
}

.services-bottom-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) { .services-bottom-row { grid-template-columns: 1fr 1fr; } }

.service-highlight {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 2px solid var(--warm-200);
  border-radius: 2px;
  padding: 1.75rem 2rem;
  transition: all 300ms var(--ease);
  cursor: pointer;
}
.service-highlight:hover {
  border-color: var(--warm-300);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.service-highlight > i {
  font-size: 1.375rem;
  color: var(--navy);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm-100);
  border-radius: 2px;
}
.service-highlight h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.service-highlight p {
  color: var(--warm-500);
  font-size: 0.8125rem;
  line-height: 1.55;
}
.service-highlight .service-tile-arrow {
  flex-shrink: 0;
  margin-left: auto;
}

.service-highlight--emergency {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.service-highlight--emergency:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(12,18,32,0.2);
}
.service-highlight--emergency h3 { color: #fff; }
.service-highlight--emergency p { color: rgba(255,255,255,0.55); }
.service-highlight--emergency > i {
  color: var(--red);
  background: rgba(255,255,255,0.08);
}
.service-highlight--emergency .service-tile-arrow {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
}
.service-highlight--emergency:hover .service-tile-arrow {
  background: var(--red);
  color: #fff;
}

.why-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .why-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.why-strip-item {
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .why-strip-item {
    padding: 0.5rem 2rem;
    border-left: 1px solid var(--warm-200);
  }
  .why-strip-item:first-child {
    padding-left: 0;
    border-left: none;
  }
}
.why-strip-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-strip-item p {
  color: var(--warm-500);
  font-size: 0.875rem;
  line-height: 1.6;
}

.section-heading--left {
  text-align: left;
  margin-bottom: 2.5rem;
}
.section-heading--left p {
  margin: 0;
}

.prose p {
  color: var(--warm-500);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.prose p:last-child { margin-bottom: 0; }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.area-tag {
  background: #fff;
  border: 2px solid var(--warm-200);
  border-radius: 0;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--warm-700);
}

.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap img {
  max-width: 320px;
  border-radius: 2px;
  padding: 2.5rem;
  background: var(--warm-100);
  border: 2px solid var(--warm-200);
}

.photo-break {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .photo-break { height: 400px; }
}

.service-overview-img {
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--warm-200);
  align-self: start;
}
.service-overview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}
@media (min-width: 1024px) {
  .service-overview-img img { min-height: 340px; }
}

.about-photo-wrap {
  overflow: hidden;
  border-radius: 2px;
  border: 2px solid var(--warm-200);
}
.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
}
.stats-bar.has-grain::before { opacity: 0.03; }

.stats-bar .container,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-bar .container,
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { position: relative; z-index: 1; }
.stat-item .stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.375rem;
  color: #fff;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.testimonial-section {
  background: var(--warm-100);
  padding: 5rem 0;
  position: relative;
  border-top: 2px solid var(--warm-200);
  border-bottom: 2px solid var(--warm-200);
}

.testimonial-section .container,
.testimonial-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-section .stars,
.testimonial-stars {
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: 1.75rem;
  letter-spacing: 0.15em;
}

.testimonial-section blockquote,
.testimonial-card blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  color: var(--warm-700);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  text-align: left;
}

.testimonial-section cite,
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--warm-500);
  letter-spacing: 0.02em;
}

.lead-band {
  background: var(--navy);
  color: #fff;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.lead-band.has-grain::before { opacity: 0.03; }

.lead-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}
.lead-band > .container > p,
.lead-band p {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lead-form {
    grid-template-columns: 1fr 1fr 1fr auto;
    align-items: end;
  }
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms;
}
.lead-form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.lead-form input:focus,
.lead-form select:focus { border-color: var(--gold); }
.lead-form select option { color: var(--warm-700); background: #fff; }

.cta-band {
  background: var(--red);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red-dark);
}
.cta-band.has-grain::before { opacity: 0.06; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
}
.cta-band .btn + .btn { margin-left: 0.75rem; }
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}

.form-group { margin-bottom: 1.125rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--warm-600);
  margin-bottom: 0.375rem;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 2px solid var(--warm-200);
  border-radius: 2px;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--warm-700);
  background: #fff;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27, 41, 86, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-success {
  display: none;
  padding: 1rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 2px;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9375rem;
}
.form-success.show { display: block; }

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 2px solid var(--warm-200);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  min-height: 44px;
  transition: color 200ms, padding-left 200ms var(--ease);
}
.faq-question:hover {
  color: var(--red);
  padding-left: 0.5rem;
}
.faq-question i {
  font-size: 0.65rem;
  transition: transform 300ms var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--warm-400);
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  color: var(--warm-500);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card {
  background: #fff;
  border-radius: 2px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 2px solid var(--warm-200);
  transition: all 300ms var(--ease);
  position: relative;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }

.plan-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  border-top: 4px solid var(--gold);
  box-shadow: 0 20px 48px rgba(13, 15, 22, 0.2);
}
.plan-card.featured h3 { color: #fff; }
.plan-card.featured li { color: rgba(255, 255, 255, 0.8); }
.plan-card.featured li i { color: var(--gold); }

.plan-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold);
  color: var(--warm-800);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.35rem 0.875rem;
  border-bottom-left-radius: 2px;
  border-top-right-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-card h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.plan-card .plan-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.plan-card.featured .plan-icon { color: var(--gold); }

.plan-card ul {
  text-align: left;
  margin-bottom: 2rem;
}
.plan-card ul li {
  padding: 0.425rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-500);
}
.plan-card ul li i { color: var(--gold); flex-shrink: 0; font-size: 0.75rem; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .service-detail-grid { grid-template-columns: repeat(2, 1fr); } }

.service-detail-item {
  background: #fff;
  border-radius: 2px;
  padding: 1.5rem;
  border: 2px solid var(--warm-200);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 250ms var(--ease);
}
.service-detail-item:hover {
  border-color: var(--warm-300);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.service-detail-item i {
  color: var(--red);
  font-size: 1.125rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.service-detail-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.service-detail-item p {
  color: var(--warm-500);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.partnership-box {
  background: #fff;
  border: 2px solid var(--warm-200);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .partnership-box { flex-direction: row; text-align: left; }
}
.partnership-box .partner-logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.partnership-box p {
  color: var(--warm-500);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: #fff;
  border-radius: 2px;
  border: 2px solid var(--warm-200);
  transition: all 300ms var(--ease);
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }

.value-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.375rem;
  background: var(--warm-100);
  color: var(--navy);
  border: 2px solid var(--warm-200);
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--warm-500); font-size: 0.875rem; line-height: 1.65; }

.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}
@media (min-width: 768px) { .steps-row { grid-template-columns: repeat(3, 1fr); } }

.step-card { text-align: center; padding: 1.5rem; }
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 2px;
  background: var(--navy);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--warm-500); font-size: 0.875rem; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: #fff;
  border-radius: 2px;
  padding: 2rem 1.5rem;
  border: 2px solid var(--warm-200);
  text-align: center;
  transition: all 300ms var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.benefit-card i { font-size: 1.75rem; color: var(--navy); margin-bottom: 1rem; display: block; }
.benefit-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.benefit-card p { color: var(--warm-500); font-size: 0.875rem; }

.info-box {
  background: #fff;
  border-radius: 2px;
  padding: 2rem;
  border: 2px solid var(--warm-200);
}
.info-box h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.info-box p { color: var(--warm-500); font-size: 0.9375rem; line-height: 1.75; }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }

.map-wrap {
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid var(--warm-200);
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; }
@media (min-width: 768px) { .map-wrap iframe { height: 360px; } }

.site-footer {
  background: var(--navy-deep);
  color: var(--warm-400);
  position: relative;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-brand img {
  height: 42px;
  background: rgba(255,255,255,0.95);
  border-radius: 2px;
  padding: 4px 8px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--warm-400);
}
.footer-social { display: flex; gap: 0.875rem; }
.footer-social a {
  font-size: 1.25rem;
  color: var(--warm-400);
  transition: color 200ms;
}
.footer-social a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.8125rem;
  color: var(--warm-400);
  transition: color 200ms;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-col .contact-item i {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--warm-500);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--red);
}
@media (max-width: 767px) {
  .mobile-call-bar { display: block; }
  body { padding-bottom: 54px; }
}
.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem;
  min-height: 54px;
  letter-spacing: 0.01em;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .fade-in:nth-child(1) { transition-delay: 0ms; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 80ms; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 160ms; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 240ms; }
.stagger-children .fade-in:nth-child(5) { transition-delay: 320ms; }
.stagger-children .fade-in:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  .stagger-children .fade-in { transition-delay: 0ms !important; }
  .service-card, .plan-card, .why-card, .value-card, .benefit-card { transition: none; }
  .hero-label, .hero h1, .hero-subtitle, .hero-actions, .hero-proof { opacity: 1; animation: none; }
  .hero-card { opacity: 1; animation: none; }
  .hero-bg-pattern::before, .hero-bg-pattern::after { animation: none; }
  html { scroll-behavior: auto; }
}

.industrial-grid {
  position: relative;
}
.industrial-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.warm-tint { background-image: linear-gradient(135deg, rgba(184, 29, 34, 0.03), transparent); }
.cool-tint { background-image: linear-gradient(135deg, rgba(27, 41, 86, 0.03), transparent); }

@media (max-width: 767px) {
  .top-bar { display: none !important; }
}

@media (max-width: 899px) {

  .section-padding { padding: 3.5rem 0; }

  :root { --nav-h: 66px; }
  .nav-logo img { height: 40px; }
  .nav-wrap.scrolled .nav-logo img { height: 36px; }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }
  .hero-content {
    padding: 2rem 0 0;
  }
  .hero-text {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    margin-bottom: 0.625rem;
    line-height: 1.1;
  }
  .hero-label {
    font-size: 0.5625rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
  }
  .hero-label::before {
    width: 16px;
  }
  .hero-subtitle {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.4);
  }

  .hero-credential {
    font-size: 0.625rem;
    margin-top: 0.75rem;
    padding-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }
  .hero-actions .btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }

  .hero-services-row {
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-service-link {
    flex: 1 1 50%;
    padding: 0.75rem 0.5rem;
    font-size: 0.6875rem;
    gap: 0.35rem;
  }
  .hero-service-link i { font-size: 0.625rem; }
  .hero-service-link:nth-child(2) { border-right: none; }
  .hero-service-link:nth-child(1),
  .hero-service-link:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .page-hero { padding: 2.25rem 0 1.75rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 6vw, 2.25rem); }

  .section-heading { margin-bottom: 2rem; }
  .section-heading h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .section-heading p { font-size: 0.875rem; line-height: 1.6; }
  .section-heading--left { margin-bottom: 1.75rem; }
  .section-heading--left h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }

  .service-tile {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }
  .service-tile h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
  .service-tile > p { font-size: 0.8125rem; margin-bottom: 1rem; line-height: 1.55; }
  .service-tile-arrow { width: 30px; height: 30px; font-size: 0.625rem; }

  .service-highlight {
    padding: 1.125rem 1rem;
    gap: 0.75rem;
  }
  .service-highlight > i {
    width: 38px; height: 38px; font-size: 1rem;
  }
  .service-highlight h3 { font-size: 0.9375rem; }
  .service-highlight p { font-size: 0.75rem; line-height: 1.5; }
  .service-highlight .service-tile-arrow { width: 28px; height: 28px; font-size: 0.5625rem; }
  .services-bottom-row { margin-top: 0.75rem; gap: 0.75rem; }

  .why-strip { gap: 0; }
  .why-strip-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--warm-200);
  }
  .why-strip-item:last-child { border-bottom: none; }
  .why-strip-item h3 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
  .why-strip-item p { font-size: 0.8125rem; line-height: 1.55; }

  .stats-bar { padding: 2rem 0; }
  .stats-bar .container,
  .stats-grid { gap: 1rem; }
  .stat-item .stat-number { font-size: 2rem; margin-bottom: 0.25rem; }
  .stat-item .stat-label { font-size: 0.5625rem; letter-spacing: 0.1em; }

  .photo-break { height: 200px; }

  .testimonial-section { padding: 2.5rem 0; }
  .testimonial-section .stars,
  .testimonial-stars { font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .testimonial-section blockquote,
  .testimonial-card blockquote {
    font-size: 1rem;
    padding-left: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  .testimonial-section cite,
  .testimonial-card cite { font-size: 0.8125rem; }

  .lead-band { padding: 2.5rem 0; }
  .lead-band h2 { font-size: clamp(1.25rem, 5vw, 1.625rem); margin-bottom: 0.375rem; }
  .lead-band p { font-size: 0.8125rem; margin-bottom: 1.25rem; }
  .lead-form { gap: 0.5rem; }
  .lead-form input,
  .lead-form select {
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
  }
  .lead-form .btn { padding: 0.75rem 1.25rem; }

  .cta-band { padding: 2.5rem 0; }
  .cta-band h2 { font-size: clamp(1.25rem, 5vw, 1.625rem); }
  .cta-band p { font-size: 0.8125rem; margin-bottom: 1.25rem; }
  .cta-band .btn + .btn { margin-left: 0; }

  .plan-card { padding: 1.75rem 1.25rem; }
  .plan-card .plan-icon { font-size: 1.5rem; margin-bottom: 0.875rem; }
  .plan-card h3 { font-size: 1.125rem; }
  .plan-card ul { margin-bottom: 1.25rem; }
  .plan-card ul li { font-size: 0.8125rem; padding: 0.3rem 0; }

  .service-detail-item { padding: 1.125rem; gap: 0.625rem; }
  .service-detail-item i { font-size: 1rem; }
  .service-detail-item h4 { font-size: 0.875rem; }
  .service-detail-item p { font-size: 0.75rem; line-height: 1.55; }

  .faq-question { font-size: 0.9375rem; padding: 1rem 0; }
  .faq-answer-inner { font-size: 0.8125rem; padding-bottom: 1rem; }

  .benefit-card { padding: 1.5rem 1.25rem; }
  .benefit-card i { font-size: 1.375rem; margin-bottom: 0.75rem; }
  .benefit-card h3 { font-size: 1rem; }
  .benefit-card p { font-size: 0.8125rem; }
  .value-card { padding: 1.5rem 1.25rem; }
  .value-card h3 { font-size: 1rem; }
  .value-card p { font-size: 0.8125rem; }

  .step-card { padding: 1rem 0.5rem; }
  .step-number { width: 44px; height: 44px; font-size: 1.125rem; margin-bottom: 1rem; }
  .step-card h3 { font-size: 1rem; }
  .step-card p { font-size: 0.8125rem; }

  .info-box { padding: 1.5rem; }
  .info-box h3 { font-size: 1.125rem; }
  .info-box p { font-size: 0.875rem; }
  .info-box table { font-size: 0.875rem; }

  .partnership-box { padding: 1.25rem; gap: 0.75rem; }
  .partnership-box p { font-size: 0.8125rem; }

  .marquee-section { padding: 1.5rem 0; }
  .marquee-label { font-size: 0.5625rem; margin-bottom: 1rem; letter-spacing: 0.18em; }
  .marquee-track { gap: 2.5rem; }
  .marquee-track img { height: 36px; }
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  }

  .two-col { gap: 2rem; }

  .area-tag { padding: 0.35rem 0.75rem; font-size: 0.75rem; }

  .prose p { font-size: 0.9375rem; line-height: 1.7; }

  .map-wrap iframe { height: 240px; }

  .footer-grid { padding: 2.5rem 0 2rem; gap: 1.75rem; }
  .footer-brand img { height: 36px; }
  .footer-brand p { font-size: 0.75rem; line-height: 1.6; margin-bottom: 0.875rem; }
  .footer-col h4 { font-size: 0.6875rem; margin-bottom: 0.625rem; }
  .footer-col ul li { margin-bottom: 0.375rem; }
  .footer-col ul li a { font-size: 0.75rem; }
  .footer-col .contact-item { font-size: 0.75rem; margin-bottom: 0.625rem; }
  .footer-bottom { padding: 1rem 0; font-size: 0.6875rem; }

  .breadcrumb { font-size: 0.75rem; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.75rem 0.875rem;
  }

  .service-overview-img img { min-height: 200px; }
  .about-photo-wrap img { min-height: 200px; }
  .about-logo-wrap img { max-width: 240px; padding: 1.5rem; }
}

@media (min-width: 600px) and (max-width: 767px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .why-strip { grid-template-columns: repeat(2, 1fr); }
  .why-strip-item { padding: 0.5rem 1.5rem; }
  .why-strip-item:nth-child(odd) { padding-left: 0; border-left: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .plans-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .plans-grid .plan-card.featured { grid-column: 1 / -1; max-width: 480px; justify-self: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

.contact-form-wrap {
  background: #fff;
  border: 2px solid var(--warm-200);
  padding: 2.5rem;
}
@media (max-width: 899px) {
  .contact-form-wrap { padding: 1.5rem; }
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-200);
}
.contact-detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-detail-row i {
  color: var(--red);
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.contact-detail-row h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-detail-row p {
  color: var(--warm-500);
  font-size: 0.9375rem;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contact-detail-row a {
  overflow-wrap: break-word;
  word-break: break-word;
}

.partnerships-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .services-grid-v2 { border-radius: 2px; }
  .nav-links { gap: 0.25rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.25fr; }
  .service-highlight:hover { transform: translateY(-2px); }
  .photo-break { height: 420px; }
}

@media (min-width: 1200px) {
  .photo-break { height: 480px; }
  .hero-text { max-width: 600px; }
  .hero h1 { letter-spacing: -0.025em; }
}

.divider-top, .divider-bottom { position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.divider-top { top: -1px; }
.divider-bottom { bottom: -1px; }
.divider-top svg, .divider-bottom svg { display: block; width: calc(100% + 1.3px); position: relative; }
.divider-bottom svg { transform: rotate(180deg); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 200ms var(--ease);
}
.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
.nav-logo:focus-visible {
  outline-offset: 4px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
  align-items: center;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--warm-500);
}
.footer-legal a {
  color: var(--warm-500);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.footer-legal a:hover {
  color: var(--cream);
}
.footer-legal .sep {
  color: var(--warm-700);
  opacity: 0.6;
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 250ms var(--ease), transform 250ms var(--ease), background 200ms var(--ease);
  z-index: 90;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.scroll-top:hover { background: var(--red); }
.scroll-top svg { width: 18px; height: 18px; }
.scroll-top.scroll-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (max-width: 600px) {
  .scroll-top {
    right: 1rem;
    bottom: 5rem;
    width: 40px;
    height: 40px;
  }
}

.error-hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: #fff;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 8vw, 5rem);
  position: relative;
  overflow: hidden;
}
.error-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.5;
}
.error-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.error-code {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.error-hero h1 {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.error-hero .prose p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  text-align: center;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.service-bottom-card {
  display: block;
  background: #fff;
  border: 1px solid var(--warm-200);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}
.service-bottom-card:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}
.service-bottom-card-inner {
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
}
.service-bottom-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-bottom-card p {
  color: var(--warm-500);
  font-size: 0.875rem;
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.service-bottom-card .service-tile-arrow {
  font-family: 'Fraunces', serif;
  color: var(--red);
  font-size: 1.25rem;
  display: inline-block;
  transition: transform 200ms var(--ease);
}
.service-bottom-card:hover .service-tile-arrow { transform: translateX(4px); }

.thank-you-hero {
  background: linear-gradient(180deg, var(--warm-100) 0%, var(--cream) 100%);
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.thank-you-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.thank-you-mark {
  color: #2F7D3F;
  margin-bottom: 1.5rem;
  display: inline-flex;
}
.thank-you-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--navy);
}
.thank-you-hero .prose p {
  color: var(--warm-700);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  text-align: center;
}
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.legal-doc {
  max-width: 760px;
  margin: 0 auto;
}
.legal-doc h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2.5rem 0 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--warm-200);
}
.legal-doc h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.legal-doc p,
.legal-doc ul {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--warm-700);
  margin-bottom: 1rem;
}
.legal-doc ul {
  padding-left: 1.25rem;
}
.legal-doc ul li { margin-bottom: 0.4rem; }
.legal-doc a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.legal-doc a:hover { color: var(--red-dark); }
.legal-meta {
  font-size: 0.8125rem;
  color: var(--warm-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.trust-row {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 0.875rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-row-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.trust-item i { color: var(--gold); font-size: 0.875rem; }
.trust-item .trust-sep {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 640px) {
  .trust-row-inner { gap: 0.5rem 1rem; font-size: 0.75rem; }
  .trust-item .trust-sep { display: none; }
}

.testimonial-section .testimonial-grid,
.testimonial-section .section-heading--left {
  max-width: none;
  width: 100%;
  text-align: left;
}
.testimonial-section:has(.testimonial-grid) .container {
  max-width: 1200px;
  text-align: left;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: start;
  }
  .testimonial-grid > .testimonial-quote {
    padding: 0 2.5rem;
    position: relative;
  }
  .testimonial-grid > .testimonial-quote:first-child { padding-left: 0; }
  .testimonial-grid > .testimonial-quote:last-child { padding-right: 0; }
  .testimonial-grid > .testimonial-quote + .testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 1px;
    background: var(--warm-200);
  }
}
.testimonial-quote {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-quote .stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin: 0;
  border-left: 0;
  padding-left: 0;
}
.testimonial-section .testimonial-quote blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
  position: relative;
  font-style: italic;
  border-left: 0;
  padding-left: 0;
  text-align: left;
}
.testimonial-section .testimonial-quote blockquote::before {
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  line-height: 0.7;
  color: var(--red);
  vertical-align: -0.3em;
  margin-right: 0.15em;
  font-style: normal;
}
.testimonial-section .testimonial-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--warm-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.testimonial-section .testimonial-quote cite strong {
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.125rem;
}

.process-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 0;
  margin-top: 2rem;
}
@media (min-width: 720px) {
  .process-strip { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
}
@media (min-width: 1100px) {
  .process-strip { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}
.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.process-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.9;
  color: var(--gold);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  opacity: 0.92;
}
.process-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.process-body p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--warm-600);
}

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: rgba(196, 43, 43, 0.06);
  border-left: 3px solid var(--red);
  color: var(--red-dark);
  font-size: 0.875rem;
  border-radius: 2px;
}
.form-error.show { display: block; }
.form-error i { margin-right: 0.4rem; }

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.u-mb-sm { margin-bottom: 0.75rem !important; }
.u-mb-md { margin-bottom: 1.5rem !important; }
.u-mb-lg { margin-bottom: 2.5rem !important; }
.text-muted { color: var(--warm-500) !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

.pricing-band {
  position: relative;
  background: var(--warm-100);
  overflow: hidden;
}
.pricing-band-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(196,43,43,0.04), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(212,162,69,0.05), transparent 40%);
  pointer-events: none;
}
.pricing-band-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--warm-200);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 30, 46, 0.08);
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-bottom: 1px solid var(--warm-200);
}
.pricing-row--alt { background: var(--warm-100); }
.pricing-row-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.pricing-row-label h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.35rem 0;
}
.pricing-row-label p {
  font-size: 0.9375rem;
  color: var(--warm-600);
  line-height: 1.5;
  margin: 0;
  max-width: 460px;
}
.pricing-row-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}
.pricing-amount {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.pricing-unit {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-500);
  margin-top: 0.35rem;
}
.pricing-includes {
  padding: 1.5rem 2.25rem;
  border-bottom: 1px solid var(--warm-200);
}
.pricing-includes h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-500);
  margin: 0 0 1rem 0;
}
.pricing-includes ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 720px) {
  .pricing-includes ul { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--warm-700);
}
.pricing-includes li i {
  color: var(--red);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  width: 18px;
  flex-shrink: 0;
}
.pricing-includes li strong { color: var(--navy); font-weight: 600; }
.pricing-example {
  padding: 1.25rem 2.25rem;
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pricing-example-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(212,162,69,0.4);
  border-radius: 2px;
}
.pricing-example p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}
.pricing-example strong { color: #fff; font-weight: 600; }
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.75rem 2.25rem 1rem;
}
.pricing-fineprint {
  font-size: 0.75rem;
  color: var(--warm-500);
  padding: 0 2.25rem 1.75rem;
  margin: 0;
  line-height: 1.5;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: var(--warm-600);
  margin: 0.75rem 0 1.25rem;
  max-width: 640px;
}
@media (max-width: 640px) {
  .pricing-row { grid-template-columns: 1fr; padding: 1.5rem; }
  .pricing-row-amount { align-items: flex-start; }
  .pricing-includes { padding: 1.25rem 1.5rem; }
  .pricing-example { padding: 1.25rem 1.5rem; }
  .pricing-actions { padding: 1.5rem 1.5rem 0.75rem; }
  .pricing-fineprint { padding: 0 1.5rem 1.5rem; }
}

.promos-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-100) 100%);
  overflow: hidden;
}
.promos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(196,43,43,0.05), transparent 35%),
    radial-gradient(circle at 10% 90%, rgba(212,162,69,0.06), transparent 40%);
  pointer-events: none;
}
.promos-section .container { position: relative; z-index: 1; }

.promos-header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.promos-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.875rem;
}
.promos-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(196, 43, 43, 0.15);
  animation: promoPulse 2.4s ease-in-out infinite;
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 43, 43, 0.12); }
  50%      { box-shadow: 0 0 0 8px rgba(196, 43, 43, 0.0); }
}
.promos-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 0.75rem;
}
.promos-header p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--warm-600);
  margin: 0;
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .promos-grid { grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: stretch; }
}

.promo-card {
  position: relative;
  background: #fff;
  border-radius: 6px;
  border: 1px solid var(--warm-200);
  overflow: hidden;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
  display: flex;
  flex-direction: column;
}
.promo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26, 30, 46, 0.10);
}
.promo-card-inner {
  position: relative;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-card--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 18px 50px rgba(26, 30, 46, 0.18);
}
.promo-card--featured .promo-card-inner { padding: 2.5rem; }
.promo-card-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(212, 162, 69, 0.18), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(196, 43, 43, 0.18), transparent 45%);
  pointer-events: none;
}
.promo-card--featured .promo-card-inner > * { position: relative; z-index: 1; }

.promo-ribbon {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.promo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.promo-icon svg { width: 22px; height: 22px; }
.promo-icon--gold { background: rgba(212, 162, 69, 0.12); color: var(--gold); }
.promo-icon--navy { background: rgba(26, 30, 46, 0.06); color: var(--navy); }
.promo-card:not(.promo-card--featured) .promo-icon { background: rgba(196, 43, 43, 0.08); color: var(--red); }
.promo-card--featured .promo-icon { background: rgba(255,255,255,0.1); color: var(--gold); }

.promo-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--navy);
}
.promo-card--featured h3 { color: #fff; font-size: 1.75rem; }

.promo-amount-line {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.promo-amount {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
}
.promo-card--featured .promo-amount { color: var(--gold); }
.promo-amount--small { font-size: 2rem; }
.promo-amount-suffix {
  font-size: 0.9375rem;
  color: var(--warm-600);
  line-height: 1.3;
}
.promo-card--featured .promo-amount-suffix { color: rgba(255,255,255,0.75); }
.promo-strike {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.promo-save {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 162, 69, 0.15);
  padding: 0.3rem 0.65rem;
  border-radius: 2px;
}

.promo-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--warm-600);
  margin: 0 0 1.5rem;
}
.promo-card--featured p { color: rgba(255,255,255,0.78); }

.promo-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.promo-meta li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.promo-meta li i { color: var(--gold); font-size: 0.75rem; }

.promo-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.5rem;
}
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.875rem; }
.promo-code {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--warm-500);
}
.promo-code strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: var(--warm-100);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  border: 1px dashed var(--warm-300);
  margin-left: 0.35rem;
}
.promo-card--featured .promo-code { color: rgba(255,255,255,0.6); }
.promo-card--featured .promo-code strong {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.promos-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.promos-fineprint {
  margin: 2.5rem auto 0;
  max-width: 760px;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--warm-500);
  text-align: center;
}

@media (max-width: 640px) {
  .promo-card--featured .promo-card-inner { padding: 1.75rem; }
  .promo-card-inner { padding: 1.75rem; }
  .promo-amount { font-size: 2.25rem; }
  .promo-card--featured h3 { font-size: 1.5rem; }
  .promo-actions { gap: 0.75rem; }
}

@media (max-width: 899px) {

  :root { --nav-h: 64px; }
  .section-padding { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }

  .nav-wrap {
    backdrop-filter: blur(12px) saturate(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.1);
    border-top-width: 3px;
  }

  .nav-inner { height: var(--nav-h); }
  .nav-logo img { height: 36px; }
  .nav-wrap.scrolled .nav-logo img { height: 32px; }
  .hamburger { width: 24px; height: 40px; }

  .hero {
    min-height: auto;
    align-items: stretch;

    background-image:
      radial-gradient(ellipse 90% 60% at 70% 0%, rgba(196, 43, 43, 0.18) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 0% 100%, rgba(212, 162, 69, 0.06) 0%, transparent 60%),
      linear-gradient(180deg, var(--navy-deep) 0%, #0a0d14 100%);
  }
  .hero-content { padding: 1.75rem 0 0; gap: 0; }
  .hero-text { padding-bottom: 1.5rem; max-width: 100%; }

  .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.7rem 0.35rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.04);
  }
  .hero-label::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(196, 43, 43, 0.22);
    animation: heroPulse 2.4s ease-in-out infinite;
  }
  @keyframes heroPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(196, 43, 43, 0.22); }
    50%      { box-shadow: 0 0 0 6px rgba(196, 43, 43, 0.0); }
  }

  .hero h1 {
    font-size: clamp(2.125rem, 9vw, 2.875rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: #fff;
    text-wrap: balance;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1.5rem;
    max-width: 100%;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
    padding: 0.95rem 1.25rem;
    font-size: 0.8125rem;
    min-height: 52px;
    letter-spacing: 0.05em;
    border-radius: 4px;
  }
  .hero-actions .btn-red {
    box-shadow: 0 8px 24px rgba(196, 43, 43, 0.28);
  }
  .hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero-actions .btn-outline i {
    color: var(--red);
    font-size: 0.875rem;
  }

  .hero-credential {
    margin-top: 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 1.5rem;
  }

  .hero-services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
  }
  .hero-service-link {
    flex: unset;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 0;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .hero-service-link:last-child { border-right: 0; }
  .hero-service-link i {
    font-size: 1rem;
    color: var(--red);
    opacity: 1;
  }
  .hero-service-link:hover,
  .hero-service-link:active {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
  }

  .trust-row {
    padding: 1.25rem 1rem;
    background: var(--navy);
    border-bottom: 4px solid var(--red);
  }
  .trust-row-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-size: 0.75rem;
    max-width: 480px;
    margin: 0 auto;
  }
  .trust-row-inner .trust-sep { display: none; }
  .trust-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0.55rem 0.6rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: normal;
    line-height: 1.25;
  }
  .trust-item i {
    color: var(--gold);
    font-size: 0.9375rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }

  .marquee-section {
    padding: 1.75rem 0;
    background: var(--warm-100);
  }
  .marquee-label {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    margin-bottom: 1.125rem;
    color: var(--warm-500);
  }
  .marquee {

    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  }
  .marquee-track { gap: 3rem; animation-duration: 28s; }
  .marquee-track img {
    height: 40px;
    opacity: 0.55;
  }

  .section-heading,
  .section-heading--left { margin-bottom: 1.75rem; text-align: left; }
  .section-heading h2,
  .section-heading--left h2 {
    font-size: clamp(1.5rem, 6.5vw, 1.875rem);
    letter-spacing: 0.02em;
    line-height: 1.15;
  }
  .section-heading--left h2 {
    border-left: 3px solid var(--red);
    padding-left: 0.875rem;
  }
  .section-heading p { font-size: 0.9375rem; line-height: 1.6; max-width: 100%; }

  .services-grid-v2 {
    border: 1px solid var(--warm-200);
    border-radius: 6px;
    background: var(--warm-200);
    gap: 1px;
  }
  .service-tile {
    padding: 1.5rem 1.25rem;
    min-height: auto;
    border-left: 0;
    position: relative;
  }
  .service-tile::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    bottom: 1.5rem;
    left: 0;
    width: 3px;
    background: transparent;
    transition: background 250ms var(--ease);
  }
  .service-tile:hover::before,
  .service-tile:active::before { background: var(--red); }
  .service-tile h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--navy);
  }
  .service-tile > p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--warm-500);
    margin-bottom: 0.875rem;
    max-width: 100%;
  }
  .service-tile-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.6875rem;
    background: var(--warm-100);
    color: var(--warm-600);
  }

  .services-bottom-row { margin-top: 0.75rem; gap: 0.625rem; }
  .service-highlight {
    padding: 1.125rem 1.125rem;
    gap: 0.875rem;
    border-radius: 4px;
    align-items: center;
  }
  .service-highlight > i {
    width: 42px;
    height: 42px;
    font-size: 1.0625rem;
    border-radius: 4px;
  }
  .service-highlight h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.125rem;
    line-height: 1.2;
  }
  .service-highlight p {
    font-size: 0.75rem;
    line-height: 1.45;
  }
  .service-highlight .service-tile-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.625rem;
  }

  .why-strip { gap: 0; }
  .why-strip-item {
    padding: 1.125rem 0 1.125rem 0;
    border-bottom: 1px solid var(--warm-200);
    border-left: 0;
    position: relative;
  }
  .why-strip-item:last-child { border-bottom: 0; }
  .why-strip-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
    font-weight: 700;
  }
  .why-strip-item p {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--warm-500);
  }

  .stats-bar {
    padding: 2.5rem 0;
    border-top-width: 3px;
    border-bottom-width: 3px;
  }
  .stats-bar .container,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stat-item {
    padding: 1rem 0.5rem;
    text-align: center;
    position: relative;
  }
  .stat-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
  .stat-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .stat-item .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.375rem;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-item .stat-label {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.6);
  }

  .photo-break { height: 220px; }

  .testimonial-section { padding: 3rem 0; }
  .testimonial-grid { gap: 1rem; }
  .testimonial-section .testimonial-quote {
    background: #fff;
    border: 1px solid var(--warm-200);
    border-radius: 6px;
    padding: 1.25rem 1.25rem;
    gap: 0.75rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  }
  .testimonial-section .testimonial-quote .stars {
    font-size: 0.8125rem;
    letter-spacing: 0.15em;
  }
  .testimonial-section .testimonial-quote blockquote {
    font-size: 1.0625rem;
    line-height: 1.5;
    padding: 0;
    border: 0;
    color: var(--navy);
  }
  .testimonial-section .testimonial-quote blockquote::before {
    font-size: 2.25rem;
    line-height: 0.5;
    vertical-align: -0.25em;
  }
  .testimonial-section .testimonial-quote cite {
    font-size: 0.6875rem;
  }
  .testimonial-section .testimonial-quote cite strong {
    font-size: 0.875rem;
  }

  .promos-section { padding: 3rem 0; }
  .promos-header { margin-bottom: 1.5rem; }
  .promos-eyebrow { font-size: 0.6875rem; margin-bottom: 0.625rem; }
  .promos-header h2 { font-size: clamp(1.5rem, 6.5vw, 1.875rem); margin-bottom: 0.5rem; }
  .promos-header p { font-size: 0.9375rem; line-height: 1.55; }
  .promos-grid { gap: 1rem; }
  .promos-stack { gap: 1rem; }
  .promo-card { border-radius: 6px; }
  .promo-card--featured .promo-card-inner,
  .promo-card-inner { padding: 1.5rem 1.375rem; }
  .promo-ribbon {
    font-size: 0.625rem;
    padding: 0.3rem 0.65rem;
    margin-bottom: 0.875rem;
  }
  .promo-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.875rem;
  }
  .promo-icon svg { width: 18px; height: 18px; }
  .promo-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
  .promo-card--featured h3 { font-size: 1.375rem; }
  .promo-amount { font-size: 2.125rem; }
  .promo-amount--small { font-size: 1.75rem; }
  .promo-amount-suffix { font-size: 0.875rem; }
  .promo-strike { font-size: 0.9375rem; }
  .promo-save { font-size: 0.625rem; padding: 0.25rem 0.5rem; }
  .promo-card p { font-size: 0.875rem; line-height: 1.55; margin-bottom: 1rem; }
  .promo-meta { gap: 0.4rem; margin-bottom: 1.25rem; }
  .promo-meta li { font-size: 0.8125rem; }
  .promo-actions { gap: 0.75rem; padding-top: 0.25rem; }
  .promo-actions .btn { padding: 0.7rem 1rem; font-size: 0.75rem; }
  .promo-code { font-size: 0.6875rem; }
  .promos-fineprint { font-size: 0.6875rem; margin-top: 1.5rem; }

  .lead-band { padding: 3rem 0; }
  .lead-band h2 { font-size: clamp(1.5rem, 6vw, 1.875rem); }
  .lead-band p { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .lead-form { gap: 0.625rem; }
  .lead-form input,
  .lead-form select {
    font-size: 1rem;
    padding: 0.95rem 1rem;
    min-height: 52px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .lead-form .btn {
    padding: 1rem 1.25rem;
    font-size: 0.8125rem;
    min-height: 52px;
    border-radius: 4px;
  }

  .site-footer { border-top-width: 3px; }
  .footer-grid {
    padding: 2.5rem 0 1.75rem;
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .footer-brand img { height: 38px; }
  .footer-brand p {
    font-size: 0.8125rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.55);
  }
  .footer-social a { font-size: 1.375rem; }
  .footer-col h4 {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.875rem;
    color: #fff;
  }
  .footer-col ul li a { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }
  .footer-col .contact-item { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.55); }
  .footer-bottom {
    padding: 1.25rem 0;
    font-size: 0.6875rem;
    border-top-color: rgba(255, 255, 255, 0.08);
    gap: 0.5rem;
    text-align: center;
  }
  .footer-legal {
    font-size: 0.6875rem;
    justify-content: center;
    width: 100%;
  }

  body { padding-bottom: 64px; padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .mobile-call-bar {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    box-shadow: 0 -8px 24px rgba(196, 43, 43, 0.25),
                0 -1px 0 rgba(255, 255, 255, 0.08) inset;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-call-bar a {
    min-height: 60px;
    padding: 1rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    gap: 0.625rem;
  }
  .mobile-call-bar a i {
    font-size: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: callRing 2.4s ease-in-out infinite;
  }
  @keyframes callRing {
    0%, 100% { transform: rotate(0); }
    8%       { transform: rotate(-12deg); }
    16%      { transform: rotate(12deg); }
    24%      { transform: rotate(-8deg); }
    32%      { transform: rotate(8deg); }
    40%, 100% { transform: rotate(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-call-bar a i { animation: none; }
    .hero-label::before { animation: none; }
  }

  .scroll-top {
    bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .mobile-menu {
    background: #fff;
    border-top: 1px solid var(--warm-200);
    box-shadow: 0 12px 32px rgba(13, 15, 22, 0.08);
  }
  .mobile-menu.open { padding: 0.75rem 1.25rem 1.25rem; }
  .mobile-menu a {
    padding: 0.875rem 0.875rem;
    font-size: 0.9375rem;
    border-radius: 4px;
    color: var(--navy);
  }
  .mobile-menu a:hover,
  .mobile-menu a:active { background: var(--warm-100); }

  .page-hero { padding: 2rem 0 1.5rem; }
  .page-hero h1 {
    font-size: clamp(1.625rem, 7vw, 2.25rem);
    letter-spacing: -0.02em;
  }
  .page-hero-sub { font-size: 0.9375rem; }
  .breadcrumb { font-size: 0.75rem; }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
    padding: 0.95rem 1rem;
    min-height: 52px;
    border-radius: 4px;
  }
  .form-group textarea { min-height: 120px; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; border-radius: 6px; }

  .plan-card { padding: 1.75rem 1.5rem; border-radius: 6px; }
  .plan-card h3 { font-size: 1.25rem; }

  .faq-question { font-size: 0.9375rem; padding: 1.125rem 0; min-height: 56px; }
  .faq-answer-inner { font-size: 0.875rem; line-height: 1.65; padding-bottom: 1.125rem; }

  .area-tag {
    padding: 0.4rem 0.875rem;
    font-size: 0.75rem;
    border-radius: 2px;
    background: var(--warm-100);
    border-color: var(--warm-200);
  }
}

@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .hero h1 { font-size: 1.875rem; }
  .hero-service-link { font-size: 0.625rem; padding: 0.875rem 0.25rem; }
  .hero-service-link i { font-size: 0.9375rem; }
  .trust-item { font-size: 0.6875rem; padding: 0.45rem 0.5rem; gap: 0.45rem; }
  .stat-item .stat-number { font-size: 2.125rem; }
  .promo-card h3 { font-size: 1.125rem; }
  .promo-card--featured h3 { font-size: 1.25rem; }
}

.finance-overview { align-items: center; }

.finance-figure {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 6px;
  padding: 2.5rem;
  box-shadow: 0 18px 50px rgba(26, 30, 46, 0.18);
}
.finance-figure-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(212, 162, 69, 0.18), transparent 45%),
    radial-gradient(circle at 0% 100%, rgba(196, 43, 43, 0.16), transparent 45%);
  pointer-events: none;
}
.finance-figure > *:not(.finance-figure-bg) { position: relative; z-index: 1; }
.finance-figure-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.finance-figure-amount {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.finance-figure-from {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}
.finance-figure-value {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3rem, 7vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.finance-figure-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.finance-figure p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem;
}
.finance-figure strong { color: #fff; font-weight: 600; }
.finance-figure-note {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}
.finance-disclaimer {
  max-width: 740px;
  margin: 2.5rem auto 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--warm-500);
  text-align: center;
}
@media (max-width: 899px) {
  .finance-figure { padding: 1.75rem; }
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.cta-band .cta-actions .btn + .btn { margin-left: 0; }

@media (min-width: 900px) {
  .hero-bg-pattern::after {
    content: '';
    position: absolute;
    right: 4%;
    bottom: 4%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 162, 69, 0.07) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
  }
}

.partnership-box {
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease);
}
.partnership-box:hover {
  border-color: var(--warm-300);
  box-shadow: 0 10px 30px rgba(26, 30, 46, 0.07);
  transform: translateY(-2px);
}

.page-hero-sub { color: rgba(255, 255, 255, 0.82); }

.top-bar,
.top-bar a { color: rgba(255, 255, 255, 0.72); }

.hero-label { color: rgba(255, 255, 255, 0.72); }
.hero-subtitle { color: rgba(255, 255, 255, 0.78); }
.hero-credential { color: rgba(255, 255, 255, 0.62); }
.hero-service-link { color: rgba(255, 255, 255, 0.78); }

.breadcrumb { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: #fff; }

.stat-item .stat-label { color: rgba(255, 255, 255, 0.72); }

.lead-band > .container > p,
.lead-band p { color: rgba(255, 255, 255, 0.78); }
.lead-form input::placeholder { color: rgba(255, 255, 255, 0.6); }

.service-highlight--emergency p { color: rgba(255, 255, 255, 0.72); }

.finance-figure-note { color: rgba(255, 255, 255, 0.64); }

.site-footer { color: var(--warm-300); }
.footer-brand p { color: var(--warm-300); }
.footer-col ul li a { color: var(--warm-300); }
.footer-col .contact-item { color: var(--warm-300); }
.footer-social a { color: var(--warm-300); }
.footer-col ul li a:hover,
.footer-social a:hover { color: #fff; }
.footer-bottom { color: var(--warm-300); }
.footer-legal,
.footer-legal a { color: var(--warm-300); }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { color: var(--warm-400); }

@media (min-width: 1024px) {
  .nav-wrap .container,
  .top-bar .container {
    max-width: none;
    padding-left: clamp(1.5rem, 5vw, 5rem);
    padding-right: clamp(1.5rem, 5vw, 5rem);
  }

  .nav-links { gap: 0.5rem; }
}
