
:root {
  /* PRIMARY — vibrant trustworthy blue */
  --blue: #076DB2;           /* Primary blue */
  --blue-deep: #054E80;      /* Darker blue for hovers */
  --blue-mid: #0986D8;       /* Brighter mid blue */
  --blue-light: #5BAEDF;     /* Soft blue accent */
  --blue-soft: #E5F0F8;      /* Background tint */
  --blue-pale: #F2F7FB;      /* Lightest blue section bg */

  /* ACCENT — fresh teal */
  --teal: #0C9EAA;           /* Teal accent */
  --teal-deep: #088089;      /* Deeper teal */
  --teal-light: #6FC6CD;     /* Light teal */
  --teal-soft: #E0F4F5;      /* Soft teal tint */
  --teal-pale: #F0F9FA;      /* Lightest teal */

  /* Backward compat — green vars now point to teal so existing selectors don't break */
  --green: #0C9EAA;
  --green-deep: #088089;
  --green-light: #6FC6CD;
  --green-soft: #E0F4F5;
  --green-pale: #F0F9FA;

  /* WARM NEUTRALS — keep warmth */
  --cream: #FBF7EE;          /* Warm page background */
  --warm-white: #FEFCF6;     /* Creamy card bg */
  --warm-tan: #F5EBD7;       /* Warm accent bg */
  --gold: #D4A857;           /* Warm gold */
  --gold-soft: #F5ECD5;      /* Soft gold tint */

  /* TEXT — blue undertones */
  --ink: #0F2A3F;            /* Dark blue-ink */
  --ink-soft: #3D556A;       /* Body text */
  --ink-muted: #7A8A99;      /* Muted text */
  --line: rgba(7, 109, 178, 0.15);
  --shadow: 0 10px 40px rgba(7, 109, 178, 0.1);
  --shadow-lg: 0 20px 60px rgba(7, 109, 178, 0.15);
  --shadow-warm: 0 10px 40px rgba(212, 168, 87, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--blue-light); color: var(--cream); }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ====== SCROLL REVEAL ANIMATIONS ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-fade {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view,
.reveal-fade.in-view {
  opacity: 1;
  transform: none;
}
/* Stagger delays */
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }
.reveal-d6 { transition-delay: 0.48s; }

/* Prevent horizontal overflow from reveal animations */
.about, .faq, .contact, .services, .stats, .process, .testimonials, section {
  overflow-x: clip;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hero text fade-in on load */
.hero-content > * {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > .eyebrow { animation-delay: 0.1s; }
.hero-content > h1 { animation-delay: 0.25s; }
.hero-content > .hero-lede { animation-delay: 0.45s; }
.hero-content > .hero-ctas { animation-delay: 0.6s; }
.hero-content > .hero-trust { animation-delay: 0.75s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle floating animation for hero overlays */
@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-badge {
  animation: gentleFloat 5s ease-in-out infinite;
  animation-delay: 1.2s;
}
.hero-card-floating {
  animation: gentleFloat 6s ease-in-out infinite;
  animation-delay: 1.5s;
}

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* Section headings: small uppercase eyebrow style with gold accent line.
   These ARE the H1/H2 tags — semantic SEO with intentional small visual. */
h1.heading-as-eyebrow,
h2.heading-as-eyebrow,
h3.heading-as-eyebrow,
.heading-as-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1.3;
  margin: 0 0 24px;
  background: none;
  max-width: 100%;
}
h1.heading-as-eyebrow::before,
h2.heading-as-eyebrow::before,
h3.heading-as-eyebrow::before,
.heading-as-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

/* When the eyebrow heading sits on a dark/blue background, flip to light text + lighter accent line */
.philosophy .heading-as-eyebrow,
.stats .heading-as-eyebrow,
.cta-section .heading-as-eyebrow,
.footer .heading-as-eyebrow {
  color: var(--cream);
}
.philosophy .heading-as-eyebrow::before,
.stats .heading-as-eyebrow::before,
.cta-section .heading-as-eyebrow::before,
.footer .heading-as-eyebrow::before {
  background: var(--gold);
}

/* ====== TOP BAR ====== */
.topbar {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 11px 0;
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 26px; align-items: center; }
.topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-weight: 500;
}
.tb-icon {
  width: 16px;
  height: 16px;
  color: #FFD56B;
  flex-shrink: 0;
}
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-right .stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.tb-star {
  width: 14px;
  height: 14px;
  color: #FFD56B;
  filter: drop-shadow(0 0 4px rgba(255, 213, 107, 0.4));
}
.topbar-right .stars strong {
  font-weight: 700;
  color: #FFD56B;
  margin-left: 4px;
}
.topbar-right .phone {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  transition: color 0.3s;
}
.topbar-right .phone .tb-icon { color: #FFD56B; transition: color 0.3s; }
.topbar-right .phone:hover { color: #FFD56B; }

/* ====== NAV ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  flex-shrink: 0;
}
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.brand:hover .brand-logo {
  transform: scale(1.03);
}
/* Inverted version for use on dark backgrounds (footer) — turns the logo cream/white */
.brand-logo-inverted {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.brand-footer .brand-logo {
  height: 72px;
}
.brand-text { line-height: 1.1; }
.brand-name {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.brand-tagline {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  list-style: none;
  align-items: center;
}
.nav-links > li {
  position: static;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-links a:hover,
.nav-links li:hover > a.nav-trigger,
.nav-links li:focus-within > a.nav-trigger {
  color: var(--blue);
  border-bottom-color: var(--gold);
}
.nav-chev {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.nav-links li:hover .nav-chev,
.nav-links li:focus-within .nav-chev {
  transform: rotate(180deg);
}

/* ====== MEGA MENU ====== */
.has-mega { position: static; }
.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-top: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(7, 109, 178, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 99;
  padding: 36px 0;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega,
.mega:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.mega-areas .mega-inner {
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.mega-heading {
  margin-bottom: 24px;
}
.mega-heading .eyebrow { font-size: 11px; margin-bottom: 10px; }
.mega-heading h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--blue);
  letter-spacing: -0.015em;
  line-height: 1.15;
}

/* Services grid */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  transition: background 0.25s ease, transform 0.25s ease;
  border-bottom: none !important;
  text-decoration: none;
}
.mega-item:hover {
  background: var(--blue-pale);
  transform: translateX(3px);
  border-bottom-color: transparent !important;
}
.mega-ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-ico svg { width: 22px; height: 22px; }
.mega-ico-blue { background: var(--blue-soft); color: var(--blue); }
.mega-ico-teal { background: var(--teal-soft); color: var(--teal-deep); }
.mega-text { flex: 1; padding-top: 2px; }
.mega-title {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 4px;
}
.mega-desc {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Service Areas grid — redesigned */
.mega-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.area-link {
  position: relative;
  padding: 14px 14px 14px 14px;
  border-radius: 12px;
  background: var(--blue-pale);
  border: 1px solid transparent;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid transparent !important;
  overflow: hidden;
}
.area-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
  border-radius: 0 3px 3px 0;
}
.area-link:hover {
  background: var(--warm-white);
  border-color: var(--blue-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(7, 109, 178, 0.1);
}
.area-link:hover::before { transform: scaleY(1); }

.area-pin {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.area-pin svg { width: 20px; height: 20px; }
.area-link:hover .area-pin {
  background: var(--teal-soft);
  color: var(--teal-deep);
  transform: rotate(-6deg);
}

.area-text {
  flex: 1;
  min-width: 0;
}
.area-name {
  font-family: 'DM Serif Display', serif;
  font-size: 16.5px;
  color: var(--blue);
  line-height: 1.15;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.area-sub {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.area-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s ease;
}
.area-arrow svg { width: 14px; height: 14px; }
.area-link:hover .area-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--teal-deep);
}

/* Foot strip — extra coverage areas */
.mega-areas-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 10px;
  font-size: 12px;
  border: 1px dashed var(--line);
}
.mega-areas-foot-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep);
  flex-shrink: 0;
}
.mega-areas-foot-list {
  color: var(--ink-soft);
  font-weight: 500;
}

/* Featured CTA card — improved padding & visual */
.mega-feature {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-deep) 100%);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  min-height: 320px;
  display: flex;
  box-shadow: 0 14px 40px rgba(7, 109, 178, 0.18);
}
.mega-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=800&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  mix-blend-mode: overlay;
}
.mega-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 109, 178, 0) 0%, rgba(7, 36, 64, 0.45) 100%);
}
.mega-feature-areas { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--blue) 100%); }
.mega-feature-areas::before {
  background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=800&q=80');
}
.mega-feature-overlay {
  position: relative;
  padding: 36px 32px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  z-index: 1;
}
.mega-feature-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFD56B;
  margin-bottom: 12px;
}
.mega-feature-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.mega-feature-text {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 22px;
}
.mega-feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  color: var(--blue);
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  align-self: flex-start;
  transition: all 0.3s;
  border-bottom: none !important;
}
.mega-feature-btn:hover {
  background: var(--gold);
  color: var(--blue-deep);
  transform: translateX(3px);
}
.mega-feature-btn svg {
  width: 14px;
  height: 14px;
}

.cta-nav {
  background: var(--blue);
  color: var(--cream);
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-nav:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: var(--shadow); }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
.mobile-toggle svg { width: 28px; height: 28px; }

/* ====== HERO ====== */
.hero {
  padding: 70px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(141, 184, 154, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .eyebrow { margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--blue);
}
.hero h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn-primary {
  background: var(--blue);
  color: var(--cream);
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}
.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}
.btn-phone:hover { background: var(--blue); color: var(--cream); }
.btn-phone .phone-icon {
  width: 26px;
  height: 26px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  flex-shrink: 0;
}
.btn-phone .phone-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}
.btn-phone:hover .phone-icon { background: var(--cream); color: var(--blue); }

.hero-trust {
  display: flex;
  gap: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item .check {
  width: 22px;
  height: 22px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Image */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--blue-soft);
}

/* Carousel */
.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 7s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7, 109, 178, 0.18) 0%, rgba(12, 158, 170, 0.12) 100%),
    linear-gradient(180deg, transparent 45%, rgba(7, 36, 64, 0.45) 100%);
}

/* Dot indicators */
.hero-dots {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.hero-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot-btn:hover { background: rgba(255, 255, 255, 0.85); }
.hero-dot-btn.active {
  background: var(--cream);
  width: 24px;
  border-radius: 100px;
}

.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--warm-white);
  padding: 14px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.hero-badge .heart {
  width: 32px;
  height: 32px;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hero-badge .badge-text {
  line-height: 1.2;
}
.hero-badge .badge-num {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--blue);
}
.hero-badge .badge-label {
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

.hero-card-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--warm-white);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.hero-card-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), var(--blue)) center/cover;
  background-image: url('https://images.unsplash.com/photo-1559839734-2b71ea197ec2?w=200&q=80');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 3px solid var(--cream);
}
.hero-card-info { flex: 1; }
.hero-card-info .name {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--blue);
  line-height: 1.2;
}
.hero-card-info .role {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 2px;
}
.hero-card-info .stars {
  color: var(--gold);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0.1em;
}
.hero-card-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* Decorative dot */
.hero-dot {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--green-soft);
  border-radius: 50%;
  z-index: 1;
}
.hero-dot-2 {
  position: absolute;
  bottom: 40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

/* ====== TRUST BAR — REDESIGNED ====== */
.trust-bar {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.trust-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  position: relative;
  transition: transform 0.3s ease;
}
.trust-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 30%, var(--line) 70%, transparent 100%);
}
.trust-cell:hover { transform: translateY(-2px); }

.trust-cell .icon {
  width: 52px;
  height: 52px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}
.trust-cell .icon svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}
.trust-cell:hover .icon {
  transform: rotate(-4deg) scale(1.05);
}

/* Alternating accents */
.trust-cell:nth-child(1) .icon { background: var(--blue-soft); color: var(--blue); }
.trust-cell:nth-child(2) .icon { background: var(--teal-soft); color: var(--teal-deep); }
.trust-cell:nth-child(3) .icon { background: var(--gold-soft); color: #b8841f; }
.trust-cell:nth-child(4) .icon { background: var(--blue-soft); color: var(--blue); }

.trust-cell .text { line-height: 1.3; min-width: 0; }
.trust-cell .label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.trust-cell .sub {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ====== ABOUT / PHILOSOPHY ====== */
.about {
  padding: 110px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: 16px;
  background: url('https://images.unsplash.com/photo-1576765608535-5f04d1e3f289?w=700&q=80') center/cover;
  box-shadow: var(--shadow-lg);
}
.about-img-second {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 55%;
  border-radius: 16px;
  background: url('https://images.unsplash.com/photo-1573497019418-b400bb3ab074?w=600&q=80') center/cover;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--cream);
}
.about-img-badge {
  position: absolute;
  top: 50%;
  left: 65%;
  background: var(--blue);
  color: var(--cream);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
}
.about-img-badge .num {
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1;
}
.about-img-badge .num em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
}
.about-img-badge .label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.9;
}

.about-content .eyebrow { margin-bottom: 20px; }
.about-content h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 22px;
}
.about-content h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}
.about-content > p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.about-pillars {
  display: grid;
  gap: 18px;
  margin: 36px 0;
}
.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.about-pillar:last-child { border-bottom: 1px solid var(--line); }
.about-pillar .icon {
  width: 44px;
  height: 44px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-pillar .pillar-text { flex: 1; }
.about-pillar h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.about-pillar p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.about-signature .sig-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=200&q=80') center/cover;
  flex-shrink: 0;
  border: 3px solid var(--blue-soft);
}
.about-signature .sig-text { line-height: 1.3; }
.about-signature .sig-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--blue);
}
.about-signature .sig-title {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* ====== SERVICES — Refined Card Design ====== */
.services {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(12, 158, 170, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.services::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(7, 109, 178, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.services .wrap { position: relative; z-index: 1; }

.services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.services-header .eyebrow {
  margin-bottom: 18px;
  justify-content: center;
}
.services-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
  line-height: 1.12;
}
.services-header h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
.services-header p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.svc-card {
  background: var(--warm-white);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 24px rgba(7, 109, 178, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid var(--line);
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
  transition: background 0.3s, height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
}
.svc-card:nth-child(odd)::before { background: var(--blue); }
.svc-card:nth-child(even)::before { background: var(--teal); }
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { height: 8px; }

.svc-card-top {
  padding: 32px 30px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--warm-white) 0%, transparent 100%);
}
.svc-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.3s;
  position: relative;
}
.svc-card:nth-child(even) .svc-icon {
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.svc-card:hover .svc-icon {
  transform: scale(1.06) rotate(-3deg);
}
.svc-card:nth-child(odd):hover .svc-icon {
  background: var(--blue);
  color: var(--cream);
}
.svc-card:nth-child(even):hover .svc-icon {
  background: var(--teal);
  color: var(--cream);
}

.svc-num-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  display: block;
}
.svc-title-block { flex: 1; padding-top: 4px; }
.svc-title {
  font-family: 'DM Serif Display', serif;
  font-size: 23px;
  font-weight: 400;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.svc-card:nth-child(even) .svc-title { color: var(--blue); }

.svc-body {
  padding: 24px 30px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 20px;
}
.svc-features {
  list-style: none;
  margin-bottom: 26px;
  border-top: 1px dashed var(--line);
  padding-top: 18px;
}
.svc-features li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}
.svc-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-card:nth-child(even) .svc-features li::before {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.svc-link {
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  margin-top: auto;
  transition: all 0.3s;
  background: var(--blue-soft);
  border-radius: 100px;
  text-align: center;
}
.svc-link:hover {
  background: var(--blue);
  color: var(--cream);
  gap: 14px;
}
.svc-card:nth-child(even) .svc-link {
  color: var(--teal-deep);
  background: var(--teal-soft);
}
.svc-card:nth-child(even) .svc-link:hover {
  background: var(--teal);
  color: var(--cream);
}
.svc-link .arrow {
  width: 24px;
  height: 24px;
  background: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.svc-card:nth-child(even) .svc-link .arrow { color: var(--teal-deep); }
.svc-link:hover .arrow { transform: translateX(3px); background: var(--cream); }


/* ====== AREA PAGES — service area landing styles ====== */
.area-hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
}
.area-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(12, 158, 170, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.area-hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -150px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(7, 109, 178, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.area-hero .wrap { position: relative; z-index: 1; }
.area-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.area-hero-content .eyebrow { margin-bottom: 22px; }
.area-hero-content h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.area-hero-content h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.area-hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 560px;
}
.area-hero-visual { position: relative; }
.area-hero-img {
  width: 100%;
  height: 480px;
  border-radius: 20px;
  background: url('https://images.unsplash.com/photo-1581579186913-45ac3e6efe93?w=900&q=80') center/cover;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.area-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(7, 109, 178, 0.18) 0%, rgba(12, 158, 170, 0.12) 100%);
}
.area-hero-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--warm-white);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.area-hero-badge .badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--blue);
}
.area-hero-badge .badge-row strong { font-weight: 400; }
.area-hero-badge .badge-sub {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.area-trust {
  padding: 60px 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.area-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.area-trust-card {
  text-align: center;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
}
.area-trust-card:last-child { border-right: none; }
.area-trust-num {
  font-family: 'DM Serif Display', serif;
  font-size: 60px;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}
.area-trust-num em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.area-trust-label {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

.area-services {
  padding: 100px 0;
  background: var(--cream);
}
.area-services .services-header { margin-bottom: 60px; }

.area-neighborhoods {
  padding: 100px 0;
  background: var(--blue-pale);
}
.area-neigh-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.area-neigh-grid h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  margin: 14px 0 22px;
}
.area-neigh-grid h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.area-neigh-text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 30px;
  max-width: 480px;
}
.area-neigh-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: flex-start;
}
.neigh-pill {
  display: inline-flex;
  align-items: center;
  background: var(--warm-white);
  border: 1px solid var(--line);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.neigh-pill:hover {
  background: var(--blue);
  color: var(--cream);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(7, 109, 178, 0.2);
}

@media (max-width: 1100px) {
  .area-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .area-hero-img { height: 380px; }
  .area-neigh-grid { grid-template-columns: 1fr; gap: 36px; }
  .area-trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .area-trust-card { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
  .area-trust-card:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .area-hero { padding: 36px 0 60px; }
  .area-hero-content h1 { font-size: clamp(28px, 7vw, 38px); }
  .area-hero-lede { font-size: 15.5px; line-height: 1.6; margin-bottom: 26px; }
  .area-hero-img { height: 280px; border-radius: 16px; }
  .area-hero-badge { padding: 12px 16px; }
  .area-hero-badge .badge-row { font-size: 16px; }
  .area-trust { padding: 50px 0; }
  .area-trust-num { font-size: 48px; }
  .area-services { padding: 70px 0; }
  .area-neighborhoods { padding: 70px 0; }
  .area-neigh-grid h2 { font-size: clamp(24px, 7vw, 34px); }
  .neigh-pill { font-size: 13px; padding: 9px 14px; }
}


.stats {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 168, 87, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.stats::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 58px;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-num em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.stat-label {
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.9;
  line-height: 1.4;
}

/* ====== PROCESS ====== */
.process {
  padding: 110px 0;
  background: var(--cream);
}
.process-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.process-header .eyebrow {
  margin-bottom: 16px;
  display: inline-flex;
}
.process-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
}
.process-header h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}
.process-header p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light) 0%, var(--green-light) 100%);
  opacity: 0.4;
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 0 10px;
}
.step-num {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  background: var(--warm-white);
  border: 2px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--blue);
  transition: all 0.3s;
}
.step-card:nth-child(even) .step-num {
  border-color: var(--teal);
  color: var(--teal-deep);
}
.step-card:hover .step-num {
  background: var(--blue);
  color: var(--cream);
  transform: scale(1.05);
}
.step-card:nth-child(even):hover .step-num {
  background: var(--teal);
}
.step-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.step-card .step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ====== TESTIMONIALS — REDESIGNED ====== */
.testimonials {
  padding: 110px 0;
  background: var(--teal-pale);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(12, 158, 170, 0.14) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(7, 109, 178, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.testimonials .wrap { position: relative; z-index: 1; }

.test-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.test-header .eyebrow {
  margin-bottom: 18px;
  justify-content: center;
}
.test-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 20px;
  line-height: 1.12;
}
.test-header h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--teal);
}
.test-subhead {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 auto 36px;
  max-width: 580px;
}

/* Google-style rating banner */
.test-rating {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  background: var(--warm-white);
  padding: 16px 30px;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(7, 109, 178, 0.1);
  border: 1px solid var(--line);
}
.test-rating-logo {
  display: flex;
  gap: 1px;
  align-items: baseline;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.g-letter { display: inline-block; }
.g-blue { color: #4285F4; }
.g-red { color: #EA4335; }
.g-gold { color: #FBBC05; }
.g-green { color: #34A853; }
.test-rating-divider {
  width: 1px;
  height: 30px;
  background: var(--line);
}
.test-rating-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.test-rating-stars {
  color: #FBBC05;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1;
}
.test-rating-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}
.test-rating-meta .rating-num {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--blue-deep);
  line-height: 1;
}
.test-rating-meta strong { color: var(--blue-deep); font-weight: 600; }

/* Testimonial card grid — 3 columns */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.test-card {
  background: var(--warm-white);
  border-radius: 18px;
  padding: 0 32px 30px;
  box-shadow: 0 4px 24px rgba(7, 109, 178, 0.06);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s, border-color 0.3s;
}
.test-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(7, 109, 178, 0.14);
  border-color: var(--teal-light);
}

/* Featured (middle) card — teal accent border */
.test-card-featured {
  border-color: var(--teal);
  background: var(--warm-white);
  box-shadow: 0 14px 36px rgba(12, 158, 170, 0.14);
  position: relative;
}
.test-card-featured::before {
  content: 'Featured Review';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(12, 158, 170, 0.3);
}

.test-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -36px;
  margin-bottom: 18px;
  position: relative;
  padding: 0;
}
.test-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--warm-white);
  box-shadow: 0 6px 18px rgba(7, 109, 178, 0.15);
  flex-shrink: 0;
  background-color: var(--blue-soft);
}
.test-card-featured .test-avatar {
  border-color: var(--teal-soft);
  box-shadow: 0 6px 20px rgba(12, 158, 170, 0.2);
}
.test-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 90px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 0.6;
  margin-top: 32px;
  letter-spacing: -0.04em;
}
.test-card-featured .test-quote-mark { color: var(--teal); opacity: 0.4; }

.test-card .test-stars {
  color: #FBBC05;
  font-size: 15px;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}
.test-quote {
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: normal;
  letter-spacing: -0.005em;
  flex: 1;
}
.test-quote em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--teal-deep);
  font-weight: 600;
}
.test-card-featured .test-quote em { color: var(--blue); }

.test-meta {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-card-featured .test-meta { border-top-color: var(--teal-soft); }

.test-author-name {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.test-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.test-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--cream);
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--line);
}
.test-loc::before {
  content: '📍';
  font-size: 10px;
}
.test-svc {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 11px;
  border-radius: 100px;
}
.test-card-featured .test-svc {
  background: var(--teal-soft);
  color: var(--teal-deep);
}

.test-cta-row {
  text-align: center;
  margin-top: 56px;
}
.test-google-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  padding: 16px 28px;
  background: var(--blue);
  border-radius: 100px;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 22px rgba(7, 109, 178, 0.2);
}
.test-google-link:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12, 158, 170, 0.3);
}
.test-google-link .arrow { transition: transform 0.3s; }
.test-google-link:hover .arrow { transform: translateX(4px); }


/* ====== FAQ ====== */
.faq { padding: 110px 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-side { position: sticky; top: 110px; }
.faq-side .eyebrow { margin-bottom: 18px; }
.faq-side h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 22px;
}
.faq-side h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}
.faq-side p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 30px;
}
.faq-help {
  background: var(--blue-soft);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.faq-help .icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.faq-help .icon svg { width: 20px; height: 20px; }
.faq-help .text { line-height: 1.3; }
.faq-help .text .label {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq-help .text .num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--blue);
  margin-top: 2px;
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--warm-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(12, 158, 170, 0.12);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: inherit;
  transition: all 0.3s;
}
.faq-q-text {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--blue);
  line-height: 1.4;
  flex: 1;
}
.faq-q-text em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--teal);
  color: var(--cream);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 26px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ====== CTA SECTION ====== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 45%, var(--teal-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(136, 164, 186, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-inner .eyebrow {
  color: var(--gold);
  margin-bottom: 18px;
  display: inline-flex;
}
.cta-inner .eyebrow::before { background: var(--gold); }
.cta-inner h2 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 22px;
  line-height: 1.15;
}
.cta-inner h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.cta-inner p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.95;
  margin-bottom: 38px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-light {
  background: var(--cream);
  color: var(--blue-deep);
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-light:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  padding: 16px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(250, 247, 241, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--blue-deep);
  border-color: var(--cream);
}
.btn-phone-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--cream);
  transition: color 0.3s;
}
.btn-phone-svg svg { width: 18px; height: 18px; }
.btn-outline:hover .btn-phone-svg { color: var(--blue-deep); }

/* ====== CONTACT ====== */
.contact {
  padding: 110px 0;
  background: var(--blue-pale);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 18px; }
.contact-info h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}
.contact-info h2 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}
.contact-info > p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 36px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background: var(--warm-white);
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-method:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.contact-method .icon {
  width: 48px;
  height: 48px;
  background: var(--blue-soft);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method .icon svg { width: 22px; height: 22px; }
.contact-method .content { flex: 1; }
.contact-method .label {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-method .value {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--blue);
  line-height: 1.3;
}
.contact-method .value em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--green);
  font-weight: 500;
}

.form-wrap {
  background: var(--warm-white);
  padding: 44px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.form-wrap .heading-as-eyebrow { margin-bottom: 14px; }
.form-intro {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 30px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--ink);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}
.form-group select { cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--warm-white);
}
.form-group textarea { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  background: var(--blue);
  color: var(--cream);
  padding: 16px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  margin-top: 8px;
  box-shadow: var(--shadow);
}
.btn-submit:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-submit .arrow { transition: transform 0.3s; }
.btn-submit:hover .arrow { transform: translateX(4px); }
.btn-submit:disabled {
  opacity: 0.7;
  cursor: wait;
  pointer-events: none;
}
.form-trust {
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.form-trust::before { content: '🔒'; font-size: 11px; }

/* Success state — replaces the form after Web3Forms submission */
.form-success {
  text-align: center;
  padding: 30px 10px 14px;
  animation: successFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}
.form-success-icon svg { width: 36px; height: 36px; }
@keyframes iconPop {
  from { transform: scale(0); }
  60% { transform: scale(1.15); }
  to { transform: scale(1); }
}
.form-success-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.form-success-msg {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--blue-deep);
  color: var(--cream);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.15);
}
.footer-brand .brand-name { color: var(--cream); }
.footer-brand .brand-tagline { color: rgba(250, 247, 241, 0.6); }
.footer-brand .brand-icon { background: var(--gold); color: var(--blue); }
.footer-about {
  margin-top: 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(250, 247, 241, 0.75);
  max-width: 320px;
}
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(250, 247, 241, 0.7);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(250, 247, 241, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { margin-left: 20px; color: rgba(250, 247, 241, 0.7); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ====== FLOATING CALL ====== */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--blue);
  color: var(--cream);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  transition: all 0.3s;
  box-shadow: 0 15px 35px rgba(44, 82, 57, 0.35);
}
.float-call-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.float-call-icon svg { width: 16px; height: 16px; }
.float-call .pulse {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 168, 106, 0.6); }
  50% { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 0 8px rgba(201, 168, 106, 0); }
}
.float-call:hover {
  background: var(--blue-deep);
  transform: translateY(-3px);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1100px) {
  .wrap { padding: 0 28px; }
  .hero-grid, .about-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-img-main { height: 480px; }
  .about-images { height: 480px; }
  .faq-side { position: static; }
  .services-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 14px 0; }
  .trust-cell { padding: 14px 16px; }
  .trust-cell:nth-child(2)::after { display: none; }
  .trust-cell:nth-child(1) { border-bottom: 1px solid var(--line); }
  .trust-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-inner { grid-template-columns: auto 1fr; }
  .nav-toggle { grid-column: 2; justify-self: end; margin-left: 0; }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: var(--warm-white);
    padding: 16px;
    border-radius: 14px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    z-index: 99;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-links.mobile-open > li {
    position: relative;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.mobile-open > li:last-child { border-bottom: none; }
  .nav-links.mobile-open > li > a {
    padding: 14px 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    border-bottom: none;
    width: 100%;
    justify-content: space-between;
  }
  .nav-links.mobile-open > li > a:hover { border-bottom: none; background: var(--blue-pale); }

  /* Mobile mega menu — accordion */
  .nav-links.mobile-open .mega {
    position: static;
    background: var(--cream);
    border-radius: 8px;
    margin: 4px 0 8px;
    padding: 12px;
    box-shadow: none;
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .nav-links.mobile-open .has-mega.mobile-open-mega > .mega {
    max-height: 700px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .nav-links.mobile-open .mega-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    max-width: 100%;
  }
  .nav-links.mobile-open .mega-heading { display: none; }
  .nav-links.mobile-open .mega-grid,
  .nav-links.mobile-open .mega-areas-grid { grid-template-columns: 1fr; gap: 4px; margin-bottom: 0; }
  .nav-links.mobile-open .mega-item { padding: 10px 12px; }
  .nav-links.mobile-open .mega-ico { width: 36px; height: 36px; }
  .nav-links.mobile-open .mega-ico svg { width: 18px; height: 18px; }
  .nav-links.mobile-open .mega-title { font-size: 14px; }
  .nav-links.mobile-open .mega-desc { font-size: 12px; }
  .nav-links.mobile-open .area-link { padding: 10px 14px; gap: 10px; }
  .nav-links.mobile-open .area-pin { width: 34px; height: 34px; border-radius: 8px; }
  .nav-links.mobile-open .area-pin svg { width: 16px; height: 16px; }
  .nav-links.mobile-open .area-name { font-size: 15px; }
  .nav-links.mobile-open .area-sub { font-size: 11.5px; }
  .nav-links.mobile-open .area-arrow { display: none; }
  .nav-links.mobile-open .mega-areas-foot { display: none; }
  .nav-links.mobile-open .mega-feature { display: none; }

  .mobile-toggle { display: block; }
  .topbar-left { display: none; }
}

/* ====== TABLET / LARGE MOBILE ====== */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }

  /* Top bar — compact on mobile */
  .topbar { padding: 8px 0; font-size: 12px; }
  .topbar-inner { justify-content: center; }
  .topbar-right { gap: 12px; flex-wrap: wrap; justify-content: center; }
  .topbar-right .stars { font-size: 11px; }

  /* Nav — tighter */
  .nav { padding: 12px 0; }
  .nav-inner { gap: 12px; }
  .brand-icon { width: 38px; height: 38px; font-size: 18px; }
  .brand-logo { height: 52px; }
  .brand-footer .brand-logo { height: 60px; }
  .brand-name { font-size: 17px; }
  .brand-tagline { font-size: 9px; }
  .cta-nav { padding: 10px 14px; font-size: 12px; gap: 6px; }

  /* Hero — stack & scale */
  .hero { padding: 36px 0 60px; }
  .hero h1 { font-size: clamp(30px, 8vw, 40px); line-height: 1.12; margin-bottom: 20px; }
  .hero-lede { font-size: 16px; line-height: 1.6; margin-bottom: 26px; }
  .hero-ctas { gap: 12px; margin-bottom: 30px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-phone { justify-content: center; width: 100%; padding: 15px 24px; }
  .hero-trust { gap: 14px 20px; padding-top: 22px; }
  .trust-item { font-size: 12px; }
  .hero-img-main { height: 380px; border-radius: 16px; }
  .hero-badge { top: 16px; left: 16px; padding: 10px 14px; }
  .hero-badge .heart { width: 28px; height: 28px; font-size: 14px; }
  .hero-badge .badge-num { font-size: 17px; }
  .hero-badge .badge-label { font-size: 10px; }
  .hero-card-floating { bottom: 16px; left: 16px; right: 16px; padding: 16px 18px; gap: 12px; }
  .hero-card-avatar { width: 48px; height: 48px; }
  .hero-card-info .name { font-size: 15px; }
  .hero-card-info .role { font-size: 11px; }
  .hero-card-info .stars { font-size: 11px; }
  .hero-dot, .hero-dot-2 { display: none; }

  /* Trust bar */
  .trust-bar { padding: 22px 0; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; gap: 18px; }
  .trust-cell { gap: 10px; }
  .trust-cell .icon { width: 36px; height: 36px; font-size: 15px; }
  .trust-cell .label { font-size: 14px; }
  .trust-cell .sub { font-size: 11px; }

  /* About — stack & resize images */
  .about { padding: 70px 0; }
  .about-images { height: 420px; max-width: 460px; margin: 0 auto; }
  .about-img-main { width: 75%; height: 70%; }
  .about-img-second { width: 58%; height: 50%; border-width: 6px; }
  .about-img-badge { padding: 16px 18px; left: auto; right: 12%; top: 42%; }
  .about-img-badge .num { font-size: 30px; }
  .about-img-badge .label { font-size: 10px; }
  .about-content h2 { font-size: clamp(26px, 7vw, 36px); }
  .about-content > p { font-size: 15.5px; }
  .about-pillar { padding: 16px 0; gap: 14px; }
  .about-pillar .icon { width: 38px; height: 38px; font-size: 17px; }
  .about-pillar h4 { font-size: 15px; }
  .about-pillar p { font-size: 13.5px; }

  /* Services */
  .services { padding: 70px 0; }
  .services-header { margin-bottom: 44px; }
  .services-header h2 { font-size: clamp(26px, 7vw, 36px); }
  .services-header p { font-size: 16.5px; }
  .services-grid { grid-template-columns: 1fr; gap: 18px; }
  .svc-card { border-radius: 16px; }
  .svc-card::before { height: 4px; }
  .svc-card:hover::before { height: 6px; }
  .svc-card-top { padding: 24px 24px 18px; gap: 14px; }
  .svc-icon { width: 50px; height: 50px; font-size: 22px; border-radius: 12px; }
  .svc-num-label { font-size: 10px; }
  .svc-title { font-size: 21px; }
  .svc-body { padding: 20px 24px 24px; }
  .svc-body p { font-size: 14.5px; margin-bottom: 18px; }
  .svc-features { padding-top: 14px; margin-bottom: 22px; }
  .svc-features li { font-size: 13px; padding: 6px 0; }
  .svc-features li::before { width: 18px; height: 18px; font-size: 10px; }
  .svc-link { padding: 13px 16px; font-size: 12px; }
  .svc-link .arrow { width: 22px; height: 22px; font-size: 13px; }

  /* Stats */
  .stats { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 30px 20px; }
  .stat-num { font-size: 44px; }
  .stat-label { font-size: 13px; }

  /* Process */
  .process { padding: 70px 0; }
  .process-header { margin-bottom: 44px; }
  .process-header h2 { font-size: clamp(26px, 7vw, 36px); }
  .process-header p { font-size: 15.5px; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .step-card { padding: 0; }
  .step-num { width: 64px; height: 64px; font-size: 26px; margin-bottom: 18px; }
  .step-card h3 { font-size: 20px; }
  .step-card p { font-size: 14px; }

  /* Testimonials */
  .testimonials { padding: 70px 0; }
  .testimonials::before, .testimonials::after { width: 240px; height: 240px; }
  .test-header { margin-bottom: 50px; }
  .test-header h2 { font-size: clamp(26px, 7vw, 36px); }
  .test-subhead { font-size: 16px; margin-bottom: 28px; }
  .test-rating {
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 18px;
  }
  .test-rating-divider { width: 60px; height: 1px; }
  .test-rating-content { align-items: center; }
  .test-rating-logo { font-size: 17px; }
  .test-rating-stars { font-size: 18px; }
  .test-rating-meta .rating-num { font-size: 17px; }
  .test-rating-meta { font-size: 12.5px; }

  .test-grid { grid-template-columns: 1fr; gap: 50px 18px; }
  .test-card { padding: 0 24px 26px; border-radius: 16px; }
  .test-card-featured { margin-top: 16px; }
  .test-card-top { margin-top: -32px; margin-bottom: 16px; }
  .test-avatar { width: 64px; height: 64px; border-width: 3px; }
  .test-quote-mark { font-size: 70px; margin-top: 26px; }
  .test-quote { font-size: 14.5px; margin-bottom: 20px; }
  .test-author-name { font-size: 17px; }
  .test-loc, .test-svc { font-size: 11px; padding: 4px 9px; }

  .test-cta-row { margin-top: 42px; }
  .test-google-link { font-size: 13px; padding: 14px 22px; }

  /* FAQ */
  .faq { padding: 70px 0; }
  .faq-grid { gap: 36px; }
  .faq-side h2 { font-size: clamp(26px, 7vw, 34px); }
  .faq-side p { font-size: 15px; }
  .faq-help { padding: 18px; }
  .faq-help .icon { width: 38px; height: 38px; font-size: 15px; }
  .faq-help .text .num { font-size: 18px; }
  .faq-q { padding: 18px 20px; gap: 14px; }
  .faq-q-text { font-size: 16px; }
  .faq-toggle { width: 28px; height: 28px; font-size: 16px; }
  .faq-a-inner { padding: 0 20px 20px; font-size: 14.5px; }

  /* CTA section */
  .cta-section { padding: 70px 0; }
  .cta-inner h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-inner p { font-size: 16px; margin-bottom: 30px; }
  .cta-actions { flex-direction: column; gap: 12px; }
  .cta-actions .btn-light, .cta-actions .btn-outline { width: 100%; justify-content: center; padding: 15px 24px; }

  /* Contact */
  .contact { padding: 70px 0; }
  .contact-grid { gap: 36px; }
  .contact-info h2 { font-size: clamp(26px, 7vw, 36px); }
  .contact-info > p { font-size: 15.5px; }
  .contact-method { padding: 16px; gap: 14px; }
  .contact-method .icon { width: 42px; height: 42px; font-size: 16px; }
  .contact-method .label { font-size: 10px; }
  .contact-method .value { font-size: 16px; }
  .form-wrap { padding: 32px 22px; }
  .form-wrap h3 { font-size: 24px; }
  .form-wrap > p { font-size: 14px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* iOS zoom prevention — inputs must be ≥16px */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; padding: 12px 14px; }
  .form-group label { font-size: 11px; }
  .btn-submit { padding: 15px; font-size: 14px; }
  .form-trust { font-size: 11px; }

  /* Footer */
  .footer { padding: 60px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-about { font-size: 14px; max-width: 100%; }
  .footer-col h5 { font-size: 11px; margin-bottom: 14px; }
  .footer-col ul a { font-size: 13.5px; }
  .footer-bottom { font-size: 11.5px; justify-content: center; text-align: center; }
  .footer-bottom a { margin-left: 14px; }

  /* Floating call — make finger-friendly */
  .float-call { padding: 13px 20px; bottom: 14px; right: 14px; font-size: 13px; }
  .float-call::before { width: 8px; height: 8px; }

  /* Eyebrow on mobile */
  .eyebrow { font-size: 11px; letter-spacing: 0.15em; }
  .eyebrow::before { width: 20px; }
}

/* ====== SMALL MOBILE ====== */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .topbar { font-size: 11px; padding: 7px 0; }
  .topbar-right .stars { gap: 4px; }
  .topbar-right .stars strong { font-size: 12px; }
  .tb-star { width: 11px; height: 11px; }
  .topbar-inner { gap: 10px; }

  .nav { padding: 12px 0; }
  .nav-inner { gap: 8px; }
  .brand-tagline { display: none; }
  .brand-name { font-size: 15px; }
  .brand-icon { width: 36px; height: 36px; font-size: 17px; }
  .brand-logo { height: 42px; }
  .brand-footer .brand-logo { height: 52px; }
  .cta-nav { padding: 9px 14px; font-size: 11.5px; }

  .hero { padding: 28px 0 50px; }
  .hero-img-main { height: 340px; }
  .hero h1 { font-size: 28px; }
  .hero-dots { bottom: 130px; }

  .trust-bar { padding: 24px 0; }
  .trust-bar-inner { grid-template-columns: 1fr; gap: 0; }
  .trust-cell { padding: 14px 8px; gap: 12px; }
  .trust-cell:not(:last-child)::after { display: none; }
  .trust-cell:not(:last-child) { border-bottom: 1px solid var(--line); }
  .trust-cell .icon { width: 44px; height: 44px; border-radius: 12px; }
  .trust-cell .icon svg { width: 22px; height: 22px; }
  .trust-cell .label { font-size: 14px; }
  .trust-cell .sub { font-size: 12px; }

  .about-images { height: 360px; }
  .about-img-badge { right: 8%; padding: 14px 16px; }
  .about-img-badge .num { font-size: 26px; }

  .stats-grid { grid-template-columns: 1fr; gap: 26px; }
  .stat-num { font-size: 40px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-bottom > div:last-child a:first-child { margin-left: 0; }

  /* Area page tweaks */
  .area-hero-content h1 { font-size: 26px; }
  .area-hero-img { height: 240px; }
  .area-hero-badge { padding: 10px 14px; }
  .area-hero-badge .badge-row { font-size: 14px; }
  .area-trust-num { font-size: 40px; }
}

/* ====================================================
   ADDITIONAL STYLES FOR MULTI-PAGE SITE
   ==================================================== */

/* Breadcrumbs */
.breadcrumbs {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
}
.breadcrumbs-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.breadcrumbs a {
  color: var(--blue);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.breadcrumbs a:hover { border-bottom-color: var(--blue); }
.breadcrumbs .sep { color: var(--ink-muted); }
.breadcrumbs .current { color: var(--ink); font-weight: 600; }

/* Page hero (used on About, Contact, FAQ, Services index, Service-area index) */
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(12, 158, 170, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(7, 109, 178, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin: 0 auto 18px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.page-hero h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
}
.page-hero .page-lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-hero { padding: 50px 0 36px; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 38px); }
  .page-hero .page-lede { font-size: 15.5px; }
}

/* Card grid (services index, service-area index) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 1100px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .card-grid { grid-template-columns: 1fr; } }

.idx-card {
  background: var(--warm-white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}
.idx-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
  border-radius: 18px 18px 0 0;
  transition: height 0.3s ease;
}
.idx-card:nth-child(even)::before { background: var(--teal); }
.idx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(7, 109, 178, 0.12);
  border-color: var(--blue-soft);
}
.idx-card:hover::before { height: 8px; }
.idx-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.idx-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--blue);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.idx-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.idx-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.idx-card .arrow-link::after {
  content: '→';
  transition: transform 0.3s;
}
.idx-card:hover .arrow-link::after { transform: translateX(4px); }

/* Service subpage layout */
.service-content {
  padding: 80px 0;
}
.service-content .wrap {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1000px) {
  .service-content .wrap { grid-template-columns: 1fr; gap: 40px; }
}
.service-prose {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
}
.service-prose h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin: 40px 0 18px;
  line-height: 1.2;
  color: var(--blue);
}
.service-prose h2:first-child { margin-top: 0; }
.service-prose h3 {
  font-size: 22px;
  margin: 30px 0 12px;
  color: var(--blue);
  font-family: 'DM Serif Display', serif;
}
.service-prose p {
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.service-prose ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.service-prose ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.55;
}
.service-prose ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  background: var(--teal-soft);
  color: var(--teal-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.service-prose a.in-text {
  color: var(--teal-deep);
  border-bottom: 1px dashed var(--teal);
}

/* Sticky aside (form box) */
.service-aside {
  position: sticky;
  top: 100px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(7, 109, 178, 0.08);
}
.service-aside h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-aside p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.55;
}
.service-aside .btn-primary {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}
.service-aside .aside-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--blue);
  padding: 12px;
  text-align: center;
  border: 1.5px solid var(--blue-soft);
  border-radius: 100px;
  transition: all 0.3s;
}
.service-aside .aside-phone:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
}
.service-aside .aside-phone svg { width: 22px; height: 22px; color: var(--blue); }

/* Related grid (sibling cards) */
.related-grid {
  padding: 80px 0;
  background: var(--cream);
}
.related-grid h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
  color: var(--blue);
}
.related-grid .related-lede {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 50px;
}
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1000px) { .related-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .related-cards { grid-template-columns: 1fr; } }
.related-card {
  background: var(--warm-white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(7, 109, 178, 0.1);
  border-color: var(--teal-light);
}
.related-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 10px;
}
.related-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.2;
}
.related-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.related-card-link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related-card-link::after { content: '→'; transition: transform 0.3s; }
.related-card:hover .related-card-link::after { transform: translateX(3px); }

/* Mobile nav drawer (proper slide-in) */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 105;
  overflow-y: auto;
  padding: 80px 24px 100px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg { width: 28px; height: 28px; }
body.nav-open { overflow: hidden; }

.mobile-nav-group { border-bottom: 1px solid var(--line); }
.mobile-nav-group > a,
.mobile-nav-group > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.mobile-nav-group .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 14px;
}
.mobile-nav-group.open .submenu {
  max-height: 600px;
  padding-bottom: 12px;
}
.mobile-nav-group .submenu a {
  display: block;
  padding: 10px 6px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
}
.mobile-nav-group .submenu a:hover { color: var(--teal-deep); }
.mobile-nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 100px;
  font-weight: 600;
}

/* Contact page specific */
.contact-section {
  padding: 80px 0;
}
.contact-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
@media (max-width: 1000px) {
  .contact-section .wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* Hide CTA section when on contact page (form already there) */

