/* ─── CUSTOM PROPERTIES (Style Guide v3) ─── */
:root {
  --navy:        #060569;
  --navy-deep:   #03033F;
  --navy-soft:   #2B2A85;
  --lime:        #548C15;
  --lime-bright: #8BB853;
  --lime-deep:   #3C6A00;
  --maroon:      #700907;
  --maroon-deep: #4A0605;
  --bone:        #f8f7f5;
  --bone-2:      #ECEAD8;
  --stone:       #BDB7A4;
  --stone-mid:   #807C77;
  --stone-deep:  #5A574F;
  --ink:         #0E0D1F;
  --ink-soft:    #3E3D54;

  --font-display: 'IBM Plex Sans', sans-serif;
  --font-narrow:  'IBM Plex Sans', system-ui, sans-serif;
  --font-body:    'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;

  --rule:    1px solid var(--stone);
  --rule-2:  2px solid var(--navy);
  --rule-tk: 3px solid var(--navy-deep);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: "ss01", "ss02", "cv11";
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

@keyframes pulse-white {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes pulse-lime {
  0%   { box-shadow: 0 0 0 0 rgba(139,184,83,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(139,184,83,0); }
  100% { box-shadow: 0 0 0 0 rgba(139,184,83,0); }
}

/* ─── SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: var(--rule);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo img {
  height: 80px;
  width: auto;
}

/* shared nav link / trigger token */
.site-nav { display: flex; align-items: center; gap: 0; position: relative; }

.site-nav > a,
.nav-trigger {
  padding: 0 18px;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy-deep);
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.site-nav > a:hover { color: var(--navy-soft); border-bottom-color: var(--lime); }

/* flyout trigger button */
.nav-trigger {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}
.nav-item:hover .nav-trigger,
.nav-item.is-open .nav-trigger { color: var(--navy-soft); border-bottom-color: var(--lime); }

.nav-caret {
  font-size: 9px;
  display: inline-block;
  transition: transform 0.15s;
  margin-top: 1px;
}
.nav-item.is-open .nav-caret,
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* flyout panel */
.nav-item { position: relative; }
.nav-flyout {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  background: var(--bone);
  border: var(--rule-2);
  border-top: 3px solid var(--lime);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
}
.nav-item:hover .nav-flyout,
.nav-item:focus-within .nav-flyout,
.nav-item.is-open .nav-flyout { display: block; }

.nav-flyout a {
  display: block;
  padding: 13px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  transition: background 0.12s, color 0.12s;
  height: auto;
  border-top: none;
  border-left: none;
  border-right: none;
}
.nav-flyout a:last-child { border-bottom: 0; }
.nav-flyout a:hover { background: var(--bone-2); color: var(--lime-deep); border-bottom-color: var(--stone); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--lime);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.15s;
  white-space: nowrap;
}
.header-phone:hover { background: var(--lime-deep); }

.phone-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-white 2s infinite;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-deep); transition: 0.2s; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-deep);
  border-top: 3px solid var(--lime);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 48px 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 32px;
}
.footer-brand img {
  height: 46px;
  background: var(--bone);
  width: auto;
  margin-bottom: 18px;
  filter: drop-shadow(1px 0 0 white) drop-shadow(-1px 0 0 white)
          drop-shadow(0 1px 0 white) drop-shadow(0 -1px 0 white);
}
.footer-tagline {
  font-family: var(--font-narrow);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(248,247,245,0.65);
  line-height: 1.55;
  max-width: 28ch;
  margin-bottom: 22px;
}
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.footer-phone:hover { color: var(--lime-bright); }
.footer-phone .dot {
  width: 8px; height: 8px;
  background: var(--lime-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-lime 2s infinite;
}
.footer-contact a {
  text-decoration: none;
  color: rgba(248,247,245,0.7);
  font-size: 14px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--lime-bright); }
.footer-contact span {
  color: rgba(248,247,245,0.52);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(248,247,245,0.42);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  text-decoration: none;
  color: rgba(248,247,245,0.72);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-col li a:hover { color: var(--lime-bright); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  color: rgba(248,247,245,0.36);
  font-weight: 500;
  flex-wrap: wrap;
}

/* ─── MOBILE STICKY PHONE BAR ─── */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy-deep);
  border-top: 2px solid var(--lime);
}
.mobile-phone-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  text-decoration: none;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-phone-bar .dot {
  width: 8px; height: 8px;
  background: var(--lime-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-lime 2s infinite;
}

/* ── v2 palette ─────────────────────────────────────────── */
.pg {
  --c-navy:      #15275A;
  --c-navy-deep: #0E1B40;
  --c-brick:     #A23B2A;
  --c-brick-dk:  #7D2B1E;
  --c-green:     #2F6E2C;
  --c-green-lt:  #5FA22F;
  --c-stone:     #F6F4EF;
  --c-sand:      #E7DFCF;
  --c-gravel:    #9A9690;
  --c-granite:   #2A2D31;
  --c-rule:      #DAD3C4;
  --font-d: 'IBM Plex Sans', system-ui, sans-serif;
  --font-b: 'IBM Plex Sans', system-ui, sans-serif;
  --font-m: 'IBM Plex Mono', ui-monospace, monospace;
  background: var(--c-stone);
  color: var(--c-granite);
}

/* ── shared tokens ──────────────────────────────────────── */
.pg * { box-sizing: border-box; }
.pg img { display: block; max-width: 100%; height: auto; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
}

.eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brick);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--c-brick);
  flex-shrink: 0;
}

/* ── HERO – split panel ─────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 80vh;
}
.hero-copy {
  background: var(--c-navy);
  padding: 96px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.hero-copy::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--c-brick);
}
.hero-copy .eyebrow { color: var(--c-sand); }
.hero-copy .eyebrow::before { background: var(--c-sand); }

.hero h1 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(38px, 4.8vw, 70px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--c-sand);
}
.hero-sub {
  font-family: var(--font-b);
  font-size: 17px;
  color: rgba(230,223,207,0.82);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo picture { display: contents; }
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  border-radius: 0;
  min-height: 50px;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-brick {
  background: var(--c-brick);
  color: white;
  border-color: var(--c-brick);
}
.btn-brick:hover {
  background: var(--c-brick-dk);
  border-color: var(--c-brick-dk);
}
.btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}
.btn-outline-dark {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-outline-dark:hover {
  background: var(--c-navy);
  color: white;
}

/* ── PROOF BAR ──────────────────────────────────────────── */
.proof-bar {
  background: var(--c-sand);
  border-bottom: 1px solid var(--c-rule);
}
.proof-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 68px;
}
.proof-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  border-left: 1px solid var(--c-rule);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--c-navy);
}
.proof-item:first-child { border-left: 0; }
.proof-icon {
  width: 32px;
  height: 32px;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.proof-icon svg { width: 16px; height: 16px; }

/* ── SECTION BASE ───────────────────────────────────────── */
.section {
  padding: 96px 0;
  border-top: 1px solid var(--c-rule);
}
.section:first-of-type { border-top: none; }
.section-sand { background: var(--c-sand); }

.sec-head { margin-bottom: 52px; }
.sec-head h2 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--c-navy);
  margin-bottom: 14px;
}
.sec-head p {
  font-size: 17px;
  color: var(--c-granite);
  max-width: 60ch;
  line-height: 1.65;
}

/* ── SERVICES – asymmetric ──────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
}
.services-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card {
  background: white;
  border: 1px solid var(--c-rule);
  border-top: 4px solid var(--c-navy);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card:hover {
  border-top-color: var(--c-brick);
  box-shadow: 0 6px 24px rgba(21,39,90,0.10);
}
.card-featured {
  border-top-color: var(--c-brick);
  background: none;
  color: white;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.card-featured:hover {
  border-top-color: var(--c-brick);
  box-shadow: 0 8px 32px rgba(21,39,90,0.25);
}
.card-featured-top {
  background: var(--c-navy-deep);
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.card-featured-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.card-featured-img picture { display: contents; }
.card-featured-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}
.card-tag {
  font-family: var(--font-m);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-brick);
}
.card-featured .card-tag {
  color: var(--c-sand);
}
.card h3 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 22px;
  color: var(--c-navy);
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.card-featured h3 {
  font-size: clamp(28px, 3vw, 38px);
  color: white;
  margin-bottom: 8px;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-granite);
  max-width: none;
  margin: 0;
}
.card-featured p {
  color: rgba(230,223,207,0.82);
  font-size: 16px;
  max-width: 52ch;
}
.card-more {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--c-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: color 0.15s;
}
.card:hover .card-more { color: var(--c-brick); }
.card-featured .card-more { color: var(--c-sand); }
.card-featured:hover .card-more { color: white; }
.card-sm {
  padding: 18px 20px;
  flex: 1;
}
.card-sm h3 { font-size: 17px; }

/* ── WORK GALLERY ───────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.work-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.work-photo picture { display: contents; }
.work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.work-photo:hover img { transform: scale(1.04); }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.stat-big {
  background: var(--c-navy);
  color: white;
  padding: 48px 40px;
  border-top: 4px solid var(--c-brick);
}
.stat-big .num {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: white;
}
.stat-big .num sup {
  font-size: 0.45em;
  vertical-align: super;
}
.stat-big .label {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-sand);
  margin-top: 10px;
  line-height: 1.5;
}
.stat-big .sub {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  color: rgba(230,223,207,0.7);
  line-height: 1.6;
}
.about-copy h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--c-navy);
  margin-bottom: 22px;
}
.about-copy p {
  font-size: 17px;
  color: var(--c-granite);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 16px;
}
.about-copy .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review {
  background: white;
  border: 1px solid var(--c-rule);
  border-top: 4px solid var(--c-brick);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.stars {
  color: var(--c-brick);
  letter-spacing: 4px;
  font-size: 15px;
}
.review blockquote {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--c-navy);
  letter-spacing: -0.005em;
  flex-grow: 1;
  margin: 0;
}
.review cite {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gravel);
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review-src { color: var(--c-gravel); opacity: 0.7; }

.reviews-footer {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.reviews-footer p {
  font-family: var(--font-m);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gravel);
  margin: 0;
  max-width: none;
}

/* ── SERVICE AREA ───────────────────────────────────────── */
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.area-copy h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--c-navy);
  margin-bottom: 18px;
}
.area-copy p {
  font-size: 17px;
  color: var(--c-granite);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 14px;
}
.area-copy .actions { margin-top: 28px; display: flex; gap: 14px; }
.towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid var(--c-navy);
  background: var(--c-rule);
}
.town {
  background: var(--c-stone);
  padding: 18px 22px;
  border-bottom: 1px solid var(--c-rule);
  border-right: 1px solid var(--c-rule);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--c-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.town:nth-child(2n) { border-right: 0; }
.town:nth-last-child(-n+2) { border-bottom: 0; }
.town::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--c-brick);
  flex-shrink: 0;
  border-radius: 50%;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta {
  background: var(--c-navy-deep);
  border-top: 4px solid var(--c-brick);
}
.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta h2 {
  font-family: var(--font-d);
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: white;
  margin-bottom: 10px;
}
.cta p {
  font-size: 17px;
  color: rgba(230,223,207,0.75);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ─── PAGE RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid     { grid-template-columns: 1fr; }
  .services-right    { flex-direction: row; }
  .about-grid        { grid-template-columns: 1fr; gap: 48px; }
  .area-grid         { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner         { grid-template-columns: 1fr; }
  .header-phone       { display: none; }
}

@media (max-width: 768px) {
  .wrap              { padding: 0 24px; }
  .hero              { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy         { padding: 72px 28px 56px; justify-content: flex-start; }
  .hero-photo        { height: 56vw; min-height: 260px; position: relative; }
  .section           { padding: 64px 0; }
  .services-right    { flex-direction: column; }
  .work-grid         { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid      { grid-template-columns: 1fr; }
  .proof-list        { flex-wrap: wrap; }
  .proof-item        { width: 50%; border-top: 1px solid var(--c-rule); }
  .proof-item:nth-child(2n+1) { border-left: 0; }
  .proof-item:nth-child(1),
  .proof-item:nth-child(2)    { border-top: 0; }
  .stat-big .num     { font-size: 64px; }
  .towns             { grid-template-columns: 1fr; }
  .town:nth-child(2n)           { border-right: 0; }
  .town:nth-last-child(-n+2)    { border-bottom: 1px solid var(--c-rule); }
  .town:last-child              { border-bottom: 0; }
  .cta-inner         { padding: 56px 24px; }
}

@media (max-width: 640px) {
  .hero h1           { font-size: clamp(34px, 9vw, 52px); }
  .hero-actions      { flex-direction: column; align-items: flex-start; }
  .card-featured-top { padding: 28px 24px; }
  .work-grid         { grid-template-columns: 1fr; }
}

/* ─── HEADER / FOOTER RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-inner     { padding: 56px 24px 40px; }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-deep);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
    z-index: 99;
  }
  .site-nav.open        { display: flex; }
  .site-nav > a,
  .nav-trigger          { height: auto; padding: 13px 24px; border-bottom: none; border-top: 1px solid rgba(255,255,255,0.06); color: rgba(248,247,245,0.78); width: 100%; justify-content: space-between; }
  .site-nav > a:hover,
  .nav-item:hover .nav-trigger,
  .nav-item.is-open .nav-trigger { color: white; border-bottom-color: transparent; }
  .nav-toggle           { display: flex; }

  /* mobile flyout — accordion, not absolute */
  .nav-item             { width: 100%; }
  .nav-flyout {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.06);
  }
  .nav-item.is-open .nav-flyout { display: block; }
  .nav-item:hover .nav-flyout   { display: none; } /* disable CSS hover on mobile */
  .nav-item.is-open .nav-flyout { display: block; }
  .nav-flyout a {
    padding: 12px 32px;
    color: rgba(248,247,245,0.72);
    border-bottom-color: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-flyout a:first-child { border-top: 0; }
  .nav-flyout a:hover { background: rgba(255,255,255,0.08); color: var(--lime-bright); }

  .footer-top           { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom        { flex-direction: column; gap: 6px; }
  .mobile-phone-bar     { display: block; }
  body                  { padding-bottom: 64px; }
}
