/* ==========================================================================
   Dunham Well Drilling — Florida contractor vernacular
   Blue + safety yellow + white. Utilitarian. Info-dense. Phone-first.
   ========================================================================== */

:root {
  /* Core palette */
  --blue:        #0d67a8;
  --blue-2:      #0a78c1;          /* slightly brighter accent */
  --blue-dark:   #09507f;
  --navy:        #092e4a;
  --navy-deep:   #061f33;
  --yellow:      #fcb71d;
  --yellow-warm: #f5a623;          /* warmer accent for ribbons / hovers */
  --yellow-dark: #e5a106;
  --ink:         #1c2430;
  --ink-soft:    #3a4656;
  --muted:       #56606e;
  --line:        #dde3eb;
  --line-2:      #e9edf2;
  --bg:          #ffffff;
  --bg-alt:      #f3f6f9;
  --bg-tint:     #eef3f8;          /* subtle blue-tinted alt bg */
  --bg-dark:     #092e4a;

  /* Type stack */
  --sans:         "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --display:      "Barlow", "Inter", system-ui, sans-serif;
  --display-cond: "Barlow Condensed", "Barlow", system-ui, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --pad: clamp(18px, 3.8vw, 40px);
  --radius: 4px;
  --shadow: 0 1px 3px rgba(12,34,56,0.06), 0 6px 22px -8px rgba(12,34,56,0.12);
  --shadow-lg: 0 2px 6px rgba(12,34,56,0.08), 0 18px 40px -12px rgba(12,34,56,0.18);
  --shadow-yellow: 0 2px 0 var(--yellow-dark), 0 8px 20px -4px rgba(252,183,29,0.42);

  /* Sticky-header anchor offset */
  scroll-padding-top: 88px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "calt", "ss01";
}
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
address { font-style: normal; }

/* All anchored sections: respect sticky header when jumping via hash */
section[id] { scroll-margin-top: 88px; }

/* Branded selection */
::selection { background: var(--yellow); color: var(--navy); }
::-moz-selection { background: var(--yellow); color: var(--navy); }

/* Branded scrollbar (WebKit) */
@supports selector(::-webkit-scrollbar) {
  body::-webkit-scrollbar { width: 12px; height: 12px; }
  body::-webkit-scrollbar-track { background: var(--bg-alt); }
  body::-webkit-scrollbar-thumb {
    background: var(--blue);
    border: 3px solid var(--bg-alt);
    border-radius: 999px;
  }
  body::-webkit-scrollbar-thumb:hover { background: var(--blue-dark); }
}
/* Firefox */
html { scrollbar-color: var(--blue) var(--bg-alt); scrollbar-width: thin; }

/* Tabular numerals helper — phone numbers, stats, hours */
.tnum, .info-card__big, .info-card__alt, .topbar__call,
.trust__num, .hero__h1 strong, .about__stamp strong {
  font-variant-numeric: tabular-nums lining-nums;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--navy);
  font-weight: 800;
}

/* ================================================================
   CTA BUTTONS
   ================================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .08s ease;
  line-height: 1;
  white-space: nowrap;
}
.cta:active { transform: translateY(1px); }

.cta--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-yellow);
}
.cta--yellow:hover {
  background: var(--yellow-warm);
  color: var(--navy);
  box-shadow: 0 3px 0 var(--yellow-dark), 0 10px 22px -4px rgba(252,183,29,0.55);
  transform: translateY(-1px);
}
.cta--yellow:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--yellow-dark); }

.cta--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 0 var(--blue-dark);
}
.cta--blue:hover { background: var(--blue-dark); color: #fff; }

.cta--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta--outline:hover { background: #fff; color: var(--navy); }

.cta--lg { padding: 17px 28px; font-size: 16px; }
.cta--full { width: 100%; padding: 18px 24px; font-size: 16px; }

/* ================================================================
   TOP YELLOW INFO BAR
   ================================================================ */
.topbar {
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-warm) 100%);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid var(--yellow-dark);
  letter-spacing: 0.01em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 8px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; gap: 6px; align-items: center; }
.topbar__item strong { font-weight: 700; }
.topbar__call {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-family: var(--display);
  font-size: 14px;
}
.topbar__call:hover { color: var(--blue-dark); }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header.is-scrolled { box-shadow: 0 2px 14px rgba(9,46,74,0.08); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.logo__badge {
  flex-shrink: 0;
  line-height: 0;
  box-shadow: 0 2px 0 var(--navy-deep);
  border-radius: 4px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
  color: var(--navy);
  line-height: 1;
}
.logo__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
}
.nav a {
  color: var(--navy);
  padding-block: 6px;
  border-bottom: 3px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.nav a:hover { color: var(--blue); border-bottom-color: var(--yellow); }

.header__cta { flex-shrink: 0; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--navy);
  border-radius: var(--radius);
}
.menu-btn span { display: block; width: 20px; height: 2px; background: #fff; }

/* ================================================================
   HERO — Dark photo + overlay + strong headline + CTAs
   ================================================================ */
.hero {
  position: relative;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding-block: clamp(64px, 9vw, 132px);
  border-bottom: 4px solid var(--yellow);
  isolation: isolate;
}
/* Subtle diagonal-line overlay for depth — sits above bg image, below content */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'><path d='M-1 1L30-30M30 30L60 0M60 60L30 30' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/></svg>");
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
/* Vignette for focus on text */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, transparent 0%, rgba(6,31,51,0.45) 90%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  max-width: 920px;
  text-align: left;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: var(--yellow);
  padding: 7px 14px;
  border: 1.5px solid var(--yellow);
  border-radius: 2px;
  margin-bottom: 22px;
  text-transform: uppercase;
  background: rgba(252,183,29,0.06);
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(252,183,29,0.25);
}
.hero__h1 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(38px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 20px;
  max-width: 22ch;
  text-shadow: 0 2px 14px rgba(0,0,0,0.28), 0 1px 0 rgba(0,0,0,0.18);
  text-wrap: balance;
}
.hero__p {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 60ch;
  margin: 0 0 30px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0;
}
.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.01em;
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust {
  background:
    linear-gradient(0deg, var(--bg-tint) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding-block: 40px;
  position: relative;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='1' fill='%230d67a8' fill-opacity='0.07'/></svg>");
  pointer-events: none;
}
.trust__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding-inline: 20px;
  transition: transform .2s ease;
}
.trust__item:hover { transform: translateY(-2px); }
.trust__item:last-child { border-right: 0; }
.trust__num {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(38px, 4.8vw, 58px);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.005em;
}
.trust__num i {
  color: var(--yellow);
  font-style: normal;
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 1px;
}
.trust__lbl {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section {
  padding-block: clamp(60px, 7vw, 96px);
  background: #fff;
}
.section--gray {
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-tint) 100%);
  border-block: 1px solid var(--line);
}
.section--dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  isolation: isolate;
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.04'/></svg>");
  pointer-events: none;
  z-index: 0;
}
.section--dark > .wrap { position: relative; z-index: 1; }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }

.sec-head {
  margin-bottom: 44px;
  max-width: 760px;
}
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--light .sec-head__kicker { color: var(--yellow); }
.sec-head--light h2 { color: #fff; }
.sec-head--light p { color: rgba(255,255,255,0.82); }

.sec-head__kicker {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid var(--yellow);
}
.sec-head h2 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 14px;
  color: var(--navy);
  text-wrap: balance;
}
.sec-head p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ================================================================
   SERVICES — 6-card grid, photo on top
   ================================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
  position: relative;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s ease;
  z-index: 2;
}
.svc:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.svc:hover::before { transform: scaleX(1); }
.svc__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.svc__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9,46,74,0.12));
}
.svc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc:hover .svc__img img { transform: scale(1.04); }

.svc__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc__body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  color: var(--navy);
  line-height: 1.25;
}
.svc__body p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 4px;
}
.svc__more i { font-style: normal; transition: transform .15s ease; }
.svc:hover .svc__more i { transform: translateX(4px); }

/* ================================================================
   BLUE CTA STRIP
   ================================================================ */
.cta-strip {
  background: var(--blue);
  background-image: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding-block: 44px;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.cta-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 42px);
  color: #fff;
  margin: 0 0 6px;
  letter-spacing: 0;
  line-height: 1.05;
}
.cta-strip p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
}

/* ================================================================
   ABOUT
   ================================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.about__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about__stamp {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: var(--yellow);
  color: var(--navy);
  padding: 16px 24px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.45),
    0 3px 0 var(--yellow-dark),
    0 14px 28px -8px rgba(0,0,0,0.4);
  line-height: 1;
  transform: rotate(-3deg);
  transition: transform .25s ease;
}
.about__media:hover .about__stamp { transform: rotate(-1deg) scale(1.04); }
.about__stamp span {
  display: block;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.about__stamp strong {
  display: block;
  font-family: var(--display-cond);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.01em;
  margin-top: 4px;
  line-height: 1;
}

.about__copy .sec-head__kicker { margin-bottom: 12px; }
.about__copy h2 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 18px;
  text-wrap: balance;
}
.about__copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.about__copy strong { color: var(--navy); font-weight: 700; }

.checklist {
  margin: 24px 0 28px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ffffff' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19l11-11-1.4-1.4z'/></svg>");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.checklist li em { color: var(--blue); font-style: normal; font-weight: 600; }

/* ================================================================
   WHY US — 4-icon grid
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.why:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.why__ic {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 4px rgba(252,183,29,0.12),
    0 4px 0 var(--navy-deep),
    0 10px 22px -6px rgba(9,46,74,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.why:hover .why__ic {
  transform: scale(1.06) rotate(-3deg);
  box-shadow:
    inset 0 0 0 4px rgba(252,183,29,0.2),
    0 6px 0 var(--navy-deep),
    0 14px 30px -6px rgba(9,46,74,0.5);
}
.why h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.why p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ================================================================
   GALLERY
   ================================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__tile {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.gallery__tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .35s ease, filter .2s ease;
  image-rendering: auto;
}
.gallery__tile:hover img { transform: scale(1.05); filter: brightness(1.04); }
.gallery__tile { transition: box-shadow .2s ease, border-color .2s ease; }
.gallery__tile:hover { border-color: var(--blue); box-shadow: 0 6px 20px -6px rgba(9,46,74,0.25); }

/* ================================================================
   REVIEWS
   ================================================================ */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.rating__stars { display: inline-flex; gap: 2px; }
.rating__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 22px 24px 22px;
  box-shadow: 0 1px 2px rgba(12,34,56,0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rev__stars { display: inline-flex; gap: 2px; }
.rev p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.rev__who {
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.rev__name {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
}
.rev__src {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.info-card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 12px;
}
.info-card a { color: #fff; }
.info-card__big {
  display: block;
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0;
  color: #fff;
  line-height: 1.1;
}
.info-card__big:hover { color: var(--yellow); }
.info-card__alt {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.info-card__link {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  word-break: break-word;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
}
.info-card__link:hover { border-bottom-color: var(--yellow); color: var(--yellow); }
.info-card address {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 8px;
  line-height: 1.5;
}

.hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child { font-weight: 600; color: #fff; }
.hours__note {
  display: block !important;
  font-style: italic;
  font-size: 12.5px !important;
  color: rgba(255,255,255,0.7) !important;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.12);
  line-height: 1.5;
}

.map {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  background: var(--navy-deep);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15);
}

/* Quote form */
.quote {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  border-top: 5px solid var(--yellow);
}
.quote h3 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 28px;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  line-height: 1.05;
}
.quote__sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 20px;
}
.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.field label {
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field textarea,
.field select {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
  font-family: var(--sans);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,103,168,0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23092e4a' d='M7 10l5 5 5-5z'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.quote__note {
  font-size: 12.5px;
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.55;
}
.quote__ok {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: #e6f2ea;
  color: #1e5c3d;
  border: 1px solid #c3dfc9;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 4px solid var(--yellow);
  position: relative;
  isolation: isolate;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><circle cx='1' cy='1' r='1' fill='%23ffffff' fill-opacity='0.04'/></svg>");
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h5 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 16px;
}
.footer ul li {
  margin-bottom: 7px;
  font-size: 14.5px;
}
.footer a { color: rgba(255,255,255,0.82); border-bottom: 1px solid transparent; }
.footer a:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
.footer p { font-size: 14.5px; line-height: 1.65; margin: 0 0 12px; }

.logo--foot .logo__name { color: #fff; }
.logo--foot .logo__tag { color: rgba(255,255,255,0.7); }
.footer__about {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 36ch;
}
.footer__badges li {
  padding: 7px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 16px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.2);
}
.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ================================================================
   STICKY MOBILE CALL BUTTON
   ================================================================ */
.mobile-call {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 2px 0 var(--yellow-dark), 0 10px 28px -6px rgba(0,0,0,0.3);
  font-variant-numeric: tabular-nums;
  /* Hidden until JS marks .is-visible after the hero scrolls out of view */
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}
.mobile-call.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-call svg { animation: mc-ring 2.6s ease-in-out infinite; transform-origin: 50% 50%; }
@keyframes mc-ring {
  0%, 50%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1040px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: inline-flex; }
  .header__cta { display: none; }
  .header.is-open .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px var(--pad) 18px;
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 10px 30px rgba(9,46,74,0.12);
  }
  .header.is-open .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-2);
    border-top: 0;
  }
  .header.is-open .nav a:last-child { border-bottom: 0; }

  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item { border-bottom: 0; }

  .about { grid-template-columns: 1fr; gap: 36px; }
  .about__media { max-width: 520px; }

  .contact { grid-template-columns: 1fr; }
  .contact__info .map { grid-column: span 2; }
}

@media (max-width: 680px) {
  body { padding-bottom: 72px; }
  .mobile-call { display: inline-flex; }

  .topbar { font-size: 11px; letter-spacing: 0; }
  .topbar__inner { padding-block: 4px; gap: 12px; }
  .topbar__hide { display: none; }
  .topbar__call { margin-left: 0; font-size: 12px; }

  .hero { padding-block: 60px; }
  .hero__h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero__cta .cta { width: 100%; }
  .hero__checks { gap: 10px 22px; }

  .trust__inner { grid-template-columns: 1fr 1fr; gap: 28px 12px; }

  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .reviews { grid-template-columns: 1fr; }

  .cta-strip__inner { flex-direction: column; align-items: flex-start; }
  .cta-strip .cta { width: 100%; }

  .contact__info { grid-template-columns: 1fr; }
  .contact__info .map { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ================================================================
   A11Y — SKIP LINK + FOCUS RINGS
   ================================================================ */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  padding: 10px 14px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  z-index: 200;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.cta:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.gallery__tile:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ================================================================
   REVEAL-ON-SCROLL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ================================================================
   SERVICE-AREA STRIP
   ================================================================ */
.areas {
  background: #fff;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.areas__inner { text-align: center; }
.areas__kicker {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 6px;
  border-bottom: 3px solid var(--yellow);
  margin: 0 0 16px;
}
.areas__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 0;
  font-family: var(--display-cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.areas__list li {
  position: relative;
  padding: 0 14px;
}
.areas__list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--line);
}
.areas__list li:last-child::after { display: none; }
.areas__list a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .18s ease, border-bottom-color .18s ease;
  padding-bottom: 1px;
}
.areas__list a:hover,
.areas__list a:focus-visible {
  color: var(--blue);
  border-bottom-color: var(--yellow);
}
.areas__note {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.areas__note a {
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 4px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 17.5px;
  color: var(--navy);
  position: relative;
  line-height: 1.35;
  transition: color .18s ease;
}
.faq summary:hover { color: var(--blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  background: #fff;
  line-height: 1;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.faq details[open] > summary::after {
  content: "−";
  background: var(--yellow);
  transform: translateY(-50%) rotate(180deg);
}
.faq details[open] > summary { color: var(--blue); }
.faq details p {
  padding: 0 8px 22px 4px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 68ch;
}

/* ================================================================
   LIGHTBOX
   ================================================================ */
body.has-lightbox { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(6,31,51,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__img {
  display: block;
  max-width: min(90vw, 1200px);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 4px solid #fff;
  border-radius: 2px;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  transition: background .12s ease, transform .12s ease;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: var(--yellow); transform: scale(1.05); }
.lightbox__close { top: 20px; right: 20px; font-size: 24px; }
.lightbox__prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover,
.lightbox__next:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__caption {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-family: var(--sans);
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 3px;
  max-width: 80vw;
  text-align: center;
}

/* ================================================================
   CHAT WIDGET (bottom-right)
   ================================================================ */
.chat {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 100;
  font-family: var(--sans);
}
.chat__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(13,103,168,0.32), 0 2px 6px rgba(9,46,74,0.2);
  transition: background .15s ease, transform .15s ease;
}
.chat__toggle:hover { background: var(--blue-dark); transform: translateY(-1px); color: #fff; }
.chat.is-open .chat__toggle { display: none; }

.chat__panel {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(360px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 40px));
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(9,46,74,0.3), 0 4px 12px rgba(9,46,74,0.15);
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}
.chat.is-open .chat__panel { display: flex; }

.chat__head {
  background: var(--navy);
  color: #fff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 3px solid var(--yellow);
}
.chat__title {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 17px;
  margin: 0 0 2px;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.1;
}
.chat__sub {
  font-family: var(--display);
  font-size: 11.5px;
  color: rgba(255,255,255,0.78);
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.chat__close {
  color: #fff;
  opacity: 0.8;
  padding: 2px;
}
.chat__close:hover { opacity: 1; }

.chat__body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-alt);
}
.chat__msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
}
.chat__msg--bot {
  background: #fff;
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  border: 1px solid var(--line);
}
.chat__msg--user {
  background: var(--blue);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.chat__msg a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }
.chat__msg--user a { color: #fff; }

.chat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px 10px;
  background: var(--bg-alt);
}
.chat__chips:empty { padding: 0; }
.chat__chip {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--display);
  letter-spacing: 0.02em;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chat__chip:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.chat__form {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.chat__form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
}
.chat__form input:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(13,103,168,0.15); }
.chat__form button {
  background: var(--yellow);
  color: var(--navy);
  border-radius: 6px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 var(--yellow-dark);
  transition: background .15s ease;
}
.chat__form button:hover { background: var(--yellow-dark); }

.chat__foot {
  margin: 0;
  padding: 8px 14px 12px;
  background: #fff;
  font-family: var(--display);
  font-size: 11px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.chat__foot a { color: var(--blue); font-weight: 700; }

/* Chat mobile — sit above the sticky mobile-call bar */
@media (max-width: 680px) {
  .chat { bottom: 80px; right: 14px; }
  .chat__toggle-label { display: none; }
  .chat__toggle { padding: 14px; }
  .chat__panel {
    width: calc(100vw - 28px);
    height: calc(100vh - 110px);
    max-height: 620px;
    bottom: 0;
    right: 0;
  }
}
@media (max-width: 560px) {
  .lightbox { padding: 12px; }
  .lightbox__close { top: 12px; right: 12px; }
  .lightbox__prev  { left: 8px; }
  .lightbox__next  { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .about__stamp { transform: rotate(-3deg) !important; }
  .hero__medallion { transform: rotate(-8deg) !important; }
  .mobile-call svg { animation: none !important; }
  .cta--yellow::after { display: none !important; }
}

/* ================================================================
   SCROLL PROGRESS BAR (top of viewport)
   ================================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 60;
  pointer-events: none;
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--scroll, 0%);
  background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-warm) 100%);
  box-shadow: 0 1px 4px rgba(252,183,29,0.5);
  transition: width .08s linear;
}

/* ================================================================
   BACK-TO-TOP BUTTON
   ================================================================ */
.back-top {
  position: fixed;
  bottom: 86px;
  right: 18px;
  z-index: 95;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(9,46,74,0.35), 0 2px 0 var(--navy-deep);
  opacity: 0;
  transform: translateY(8px) scale(0.92);
  transition: opacity .25s ease, transform .25s ease, background .15s ease, color .15s ease;
}
.back-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.back-top:hover { background: var(--blue); color: #fff; }
@media (max-width: 680px) {
  .back-top { bottom: 142px; right: 14px; }
}

/* ================================================================
   HERO ANNIVERSARY MEDALLION (static — clean and stable)
   ================================================================ */
.hero__medallion {
  position: absolute;
  top: clamp(20px, 4vw, 40px);
  right: clamp(20px, 4vw, 56px);
  z-index: 1;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
  transform: rotate(-8deg);
  transition: transform .35s ease;
}
.hero__medallion:hover { transform: rotate(0deg) scale(1.04); }
.hero__medallion svg {
  width: clamp(110px, 13vw, 170px);
  height: auto;
  display: block;
}
@media (max-width: 900px) {
  .hero__medallion { top: 16px; right: 16px; transform: rotate(-6deg); }
  .hero__medallion svg { width: 96px; }
}
@media (max-width: 560px) {
  .hero__medallion { display: none; }
}

/* ================================================================
   TRUST STRIP — small SVG icons above each stat
   ================================================================ */
.trust__ic {
  display: block;
  margin: 0 auto 4px;
  color: var(--yellow);
  filter: drop-shadow(0 1px 0 var(--yellow-dark));
}

/* ================================================================
   SERVICE CARD — auto-numbered (01, 02, 03 ...)
   ================================================================ */
.svc-grid { counter-reset: svc; }
.svc {
  /* CSS counter increments per card */
  counter-increment: svc;
}
.svc__body { position: relative; }
.svc__body::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: 28px;
  color: var(--line);
  letter-spacing: 0;
  line-height: 1;
  transition: color .2s ease;
  pointer-events: none;
}
.svc:hover .svc__body::before { color: var(--yellow); }
.svc__body h3 { padding-right: 36px; }

/* ================================================================
   YELLOW CTA — shine sweep on hover
   ================================================================ */
.cta--yellow { position: relative; overflow: hidden; isolation: isolate; }
.cta--yellow::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -75%;
  width: 50%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,0.45) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left .55s ease;
  pointer-events: none;
  z-index: 0;
}
.cta--yellow:hover::after { left: 130%; }
.cta--yellow > * { position: relative; z-index: 1; }

/* ================================================================
   SUBPAGE HERO — smaller, no medallion, keeps brand chrome
   ================================================================ */
.hero--page {
  padding-block: clamp(48px, 7vw, 92px);
  border-bottom: 4px solid var(--yellow);
}
.hero--page .hero__inner { max-width: 940px; }
.hero--page .hero__h1 {
  font-size: clamp(32px, 5.4vw, 56px);
  margin-bottom: 14px;
  max-width: 26ch;
}
.hero--page .hero__p { margin-bottom: 22px; }
.hero--page .hero__cta { margin-bottom: 0; }

/* Breadcrumb above subpage H1 */
.bread {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.bread a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 700;
}
.bread a:hover { text-decoration: underline; }
.bread__sep { padding: 0 8px; opacity: 0.55; }
.bread__current { color: rgba(255,255,255,0.9); }

/* ================================================================
   PAGE CONTENT — two-column body for service / city pages
   ================================================================ */
.page-content {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.page-content__text h2 {
  font-family: var(--display-cond);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 18px;
  color: var(--ink);
}
.page-content__text h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  margin: 30px 0 10px;
  color: var(--navy);
  letter-spacing: 0.005em;
}
.page-content__text p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.05em;
}
.page-content__text p:last-child { margin-bottom: 0; }
.page-content__text strong { color: var(--ink); font-weight: 700; }
.page-content__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.page-content__text a:hover { color: var(--blue-dark); }
.page-content__text ul {
  margin: 0 0 1.2em;
  padding-left: 0;
  list-style: none;
}
.page-content__text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.page-content__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background: var(--yellow);
  clip-path: polygon(40% 65%, 88% 12%, 96% 22%, 40% 88%, 8% 56%, 18% 44%);
}
.page-content__media {
  position: sticky;
  top: 108px;
}
.page-content__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
  outline: 1px solid var(--line);
}
.page-content__media figcaption {
  display: block;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 880px) {
  .page-content { grid-template-columns: 1fr; }
  .page-content__media { position: static; order: -1; }
  .page-content__media img { border-width: 4px; }
}

/* Page intro lead paragraph */
.page-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 18px;
  margin: 0 0 26px;
  max-width: 60ch;
}

/* ================================================================
   RELATED SERVICES STRIP (subpage cross-links)
   ================================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 4px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15.5px;
  transition: transform .18s ease, box-shadow .18s ease, border-left-color .18s ease;
  box-shadow: 0 1px 0 rgba(12,34,56,0.04);
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--blue);
}
.related-card span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0;
}
.related-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 18px;
  color: var(--blue);
  font-weight: 700;
  opacity: 0.45;
  transition: opacity .18s ease, transform .18s ease;
}
.related-card { position: relative; padding-right: 36px; }
.related-card:hover::after { opacity: 1; transform: translateX(2px); }

/* Subpage section header utility */
.sec-head--lift { margin-bottom: 22px; }

/* ================================================================
   PRINT STYLES — keep contact info readable on paper
   ================================================================ */
@media print {
  .topbar, .header, .hero__cta, .cta-strip, .reviews,
  .gallery, .lightbox, .chat, .mobile-call, .skip-link,
  .menu-btn, .nav, .map iframe, .footer__bar, .quote,
  .back-top, .scroll-progress, .hero__medallion {
    display: none !important;
  }
  body { color: #000; background: #fff; font-size: 12pt; }
  .hero {
    background: #fff !important;
    color: #000 !important;
    padding-block: 12pt !important;
    border: 0 !important;
  }
  .hero::before, .hero::after { display: none !important; }
  .hero__h1, .hero__p, .hero__eyebrow { color: #000 !important; text-shadow: none !important; }
  .hero__eyebrow { border-color: #000 !important; }
  .section, .section--dark, .section--gray { padding-block: 18pt !important; background: #fff !important; color: #000 !important; }
  .section--dark::before, .section--gray::before, .footer::before, .trust::before { display: none !important; }
  h1, h2, h3, h4, h5, .sec-head h2, .about__copy h2, .cta-strip h2 { color: #000 !important; }
  a { color: #000 !important; text-decoration: underline; }
  /* Show actual URLs after links */
  a[href^="tel:"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
  a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 0.85em; }
  .footer { color: #000 !important; background: #fff !important; }
  .footer h5, .footer a { color: #000 !important; }
  .footer__badges li { background: none !important; border-color: #000 !important; color: #000 !important; }
  .info-card { background: none !important; border-color: #000 !important; color: #000 !important; }
  .info-card h4, .info-card a { color: #000 !important; }
  .info-card address { color: #000 !important; }
  img { max-width: 50% !important; }
}
