/* ==========================================================================
   Hall's Plumbing, LLC
   Palette sampled directly from the company logo:
     navy   #131A2B   (logo background)
     silver #C3C2C4   (logo lettering)
     sky    #91BDEA   (logo speed-bar) — accent only
   ========================================================================== */

:root {
  --navy-950: #070B14;
  --navy-900: #0B1120;
  --navy-850: #0E1422;
  --navy-800: #131A2B;
  --navy-700: #1B2336;
  --navy-600: #273149;
  --navy-500: #3A4661;

  --silver-050: #FAFBFC;
  --silver-100: #F1F2F5;
  --silver-200: #DEE0E5;
  --silver-300: #C3C2C4;
  --silver-400: #A6A8AF;
  --silver-500: #7E838F;
  --silver-600: #5A6070;

  --sky: #91BDEA;
  --sky-dim: #6E9CCB;

  --ink: #131A2B;
  --body: #4A5163;
  --paper: #FFFFFF;

  --wrap: 1180px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;

  --shadow-sm: 0 1px 2px rgba(19,26,43,.06), 0 4px 14px rgba(19,26,43,.06);
  --shadow-md: 0 2px 6px rgba(19,26,43,.08), 0 22px 48px rgba(19,26,43,.12);

  --font-head: 'Saira', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22,.7,.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 18px;
  font-family: var(--font-head); font-weight: 700; text-decoration: none;
}
.skip:focus { left: 8px; top: 8px; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.04;
  margin: 0;
  letter-spacing: -.015em;
}

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--sky);
  margin: 0 0 16px;
}
.eyebrow-dark { color: var(--silver-500); }

/* ── reveal on scroll ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.shown { opacity: 1; transform: none; }
.cards .card:nth-child(2) { transition-delay: .06s; }
.cards .card:nth-child(3) { transition-delay: .12s; }
.cards .card:nth-child(5) { transition-delay: .06s; }
.cards .card:nth-child(6) { transition-delay: .12s; }
.trust-item:nth-child(2) { transition-delay: .06s; }
.trust-item:nth-child(3) { transition-delay: .12s; }
.trust-item:nth-child(4) { transition-delay: .18s; }


/* ── buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 17px 32px; font-size: 1.08rem; }

/* brushed-silver button — the primary action everywhere */
.btn-metal {
  background: linear-gradient(180deg, #FFFFFF 0%, #E3E4E8 42%, var(--silver-300) 100%);
  color: var(--navy-900);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 10px 26px rgba(0,0,0,.28);
}
.btn-metal::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.75) 50%, transparent 62%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease);
}
.btn-metal:hover::after { transform: translateX(120%); }
.btn-metal:hover { box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 14px 32px rgba(0,0,0,.34); }

.btn-outline {
  background: rgba(195,194,196,.05);
  color: var(--silver-200);
  border-color: rgba(195,194,196,.30);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(195,194,196,.13); border-color: var(--silver-400); }

/* on light sections the outline button flips to ink */
.section .btn-outline, .reviews .btn-outline {
  color: var(--ink);
  border-color: var(--silver-300);
  background: #fff;
}
.section .btn-outline:hover, .reviews .btn-outline:hover {
  background: var(--silver-050); border-color: var(--silver-500);
}

.btn-primary {
  background: var(--navy-800);
  color: var(--silver-100);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-600); }

/* ── header ────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(195,194,196,.10);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(7,11,20,.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(195,194,196,.18);
  box-shadow: 0 12px 34px rgba(0,0,0,.42);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  transition: min-height .3s var(--ease);
}
.site-header.is-stuck .header-inner { min-height: 66px; }

.brand { flex: none; display: block; }
.brand img {
  height: 44px; width: auto;
  transition: height .3s var(--ease);
}
.site-header.is-stuck .brand img { height: 36px; }

.header-nav {
  display: flex;
  gap: 28px;
  margin-left: 4px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .96rem;
}
.header-nav a {
  color: var(--silver-300);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color .2s var(--ease);
}
.header-nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--sky);
  transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.header-nav a:hover { color: #fff; }
.header-nav a:hover::after { transform: scaleX(1); }

.header-cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.open-now {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .85rem; font-weight: 600; color: var(--silver-400); white-space: nowrap;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%; background: #58C98A;
  box-shadow: 0 0 0 0 rgba(88,201,138,.55);
  animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(88,201,138,.5); }
  70%  { box-shadow: 0 0 0 9px rgba(88,201,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(88,201,138,0); }
}

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--silver-200);
  overflow: hidden;
  isolation: isolate;
}
/* Glows are painted as gradients rather than blurred elements. A blur() layer
   this large is costly to composite and stalls first paint on cheap phones. */
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(52% 58% at 88% 4%, rgba(145,189,234,.26) 0%, rgba(145,189,234,0) 62%),
    radial-gradient(46% 52% at 2% 100%, rgba(195,194,196,.14) 0%, rgba(195,194,196,0) 66%),
    linear-gradient(168deg, var(--navy-700) 0%, var(--navy-900) 55%, var(--navy-950) 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(195,194,196,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195,194,196,.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(85% 75% at 28% 26%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(85% 75% at 28% 26%, #000 0%, transparent 76%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.58fr .8fr;
  gap: 54px;
  align-items: center;
  padding-block: 100px 112px;
}

.hero h1 {
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.05rem, 3.95vw, 3.2rem);
  margin-bottom: 26px;
  display: grid;
  gap: .04em;
}
.hero h1 span { display: block; }
.hero h1 .l1 { color: var(--silver-100); text-shadow: 0 2px 30px rgba(0,0,0,.4); }
.hero h1 .l2 { color: var(--silver-100); text-shadow: 0 2px 30px rgba(0,0,0,.4); }
/* the payoff line, rendered as brushed silver like the logo lettering */
.hero h1 .l3 {
  background: linear-gradient(176deg, #FFFFFF 0%, #DCDEE3 36%, var(--silver-300) 62%, #8A8E98 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lede {
  font-size: 1.16rem;
  line-height: 1.62;
  color: var(--silver-300);
  max-width: 52ch;
  margin: 0 0 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips li {
  font-size: .86rem; font-weight: 600; color: var(--silver-300);
  background: rgba(195,194,196,.07);
  border: 1px solid rgba(195,194,196,.17);
  padding: 8px 15px; border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* glass card */
.hero-card {
  background: linear-gradient(168deg, rgba(255,255,255,.085) 0%, rgba(255,255,255,.028) 100%);
  border: 1px solid rgba(195,194,196,.20);
  border-radius: var(--r-lg);
  padding: 32px 32px 26px;
  box-shadow: 0 34px 80px rgba(0,0,0,.42), 0 1px 0 rgba(255,255,255,.10) inset;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rating {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  padding-bottom: 20px; border-bottom: 1px solid rgba(195,194,196,.16);
}
.stars { color: #F2B23E; font-size: 1.12rem; letter-spacing: .06em; }
.stars .half { opacity: .42; }
.rating strong { font-family: var(--font-head); font-size: 1.55rem; color: #fff; line-height: 1; }
.rating-meta { font-size: .85rem; color: var(--silver-400); }

.facts { margin: 22px 0 22px; padding: 0; }
.facts > div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 10px 0; border-bottom: 1px dashed rgba(195,194,196,.14);
}
.facts > div:last-child { border-bottom: 0; }
.facts dt {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .13em;
  font-weight: 700; color: var(--silver-500); flex: none;
}
.facts dd { margin: 0; font-size: .94rem; font-weight: 600; color: var(--silver-100); text-align: right; }

.card-call {
  display: block; text-align: center; font-family: var(--font-head);
  font-weight: 700; font-size: .95rem; color: var(--sky);
  text-decoration: none; padding-top: 8px;
  transition: color .2s var(--ease);
}
.card-call:hover { color: #fff; }

/* the logo's speed-bar, reused as a divider */
.speedbar {
  height: 12px;
  background-image:
    linear-gradient(90deg, var(--sky) 0 38%, transparent 38%),
    repeating-linear-gradient(90deg, var(--sky) 0 11px, transparent 11px 22px);
  mask-image: linear-gradient(90deg, #000 0%, #000 52%, rgba(0,0,0,.55) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 52%, rgba(0,0,0,.55) 82%, transparent 100%);
}

/* ── stat band ─────────────────────────────────────────────────────────── */
.trust { background: var(--navy-950); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-block: 34px; }
.trust-item { text-align: center; }
.trust-item strong {
  display: block; font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: 2.2rem; line-height: 1;
  background: linear-gradient(176deg, #FFFFFF 0%, var(--silver-300) 60%, #8A8E98 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.trust-item span {
  display: block; margin-top: 8px; font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--silver-500); font-weight: 600;
}

/* ── generic section ───────────────────────────────────────────────────── */
.section { padding-block: 98px; }
.section-tint { background: var(--silver-050); border-block: 1px solid var(--silver-200); }

.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head h2 {
  font-size: clamp(2rem, 3.7vw, 2.95rem);
  font-weight: 700; font-style: italic; text-transform: uppercase;
}
.h2-sm { font-size: clamp(1.6rem, 2.7vw, 2.15rem); font-weight: 700; font-style: italic; text-transform: uppercase; }
.section-sub { font-size: 1.1rem; margin: 18px 0 0; color: var(--silver-600); }

/* ── service cards ─────────────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper);
  border: 1px solid var(--silver-200);
  border-radius: var(--r-md);
  padding: 32px 28px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease), opacity .6s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--silver-300);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-850));
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(19,26,43,.22);
}
.card-icon svg { width: 26px; height: 26px; fill: var(--sky); }
.card h3 { font-size: 1.26rem; font-weight: 700; margin-bottom: 10px; }
.card p { margin: 0; font-size: .97rem; color: var(--silver-600); }

/* ── reviews band ──────────────────────────────────────────────────────── */
.reviews {
  background: var(--paper);
  border-bottom: 1px solid var(--silver-200);
  padding-block: 84px;
}
.reviews-inner {
  display: grid;
  grid-template-columns: minmax(200px, .55fr) 1.45fr;
  gap: 56px;
  align-items: center;
}
.reviews-score {
  text-align: center;
  background: linear-gradient(170deg, var(--navy-700), var(--navy-900));
  border-radius: var(--r-lg);
  padding: 38px 26px 32px;
  box-shadow: var(--shadow-md);
}
.reviews-score .big {
  display: block; font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: 4.2rem; line-height: 1;
  background: linear-gradient(176deg, #FFFFFF 0%, var(--silver-300) 62%, #8A8E98 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.stars.lg { display: block; font-size: 1.35rem; margin-top: 10px; }
.reviews-score .count {
  display: block; margin-top: 12px; font-size: .8rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--silver-400); font-weight: 600;
}
.reviews-copy .eyebrow { color: var(--silver-500); }
.reviews-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  margin-bottom: 16px;
}
.reviews-copy p { margin: 0 0 24px; font-size: 1.05rem; max-width: 56ch; }

/* ── emergency tip ─────────────────────────────────────────────────────── */
.tip { display: grid; grid-template-columns: 1.5fr .8fr; gap: 58px; align-items: center; }
.tip-steps { margin: 26px 0 0; padding-left: 22px; display: grid; gap: 14px; }
.tip-steps li { font-size: 1rem; }
.tip-steps strong { color: var(--ink); }
.tip-steps li::marker { color: var(--sky-dim); font-weight: 700; font-family: var(--font-head); }

.tip-call {
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(165deg, var(--navy-700), var(--navy-900));
  border-radius: var(--r-lg); padding: 38px 26px;
  box-shadow: var(--shadow-md);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), opacity .6s var(--ease);
}
.tip-call:hover { transform: translateY(-4px); box-shadow: 0 26px 56px rgba(19,26,43,.24); }
.tip-call span {
  display: block; font-size: .76rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--sky); font-weight: 700;
}
.tip-call strong {
  display: block; font-family: var(--font-head); font-style: italic; font-weight: 800;
  font-size: 1.9rem; color: var(--silver-100); margin: 12px 0 10px; line-height: 1;
}
.tip-call-sub { color: var(--silver-500) !important; letter-spacing: .09em !important; }

/* ── about ─────────────────────────────────────────────────────────────── */
.section-dark { background: var(--navy-800); color: var(--silver-300); position: relative; overflow: hidden; }
.section-dark h2 { color: var(--silver-100); }
.about { display: grid; grid-template-columns: 1.6fr .7fr; gap: 64px; align-items: center; }
.about h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700; font-style: italic; text-transform: uppercase; margin-bottom: 22px;
}
.about p { font-size: 1.06rem; margin: 0 0 18px; color: var(--silver-300); }
.about-sign {
  margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(195,194,196,.18);
  font-family: var(--font-head); font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; font-size: .82rem; color: var(--silver-400);
}
.about-badge svg { width: 100%; max-width: 210px; margin-inline: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,.4)); }

/* ── service area ──────────────────────────────────────────────────────── */
.areas { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 42px; }
.area-col h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase; font-style: italic;
  margin-bottom: 16px; padding-bottom: 14px; border-bottom: 2px solid var(--silver-200);
}
.flagtag {
  font-size: .72rem; font-style: normal; letter-spacing: .08em;
  background: var(--navy-800); color: var(--silver-200);
  padding: 4px 9px; border-radius: 6px;
}
.area-col ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 22px; }
.area-col li { padding: 6px 0; font-size: .97rem; break-inside: avoid; }
.area-note {
  background: var(--silver-050); border: 1px solid var(--silver-200);
  border-radius: var(--r-md); padding: 30px 28px; align-self: start;
}
.area-note p { margin: 0 0 22px; font-size: 1rem; }
.area-note strong { color: var(--ink); }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.faq-wrap .section-head { margin-bottom: 38px; }
.faq { max-width: 820px; border-top: 1px solid var(--silver-200); }
.faq details { border-bottom: 1px solid var(--silver-200); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); padding: 20px 44px 20px 0; position: relative;
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--silver-500); border-bottom: 2px solid var(--silver-500);
  transform: rotate(45deg);
  transition: transform .3s var(--ease), border-color .2s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--sky-dim); }
.faq summary:hover::after { border-color: var(--sky-dim); }
.faq details p { margin: 0 0 22px; max-width: 68ch; font-size: 1rem; }

/* ── cta band ──────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(120deg, var(--navy-950) 0%, var(--navy-700) 100%);
  color: var(--silver-200);
  padding-block: 78px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; width: 520px; height: 520px;
  right: -160px; top: -200px; border-radius: 50%; filter: blur(90px);
  background: radial-gradient(circle, rgba(145,189,234,.30) 0%, transparent 70%);
}
.cta-inner {
  display: flex; flex-wrap: wrap; gap: 34px;
  align-items: center; justify-content: space-between;
  position: relative;
}
.cta-band h2 {
  color: var(--silver-100);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 700; font-style: italic; text-transform: uppercase; margin-bottom: 10px;
}
.cta-band p { margin: 0; color: var(--silver-400); font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy-950); color: var(--silver-500); padding-block: 62px 26px; font-size: .94rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 42px; }
.footer-brand img { height: 54px; width: auto; margin-bottom: 18px; }
.footer-brand p { margin: 0 0 10px; max-width: 34ch; }
.footer-brand .cred {
  font-family: var(--font-head); font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; font-size: .74rem; color: var(--silver-600);
}
.footer-col h4 {
  color: var(--silver-300); font-size: .78rem; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 14px;
}
.footer-col h4.mt { margin-top: 28px; }
.footer-col p { margin: 0 0 9px; }
.footer-col a { color: var(--silver-400); text-decoration: none; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--sky); }
.footer-base {
  border-top: 1px solid rgba(195,194,196,.12); padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .82rem; color: var(--silver-600);
}

/* ── sticky mobile call bar ────────────────────────────────────────────── */
.call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E3E4E8 42%, var(--silver-300) 100%);
  color: var(--navy-900);
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem;
  text-decoration: none;
  padding: 15px 16px calc(15px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 26px rgba(0,0,0,.26);
}
.call-bar svg { width: 19px; height: 19px; fill: currentColor; }

/* ── responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-block: 70px 78px; }
  .hero-card { max-width: 520px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews-inner { grid-template-columns: 1fr; gap: 36px; }
  .reviews-score { max-width: 300px; }
  .tip { grid-template-columns: 1fr; gap: 38px; }
  .about { grid-template-columns: 1fr; gap: 42px; }
  .about-badge { order: -1; }
  .about-badge svg { max-width: 130px; margin-inline: 0; }
  .areas { grid-template-columns: 1fr 1fr; }
  .area-note { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .section, .reviews { padding-block: 64px; }
  .header-inner { min-height: 64px; gap: 14px; }
  .site-header.is-stuck .header-inner { min-height: 58px; }
  .brand img, .site-header.is-stuck .brand img { height: 34px; }
  .open-now { display: none; }
  .btn-metal { padding: 11px 16px; font-size: .92rem; }
  .cards { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: 28px 10px; }
  .areas { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-actions, .hero-actions { width: 100%; }
  .cta-actions .btn, .hero-actions .btn { width: 100%; }
  .call-bar { display: flex; }
  .site-footer { padding-bottom: 88px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* "Also:" line under the services grid */
.also {
  margin: 30px 0 0;
  font-size: 1rem;
  color: var(--silver-600);
  max-width: 74ch;
  padding: 18px 22px;
  border: 1px dashed var(--silver-300);
  border-radius: var(--r-md);
  background: var(--silver-050);
}
.also strong { color: var(--ink); }
.also a { color: var(--sky-dim); font-weight: 600; }
.also a:hover { color: var(--ink); }

/* ── well work ─────────────────────────────────────────────────────────── */
.wells {
  background: linear-gradient(150deg, var(--navy-800) 0%, var(--navy-950) 100%);
  color: var(--silver-300);
  padding-block: 96px;
  position: relative;
  overflow: hidden;
}
.wells::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(48% 60% at 84% 8%, rgba(145,189,234,.20) 0%, rgba(145,189,234,0) 66%);
  pointer-events: none;
}
.wells-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 62px;
  align-items: start;
  position: relative;
}
.wells-copy h2 {
  color: var(--silver-100);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700; font-style: italic; text-transform: uppercase;
  margin-bottom: 20px;
}
.wells-lede { font-size: 1.1rem; color: var(--silver-200); }
.wells-copy p { margin: 0 0 18px; max-width: 54ch; }
.wells-copy .btn { margin-top: 10px; }

.wells-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.wells-list li {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(195,194,196,.14);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.wells-list li:hover {
  background: rgba(255,255,255,.085);
  border-color: rgba(145,189,234,.42);
  transform: translateX(4px);
}
.wells-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--silver-100);
  margin-bottom: 4px;
}
.wells-list span { display: block; font-size: .95rem; color: var(--silver-400); line-height: 1.5; }

@media (max-width: 1000px) {
  .wells-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .wells { padding-block: 64px; }
  .wells-copy .btn { width: 100%; }
}

/* ── mobile menu ───────────────────────────────────────────────────────── */
/* The hamburger only exists below the desktop breakpoint. Above it the nav
   sits inline in the header as normal and this button is not rendered. */
.nav-toggle { display: none; }
.nav-call { display: none; }

@media (max-width: 1000px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 46px; height: 46px;
    border: 1px solid rgba(195,194,196,.28);
    border-radius: var(--r-sm);
    background: rgba(195,194,196,.07);
    cursor: pointer;
    flex: none;
    transition: background .2s var(--ease), border-color .2s var(--ease);
  }
  .nav-toggle:hover { background: rgba(195,194,196,.14); border-color: var(--silver-400); }

  .bars { display: grid; gap: 5px; width: 20px; }
  .bars i {
    display: block; height: 2px; width: 100%; border-radius: 2px;
    background: var(--silver-200);
    transition: transform .28s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .bars i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* the panel itself */
  .header-nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 6px 20px 18px;
    background: var(--navy-950);
    border-bottom: 1px solid rgba(195,194,196,.18);
    box-shadow: 0 22px 44px rgba(0,0,0,.5);
    /* closed state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .site-header.nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .header-nav a {
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--silver-200);
    padding: 15px 4px;
    border-bottom: 1px solid rgba(195,194,196,.12);
  }
  .header-nav a::after { display: none; }
  .header-nav a:active { color: #fff; }

  .nav-call {
    display: block;
    margin-top: 14px;
    text-align: center;
    border-bottom: 0 !important;
    background: linear-gradient(180deg, #FFFFFF 0%, #E3E4E8 42%, var(--silver-300) 100%);
    color: var(--navy-900) !important;
    border-radius: var(--r-sm);
    padding: 15px 18px !important;
    font-family: var(--font-head);
    font-weight: 700;
  }

  .site-header { position: sticky; }
}

@media (max-width: 640px) {
  .nav-toggle { width: 42px; height: 42px; }
}

/* ── the wide "wells" card that leads the services grid ────────────────── */
.card-wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  margin-bottom: 22px;
  border-color: var(--silver-300);
  background: linear-gradient(120deg, #fff 0%, var(--silver-050) 100%);
}
.card-wide::before { background: linear-gradient(90deg, var(--sky), var(--sky-dim), transparent); }
.card-wide .card-icon { margin-bottom: 0; width: 60px; height: 60px; }
.card-wide .card-icon svg { width: 29px; height: 29px; }
.card-wide-body h3 { margin-bottom: 8px; }
.card-wide-body p { margin: 0; font-size: 1rem; color: var(--silver-600); max-width: 68ch; }
.card-wide-body strong { color: var(--ink); }
.card-wide-go {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--sky-dim);
  white-space: nowrap;
  transition: transform .25s var(--ease), color .2s var(--ease);
}
.card-wide:hover .card-wide-go { color: var(--ink); transform: translateX(4px); }

@media (max-width: 1000px) {
  .card-wide { grid-template-columns: auto 1fr; }
  .card-wide-go { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .card-wide { grid-template-columns: 1fr; gap: 16px; }
  .card-wide .card-icon { margin-bottom: 0; }
}
