/*
 * Lara Contractors — brand stylesheet.
 * Trade-first, trust-first. Editorial, warm, human. Navy + terracotta + a warm
 * paper ground, elegant serif display. Self-hosted system fonts only (no
 * external requests — keeps the CSP tight and the trust story intact).
 */

:root {
  --navy:    #0e1a2b;
  --navy-2:  #15273d;
  --terra:   #be4a2f;   /* terracotta — the brick accent */
  --terra-d: #9e3a22;
  --paper:   #fbf9f5;   /* warm off-white ground */
  --paper-2: #f3efe7;   /* slightly deeper warm panel */
  --line:    #e6e0d5;
  --ink:     #1b2530;
  --muted:   #5f6b78;
  --muted-d: #9fb0c0;   /* secondary text on dark */
  --mortar:  #cdbfa6;   /* warm hairline on light */

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1140px;
  --radius: 3px;
  --ease: cubic-bezier(.16, .84, .44, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; color: var(--navy); letter-spacing: -0.015em; margin: 0 0 .4em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.3vw, 3.1rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1rem; }
strong { color: var(--navy); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 760px; }
.section { padding: 6rem 0; position: relative; }
.section--tight { padding: 4rem 0; }
.section--paper2 { background: var(--paper-2); }
.section--navy { background: var(--navy); color: #e7ecf2; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.kicker {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra); margin: 0 0 1.1rem; display: inline-flex; align-items: center; gap: .6rem;
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--terra); }
.section--navy .kicker { color: #e08a68; }
.section--navy .kicker::before { background: #e08a68; }

.lead-text { font-size: 1.25rem; color: var(--muted); max-width: 46ch; line-height: 1.6; }
.section--navy .lead-text { color: var(--muted-d); }

/* a thin "mortar joint" divider between sections */
.joint { border: 0; height: 1px; background: repeating-linear-gradient(90deg, var(--mortar) 0 14px, transparent 14px 26px); margin: 0; }

/* ---------- a11y ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff; padding: .6rem 1rem; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 2px; }

/* ---------- scroll reveal ----------
   Content is fully visible by default. We only hide-then-animate when JS is
   present (the <html class="js"> flag, set in <head>). If the reveal JS never
   runs, a timed fallback (.reveal-fallback, also set in <head>) shows everything
   anyway — so content can never get stuck invisible for crawlers, no-JS users,
   or a script failure. */
.js [data-reveal-item] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal-item].is-visible,
.reveal-fallback [data-reveal-item] { opacity: 1; transform: none; }
.reveal-fallback .journey__num { background: var(--terra); color: #fff; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal-item] { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 245, .88);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.4rem; color: var(--navy); letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand .dot { color: var(--terra); }
.brand__logo { height: 46px; width: auto; display: block; }
.header-end { display: flex; align-items: center; gap: 1.7rem; }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { color: var(--ink); font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--terra); text-decoration: none; }
.nav__cta { white-space: nowrap; }

/* hamburger — hidden on desktop, shown on mobile */
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.nav-toggle__box { position: relative; display: block; width: 22px; height: 16px; margin: 0 auto; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px;
  background: var(--navy); transition: transform .25s var(--ease), opacity .2s var(--ease), background .2s;
}
.nav-toggle__bar { top: 7px; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.is-open .nav-toggle__bar { background: transparent; }
.is-open .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.is-open .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer — overlays as a dropdown under the bar */
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0; display: none;
  flex-direction: column; padding: .5rem 1.5rem 1.25rem;
  background: var(--paper); border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 44px -26px rgba(14,26,43,.55);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.site-header.is-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__link { display: block; padding: .9rem .25rem; font-size: 1.1rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.mobile-menu__link:hover { text-decoration: none; color: var(--terra); }
.mobile-menu__cta { margin-top: 1.1rem; }

/* ---------- language switcher ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: .42rem;
  font-size: .9rem; font-weight: 600; color: var(--navy);
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: .4rem .85rem; line-height: 1; white-space: nowrap;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.lang-switch:hover { color: #fff; background: var(--terra); border-color: var(--terra); text-decoration: none; }
.lang-switch__icon { width: 16px; height: 16px; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .9rem 1.6rem; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: transform .08s ease, background .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--terra); color: #fff; border-color: var(--terra); box-shadow: 0 8px 22px -12px rgba(190,74,47,.8); }
.btn--primary:hover { background: var(--terra-d); border-color: var(--terra-d); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.hero .btn--ghost, .section--navy .btn--ghost, .band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .btn--ghost:hover, .section--navy .btn--ghost:hover, .band .btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--block { display: block; width: 100%; }

/* lightweight "read more" text link with a moving arrow */
.more-link { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .98rem; color: var(--terra); }
.more-link::after { content: "→"; transition: transform .18s var(--ease); }
.more-link:hover { text-decoration: none; }
.more-link:hover::after { transform: translateX(4px); }
.section--navy .more-link { color: #e08a68; }

/* ---------- hero ---------- */
.hero { background: var(--navy); color: #e7ecf2; padding: 7rem 0 6rem; position: relative; overflow: hidden; }
.hero::after { /* faint trowel-arc light */ content: ""; position: absolute; right: -10%; top: -30%; width: 60%; height: 160%; background: radial-gradient(closest-side, rgba(190,74,47,.16), transparent 70%); pointer-events: none; }
/* Hand-drawn running-bond brick coursing, rising from the bottom edge and fading
   up — like a wall being laid. Material, on-theme, never reads as a chart. */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='56'%3E%3Cg fill='none' stroke='%23e08a68' stroke-width='1.1' stroke-opacity='0.5'%3E%3Crect x='1' y='4' width='54' height='20' rx='2.5'/%3E%3Crect x='65' y='4' width='54' height='20' rx='2.5'/%3E%3Crect x='-31' y='32' width='54' height='20' rx='2.5'/%3E%3Crect x='33' y='32' width='54' height='20' rx='2.5'/%3E%3Crect x='97' y='32' width='54' height='20' rx='2.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 132px 58px;
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 58%);
  mask-image: linear-gradient(to top, #000 0%, transparent 58%);
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: italic; color: #e08a68; }
.hero__sub { font-size: clamp(1.15rem, 2.4vw, 1.5rem); color: var(--muted-d); margin: 1.4rem 0 2.2rem; max-width: 52ch; line-height: 1.55; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trustline { margin-top: 2.8rem; display: flex; flex-wrap: wrap; gap: .9rem 2rem; color: var(--muted-d); font-size: .92rem; }
.hero__trustline span { display: inline-flex; align-items: center; gap: .55rem; }
.hero__trustline .check { color: #e08a68; font-weight: 700; }

/* ---------- editorial feature (asymmetric two-col) ---------- */
.feature { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: start; }
.feature__aside { position: sticky; top: 100px; }
.feature__body p { font-size: 1.12rem; max-width: 60ch; }
.feature__body p:last-child { margin-bottom: 0; }

/* big serif statement */
.statement { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.18; color: var(--navy); max-width: 20ch; letter-spacing: -.015em; }
.statement .accent { color: var(--terra); }
.section--navy .statement { color: #fff; }

/* ---------- the worry / pull quote ---------- */
.worry { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.worry__list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.worry__list li { padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.13); }
.worry__list .t { font-family: var(--serif); font-size: 1.2rem; font-weight: 700; color: #fff; }
.worry__list .d { color: var(--muted-d); font-size: .96rem; }
.bigquote { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.25; color: #fff; }
.bigquote .accent { color: #e08a68; font-style: normal; }

/* ---------- journey timeline ---------- */
.journey { position: relative; margin-top: 3rem; display: grid; gap: 0; }
.journey__step { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; padding-bottom: 2.6rem; }
.journey__step:last-child { padding-bottom: 0; }
.journey__rail { position: relative; display: flex; flex-direction: column; align-items: center; }
.journey__num { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--paper); border: 2px solid var(--terra); color: var(--terra); font-family: var(--serif); font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; z-index: 1; transition: background .4s var(--ease), color .4s var(--ease); }
.journey__step.is-visible .journey__num { background: var(--terra); color: #fff; }
.journey__line { width: 2px; flex: 1; background: var(--line); margin-top: 6px; }
.journey__step:last-child .journey__line { display: none; }
.journey__step h3 { font-size: 1.4rem; margin-bottom: .25rem; }
.journey__step p { color: var(--muted); margin: 0; max-width: 52ch; }
.journey__step .when { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: .35rem; }

/* ---------- services list (no icons, editorial) ---------- */
.svc-list { border-top: 1px solid var(--line); margin-top: 2.5rem; }
.svc { display: grid; grid-template-columns: 0.35fr 1fr; gap: 2rem; padding: 1.8rem 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding-left .25s var(--ease); }
.svc:hover { padding-left: .6rem; }
.svc__cat { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); }
.svc__name { font-family: var(--serif); font-size: 1.45rem; font-weight: 700; color: var(--navy); margin: 0 0 .25rem; }
.svc__desc { color: var(--muted); margin: 0; max-width: 60ch; }

/* ---------- owner note (human signature) ---------- */
.note { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.note__mark { width: 80px; height: 80px; flex: none; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 2rem; font-weight: 700; }
.note__mark .dot { color: var(--terra); }
.note__body p { font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.45; color: var(--navy); font-style: italic; }
.note__sig { font-family: var(--serif); font-style: normal; font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-top: 1rem; }
.note__sig span { display: block; font-family: var(--sans); font-style: normal; font-weight: 500; font-size: .9rem; color: var(--muted); letter-spacing: 0; }
/* signature-on-dark: the owner's note sits on navy as the page's quiet dark bookend */
.section--navy .note__mark { background: var(--terra); }
.section--navy .note__mark .dot { color: #fff; }
.section--navy .note__body p { color: #f1ece4; }
.section--navy .note__sig { color: #fff; }
.section--navy .note__sig span { color: var(--muted-d); }

/* ---------- service-area map ---------- */
.map { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center; }
.map__svg { width: 100%; height: auto; }
/* navy "Chicago neighborhoods" poster treatment */
.map__svg .map-bg { fill: #14283f; }
.map__svg .outline { fill: none; stroke: #f4f1ea; stroke-width: 2.4; stroke-linejoin: round; }
.map__svg .cell { fill: none; stroke: #f4f1ea; stroke-width: .75; opacity: .24; }
.map__svg .hwy { fill: none; stroke: #f4f1ea; stroke-width: 2; opacity: .7; stroke-linecap: round; stroke-linejoin: round; }
.map__svg .water { fill: none; stroke: #43607d; stroke-width: 2; opacity: .6; }
.map__svg .water-txt { font-family: var(--serif); font-style: italic; fill: #6f8aa3; font-size: 15px; letter-spacing: .08em; }
.map__svg .pin-needle { stroke: #c9ced6; stroke-width: 1.8; stroke-linecap: round; }
.map__svg .pin-head { fill: var(--terra); stroke: #14283f; stroke-width: 1.2; }
.map__svg .pin-shine { fill: #fff; opacity: .7; }
.map__svg .pin-label { font-family: var(--sans); font-size: 12.5px; font-weight: 700; fill: #f4f1ea; paint-order: stroke; stroke: #14283f; stroke-width: 3.5px; stroke-linejoin: round; }
.map__svg .loop-mark { fill: #14283f; stroke: #f4f1ea; stroke-width: 2.4; }
.map__svg .loop-label { font-family: var(--sans); font-size: 12px; font-weight: 700; fill: #cbd3dc; paint-order: stroke; stroke: #14283f; stroke-width: 3.5px; }
.map__svg .map-wm { font-family: var(--sans); font-weight: 800; fill: #f4f1ea; font-size: 34px; letter-spacing: .22em; }
.map__svg .map-wm-sub { font-family: var(--sans); font-weight: 700; fill: var(--terra); font-size: 13px; letter-spacing: .34em; }
.map__pins { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.5rem; }
.map__pins li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--navy); }
.map__pins .swatch { width: 11px; height: 11px; border-radius: 50%; background: var(--terra); flex: none; }
.map__note { color: var(--muted); font-size: .96rem; margin-top: 1.4rem; }

/* ---------- "no middleman" chain diagram ---------- */
.chain { width: 100%; height: auto; }
.feature__body .chain { margin-bottom: 1.8rem; }
.chain .lane-label { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.chain .lane-label--bad { fill: var(--muted); }
.chain .lane-label--good { fill: var(--terra); }
.chain .lane--bad { opacity: .55; }   /* push the failed path back; eye lands on Lara's line */
.chain .node { fill: #fff; stroke: var(--line); stroke-width: 1.5; }
.chain .node--good { stroke: var(--terra); stroke-width: 2; }
.chain .node-text { font-family: var(--serif); font-weight: 700; font-size: 16px; fill: var(--navy); }
.chain .node-text--sm { font-size: 12.5px; }
.chain .node-text--good { fill: var(--terra-d); }
.chain .link { fill: none; }
.chain .link--bad { stroke: var(--muted); stroke-width: 2; stroke-dasharray: 5 6; }
.chain .link--good { stroke: var(--terra); stroke-width: 3; stroke-linecap: round; }
.chain .break-gap { fill: var(--paper-2); }
.chain .break-x { stroke: var(--terra); stroke-width: 2.5; stroke-linecap: round; }
.chain .markup-tag rect { fill: rgba(190,74,47,.12); }
.chain .markup-tag text { font-family: var(--sans); font-size: 11px; font-weight: 700; fill: var(--terra-d); letter-spacing: .02em; }
.chain .lane-note { font-family: var(--sans); font-size: 12.5px; font-weight: 600; fill: var(--muted); }
.chain .crew-ring { fill: none; stroke: var(--terra); stroke-width: 2; opacity: .5; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s var(--ease) infinite; }
/* .section--paper2 sits the diagram on a deeper ground — lift the node cards */
.section--paper2 .chain .node { box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .chain .crew-ring { animation: none; } }

/* ---------- "questions to ask any mason" (honest-advisor) ---------- */
.ask { list-style: none; counter-reset: ask; padding: 0; margin: 2.6rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 3rem; }
.ask li { counter-increment: ask; position: relative; padding: 1.2rem 0 0 3.2rem; border-top: 1px solid rgba(255,255,255,.14); }
.ask li::before { content: counter(ask); position: absolute; left: 0; top: 1.05rem; font-family: var(--serif); font-weight: 700; font-size: 1.55rem; line-height: 1; color: #e08a68; }
.ask__q { display: block; font-family: var(--serif); font-size: 1.22rem; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: .35rem; }
.ask__why { color: var(--muted-d); font-size: .95rem; line-height: 1.5; }
.ask__note { margin-top: 2.2rem; font-size: 1.1rem; color: #e7ecf2; }
.ask__note strong { color: #fff; }
@media (max-width: 900px) { .ask { grid-template-columns: 1fr; gap: 0; } }

/* ---------- testimonials ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.gallery figure { margin: 0; transition: transform .3s var(--ease); }
.gallery figure:hover { transform: translateY(-3px); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); display: block; background: rgba(255,255,255,.06); }
.gallery figcaption { margin-top: .65rem; font-size: .85rem; color: var(--muted-d); }
.gallery figcaption b { display: block; color: #fff; font-weight: 700; font-size: .95rem; }

/* ---------- band CTA ---------- */
.band { background: var(--terra); color: #fff; text-align: center; padding: 4rem 0; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto 1.7rem; font-size: 1.1rem; }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.stat .num { font-family: var(--serif); font-weight: 700; font-size: clamp(2.6rem,5vw,3.6rem); color: var(--navy); line-height: 1; }
.stat .bar { width: 40px; height: 3px; background: var(--terra); margin: .8rem 0 .7rem; }
.stat .label { font-size: .98rem; color: var(--ink); }

/* ---------- form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem; box-shadow: 0 24px 60px -34px rgba(14,26,43,.5); }
.form-row { margin-bottom: 1.1rem; }
.form-row label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: .35rem; }
.form-row .req { color: var(--terra); }
.form-control { width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink); padding: .75rem .85rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.form-control:focus { border-color: var(--terra); outline: none; box-shadow: 0 0 0 3px rgba(190,74,47,.16); }
textarea.form-control { min-height: 110px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-control.is-invalid { border-color: var(--terra); }

/* flash / errors */
.flash { padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: .95rem; }
.flash--alert { background: #fbe5de; color: var(--terra-d); border: 1px solid #f0bfae; }
.field-errors { background: #fbe5de; border: 1px solid #f0bfae; border-radius: var(--radius); padding: .8rem 1rem; margin-bottom: 1.2rem; }
.field-errors ul { margin: .3rem 0 0; padding-left: 1.1rem; color: var(--terra-d); font-size: .9rem; }

/* ---------- contact split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { padding: .9rem 0; border-top: 1px solid var(--line); }
.contact-list .k { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.contact-list .v { font-size: 1.05rem; color: var(--navy); font-weight: 600; }

/* ---------- prose ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose .fineprint { color: var(--muted); font-size: .9rem; margin-top: 2rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--muted-d); padding: 4rem 0 2rem; }
.site-footer a { color: #cdd6df; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand__logo { height: 54px; }
.site-footer__about { max-width: 34ch; }
.site-footer__meta { font-size: .85rem; color: var(--muted-d); }
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6rem; font-size: .95rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .82rem; }

/* ---------- cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 150; max-width: 640px; margin: 0 auto; background: var(--navy); color: #e7ecf2; border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: 0 16px 50px -16px rgba(0,0,0,.6); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; animation: slideup .5s var(--ease) both; }
@keyframes slideup { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-banner p { margin: 0; font-size: .9rem; flex: 1 1 280px; color: #cdd6df; }
.cookie-banner a { color: #e08a68; }
.cookie-banner .btn { padding: .55rem 1.2rem; font-size: .9rem; }

/* ---------- sticky mobile action bar ---------- */
.mobile-cta { display: none; }

/* ---------- utilities ---------- */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.minh { min-height: 62vh; display: flex; align-items: center; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  /* --- navigation: hamburger drawer replaces the inline links --- */
  .header-end { gap: .8rem; }
  .nav { display: none; }
  .nav__cta { display: none; }          /* the sticky bottom bar carries the CTA */
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-menu { display: flex; }

  /* --- performance: drop GPU-heavy effects that stutter on phones --- */
  .site-header { background: var(--paper); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .chain .crew-ring { animation: none; }
  .js [data-reveal-item] { transform: translateY(16px); transition-duration: .5s; will-change: auto; }
  body.nav-open { overflow: hidden; }

  /* --- layout: stack the two-column sections --- */
  .feature, .worry, .map, .split, .testi-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .gallery { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .feature__aside { position: static; }
  .map__pins { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .svc { grid-template-columns: 1fr; gap: .4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
  .note { grid-template-columns: 1fr; gap: 1.2rem; }

  /* --- sticky Call / Quote bar --- */
  .mobile-cta {
    display: flex; gap: .6rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 140;
    padding: .6rem .9rem calc(.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(251,249,245,.97); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px -16px rgba(14,26,43,.4);
  }
  .mobile-cta .btn { flex: 1; padding: .9rem 1rem; }
  body { padding-bottom: 4.75rem; }     /* room so the footer clears the bar */
  .cookie-banner { bottom: 5.25rem; }   /* sit above the action bar */
}
@media (max-width: 480px) {
  .hero { padding: 4.5rem 0 3.25rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr; }
  .section { padding: 3.75rem 0; }
}
