/* ==========================================================================
   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; }
}
