/* =========================================================
   CLW LLC. — Mobile Home Skirting
   Palette and type derived from the company's own logo and
   social artwork: navy wordmark, Texas outline, bluebonnet
   blue, white siding, caliche sand.
   ========================================================= */

:root{
  --navy:      #00215d;
  --navy-2:    #0a2f72;
  --blue:      #0049b4;
  --blue-deep: #00337f;
  --bluebonnet:#6d95e0;
  --sand:      #f3eee4;
  --sand-2:    #e2d8c6;
  --ink:       #16202f;
  --body:      #4c586a;
  --muted:     #6b7688;
  --line:      #dee4ed;
  --white:     #fff;
  --bg:        #fff;

  --wrap: 1180px;
  --r: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(16,38,71,.07);
  --shadow: 0 2px 4px rgba(16,38,71,.06), 0 14px 34px rgba(16,38,71,.09);
  --shadow-lg: 0 4px 10px rgba(16,38,71,.08), 0 26px 56px rgba(16,38,71,.15);

  --f-head: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-script: 'Kaushan Script', 'Segoe Script', cursive;

  --header-h: 78px;
}

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

html{ scroll-behavior:smooth; scroll-padding-top:calc(var(--header-h) + 12px); }

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

img,svg{ max-width:100%; display:block; }

h1,h2,h3,h4{
  font-family:var(--f-head);
  color:var(--navy);
  line-height:1.16;
  margin:0 0 .5em;
  text-wrap:balance;
}

p{ margin:0 0 1em; }
p:last-child{ margin-bottom:0; }

a{ color:var(--blue-deep); }

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

.skip{ position:absolute; left:-9999px; top:0; z-index:300; background:var(--navy); color:#fff; padding:12px 18px; }
.skip:focus{ left:12px; top:12px; }

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

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:var(--f-head); font-weight:600; font-size:.9rem;
  letter-spacing:.06em; text-transform:uppercase; text-decoration:none;
  padding:14px 26px; border-radius:var(--r); border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background-color .15s ease, color .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn svg{ width:18px; height:18px; fill:currentColor; flex:none; }

.btn-primary{ background:var(--blue); color:#fff; box-shadow:0 6px 18px rgba(42,93,176,.3); }
.btn-primary:hover{ background:var(--blue-deep); color:#fff; }

.btn-ghost{ background:rgba(255,255,255,.16); color:#fff; border-color:rgba(255,255,255,.7); backdrop-filter:blur(4px); }
.btn-ghost:hover{ background:#fff; color:var(--navy); }

.btn-outline{ background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover{ background:var(--navy); color:#fff; }

.btn-sm{ padding:10px 18px; font-size:.82rem; }

/* ---------------- Header ---------------- */
.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(255,255,255,.95);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; gap:22px; min-height:var(--header-h); }

.brand{ display:flex; align-items:center; gap:13px; text-decoration:none; margin-right:auto; }
.brand-logo{ height:42px; width:auto; flex:none; }
.brand-text{ padding-left:13px; border-left:1px solid var(--line); }
.brand-text small{
  display:block; color:var(--muted); font-size:.7rem; line-height:1.35;
  letter-spacing:.13em; text-transform:uppercase; font-family:var(--f-head);
  font-weight:600;
}

.nav{ display:flex; gap:26px; }
.nav a{
  font-family:var(--f-head); font-weight:500; font-size:.85rem;
  letter-spacing:.07em; text-transform:uppercase;
  color:var(--navy); text-decoration:none; padding:6px 0;
  border-bottom:2px solid transparent;
}
.nav a:hover{ border-bottom-color:var(--blue); }
.nav a[aria-current="page"]{ border-bottom-color:var(--blue); font-weight:600; }

.btn-call{ background:var(--navy); color:#fff; padding:12px 20px; }
.btn-call:hover{ background:var(--blue-deep); color:#fff; }

.nav-toggle{
  display:none; background:transparent; border:1.5px solid var(--line);
  border-radius:10px; padding:9px 11px; cursor:pointer; color:var(--navy);
}
.nav-toggle svg{ width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; }
.nav-toggle .ico-x{ display:none; }
.nav-toggle[aria-expanded="true"] .ico-x{ display:block; }
.nav-toggle[aria-expanded="true"] .ico-bars{ display:none; }

/* ---------------- Hero ---------------- */
.hero{ position:relative; isolation:isolate; min-height:clamp(500px, 74vh, 680px); display:flex; align-items:center; }
.hero-media{ position:absolute; inset:0; z-index:-2; }
.hero-media img{ width:100%; height:100%; object-fit:cover; object-position:center 46%; }
/* The headline sits in a ~620px column on the left. The scrim has to stay
   solid across that whole column at every width, then fade into the photo —
   so the fade point moves out as the viewport narrows. */
.hero-scrim{
  position:absolute; inset:0; z-index:-1;
  background:linear-gradient(100deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.90) 30%,
    rgba(255,255,255,.82) 46%,
    rgba(255,255,255,.38) 62%,
    rgba(255,255,255,0) 76%);
}
.hero-inner{ padding-block:76px; }
.hero-inner > *{ max-width:620px; }

.script{ font-family:var(--f-script); color:var(--navy); font-size:clamp(2.2rem,5.2vw,3.6rem); line-height:1.05; margin:0 0 .12em; }
.hero h1{ font-size:clamp(1.4rem,3vw,2.15rem); text-transform:uppercase; letter-spacing:.14em; font-weight:600; margin-bottom:.7em; }
.rule{ width:92px; height:4px; border-radius:2px; background:var(--blue); margin-bottom:26px; }
.lede{ font-size:1.14rem; color:var(--ink); margin-bottom:30px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }
.hero-meta{ margin-top:24px; font-family:var(--f-head); font-size:.78rem; letter-spacing:.12em; text-transform:uppercase; color:var(--navy-2); }

@media (min-width:681px) and (max-width:1100px){
  /* Tighten the text column so the scrim can stay solid behind it without
     washing the whole photo out, and pan the home into the clear right side. */
  .hero-inner > *{ max-width:470px; }
  .hero-media img{ object-position:center 46%; }
  .hero-scrim{
    background:linear-gradient(100deg,
      rgba(255,255,255,.96) 0%,
      rgba(255,255,255,.93) 45%,
      rgba(255,255,255,.86) 64%,
      rgba(255,255,255,.40) 78%,
      rgba(255,255,255,0) 92%);
  }
  .hero-inner > *{ max-width:520px; }
}

/* Compact page hero for interior pages */
.page-hero{ background:var(--navy); color:rgba(255,255,255,.78); padding-block:clamp(52px,7vw,84px); }
.page-hero h1{ color:#fff; font-size:clamp(1.9rem,4vw,2.9rem); font-weight:700; letter-spacing:0; text-transform:none; }
.page-hero .lede{ color:rgba(255,255,255,.78); max-width:62ch; margin-bottom:0; }
.page-hero .rule{ background:var(--bluebonnet); }
.crumb{ font-family:var(--f-head); font-size:.76rem; letter-spacing:.14em; text-transform:uppercase; color:#8fb1e3; margin-bottom:14px; }
.crumb a{ color:#8fb1e3; text-decoration:none; }
.crumb a:hover{ color:#fff; }

/* ---------------- Pillars ---------------- */
.pillars{ background:var(--navy); }
.pillars-grid{ display:grid; grid-template-columns:repeat(4,1fr); }
.pillar{ padding:28px 24px; border-left:1px solid rgba(255,255,255,.13); display:flex; gap:14px; align-items:flex-start; }
.pillar:first-child{ border-left:0; }
.pillar svg{ width:26px; height:26px; flex:none; fill:none; stroke:var(--bluebonnet); stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; margin-top:2px; }
.pillar strong{ display:block; font-family:var(--f-head); font-weight:600; font-size:.86rem; letter-spacing:.1em; text-transform:uppercase; color:#fff; margin-bottom:3px; }
.pillar span{ font-size:.93rem; color:rgba(255,255,255,.7); line-height:1.5; }

/* ---------------- Sections ---------------- */
.section{ padding-block:clamp(60px,7.5vw,100px); }
.section-navy{ background:var(--navy); }
.section-sand{ background:var(--sand); }

.eyebrow{ font-family:var(--f-head); font-weight:600; font-size:.76rem; letter-spacing:.18em; text-transform:uppercase; color:var(--blue); margin:0 0 13px; }
.eyebrow-light{ color:#8fb1e3; }

.section h2{ font-size:clamp(1.65rem,3.2vw,2.4rem); font-weight:700; }
.h2-light{ color:#fff; }
.section-lede{ font-size:1.08rem; max-width:58ch; margin-bottom:46px; }
.section-navy .section-lede{ color:rgba(255,255,255,.75); }
.section-head{ margin-bottom:46px; }
.section-head .section-lede{ margin-bottom:0; }

/* ---------------- Cards ---------------- */
.cards{ display:flex; flex-wrap:wrap; justify-content:center; gap:24px; }
.cards .card{ flex:1 1 300px; max-width:362px; }
.card{ background:#fff; border:1px solid var(--line); border-radius:var(--r); padding:32px 28px; box-shadow:var(--shadow); transition:transform .18s ease, box-shadow .18s ease; }
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.card-icon{ width:50px; height:50px; border-radius:12px; background:var(--sand); display:grid; place-items:center; margin-bottom:18px; }
.card-icon svg{ width:25px; height:25px; fill:none; stroke:var(--navy); stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.card h3{ font-size:1.14rem; font-weight:600; }
.card p{ font-size:1rem; }

/* ---------------- Service map ---------------- */
.map-layout{ display:grid; grid-template-columns:1.15fr .85fr; gap:56px; align-items:center; }
.map-figure{ margin:0; position:relative; background:var(--sand); border:1px solid var(--sand-2); border-radius:var(--r-lg); padding:26px; }
.map-figure svg{ width:100%; height:auto; overflow:visible; }

.tx-outline{ fill:#fff; stroke:var(--navy); stroke-width:3; stroke-linejoin:round; }
.tx-spoke{ stroke:rgba(0,73,180,.34); stroke-width:1.6; }
.tx-city{ fill:var(--navy-2); }
.tx-city-label{ font-family:var(--f-head); font-size:13px; font-weight:600; fill:var(--navy-2); }
.tx-hub{ fill:var(--blue); stroke:#fff; stroke-width:3; }
.tx-hub-label{ font-family:var(--f-head); font-size:15px; font-weight:700; fill:var(--navy); letter-spacing:.02em; }

.map-legend{ display:flex; flex-wrap:wrap; gap:18px; margin-top:20px; padding-top:18px; border-top:1px solid var(--sand-2); }
.map-legend div{ display:flex; align-items:center; gap:8px; font-size:.88rem; color:var(--body); }
.legend-swatch{ width:15px; height:15px; border-radius:50%; flex:none; }
.legend-hub{ background:var(--blue); }
.legend-city{ background:var(--navy-2); width:11px; height:11px; }

.area-list{ list-style:none; margin:0 0 28px; padding:0; display:grid; grid-template-columns:repeat(2,1fr); gap:9px 20px; }
.area-list li:first-child{ font-weight:600; color:var(--navy); }
.area-list li{ display:flex; align-items:center; gap:9px; font-size:1rem; color:var(--ink); }
.area-list li::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--blue); flex:none; }

.badge-tx{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--navy); color:#fff; border-radius:999px; padding:9px 20px 9px 14px;
  font-family:var(--f-head); font-weight:600; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:18px;
}
.badge-tx svg{ width:17px; height:17px; fill:var(--bluebonnet); }

/* ---------------- Why grid ---------------- */
.why-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:38px 54px; }
.why-item h3{ color:#fff; font-size:1.12rem; font-weight:600; }
.why-item p{ color:rgba(255,255,255,.74); }
.why-num{ display:block; font-family:var(--f-head); font-weight:700; font-size:.84rem; letter-spacing:.16em; color:var(--bluebonnet); margin-bottom:9px; }

/* ---------------- Gallery ---------------- */
.filters{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px; }
.filter{
  font-family:var(--f-head); font-weight:500; font-size:.82rem; letter-spacing:.06em; text-transform:uppercase;
  background:#fff; border:1.5px solid var(--line); color:var(--navy);
  padding:9px 18px; border-radius:999px; cursor:pointer; transition:all .15s ease;
}
.filter:hover{ border-color:var(--blue); }
.filter[aria-pressed="true"]{ background:var(--navy); border-color:var(--navy); color:#fff; }

.grid-gallery{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.shot{
  margin:0; position:relative; border:0; padding:0; background:var(--sand);
  border-radius:var(--r); overflow:hidden; box-shadow:var(--shadow-sm);
  cursor:zoom-in; display:block; width:100%; text-align:left;
  transition:transform .2s ease, box-shadow .2s ease;
}
.shot:hover{ transform:translateY(-3px); box-shadow:var(--shadow); }
.shot img{ width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .5s ease; }
.shot:hover img{ transform:scale(1.04); }
.shot[hidden]{ display:none; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:400; display:none;
  align-items:center; justify-content:center; padding:24px;
  background:rgba(9,20,38,.93); backdrop-filter:blur(3px);
}
.lightbox[open]{ display:flex; }
.lightbox img{ max-width:min(1100px,94vw); max-height:80vh; width:auto; border-radius:var(--r); box-shadow:var(--shadow-lg); }
.lb-cap{ color:#fff; font-family:var(--f-head); font-size:.92rem; text-align:center; margin-top:16px; }
.lb-btn{
  position:absolute; background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.3);
  color:#fff; border-radius:50%; width:46px; height:46px; display:grid; place-items:center; cursor:pointer;
  transition:background .15s ease;
}
.lb-btn:hover{ background:rgba(255,255,255,.28); }
.lb-btn svg{ width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.lb-close{ top:20px; right:20px; }
.lb-prev{ left:20px; top:50%; transform:translateY(-50%); }
.lb-next{ right:20px; top:50%; transform:translateY(-50%); }

/* ---------------- Steps ---------------- */
.steps{ list-style:none; margin:0; padding:0; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.step-n{ display:grid; place-items:center; width:40px; height:40px; border-radius:50%; background:var(--navy); color:#fff; font-family:var(--f-head); font-weight:700; margin-bottom:15px; }
.steps h3{ font-size:1.08rem; font-weight:600; }

/* ---------------- About ---------------- */
.split{ display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:center; }
.split-media{ border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow); }
.split-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/3; }

.values{ list-style:none; margin:0; padding:0; display:grid; gap:22px; }
.values li{ display:flex; gap:16px; }
.values svg{ width:24px; height:24px; flex:none; margin-top:3px; fill:none; stroke:var(--blue); stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.values h3{ font-size:1.06rem; font-weight:600; margin-bottom:.25em; }
.values p{ font-size:1rem; }

.quote{
  margin:0; padding:34px 38px; background:#fff; border-left:5px solid var(--blue);
  border-radius:0 var(--r) var(--r) 0;
}
.quote p{ font-size:1.22rem; color:var(--ink); font-style:italic; line-height:1.55; }
.quote footer{ font-family:var(--f-head); font-size:.8rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:14px; font-style:normal; }

/* ---------------- Contact ---------------- */
.contact-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:start; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:13px; }
.contact-card{ background:var(--sand); border-radius:var(--r-lg); padding:34px 32px; border:1px solid var(--sand-2); }
.contact-card dl{ margin:0 0 24px; }
.contact-card dl > div{ padding:13px 0; border-bottom:1px solid var(--sand-2); }
.contact-card dl > div:last-child{ border-bottom:0; }
.contact-card dt{ font-family:var(--f-head); font-weight:600; font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--blue-deep); margin-bottom:3px; }
.contact-card dd{ margin:0; font-size:1.05rem; color:var(--ink); }
.contact-card dd a{ color:var(--navy); text-decoration:none; border-bottom:1px solid var(--blue); }
.contact-card dd a:hover{ color:var(--blue); }

.socials{ display:flex; gap:11px; flex-wrap:wrap; }
.socials a{
  display:inline-flex; align-items:center; gap:9px;
  background:#fff; border:1px solid var(--sand-2); border-radius:999px;
  padding:9px 17px 9px 13px; text-decoration:none; color:var(--navy);
  font-family:var(--f-head); font-weight:500; font-size:.85rem;
}
.socials a:hover{ background:var(--navy); color:#fff; border-color:var(--navy); }
.socials svg{ width:18px; height:18px; fill:currentColor; }
.socials svg.stroked{ fill:none; stroke:currentColor; stroke-width:1.9; }

/* ---------------- CTA band ---------------- */
.cta-band{ background:var(--blue); color:#fff; padding-block:clamp(48px,6vw,72px); }
.cta-inner{ display:flex; flex-wrap:wrap; gap:26px; align-items:center; justify-content:space-between; }
.cta-band h2{ color:#fff; margin-bottom:.25em; font-size:clamp(1.5rem,2.8vw,2.1rem); }
.cta-band p{ color:rgba(255,255,255,.86); max-width:52ch; }
.cta-band .btn-outline{ color:#fff; border-color:#fff; }
.cta-band .btn-outline:hover{ background:#fff; color:var(--blue-deep); }
.cta-actions{ display:flex; gap:13px; flex-wrap:wrap; }
.cta-band .btn-primary{ background:#fff; color:var(--blue-deep); box-shadow:none; }
.cta-band .btn-primary:hover{ background:var(--navy); color:#fff; }

/* ---------------- Footer ---------------- */
.site-footer{ background:var(--navy); color:rgba(255,255,255,.62); padding-block:52px 34px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:32px; border-bottom:1px solid rgba(255,255,255,.13); }
.footer-brand{ display:flex; align-items:center; gap:11px; margin-bottom:14px; }
.footer-brand img{ height:44px; width:auto; filter:brightness(0) invert(1); }
.footer-brand span{ padding-left:13px; border-left:1px solid rgba(255,255,255,.22); }
.footer-brand small{ display:block; font-family:var(--f-head); font-size:.68rem; line-height:1.35; letter-spacing:.13em; text-transform:uppercase; color:rgba(255,255,255,.6); }
.footer-grid h4{ color:#fff; font-size:.78rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:14px; }
.footer-links{ list-style:none; margin:0; padding:0; display:grid; gap:9px; }
.footer-links a{ color:rgba(255,255,255,.66); text-decoration:none; font-size:.96rem; }
.footer-links a:hover{ color:#fff; }
.footer-bottom{ display:flex; flex-wrap:wrap; gap:12px; justify-content:space-between; padding-top:22px; font-size:.88rem; }

/* ---------------- Skirting materials ---------------- */
.materials{
  list-style:none; margin:0 0 26px; padding:0;
  display:flex; flex-wrap:wrap; justify-content:center; gap:18px;
}
.materials li{
  flex:1 1 280px; max-width:344px;
  background:#fff; border:1px solid var(--sand-2); border-radius:var(--r);
  padding:22px 24px 24px;
}
.materials h3{ font-size:1.04rem; font-weight:600; margin-bottom:.3em; }
.materials p{ font-size:.97rem; margin:0; }
.materials-note{
  background:#fff; border-left:4px solid var(--blue);
  border-radius:0 var(--r) var(--r) 0; padding:16px 22px; font-size:1rem;
}
.materials-note strong{ color:var(--navy); }

/* ---------------- FAQ ---------------- */
.faq-list{ display:grid; gap:12px; }
.faq{ background:#fff; border:1px solid var(--sand-2); border-radius:var(--r); }
.faq summary{
  cursor:pointer; list-style:none; padding:18px 54px 18px 22px; position:relative;
  font-family:var(--f-head); font-weight:600; font-size:1.02rem; color:var(--navy);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:""; position:absolute; right:24px; top:50%; width:10px; height:10px;
  margin-top:-7px; border-right:2px solid var(--blue); border-bottom:2px solid var(--blue);
  transform:rotate(45deg); transition:transform .18s ease;
}
.faq[open] summary::after{ transform:rotate(-135deg); margin-top:-2px; }
.faq summary:hover{ color:var(--blue); }
.faq p{ margin:0; padding:0 24px 20px; font-size:1rem; }

/* ---------------- Sticky mobile call ---------------- */
.sticky-call{ display:none; }

/* ---------------- Responsive ---------------- */
/* Stacked, the map is ~340px wide against a 618-unit viewBox, so the town
   labels render around 7px. Scaling them up makes them collide instead, so
   drop them — the full list of towns sits directly beneath the map. */
@media (max-width:1020px){
  .tx-city-label{ display:none; }
  .tx-hub-label{ font-size:26px; }
  .tx-city{ r:8; }
  .tx-hub{ r:13; stroke-width:4; }
  .tx-spoke{ stroke-width:2.6; }
}

@media (max-width:1020px){
  .map-layout, .split, .contact-grid{ grid-template-columns:1fr; gap:38px; }
  .cards, .steps{ grid-template-columns:repeat(2,1fr); }
  .cards .card:last-child:nth-child(odd){ grid-column:1 / -1; }
  .pillars-grid{ grid-template-columns:repeat(2,1fr); }
  .pillar:nth-child(3){ border-left:0; }
  .pillar:nth-child(n+3){ border-top:1px solid rgba(255,255,255,.13); }
  .grid-gallery{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width:820px){
  .nav-toggle{ display:block; order:2; }
  .btn-call{ order:3; }
  .nav{
    display:none; order:4; flex-basis:100%; flex-direction:column; gap:0;
    border-top:1px solid var(--line); padding-block:8px 14px;
  }
  .nav.open{ display:flex; }
  .nav a{ padding:12px 0; border-bottom:0; font-size:.95rem; }
  .nav a[aria-current="page"]{ color:var(--blue); }
  .header-inner{ flex-wrap:wrap; gap:12px; }
}

@media (max-width:680px){
  body{ font-size:16px; }
  /* On a phone, overlaying text on the photo means one of the two always
     loses. Stack instead: headline on white, then the photo as its own band. */
  .hero{ display:flex; flex-direction:column; min-height:0; }
  .hero-inner{ order:1; padding-block:46px 38px; }
  .hero-media{
    order:2; position:relative; inset:auto; z-index:auto;
    height:clamp(200px, 54vw, 290px);
  }
  .hero-media img{ object-position:center 55%; }
  .hero-scrim{ display:none; }
  .btn-call span{ display:none; }
  .btn-call{ padding:12px 14px; }
  .brand-text{ display:none; }
  .brand-logo{ height:36px; }
  .steps, .why-grid, .grid-gallery, .area-list, .footer-grid{ grid-template-columns:1fr; }
  .cards .card{ flex:1 1 100%; max-width:none; }
  .pillars-grid{ grid-template-columns:1fr; }
  .pillar{ border-left:0; border-top:1px solid rgba(255,255,255,.13); }
  .pillar:first-child{ border-top:0; }
  .hero-actions .btn, .contact-actions .btn, .cta-actions .btn{ flex:1 1 100%; }
  .quote{ padding:26px 24px; }
  .map-figure{ padding:16px; }
  .lb-prev{ left:8px; } .lb-next{ right:8px; }

  .sticky-call{
    display:flex; align-items:center; justify-content:center; gap:10px;
    position:fixed; left:12px; right:12px; bottom:12px; z-index:150;
    background:var(--blue); color:#fff; text-decoration:none;
    font-family:var(--f-head); font-weight:600; font-size:.9rem;
    letter-spacing:.07em; text-transform:uppercase;
    padding:15px; border-radius:var(--r);
    box-shadow:0 8px 26px rgba(16,38,71,.36);
  }
  .sticky-call svg{ width:18px; height:18px; fill:currentColor; }
  .site-footer{ padding-bottom:92px; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ transition:none !important; animation:none !important; }
}
