/* Plumber On Demand — design system */

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

:root {
  --navy: #0c4a8a;
  --navy-mid: #0f5ba8;
  --navy-soft: #1565b8;
  --ink: #1e293b;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --line: #e2e8f0;
  --bg: #f0f6fc;
  --bg-warm: #f8fafc;
  --white: #ffffff;
  --gold: #f97316;
  --gold-light: #fb923c;
  --teal: #0284c7;
  --teal-light: #e0f2fe;
  --warn-bg: #fef3c7;
  --warn-border: #fcd34d;
  --warn-text: #78350f;
  --font-serif: 'Barlow', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --wrap: 1140px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow: 0 4px 24px rgba(11,31,51,0.07);
  --shadow-lg: 0 20px 50px rgba(11,31,51,0.12);
  --ease: 0.2s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 7rem; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--ease), border-color var(--ease), background var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}
.skip:focus { top: 0.75rem; }

.demo-notice {
  background: #fef3c7;
  border-bottom: 1px solid #fcd34d;
  color: #78350f;
  font-size: 0.8125rem;
  line-height: 1.5;
  padding: 0.625rem 1.25rem;
  text-align: center;
}
.demo-notice strong { font-weight: 700; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.brand__mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.brand__sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 0.1rem;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}
body.nav-open .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
body.nav-open .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 0.75rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}
.nav.is-open { display: block; }
.nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav a {
  display: block;
  padding: 0.625rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  border-radius: var(--radius);
}
.nav a:hover, .nav a.is-active { color: var(--navy); background: var(--bg); }
.nav a.is-active { font-weight: 600; }

.header__cta { display: none; }

@media (min-width: 960px) {
  .menu-btn { display: none; }
  .header__inner { gap: 2rem; }
  .nav {
    display: block !important;
    position: static;
    border: none;
    padding: 0;
    box-shadow: none;
    margin-left: auto;
  }
  .nav ul { flex-direction: row; gap: 0.125rem; }
  .nav a { padding: 0.5rem 0.75rem; font-size: 0.8125rem; }
  .nav a.is-active { background: transparent; box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
  .header__cta { display: inline-flex; flex-shrink: 0; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }
.btn--gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn--gold:hover { background: #ea580c; border-color: #ea580c; color: var(--white); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline-dark:hover { border-color: var(--navy); background: var(--bg); }
.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn--block { width: 100%; }

/* ── Hero ── */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/services/drain-snaking.jpg') center/cover no-repeat;
  opacity: 0.14;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 40%, rgba(184,149,63,0.08) 100%),
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(13,100,105,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
}
.hero__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin-bottom: 0.75rem;
}
.hero__note { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}
.hero__panel-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.metric {
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
}
.metric strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.metric span { font-size: 0.75rem; color: rgba(255,255,255,0.65); line-height: 1.4; }

/* Trust strip */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .trust__grid { grid-template-columns: repeat(4, 1fr); } }
.trust__item {
  text-align: center;
  padding: 0.5rem;
}
@media (min-width: 640px) {
  .trust__item:not(:last-child) { border-right: 1px solid var(--line); }
}
.trust__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.trust__item span { font-size: 0.75rem; color: var(--slate); line-height: 1.35; }

/* ── Sections ── */
.section { padding: clamp(3.5rem, 7vw, 5rem) 0; }
.section--bg { background: var(--bg); }
.section--warm { background: var(--bg-warm); }

.section-head { margin-bottom: 2.5rem; max-width: 640px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-head p { color: var(--slate); font-size: 1rem; line-height: 1.65; }

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

.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.625rem;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
a.svc:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
}
.svc__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.svc h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.svc p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }
.svc__flag {
  margin-top: 0.625rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
}

/* About the Firm */
.about__header {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.about__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.about__body {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 960px) {
  .about__body { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
}

.about__content p {
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.about__content p:last-of-type { margin-bottom: 1.5rem; }

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.about__tags span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
}

.about__highlight {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
}
.about__highlight-year {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.875rem;
}
.about__highlight-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.92);
}
.about__highlight-list {
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.125rem;
}
.about__highlight-list li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.about__highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.about__highlight-list li:last-child { margin-bottom: 0; }

.about__journey {
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.about__journey-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

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

.journey__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  transition: border-color var(--ease), box-shadow var(--ease);
}
@media (min-width: 768px) {
  .journey__step {
    border-radius: 0;
    border-right: none;
    padding: 1.75rem 1.5rem;
  }
  .journey__step:first-child { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
  .journey__step:last-child {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    border-right: 1px solid var(--line);
  }
  .journey__step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--gold);
    z-index: 1;
  }
}
.journey__step:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  z-index: 2;
}

.journey__marker {
  margin-bottom: 0.875rem;
}
.journey__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.journey__step h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.journey__step p {
  font-size: 0.8125rem;
  color: var(--slate);
  line-height: 1.6;
}

/* Approach pillars (about page) */
.pillars {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
}
.pillar h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.875rem; color: var(--slate); line-height: 1.55; }

/* Audience cards */
.audience {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .audience { grid-template-columns: repeat(3, 1fr); } }
.audience__card {
  padding: 2rem 1.75rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
}
.audience__card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}
.audience__card p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* Process steps */
.process {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(3, 1fr); } }
.step { text-align: center; padding: 1rem; }
.step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; }
.step p { font-size: 0.875rem; color: var(--slate); }

/* Why list */
.why {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) { .why { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; } }
.why__item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.why__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.why__item p { font-size: 0.9375rem; color: var(--ink); line-height: 1.55; }

/* Split layout */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 960px) { .split { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.split__text p { color: var(--slate); margin-bottom: 1rem; line-height: 1.7; }
.split__text p:last-of-type { margin-bottom: 0; }
.split__text .btn { margin-top: 1.5rem; }

.section-actions {
  text-align: center;
  margin-top: 1.75rem;
}
.section-note {
  margin-top: 2rem;
  color: var(--slate);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.section-note a { color: var(--gold); font-weight: 600; }
.section-note a:hover { color: var(--navy); }

.checklist-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: var(--shadow);
}

/* FAQ */
.faq { max-width: 720px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.625rem;
  overflow: hidden;
  background: var(--white);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}
.faq__q::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.faq__item.is-open .faq__q::after { content: '−'; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq__item.is-open .faq__a { max-height: 240px; }
.faq__a p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* Reviews */
.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.reviews-head__score {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.reviews-head__score small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate);
  margin-top: 0.25rem;
}
.reviews-head p { font-size: 0.875rem; color: var(--slate); max-width: 40ch; }

.reviews {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) { .reviews { grid-template-columns: repeat(2, 1fr); } }
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.review__stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 0.625rem; }
.review__text { font-size: 0.875rem; color: var(--slate); line-height: 1.65; font-style: italic; margin-bottom: 0.875rem; }
.review__author { font-size: 0.75rem; font-weight: 600; color: var(--slate-light); }

.awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}
.award {
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  min-width: 130px;
}
.award strong {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.award span { font-size: 0.75rem; color: var(--slate); line-height: 1.35; }

/* CTA band */
.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(184,149,63,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta .wrap { position: relative; }
.cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.cta p {
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.page-hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.page-hero .breadcrumb a { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-hero p { color: rgba(255,255,255,0.75); max-width: 58ch; font-size: 1rem; }

/* Content blocks */
.prose { max-width: 68ch; }
.prose p { color: var(--slate); margin-bottom: 1rem; line-height: 1.7; }
.prose p:last-child { margin-bottom: 0; }

.notice-box {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--warn-text);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* Tables */
.table-wrap { overflow-x: auto; margin-bottom: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--line); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}
th, td { padding: 0.875rem 1.125rem; text-align: left; border-bottom: 1px solid var(--line); }
th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--bg); }

/* Resource links */
.links { display: flex; flex-direction: column; gap: 0.625rem; max-width: 600px; }
.links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.links a:hover { border-color: var(--gold); color: var(--gold); }
.links a span { color: var(--slate-light); font-weight: 400; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid .map { grid-column: 1 / -1; }

.mt { margin-top: 1.5rem; }

.contact-info {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-row:last-of-type { margin-bottom: 0; }
.contact-row__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row__icon svg { width: 18px; height: 18px; }
.contact-row h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.2rem;
}
.contact-row p { font-size: 0.9375rem; color: var(--ink); line-height: 1.5; }
.contact-row a { color: var(--teal); font-weight: 500; }
.contact-row a:hover { color: var(--navy); }
.contact-info__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

.form-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-box h2 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.form-box > p { font-size: 0.875rem; color: var(--slate); margin-bottom: 1.5rem; }
.form-demo-note {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #78350f;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--radius);
  padding: 0.35rem 0.625rem;
  margin-bottom: 0.75rem !important;
}
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-success.is-visible { display: block; }

.map {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/6;
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 calc(1.5rem + env(safe-area-inset-bottom));
}
.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1.5fr repeat(3, 1fr); } }
.footer__brand .brand__name { color: var(--white); font-size: 1rem; }
.footer__brand .brand__sub { color: rgba(255,255,255,0.45); }
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0.875rem 0 1.25rem;
  max-width: 32ch;
}
.footer__links { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.footer__links a {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
}
.footer__links a:hover { border-color: var(--gold-light); color: var(--white); }
.footer h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer ul a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
}
.footer__demo {
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  max-width: 52ch;
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
}
.mobile-bar a:first-child { background: var(--navy); color: var(--white); }
.mobile-bar a:last-child { background: var(--gold); color: var(--white); }
body.has-mobile-bar { padding-bottom: 52px; }
@media (min-width: 960px) {
  .mobile-bar { display: none; }
  body.has-mobile-bar { padding-bottom: 0; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
  a.svc:hover { transform: none; }
  a.tile:hover { transform: none; }
  .hero__badge-dot { animation: none; }
  .tile--photo img,
  .gallery-item img { transition: none; }
}

/* Plumber On Demand extras */
.header__phone {
  display: none;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.header__phone:hover { color: var(--navy); }
@media (min-width: 960px) {
  .header__phone { display: block; margin-right: 0.5rem; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fdba74;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.625rem;
}
@media (min-width: 640px) { .checklist { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .checklist { grid-template-columns: repeat(3, 1fr); } }
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--ink);
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .tile-grid { grid-template-columns: repeat(4, 1fr); } }
.tile-grid--6 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .tile-grid--6 { grid-template-columns: repeat(3, 1fr); }
}
.tile-grid--feature {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-bottom: 1.5rem;
}
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
a.tile:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: inherit;
}
.tile--photo {
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.tile--photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
a.tile--photo:hover img { transform: scale(1.06); }
.tile--photo h3 {
  padding: 0.875rem 1rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.tile__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.tile h3 { font-size: 0.875rem; font-weight: 700; color: var(--navy); line-height: 1.35; }

.locations-region { margin-bottom: 2rem; }
.locations-region h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.locations-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.locations-chips span {
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--slate);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}
.locations-chips span:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--bg);
}
.locations-preview { margin-top: 1.5rem; }
.locations-preview h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(255,255,255,0.1);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(12,74,138,0.92) 0%, rgba(12,74,138,0.2) 55%, transparent 100%);
  color: var(--white);
}
.gallery-item strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.gallery-item span { font-size: 0.75rem; opacity: 0.85; }

/* fallback text-only gallery items */
.gallery-item:not(:has(img)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: var(--white);
}
.gallery-item:not(:has(img)) strong {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.gallery-item:not(:has(img)) span { font-size: 0.75rem; opacity: 0.75; }

.call-strip {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
}
@media (min-width: 640px) {
  .call-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.625rem 1.25rem;
  }
}
.call-strip a {
  color: var(--white);
  font-weight: 800;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  letter-spacing: 0.02em;
}
.call-strip p { font-size: 0.8125rem; opacity: 0.92; margin-top: 0.25rem; }
@media (min-width: 640px) {
  .call-strip p { margin-top: 0; }
}

.contact-info .offices { margin-top: 1.5rem; }

.offices {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .offices { grid-template-columns: repeat(2, 1fr); } }
.office-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.office-card h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.office-card p { font-size: 0.875rem; color: var(--slate); line-height: 1.6; }

.service-group { margin-bottom: 3rem; }
.service-group:last-child { margin-bottom: 0; }
