/* ==========================================================================
   JD's Plumbing, LLC — global.css
   Shared design system. Linked from every page.
   ========================================================================== */

/* ─── Design Tokens ─── */
:root {
  --navy:      #0d1b2a;
  --navy-2:    #162336;
  --navy-deep: #080f17;
  --teal:      #0f7a6e;
  --teal-l:    #13a394;
  --gold:      #c9a84c;
  --gold-l:    #e0bf72;
  --cream:     #f5f1eb;
  --white:     #ffffff;
  --gray:      #6b7280;
  --light:     #f8f7f4;
  --border-light: rgba(13, 27, 42, 0.08);
  --border-dark:  rgba(255, 255, 255, 0.08);
  --shadow-md:    0 20px 60px rgba(13, 27, 42, 0.15);
  --shadow-lg:    0 32px 80px rgba(0, 0, 0, 0.5);
  --r-sm: 6px;
  --r-md: 8px;
  --r:    12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --container: 1160px;
  --gutter: 24px;
  --nav-h: 68px;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--light);
  color: var(--navy);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--navy); color: var(--white);
  padding: 8px 16px; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── Animations ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .60s; }
.d1 { animation-delay: .10s; }
.d2 { animation-delay: .22s; }
.d3 { animation-delay: .34s; }
.d4 { animation-delay: .46s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── NAV ─── */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0 var(--gutter);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: .875rem; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--gold-l); }
.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 9px 20px; border-radius: var(--r-sm);
  font-weight: 600; transition: background .2s;
}
.nav-cta:hover { background: var(--teal-l); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Breadcrumb ─── */
.breadcrumb {
  background: var(--navy-deep);
  padding: calc(var(--nav-h) + 20px) var(--gutter) 20px;
  border-bottom: 1px solid var(--border-dark);
}
.breadcrumb-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-inner a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
}
.breadcrumb-inner a:hover { color: var(--gold-l); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.3); }
.breadcrumb-current { color: var(--gold-l); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px var(--gutter) 80px;
}
.hero.hero-inner-page { min-height: auto; padding: 80px var(--gutter); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(15, 122, 110, .22) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(201, 168, 76, .08) 0%, transparent 60%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg,
    rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px,
    transparent 1px, transparent 60px);
}
.hero-inner {
  max-width: var(--container); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-inner.single-col { grid-template-columns: 1fr; text-align: center; }
.hero-inner.single-col .hero-desc { margin-left: auto; margin-right: auto; }
.hero-inner.single-col .hero-actions { justify-content: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201, 168, 76, .12);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold-l);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero-badge-dot, .badge-dot {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
}
.hero h1 em { color: var(--teal-l); font-style: normal; }
.hero p, .hero-desc {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 500;
  padding: 6px 12px; border-radius: 100px;
}
.pill svg { color: var(--teal-l); }

/* ─── Buttons ─── */
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 15px 30px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none;
}
.btn-primary:hover { background: var(--teal-l); transform: translateY(-1px); }
.btn-outline, .btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: var(--white);
  padding: 15px 30px; border-radius: var(--r);
  font-weight: 500; font-size: 1rem;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover, .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .05);
}

/* ─── Hero Media ─── */
.hero-media-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #0a1520;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .1);
}
.hero-media-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-media-thumb {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(15, 122, 110, .35) 0%, rgba(13, 27, 42, .6) 50%, rgba(0, 0, 0, .7) 100%),
    repeating-linear-gradient(45deg,
      rgba(255, 255, 255, .015) 0, rgba(255, 255, 255, .015) 1px,
      transparent 1px, transparent 32px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.hero-media-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 22px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, transparent 100%);
  display: flex; align-items: flex-end; justify-content: space-between;
  z-index: 2;
}
.hero-media-caption-text {
  font-size: .82rem;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}
.hero-media-badge {
  background: rgba(201, 168, 76, .2);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold-l);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 20px var(--gutter);
}
.trust-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem; font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider, .tdiv {
  width: 1px; height: 28px;
  background: var(--border-dark);
}

/* ─── Section Headers ─── */
.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--gray);
  max-width: 560px;
  font-size: 1rem;
}

/* ─── Services Grid ─── */
.services {
  padding: 96px var(--gutter);
  background: var(--light);
}
.services.alt { background: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 36px 30px;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-l));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(15, 122, 110, .12), rgba(15, 122, 110, .04));
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { color: var(--teal); }
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  color: var(--gray);
  font-size: .9rem;
  margin-bottom: 20px;
}
.service-link {
  color: var(--teal);
  font-weight: 600; font-size: .875rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.service-card:hover .service-link { gap: 10px; }

/* ─── How It Works ─── */
.how-it-works {
  padding: 96px var(--gutter);
  background: var(--navy);
  position: relative; overflow: hidden;
}
.how-it-works::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(15, 122, 110, .12) 0%, transparent 70%);
}
.how-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto;
}
.how-header { text-align: center; margin-bottom: 64px; }
.how-header .section-title { color: var(--white); }
.how-header .section-sub {
  color: rgba(255, 255, 255, .55);
  margin: 0 auto;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; position: relative;
}
.steps-grid.four-col { grid-template-columns: repeat(4, 1fr); }
.steps-grid::before {
  content: ''; position: absolute; top: 32px;
  left: calc(16.66% + 20px); right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--teal), transparent 50%, var(--teal));
  opacity: .3;
}
.step { text-align: center; padding: 0 16px; }
.step-number {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--teal), var(--teal-l));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(15, 122, 110, .15);
}
.step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 10px; }
.step p { color: rgba(255, 255, 255, .55); font-size: .9rem; }

/* ─── Why JD / Credentials / Values / Our Story ─── */
.why-jd, .credentials, .values-section {
  padding: 96px var(--gutter);
  background: var(--cream);
}
.why-jd.alt { background: var(--white); }
.credentials.alt { background: var(--light); }
.values-section.alt { background: var(--light); }
.why-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-text .section-title { margin-bottom: 20px; }
.why-text p { color: var(--gray); margin-bottom: 32px; }
.why-image {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
  background: var(--navy);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-header {
  max-width: var(--container); margin: 0 auto 56px;
  text-align: center;
}
.why-header .section-sub { margin: 0 auto; }
.why-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(15, 122, 110, .12), rgba(15, 122, 110, .04));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.why-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

.why-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 36px;
}
.stat-box {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px 20px; text-align: center;
  border: 1px solid rgba(13, 27, 42, .06);
}
.stat-number, .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--teal); line-height: 1;
}
.stat-label {
  color: var(--gray);
  font-size: .8rem; margin-top: 6px;
}

.differentiators {
  display: flex; flex-direction: column; gap: 16px;
}
.diff-item { display: flex; align-items: flex-start; gap: 14px; }
.diff-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--teal-l));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.diff-check svg { color: var(--white); }
.diff-item strong {
  color: var(--navy); display: block;
  font-size: .95rem; margin-bottom: 2px;
}
.diff-item span { color: var(--gray); font-size: .85rem; }

/* Our Story */
.our-story { padding: 96px var(--gutter); background: var(--light); }
.story-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.story-content p { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 18px; }
.story-content p strong { color: var(--navy); font-weight: 600; }
.story-content .btn-primary { margin-top: 20px; }
.story-visual-inner {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.story-visual-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(15, 122, 110, .2) 0%, transparent 70%);
}
.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; line-height: 1.4;
  color: var(--white); margin-bottom: 16px;
  position: relative; z-index: 1;
  font-weight: 600; font-style: italic;
}
.story-attribution {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.story-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; position: relative; z-index: 1;
}
.story-stats .stat-box {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-md);
  padding: 20px 16px; text-align: center;
}
.story-stats .stat-num { font-size: 1.8rem; color: var(--gold-l); }
.story-stats .stat-label { color: rgba(255, 255, 255, .6); font-size: .75rem; }

/* Credentials grid */
.cred-inner { max-width: var(--container); margin: 0 auto; }
.cred-header { text-align: center; margin-bottom: 56px; }
.cred-header .section-sub { margin: 0 auto; }
.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.cred-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cred-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-l));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.cred-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.cred-card p { color: var(--gray); font-size: .85rem; line-height: 1.65; }

/* Timeline */
.timeline-section {
  padding: 96px var(--gutter);
  background: var(--navy);
  position: relative; overflow: hidden;
}
.timeline-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(15, 122, 110, .12) 0%, transparent 70%);
}
.timeline-header {
  max-width: var(--container); margin: 0 auto 64px;
  text-align: center; position: relative; z-index: 1;
}
.timeline-header .section-title { color: var(--white); }
.timeline-header .section-sub { color: rgba(255, 255, 255, .55); margin: 0 auto; }
.timeline { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.tl-item {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; align-items: center; margin-bottom: 40px;
}
.tl-left, .tl-right { padding: 24px 28px; }
.tl-item:not(.flipped) .tl-left,
.tl-item.flipped .tl-right {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-lg);
}
.tl-item:not(.flipped) .tl-left { text-align: right; }
.tl-item.flipped .tl-right { text-align: left; }
.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--gold-l); margin-bottom: 6px;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.tl-desc { color: rgba(255, 255, 255, .6); font-size: .9rem; line-height: 1.6; }
.tl-center { display: flex; justify-content: center; position: relative; }
.tl-center::before {
  content: ''; position: absolute;
  top: -60px; bottom: -60px; left: 50%;
  width: 1px; background: rgba(255, 255, 255, .1);
  transform: translateX(-50%);
}
.tl-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, .2);
  position: relative; z-index: 1;
}

/* Values */
.values-inner { max-width: var(--container); margin: 0 auto; }
.values-header { text-align: center; margin-bottom: 56px; }
.values-header .section-sub { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow .25s;
}
.value-card:hover { box-shadow: var(--shadow-md); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--teal); line-height: 1;
  flex-shrink: 0; opacity: .5;
}
.value-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { color: var(--gray); font-size: .9rem; line-height: 1.65; }

/* ─── Reviews ─── */
.reviews, .reviews-strip {
  padding: 96px var(--gutter);
  background: var(--white);
}
.reviews-strip.alt { background: var(--light); }
.reviews-header, .reviews-strip-inner { text-align: center; margin-bottom: 56px; }
.reviews-header .section-sub,
.reviews-strip-inner .section-sub { margin: 0 auto 40px; }
.reviews-strip-inner { max-width: var(--container); margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  text-align: left;
}
.review-card {
  background: var(--light);
  border: 1px solid rgba(13, 27, 42, .06);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .25s;
}
.reviews-strip .review-card { background: var(--white); border-color: var(--border-light); }
.review-card:hover { box-shadow: var(--shadow-md); }
.stars {
  color: var(--gold);
  font-size: 1rem; margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  color: var(--navy);
  font-size: .9rem; line-height: 1.7;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: .9rem;
}
.author-name { color: var(--navy); font-weight: 600; font-size: .875rem; }
.author-city { color: var(--gray); font-size: .78rem; }
.reviews-cta { text-align: center; margin-top: 40px; }

/* ─── Service Area ─── */
.service-area {
  padding: 96px var(--gutter);
  background: var(--cream);
}
.service-area.alt { background: var(--light); }
.area-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.area-text .section-title { margin-bottom: 16px; }
.area-text p { color: var(--gray); margin-bottom: 32px; }
.city-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 24px;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 10px 16px;
  font-size: .875rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  color: var(--navy);
  transition: border-color .2s, background .2s;
}
.city-pill:hover { border-color: var(--teal); background: rgba(15, 122, 110, .04); }
.city-pill svg { color: var(--teal); flex-shrink: 0; }
.city-pill.home { border-color: var(--gold); }
.city-pill.home svg { color: var(--gold); }
.map-embed {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 420px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ─── FAQ ─── */
.faq {
  padding: 96px var(--gutter);
  background: var(--white);
}
.faq.alt { background: var(--light); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-sub { margin: 0 auto; }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.faq-grid.single { grid-template-columns: 1fr; }
.faq-item {
  background: var(--light);
  border: 1px solid rgba(13, 27, 42, .06);
  border-radius: var(--r);
  overflow: hidden;
}
.faq.alt .faq-item { background: var(--white); border-color: var(--border-light); }
.faq-q {
  padding: 20px 22px;
  font-weight: 600; font-size: .9rem;
  color: var(--navy);
  background: none; border: none;
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q svg {
  flex-shrink: 0;
  color: var(--teal);
  transition: transform .2s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 22px;
  color: var(--gray);
  font-size: .875rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 22px 20px; }

/* ─── Final CTA ─── */
.cta-section {
  padding: 96px var(--gutter);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #0a1a28 100%);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(15, 122, 110, .18) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 40px;
  font-size: 1rem;
}
.cta-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 16px 32px; border-radius: var(--r);
  font-weight: 700; font-size: 1.1rem;
  transition: background .2s, transform .15s;
}
.phone-link:hover { background: var(--gold-l); transform: translateY(-1px); }
.cta-quote {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  padding: 16px 32px; border-radius: var(--r);
  font-weight: 500;
  transition: border-color .2s, background .2s;
}
.cta-quote:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .06);
}

/* ─── Content Block (service/blog pages) ─── */
.content-block { padding: 80px var(--gutter); background: var(--white); }
.content-block.alt { background: var(--light); }
.content-inner { max-width: 760px; margin: 0 auto; }
.content-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin: 48px 0 16px;
}
.content-inner h2:first-child { margin-top: 0; }
.content-inner h3 { font-size: 1.3rem; color: var(--navy); margin: 32px 0 12px; }
.content-inner p,
.content-inner ul,
.content-inner ol {
  color: var(--navy);
  font-size: 1rem; line-height: 1.75;
  margin-bottom: 20px;
}
.content-inner ul,
.content-inner ol { padding-left: 24px; }
.content-inner li { margin-bottom: 8px; }
.content-inner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-inner a:hover { color: var(--teal-l); }
.content-inner img { border-radius: var(--r-lg); margin: 32px 0; }
.content-inner blockquote {
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-style: italic;
}

/* ─── Contact Form ─── */
.contact-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 36px 32px;
}
.contact-card-title { color: var(--white); font-size: 1.4rem; margin-bottom: 8px; }
.contact-card-sub { color: rgba(255, 255, 255, .5); font-size: .9rem; margin-bottom: 24px; }
.cform { display: flex; flex-direction: column; gap: 12px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform-group { display: flex; flex-direction: column; gap: 4px; }
.cform label {
  color: rgba(255, 255, 255, .85);
  font-size: .8rem; font-weight: 500;
}
.cform input,
.cform select,
.cform textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cform input::placeholder,
.cform textarea::placeholder { color: rgba(255, 255, 255, .35); }
.cform input:focus,
.cform select:focus,
.cform textarea:focus { border-color: var(--teal-l); }
.cform select option { background: var(--navy-2); color: var(--white); }
.cform textarea { resize: vertical; min-height: 80px; }
.cform-btn {
  background: var(--gold); color: var(--navy);
  padding: 14px;
  border-radius: var(--r-md);
  font-weight: 700; font-size: 1rem;
  border: none;
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.cform-btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.cform-note {
  color: rgba(255, 255, 255, .4);
  font-size: .75rem; text-align: center;
  margin-top: 4px;
}
.cform-success {
  display: none;
  text-align: center; padding: 40px 20px;
}
.cform-success.visible { display: block; }
.cform-success .check-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-l));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.cform-success h3 { color: var(--white); margin-bottom: 8px; }
.cform-success p { color: rgba(255, 255, 255, .6); font-size: .9rem; }

/* Contact details cards */
.contact-details { padding: 96px var(--gutter); background: var(--light); }
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 48px;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .25s, box-shadow .25s;
}
.detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.detail-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(15, 122, 110, .12), rgba(15, 122, 110, .04));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}
.detail-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.detail-card p { color: var(--gray); font-size: .9rem; margin-bottom: 16px; line-height: 1.65; }
.detail-link {
  color: var(--teal);
  font-weight: 600; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.detail-card:hover .detail-link { gap: 10px; }

/* Hours & Emergency */
.hours-section { padding: 96px var(--gutter); background: var(--white); }
.hours-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hours-table {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 8px 0;
  margin-top: 24px;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--navy); font-weight: 600; font-size: .9rem; }
.hours-time { color: var(--gray); font-size: .9rem; }
.hours-row.today { background: rgba(15, 122, 110, .04); }
.hours-row.today .hours-day { color: var(--teal); }

.emergency-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--r-lg);
  padding: 40px 36px;
  color: var(--white);
  position: relative; overflow: hidden;
}
.emergency-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 30%, rgba(201, 168, 76, .15) 0%, transparent 70%);
}
.emergency-box > * { position: relative; z-index: 1; }
.emergency-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-l);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.emergency-box h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.emergency-box p {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem; margin-bottom: 24px;
}

/* Related services */
.related { padding: 96px var(--gutter); background: var(--cream); }
.related-inner { max-width: var(--container); margin: 0 auto; }
.related-header { text-align: center; margin-bottom: 48px; }
.related-header .section-sub { margin: 0 auto; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.related-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .25s, box-shadow .25s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card .service-icon { margin-bottom: 4px; }
.related-card h3 { font-size: 1rem; color: var(--navy); }
.related-card p { color: var(--gray); font-size: .85rem; line-height: 1.6; flex: 1; }
.related-card .service-link { font-size: .85rem; }

/* Blog listing */
.blog-listing { padding: 80px var(--gutter); background: var(--white); }
.blog-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  position: relative; overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta {
  display: flex; align-items: center; gap: 12px;
  color: var(--gray); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .05em; font-weight: 600;
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray); }
.blog-card h3 {
  font-size: 1.2rem; color: var(--navy);
  margin-bottom: 4px; line-height: 1.3;
}
.blog-card p {
  color: var(--gray);
  font-size: .9rem; line-height: 1.6;
  flex: 1;
}
.blog-card .service-link { margin-top: auto; }

/* Gallery */
.gallery-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  position: relative;
  border: 1px solid var(--border-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 100%);
  color: var(--white);
  padding: 20px 18px 14px;
  font-size: .85rem; font-weight: 500;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(15, 122, 110, .15), rgba(13, 27, 42, .5));
  color: rgba(255, 255, 255, .4);
  font-size: .85rem;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--navy-deep);
  padding: 60px var(--gutter) 32px;
  border-top: 1px solid var(--border-dark);
}
.footer-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--white);
  margin-bottom: 14px;
}
.footer-brand .footer-logo span { color: var(--gold); }
.footer-brand p {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem; line-height: 1.65;
}
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal-l);
  font-weight: 600; margin-top: 16px;
}
.footer-phone:hover { color: var(--gold-l); }
.footer-col h4 {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  color: rgba(255, 255, 255, .45);
  font-size: .85rem; transition: color .2s;
}
.footer-col a:hover { color: var(--teal-l); }
.footer-bottom {
  max-width: var(--container); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border-dark);
}
.footer-bottom p { color: rgba(255, 255, 255, .3); font-size: .78rem; }
.footer-bottom a { color: rgba(255, 255, 255, .45); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-l); }
.footer-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border-dark);
  padding: 5px 12px; border-radius: var(--r-sm);
  color: rgba(255, 255, 255, .45);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .05em;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner, .why-inner, .area-inner, .story-grid, .hours-inner { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid, .steps-grid.four-col { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tl-item, .tl-item.flipped { grid-template-columns: 1fr; gap: 16px; }
  .tl-item .tl-left, .tl-item.flipped .tl-right { text-align: left; }
  .tl-center { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid var(--border-dark);
    padding: 8px 0; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, .05); }
  .nav-links a { display: block; padding: 14px var(--gutter); font-size: .95rem; }
  .nav-cta {
    margin: 10px var(--gutter) 6px;
    border-radius: var(--r-sm);
    display: block; text-align: center; padding: 12px;
  }
  .why-image { aspect-ratio: 16/10; max-width: 520px; margin: 0 auto; }
  .cform-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .trust-divider, .tdiv { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-stats, .story-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 92px var(--gutter) 64px; min-height: auto; }
  .services, .how-it-works, .why-jd, .reviews, .reviews-strip, .our-story, .credentials,
  .timeline-section, .values-section, .service-area, .faq, .cta-section, .contact-details,
  .hours-section, .related, .content-block, .blog-listing {
    padding: 72px var(--gutter);
  }
  .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-outline, .hero-actions .btn-ghost,
  .cta-actions .phone-link, .cta-actions .cta-quote { justify-content: center; }
}

@media print {
  nav.site-nav, .cta-section, footer.site-footer, .hero-actions { display: none; }
  body { background: var(--white); color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* ============================================================
   MEGA MENU (v3 — display-based, no opacity/visibility flicker)
   ============================================================ */

/* Top-level nav item that opens a mega panel */
.nav-links .has-mega { position: static; }
.nav-links .nav-trigger {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: .875rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}
.nav-links .nav-trigger:hover,
.nav-links .nav-trigger[aria-expanded="true"] { color: var(--gold-l); }
.nav-links .nav-trigger .chev {
  width: 11px; height: 11px;
  transition: transform .25s;
}
.nav-links .nav-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Mega panel — hidden by default, shown via .open class */
.mega-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--navy-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  z-index: 999;
  padding: 36px var(--gutter) 40px;
  animation: megaFadeIn .22s ease forwards;
}
.mega-panel.open { display: block; }

@keyframes megaFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mega-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mega-col h5 {
  color: var(--gold-l);
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dark);
}
.mega-list { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; margin: 0; }
.mega-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  color: rgba(255, 255, 255, .85);
  transition: background .18s, transform .18s;
  align-items: flex-start;
  text-decoration: none;
}
.mega-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(2px);
}
.mega-item-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, rgba(15, 122, 110, .18), rgba(15, 122, 110, .06));
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal-l);
  margin-top: 2px;
}
.mega-item-text { flex: 1; min-width: 0; }
.mega-item-title {
  display: block;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.3;
}
.mega-item-blurb {
  display: block;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
  line-height: 1.4;
}

/* Featured highlight card */
.mega-feature {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
}
.mega-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 20%, rgba(201, 168, 76, .12) 0%, transparent 70%);
}
.mega-feature > * { position: relative; z-index: 1; }
.mega-feature-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-l);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mega-feature-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
.mega-feature h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.mega-feature p {
  color: rgba(255, 255, 255, .55);
  font-size: .8rem;
  line-height: 1.55;
  margin-bottom: 16px;
}
.mega-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-l);
  font-weight: 600;
  font-size: .8rem;
  transition: gap .2s, color .2s;
}
.mega-feature-cta:hover { gap: 10px; color: var(--gold); }

/* Backdrop dim */
.mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 15, 23, 0.4);
  z-index: 998;
}
.mega-backdrop.visible { display: block; }

/* Mobile collapses to accordion */
@media (max-width: 900px) {
  .nav-links .has-mega { position: relative; }
  .nav-links .nav-trigger {
    display: flex;
    width: 100%;
    padding: 14px var(--gutter);
    font-size: .95rem;
    justify-content: space-between;
  }
  .mega-panel {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    box-shadow: none;
    padding: 0;
    animation: none;
  }
  .mega-panel.open { display: block; }
  .mega-panel-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px var(--gutter) 16px;
  }
  .mega-col { padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .04); }
  .mega-col:last-child { border-bottom: none; }
  .mega-col h5 { margin-bottom: 10px; padding-bottom: 8px; font-size: .68rem; }
  .mega-item { padding: 8px 6px; gap: 10px; }
  .mega-item-icon { width: 28px; height: 28px; }
  .mega-item-title { font-size: .88rem; }
  .mega-item-blurb { font-size: .75rem; }
  .mega-feature { padding: 18px 16px; }
  .mega-backdrop { display: none; }
}


/* ============================================================
   MOBILE MENU OVERHAUL (v4)
   Polished mobile nav: bigger tap targets, smooth open,
   scrollable, clean accordion behavior.
   ============================================================ */

@media (max-width: 900px) {
  /* Body lock when menu open */
  body.menu-open { overflow: hidden; }

  /* Nav container — slight increase in height for breathing room */
  nav.site-nav {
    padding: 0 16px;
  }
  .nav-inner { height: 64px; }

  /* Logo */
  .nav-logo { font-size: 1.15rem; }

  /* Hamburger — bigger, more visible */
  .nav-hamburger {
    display: flex !important;
    padding: 10px;
    margin: -10px -8px -10px 0;
    background: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .nav-hamburger:active,
  .nav-hamburger:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .nav-hamburger span {
    width: 26px;
    height: 2.5px;
  }

  /* Slide-down menu — full screen takeover */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0 0 100px;
    margin: 0;
    overflow-y: scroll;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    list-style: none;
    /* Ensure container always has scrollbar so layout is stable */
    scrollbar-gutter: stable;
  }
  .nav-links.open {
    display: flex;
    animation: slideDown 0.25s ease;
  }

  @keyframes slideDown {
    from { transform: translateY(-12px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
  }

  /* Each top-level item */
  .nav-links > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }
  .nav-links > li:last-child { border-bottom: none; }

  /* Regular nav links */
  .nav-links > li > a {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    width: 100%;
    min-height: 56px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a:active,
  .nav-links > li > a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-l);
  }

  /* Mega trigger button (Services / Service Area) */
  .nav-links .nav-trigger {
    display: flex;
    width: 100%;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 500;
    min-height: 56px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.92);
    text-align: left;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links .nav-trigger:hover,
  .nav-links .nav-trigger:active,
  .nav-links .nav-trigger[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-l);
  }
  .nav-links .nav-trigger .chev {
    width: 14px;
    height: 14px;
    transition: transform 0.25s;
  }

  /* Mega panel as inline accordion — display flip, no max-height tricks */
  .mega-panel {
    display: none;
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    box-shadow: none;
    padding: 0;
    animation: none;
    z-index: auto;
    /* Allow content to define its own height, no scroll clipping */
    max-height: none;
    overflow: visible;
  }
  .mega-panel.open {
    display: block;
    animation: mobileFadeIn 0.2s ease;
  }
  @keyframes mobileFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .mega-panel-inner {
    display: block;
    padding: 0;
    max-width: none;
    margin: 0;
  }

  .mega-col {
    padding: 14px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
  .mega-col:first-child { border-top: none; }

  .mega-col h5 {
    margin: 0 0 10px;
    padding: 0;
    border: none;
    color: var(--gold-l);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mega-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 8px;
    min-height: 56px;
    color: rgba(255, 255, 255, 0.92);
    transition: background 0.2s;
  }
  .mega-item:active,
  .mega-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
  }
  .mega-item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .mega-item-title {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.3;
  }
  .mega-item-blurb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
  }

  /* Feature card inside mega */
  .mega-feature {
    margin: 12px 20px;
    padding: 18px 18px 16px;
    border-radius: 12px;
  }
  .mega-feature h4 { font-size: 1rem; margin-bottom: 6px; }
  .mega-feature p { font-size: 0.85rem; margin-bottom: 14px; }
  .mega-feature-cta { font-size: 0.9rem; }

  /* CTA phone button at end of mobile menu */
  .nav-cta {
    margin: 20px 20px 8px;
    padding: 16px 24px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    font-size: 1rem !important;
    font-weight: 600;
    background: var(--gold);
    color: var(--navy) !important;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.25);
    min-height: 52px;
  }
  .nav-cta:hover,
  .nav-cta:active {
    background: var(--gold-l);
    color: var(--navy) !important;
  }

  /* No backdrop on mobile (menu is full-screen anyway) */
  .mega-backdrop { display: none !important; }
}

/* Very small screens */
@media (max-width: 400px) {
  .nav-logo { font-size: 1rem; }
  .nav-inner { height: 58px; }
  .nav-links { top: 58px; }
  .nav-links > li > a,
  .nav-links .nav-trigger {
    padding: 16px 18px;
    font-size: 0.95rem;
  }
}


/* ============================================================
   CONTENT SPLIT (2-column intro on service/city pages)
   ============================================================ */

.content-split {
  padding: 80px var(--gutter);
  background: var(--white);
}
.content-split.alt { background: var(--light); }

.content-split-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.content-split-text > h2:first-child {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
}

.content-split-text p,
.content-split-text ul,
.content-split-text ol {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}
.content-split-text ul,
.content-split-text ol {
  padding-left: 24px;
}
.content-split-text li {
  margin-bottom: 8px;
}
.content-split-text strong { color: var(--navy); font-weight: 600; }
.content-split-text a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-split-text a:hover { color: var(--teal-l); }

.content-split-media {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}
.content-split-media img,
.content-split-media picture {
  width: 100%;
  height: 100%;
  display: block;
}
.content-split-media img { object-fit: cover; }

/* Constrain following content blocks so they read better */
.content-block .content-inner {
  max-width: 760px;
}

/* Responsive */
@media (max-width: 900px) {
  .content-split-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .content-split-media {
    position: static;
    aspect-ratio: 16/10;
    order: -1;
  }
  .content-split { padding: 64px var(--gutter); }
}

@media (max-width: 600px) {
  .content-split { padding: 56px var(--gutter); }
  .content-split-inner { gap: 28px; }
}
