/* ==========================================================================
   A1 Roofing & Property Maintenance — site.css
   Light, white, airy. Blue (#095998, matching hindmarshroofing.com.au) is an ACCENT only:
   buttons, thin rules, line icons, eyebrow labels. The only dark surface is
   the footer. Headings: Manrope, uppercase, tracked, soft charcoal.
   Body: Lato. Square buttons. Hairline dividers.
   ========================================================================== */

:root {
  --blue: #095998;
  --blue-dark: #074a7e;
  --blue-tint: #eef4fb;
  --sky: #4d9bd6;
  --ink: #383f47;
  --heading: #5c636d;
  --text: #666c74;
  --muted: #939aa2;
  --line: #e4e8ec;
  --line-soft: #eef1f4;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --navy: #12232f;
  --container: 1200px;
  --head: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --body: "Lato", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --track: .08em;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0; font-family: var(--body); font-size: 1.0625rem; line-height: 1.7;
  color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3, h4 { margin: 0; font-family: var(--head); color: var(--heading); font-weight: 600; line-height: 1.25; }
h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); text-transform: uppercase; letter-spacing: .09em; line-height: 1.3; }
h3 { font-size: 1.05rem; letter-spacing: .02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
strong { color: var(--ink); font-weight: 700; }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--blue); color: #fff; padding: 10px 14px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

.section { padding: 104px 0; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }
.section--line { border-top: 1px solid var(--line); }
@media (max-width: 768px) { .section { padding: 72px 0; } .section--tight { padding: 60px 0; } }

/* Eyebrow + heading pattern (Hindmarsh signature): a small blue tracked label
   flanked by thin blue hairlines above a calm grey uppercase heading. No rule
   beneath the heading — the flanked eyebrow is the only accent. */
.eyebrow { display: block; font-family: var(--head); font-size: .82rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.section-head { max-width: 780px; margin-bottom: 52px; }
.section-head .eyebrow { display: flex; align-items: center; gap: 18px; }
.section-head .eyebrow::after { content: ""; flex: 0 0 auto; width: clamp(40px, 8vw, 90px); height: 0; border-top: 1px solid var(--blue); opacity: .9; }
.section-head h2 { margin-top: 16px; }
.section-head .lede, .section-head p { margin-top: 20px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { content: ""; flex: 0 0 auto; width: clamp(40px, 12vw, 200px); height: 0; border-top: 1px solid var(--blue); opacity: .9; }
.section-head--center .eyebrow::after { width: clamp(40px, 12vw, 200px); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; max-width: none; }
.section-head--row > div { max-width: 700px; }
@media (max-width: 768px) { .section-head--row { flex-direction: column; align-items: flex-start; } .section-head { margin-bottom: 40px; } }
.lede { font-size: 1.125rem; line-height: 1.75; color: var(--text); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.actions--center { justify-content: center; }
.center { text-align: center; }

/* Reveal on scroll (JS-only, respects reduced motion) */
.js [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ---------- Buttons: square, uppercase, tracked ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 28px; border: 1.5px solid transparent; border-radius: 2px;
  font-family: var(--head); font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; line-height: 1.2;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--blue); }
.btn--white:hover { background: var(--blue-tint); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85); }
.btn--ghost:hover { background: #fff; color: var(--blue); }
.btn--lg { min-height: 54px; padding: 0 32px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .65; cursor: progress; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--head); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); text-decoration: none; }
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- Slim utility strip (light) ---------- */
.topbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .8rem; color: var(--text); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 36px; gap: 20px; }
.topbar span, .topbar a { display: inline-flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
.topbar a:hover { color: var(--blue); }
.topbar svg { width: 14px; height: 14px; color: var(--blue); flex: none; }
.topbar__right { display: flex; gap: 28px; }
@media (max-width: 1023px) { .topbar { display: none; } }

/* ---------- Header: white, logo left, nav, one blue button ---------- */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s; }
.header.is-scrolled { box-shadow: 0 6px 24px rgba(20, 35, 55, .07); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 92px; position: relative; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); flex: none; }
.brand img { height: 42px; width: auto; }
.brand__text { line-height: 1.05; white-space: nowrap; font-family: var(--head); }
.brand__name { display: block; font-weight: 800; font-size: 1.02rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
.brand__sub { display: block; font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav a, .nav button {
  display: inline-flex; align-items: center; gap: 6px; padding: 10px 11px;
  font-family: var(--head); font-weight: 600; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase; color: var(--heading);
  text-decoration: none; background: none; border: 0; cursor: pointer; white-space: nowrap; transition: color .15s;
}
.nav a:hover, .nav button:hover, .nav a[aria-current="page"], .nav > li.is-active > button { color: var(--blue); }
.nav button svg { width: 12px; height: 12px; transition: transform .2s; }
.nav li.is-open > button svg { transform: rotate(180deg); }
.menu a { display: block; padding: 10px 16px; font-size: .78rem; letter-spacing: .08em; }
.menu a:hover { background: var(--bg-alt); }
@media (min-width: 1024px) {
  .menu {
    position: absolute; top: calc(100% + 14px); left: 0; min-width: 300px;
    background: #fff; border: 1px solid var(--line); border-top: 2px solid var(--blue); padding: 8px 0; box-shadow: 0 16px 40px rgba(20, 35, 55, .10);
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s, transform .18s, visibility .18s;
  }
  .menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
  .nav li:hover > .menu, .nav li:focus-within > .menu, .nav li.is-open > .menu { opacity: 1; visibility: visible; transform: none; }
}
.header__actions { display: flex; align-items: center; gap: 18px; flex: none; }
.header__actions .btn { padding: 0 22px; min-height: 46px; }
.header__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); text-decoration: none; font-family: var(--head); font-weight: 800; font-size: 1.02rem; letter-spacing: .01em; white-space: nowrap; }
.header__phone svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.header__phone:hover { color: var(--blue); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 2px; background: #fff; cursor: pointer; place-items: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .2s, top .2s; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
@media (max-width: 1280px) and (min-width: 1024px) { .nav a, .nav button { padding: 10px 8px; font-size: .72rem; letter-spacing: .07em; } .header__actions { gap: 14px; } .header__phone { font-size: .92rem; } .brand__text { display: none; } }
@media (max-width: 1100px) and (min-width: 1024px) { .header__actions .btn { display: none; } }
@media (max-width: 1023px) {
  .nav-toggle { display: grid; }
  .header__inner { height: 72px; }
  .brand img { height: 36px; }
  .brand__name { font-size: .95rem; }
  .brand__sub { font-size: .56rem; letter-spacing: .14em; }
  .header__actions .btn { display: none; }
  .header__phone { width: 44px; height: 44px; justify-content: center; border: 1px solid var(--line); border-radius: 2px; }
  .header__phone span { display: none; }
  /* Open mobile menu: a full-height, fully opaque white overlay that covers
     the page beneath it (no bleed-through), sitting under the sticky header
     and above the fixed call bar. Comfortable side padding, balanced spacing. */
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px 28px calc(96px + env(safe-area-inset-bottom));
    display: none; gap: 0; overflow-y: auto; -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain; z-index: 45;
  }
  .nav.is-open { display: flex; }
  .nav > li { border-bottom: 1px solid var(--line-soft); }
  .nav > li:last-child { border-bottom: 0; }
  .nav a, .nav button { width: 100%; justify-content: space-between; padding: 18px 6px; font-size: .9rem; letter-spacing: .1em; }
  .menu { display: none; padding: 0 0 10px 16px; }
  .nav li.is-open > .menu { display: block; }
  .menu a { padding: 12px 8px; font-size: .82rem; color: var(--text); }
}
@media (max-width: 480px) {
  .header__inner { gap: 12px; }
  .brand { gap: 8px; }
  .brand img { height: 30px; }
  .brand__name { font-size: .82rem; letter-spacing: .05em; }
  .brand__sub { font-size: .5rem; letter-spacing: .1em; }
  .header__actions { gap: 10px; }
}

/* ---------- Hero: full-bleed photo, light touch ---------- */
.hero { position: relative; color: #fff; min-height: clamp(560px, 78vh, 760px); display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #6b7683; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 32, 50, .16) 0%, rgba(16, 32, 50, .24) 52%, rgba(14, 28, 46, .46) 100%);
}
.hero__inner { position: relative; padding: 120px 0 132px; max-width: 900px; margin: 0 auto; }
.hero__welcome { display: block; font-family: var(--head); font-size: .8rem; font-weight: 700; letter-spacing: .32em; text-transform: uppercase; color: rgba(255, 255, 255, .92); }
.hero h1 { color: #fff; font-family: var(--head); font-size: clamp(2.1rem, 4.6vw, 3.9rem); font-weight: 700; line-height: 1.08; letter-spacing: -.005em; margin: 18px 0 22px; text-shadow: 0 2px 24px rgba(0, 0, 0, .18); }
.hero__tag { font-family: var(--head); font-size: clamp(.82rem, 1.1vw, 1rem); font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .92); }
.hero__tag::before { content: ""; display: block; width: 52px; height: 2px; background: #fff; margin: 0 auto 22px; opacity: .9; }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 40px; }
.hero__sub { margin-top: 26px; font-size: .95rem; color: rgba(255, 255, 255, .85); }
.hero__sub a { color: #fff; text-decoration: none; font-weight: 700; border-bottom: 1px solid rgba(255, 255, 255, .5); }
@media (max-width: 768px) { .hero { min-height: 0; } .hero__inner { padding: 84px 0 96px; } .hero__actions .btn { width: 100%; max-width: 360px; } }

/* ---------- Why choose: 5 thin line icons, hairline dividers ---------- */
.why { padding: 88px 0 96px; background: #fff; }
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 52px; }
.why__item { text-align: center; padding: 8px 22px; border-left: 1px solid var(--line); }
.why__item:first-child { border-left: 0; }
.why__ico { display: block; width: 46px; height: 46px; margin: 0 auto 20px; color: var(--blue); }
.why__ico svg { width: 100%; height: 100%; }
.why__item h3 { font-size: .98rem; font-weight: 600; letter-spacing: .01em; color: var(--heading); line-height: 1.4; }
.why__item p { margin-top: 8px; font-size: .9rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 1023px) {
  .why__grid { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
  .why__item:nth-child(4) { border-left: 0; }
}
@media (max-width: 640px) {
  /* Mobile: a clean single-column stack of horizontal line-items —
     line-icon + heading + short description per full-width row, left-aligned,
     separated by horizontal hairline rules. Desktop layout is unchanged. */
  .why { padding: 64px 0 72px; }
  .why__grid { display: block; grid-template-columns: none; margin-top: 28px; border-top: 1px solid var(--line); }
  .why__item {
    display: grid; grid-template-columns: 42px 1fr; column-gap: 18px; row-gap: 3px;
    text-align: left; padding: 22px 2px; border: 0; border-bottom: 1px solid var(--line);
  }
  .why__ico { grid-column: 1; grid-row: 1 / span 2; align-self: center; width: 38px; height: 38px; margin: 0; }
  .why__item h3 { grid-column: 2; grid-row: 1; align-self: center; font-size: 1rem; }
  .why__item p { grid-column: 2; grid-row: 2; margin-top: 0; }
}

/* ---------- Services: photo-led cards ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: #dfe5ec; text-decoration: none; color: #fff; }
.service img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.service:hover img { transform: scale(1.06); }
.service::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 28, 46, 0) 38%, rgba(14, 28, 46, .34) 66%, rgba(12, 26, 42, .82) 100%); }
.service__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 26px 22px; z-index: 1; }
.service h3 { color: #fff; font-size: 1.08rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; line-height: 1.32; }
.service__more { display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; font-family: var(--head); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .92); }
.service__more svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.service:hover .service__more svg { transform: translateX(4px); }
.services + .actions { margin-top: 48px; }
@media (max-width: 1023px) { .services { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } .service { aspect-ratio: 16 / 11; } }

/* ---------- About (two-column, photo) ---------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
@media (max-width: 900px) { .about__media img { aspect-ratio: 4 / 3; } }
.about__media figcaption { margin-top: 14px; font-size: .84rem; color: var(--muted); letter-spacing: .02em; }
.about .section-head { margin-bottom: 0; }
.about p + p { margin-top: 16px; }
.ticks { margin: 28px 0 34px; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink); font-weight: 400; }
.ticks svg { flex: none; width: 20px; height: 20px; color: var(--blue); margin-top: 4px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 44px; } .about--flip .about__media { order: -1; } }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.steps::before { content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 27px; border-top: 1px solid var(--line); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step__num { position: relative; z-index: 1; width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 24px; background: #fff; border: 1.5px solid var(--blue); color: var(--blue); display: grid; place-items: center; font-family: var(--head); font-weight: 700; font-size: .95rem; letter-spacing: .04em; }
.step h3 { font-size: 1rem; margin-bottom: 10px; }
.step p { font-size: .95rem; line-height: 1.6; }
.steps + .actions { margin-top: 56px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; } .steps::before { display: none; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Split band (light) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split__media { position: relative; min-height: 420px; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { padding: 88px 8% 88px 8%; display: flex; flex-direction: column; justify-content: center; }
.split__body .section-head { margin-bottom: 0; }
.split__body .actions { margin-top: 32px; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split__media { min-height: 300px; } .split__body { padding: 56px 24px 64px; } }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery__item { position: relative; overflow: hidden; background: var(--bg-alt); margin: 0; aspect-ratio: 4 / 3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption { position: absolute; left: 16px; bottom: 16px; background: rgba(255, 255, 255, .94); color: var(--heading); font-family: var(--head); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 8px 12px; }
.gallery + .actions, .gallery + .center { margin-top: 48px; }
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; } }

/* ---------- Areas ---------- */
.areas { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.areas .section-head { margin-bottom: 0; }
.areas .actions { margin-top: 32px; }
.area-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; border-top: 1px solid var(--line); }
.area-list li { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .98rem; }
.area-list svg { width: 15px; height: 15px; color: var(--blue); flex: none; }
.area-note { margin-top: 28px; }
.area-note h3 { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.area-note p { font-size: .98rem; }
.area-note p span { color: var(--ink); }
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 600px) { .area-list { grid-template-columns: 1fr 1fr; gap: 0 20px; } }
@media (max-width: 400px) { .area-list { grid-template-columns: 1fr; } }

/* ---------- FAQ (hairline accordion) ---------- */
.faq { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--head); font-weight: 600; color: var(--heading); font-size: 1.02rem; transition: color .15s; }
.faq summary:hover, .faq details[open] summary { color: var(--blue); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex: none; width: 18px; height: 18px; color: var(--blue); transition: transform .25s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq__body { padding: 0 4px 24px; color: var(--text); max-width: 760px; }

/* ---------- Quote section + forms ---------- */
.quote__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.quote__inner--form-first { grid-template-columns: 1.15fr .85fr; }
.quote__side .section-head { margin-bottom: 0; }
.contact-list { margin-top: 36px; display: grid; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .ico { flex: none; width: 40px; height: 40px; color: var(--blue); display: grid; place-items: center; }
.contact-list .ico svg { width: 24px; height: 24px; }
.contact-list b { display: block; font-family: var(--head); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.05rem; }
.contact-list a:hover { color: var(--blue); }
.contact-list .hours-inline { display: grid; gap: 2px; color: var(--ink); font-size: .98rem; }
.contact-list .hours-inline span span { color: var(--text); }
.reasons { margin-top: 40px; display: grid; gap: 22px; }
.reasons li { display: grid; grid-template-columns: 30px 1fr; gap: 16px; }
.reasons svg { width: 24px; height: 24px; color: var(--blue); margin-top: 2px; }
.reasons b { display: block; font-family: var(--head); color: var(--heading); font-weight: 600; margin-bottom: 4px; }
.reasons p { font-size: .95rem; }
.form-card { background: #fff; border: 1px solid var(--line); padding: 40px; }
.form-card > h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.form-card > h3 + p { margin-bottom: 26px; color: var(--text); font-size: .98rem; }
@media (max-width: 1000px) { .quote__inner { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 560px) { .form-card { padding: 24px 20px; } }

.form { display: grid; gap: 20px; position: relative; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--head); font-weight: 700; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--heading); margin-bottom: 8px; }
.field label span { color: var(--muted); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: .8rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink); background: #fff;
  border: 1px solid #d4dbe3; border-radius: 2px; padding: 13px 14px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(9, 89, 152, .12); }
.field select {
  appearance: none; -webkit-appearance: none; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23095998' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.drop { border: 1px dashed #c5cfd9; border-radius: 2px; padding: 26px 20px; text-align: center; background: var(--bg-alt); cursor: pointer; transition: border-color .15s, background .15s; }
.drop.is-over, .drop:hover { border-color: var(--blue); background: var(--blue-tint); }
.drop > svg { width: 30px; height: 30px; color: var(--blue); margin: 0 auto 10px; }
.drop p { font-weight: 400; color: var(--ink); }
.drop p button { background: none; border: 0; color: var(--blue); font-weight: 700; text-decoration: underline; cursor: pointer; padding: 0; }
.drop small { display: block; margin-top: 8px; color: var(--muted); font-size: .85rem; line-height: 1.5; }
.drop input[type="file"] { display: none; }
.drop .btn { margin-top: 12px; }
.drop__mobile { display: none; }
@media (max-width: 768px) { .drop__desktop { display: none; } .drop__mobile { display: inline-flex; } }
.thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.thumbs:empty { display: none; }
.thumbs figure { position: relative; margin: 0; width: 76px; height: 76px; overflow: hidden; border: 1px solid var(--line); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button { position: absolute; top: 3px; right: 3px; width: 22px; height: 22px; border-radius: 50%; border: 0; background: rgba(14, 34, 56, .85); color: #fff; font-size: 15px; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.form__note { font-size: .88rem; color: var(--muted); text-align: center; }
.form__status { display: none; padding: 14px 16px; border-radius: 2px; font-weight: 700; font-size: .95rem; }
.form__status.is-ok { display: block; background: #eaf6ee; color: #1d6b3d; border: 1px solid #bfe3cb; }
.form__status.is-err { display: block; background: #fdeeee; color: #a12525; border: 1px solid #f2c6c6; }
.hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Inner page header (light) ---------- */
.page-hero { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 44px 0 64px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .82rem; color: var(--muted); margin-bottom: 30px; }
.crumbs a { color: var(--text); text-decoration: none; }
.crumbs a:hover { color: var(--blue); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #c5cfd9; }
.page-hero .eyebrow { display: flex; align-items: center; gap: 18px; }
.page-hero .eyebrow::after { content: ""; flex: 0 0 auto; width: clamp(40px, 8vw, 90px); height: 0; border-top: 1px solid var(--blue); opacity: .9; }
.page-hero h1 { font-size: clamp(1.7rem, 3vw, 2.5rem); text-transform: uppercase; letter-spacing: .06em; line-height: 1.22; margin: 16px 0 0; max-width: 820px; }
.page-hero .lede { margin-top: 22px; max-width: 700px; }
.page-hero .actions { margin-top: 30px; }
.page-hero--split .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.page-hero__media { aspect-ratio: 4 / 3; overflow: hidden; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.tags { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 26px; }
.tags li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--ink); }
.tags li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); }
@media (max-width: 900px) { .page-hero--split .container { grid-template-columns: 1fr; gap: 36px; } .page-hero { padding: 32px 0 52px; } }

/* ---------- Service page ---------- */
.svc { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 72px; align-items: start; }
.svc__block + .svc__block { margin-top: 56px; }
.svc__block h2 { font-size: 1.05rem; letter-spacing: .16em; margin-bottom: 18px; color: var(--blue); }
.svc__block h2::after { content: ""; display: block; width: 32px; height: 2px; background: var(--line); margin-top: 14px; }
.checklist { display: grid; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { flex: none; width: 20px; height: 20px; color: var(--blue); margin-top: 4px; }
.numlist li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.numlist li:last-child { border-bottom: 0; }
.numlist .num { font-family: var(--head); font-weight: 700; color: var(--blue); font-size: .9rem; letter-spacing: .08em; padding-top: 3px; }
.fixes { display: grid; gap: 10px; }
.fixes li { border-left: 2px solid var(--blue); padding: 6px 0 6px 18px; color: var(--ink); }
.svc__photo { margin: 56px 0 0; overflow: hidden; }
.svc__photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc__aside { position: sticky; top: 116px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--blue); padding: 32px; }
.quote-card h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .1em; margin: 10px 0 10px; }
.quote-card > p { color: var(--text); margin-bottom: 22px; font-size: .98rem; }
.quote-card .btn + .btn { margin-top: 10px; }
.quote-card__meta { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--text); display: grid; gap: 6px; }
.quote-card__meta span { display: flex; justify-content: space-between; gap: 12px; }
.quote-card__meta span b { color: var(--ink); font-weight: 700; }
@media (max-width: 1000px) { .svc { grid-template-columns: 1fr; gap: 48px; } .svc__aside { position: static; } }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related a { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; text-decoration: none; color: #fff; background: #dfe5ec; }
.related a img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.related a:hover img { transform: scale(1.05); }
.related a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 30, 52, 0) 45%, rgba(14, 30, 52, .8) 100%); }
.related h3 { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: #fff; font-size: .92rem; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 900px) { .related { grid-template-columns: 1fr; } }

/* ---------- About page ---------- */
.standards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 64px; border-top: 1px solid var(--line); }
.standard { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.standard__num { font-family: var(--head); font-weight: 700; color: var(--blue); font-size: .9rem; letter-spacing: .1em; padding-top: 4px; }
.standard h3 { margin-bottom: 10px; }
.standard p { font-size: .98rem; }
.facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; margin-top: 30px; border-top: 1px solid var(--line); }
.facts li { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .95rem; display: flex; gap: 10px; align-items: center; }
.facts svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
@media (max-width: 900px) { .standards { grid-template-columns: 1fr; gap: 0; } }
@media (max-width: 560px) { .facts { grid-template-columns: 1fr; } }

/* ---------- Prose (privacy) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1rem; letter-spacing: .14em; margin: 40px 0 12px; color: var(--blue); }
.prose p + p { margin-top: 14px; }
.prose ul { margin: 14px 0; display: grid; gap: 8px; }
.prose li { display: flex; gap: 12px; }
.prose li::before { content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); margin-top: 12px; }
.prose .meta { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }

/* ---------- CTA band (light — the page stays white; only the footer is dark) ---------- */
.cta { background: var(--bg-alt); color: var(--text); padding: 92px 0; text-align: center; border-top: 1px solid var(--line); }
.cta .eyebrow { display: flex; align-items: center; justify-content: center; gap: 18px; }
.cta .eyebrow::before, .cta .eyebrow::after { content: ""; flex: 0 0 auto; width: clamp(40px, 12vw, 200px); height: 0; border-top: 1px solid var(--blue); opacity: .9; }
.cta h2 { color: var(--heading); margin-top: 16px; font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
.cta p { color: var(--text); margin: 20px auto 0; max-width: 620px; font-size: 1.08rem; }
.cta .actions { margin-top: 32px; justify-content: center; }
.cta__meta { margin-top: 26px; font-size: .92rem; color: var(--muted); }
.cta__meta a { color: var(--blue); text-decoration: none; font-weight: 700; }
.cta__meta a:hover { text-decoration: underline; }

/* ---------- Footer (dark, like the reference — the only dark surface) ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, .72); padding: 76px 0 0; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
.footer__logo { width: 220px; height: auto; margin: -8px 0 18px -4px; }
.footer h2 { color: #fff; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 22px; font-weight: 700; }
.footer li { margin: 10px 0; }
.footer a { color: rgba(255, 255, 255, .85); text-decoration: none; transition: color .15s; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__tag { max-width: 380px; margin-bottom: 24px; line-height: 1.7; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; color: var(--sky); margin-top: 5px; }
.hours { margin-top: 26px; }
.hours p { color: #fff; font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; margin-bottom: 10px; }
.hours li { display: flex; justify-content: space-between; gap: 12px; max-width: 280px; border-bottom: 1px solid rgba(255, 255, 255, .1); padding-bottom: 8px; margin: 8px 0; }
.footer .btn--ghost { margin-top: 14px; }
.footer__bottom { margin-top: 60px; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .84rem; color: rgba(255, 255, 255, .55); }
.footer__bottom a { color: rgba(255, 255, 255, .85); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } .footer { padding-top: 56px; } }

/* ---------- Sticky call bar (mobile only) ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(8px); border-top: 1px solid var(--line);
}
.callbar .btn { min-height: 46px; padding: 0 10px; font-size: .7rem; letter-spacing: .1em; gap: 7px; min-width: 0; overflow: hidden; }
.callbar .btn svg { width: 15px; height: 15px; }
@media (max-width: 1023px) { .callbar { display: grid; } body { padding-bottom: 70px; } }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 120px 0; }
.notfound .big { font-family: var(--head); font-size: clamp(4rem, 12vw, 7rem); font-weight: 700; color: var(--blue); letter-spacing: -.02em; line-height: 1; }
.notfound h1 { font-size: 1.4rem; text-transform: uppercase; letter-spacing: .08em; margin: 18px 0 26px; }
.notfound .actions { justify-content: center; }

/* ---------- Print ---------- */
@media print { .topbar, .header, .callbar, .cta, .hero__bg::after { display: none !important; } body { padding: 0; } }
