/* ==========================================================================
   Nova Core Construction v2 - Halifax, Nova Scotia
   Light, clean, conversion-first. Navy + stone brand on warm white.
   Type: Archivo (display) + Manrope (body).
   ========================================================================== */

:root {
  --white:       #ffffff;
  --paper:       #f7f5f1;   /* warm light section bg */
  --paper-2:     #efebe2;
  --navy:        #1b2a3a;
  --navy-deep:   #13202c;
  --navy-700:    #294157;   /* link / lighter navy */
  --stone:       #978b78;
  --stone-deep:  #6e6557;
  --stone-light: #c7beae;
  --line:        #e7e2d8;
  --line-soft:   #efebe3;
  --text:        #1f2a33;
  --muted:       #58646f;
  --gold:        #c0a04e;   /* star ratings */

  --on-navy:        #f3eee4;
  --on-navy-muted:  #b7bdc4;
  --on-navy-faint:  #8a939c;

  --font-display: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --step-eyebrow: 0.78rem;
  --step-small: 0.875rem;
  --step-body: 1.0625rem;
  --step-lead: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem);
  --h4: clamp(1.1rem, 1.04rem + 0.3vw, 1.3rem);
  --h3: clamp(1.3rem, 1.15rem + 0.7vw, 1.7rem);
  --h2: clamp(1.95rem, 1.5rem + 2vw, 3rem);
  --h1: clamp(2.5rem, 1.75rem + 3.4vw, 4.4rem);

  --space-2xs: 0.25rem; --space-xs: 0.5rem; --space-sm: 0.75rem;
  --space-md: 1rem; --space-lg: 1.5rem; --space-xl: 2rem;
  --space-2xl: 3rem; --space-3xl: 4rem; --space-4xl: 6rem;
  --space-section: clamp(3.5rem, 2.4rem + 5.5vw, 7rem);

  --shell: 75rem;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;

  --sh-sm: 0 1px 2px rgba(27,42,58,.07), 0 1px 1px rgba(27,42,58,.04);
  --sh-md: 0 14px 36px -18px rgba(27,42,58,.30);
  --sh-lg: 0 30px 70px -28px rgba(27,42,58,.40);

  --ease: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Keep #anchor targets clear of the sticky header (JS keeps --header-h in sync) */
  scroll-padding-top: calc(var(--header-h, 4.5rem) + 1rem);
}
body {
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea, button { font-family: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--navy); color: var(--on-navy); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.07; letter-spacing: -0.02em; color: var(--navy); overflow-wrap: break-word; }
strong { font-weight: 700; color: var(--navy); }

/* Prevent grid/flex children from forcing horizontal overflow on small screens */
.quote-grid > *, .why-grid > *, .hero .shell > *, .cta-band .shell > *, .footer-top > *, .cc, .cc > span { min-width: 0; }
.cc .v, .footer-col a, .footer-col .v { overflow-wrap: anywhere; }
.mobile-menu { overflow-x: hidden; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: var(--step-eyebrow); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-deep);
}
.eyebrow::before { content: ""; width: 1.6rem; height: 2px; background: var(--stone); border-radius: 2px; }
.eyebrow.center::before { display: none; }
.lead { font-size: var(--step-lead); line-height: 1.55; color: var(--muted); max-width: 56ch; }

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.5rem); }
.section { padding-block: var(--space-section); }
.bg-paper {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(110,101,87,0.05) 1.1px, transparent 1.1px);
  background-size: 23px 23px;
}
.bg-white {
  background-color: var(--white);
  background-image: radial-gradient(rgba(110,101,87,0.035) 1px, transparent 1px);
  background-size: 26px 26px;
}
.bg-navy { background: var(--navy); color: var(--on-navy); }
.bg-navy h2, .bg-navy h3 { color: var(--on-navy); }

.section-head { max-width: 60ch; margin-bottom: var(--space-2xl); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--h2); margin-top: var(--space-sm); }
.section-head .lead { margin-top: var(--space-md); }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.005em; padding: 0.95rem 1.6rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: transform 0.16s var(--ease), background-color 0.2s var(--ease), box-shadow 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-primary { background: var(--navy); color: var(--on-navy); box-shadow: var(--sh-sm); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { border: 1.5px solid var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--on-navy); transform: translateY(-2px); }
.bg-navy .btn-primary { background: var(--stone); color: var(--navy-deep); }
.bg-navy .btn-primary:hover { background: var(--stone-light); }
.bg-navy .btn-ghost { border-color: rgba(243,238,228,0.5); color: var(--on-navy); }
.bg-navy .btn-ghost:hover { background: var(--on-navy); color: var(--navy-deep); border-color: var(--on-navy); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--navy); font-family: var(--font-display); font-size: 0.92rem; }
.link-arrow svg { transition: transform 0.25s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

.stars { color: var(--gold); letter-spacing: 0.08em; line-height: 1; }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar { background: var(--navy-deep); color: var(--on-navy-muted); font-size: 0.8rem; }
.topbar .shell { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.topbar .tb-left { display: flex; align-items: center; gap: 1.4rem; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar .tb-item svg { width: 14px; height: 14px; color: var(--stone-light); }
.topbar a:hover { color: var(--on-navy); }
.topbar .tb-hide { display: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); transition: box-shadow 0.3s var(--ease), background-color 0.3s; }
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(27,42,58,0.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand .mark { width: 42px; height: 42px; flex: none; }
.brand-logo { height: 46px; width: auto; flex: none; display: block; }
@media (min-width: 960px) { .brand-logo { height: 54px; } }
.brand-words { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: -0.01em; color: var(--navy); }
.brand-sub { font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--stone-deep); margin-top: 0.32rem; font-weight: 600; }

.nav { display: none; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.nav a { font-size: 0.95rem; font-weight: 600; color: var(--text); position: relative; padding-block: 0.3rem; transition: color 0.2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--stone); border-radius: 2px; transition: width 0.28s var(--ease); }
.nav a:hover { color: var(--navy); }
.nav a:hover::after { width: 100%; }
.header-actions { display: none; align-items: center; gap: 1rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 0.98rem; }
.header-phone svg { width: 18px; height: 18px; color: var(--stone-deep); }
.header-phone:hover { color: var(--navy-700); }

.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 0.6rem; margin-right: -0.4rem; }
.burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease-expo), opacity 0.2s; }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 49; background: var(--white); transform: translateY(-100%); transition: transform 0.45s var(--ease-expo); display: grid; align-content: start; gap: 0.4rem; padding: 6rem 1.5rem 2rem; }
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a.m-link { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--navy); padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu .m-actions { margin-top: 1.4rem; display: grid; gap: 0.8rem; }
.mobile-menu .header-phone { font-size: 1.2rem; justify-content: center; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.12); animation: heroKen 22s var(--ease) forwards; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(247,245,241,0.96) 0%, rgba(247,245,241,0.74) 52%, rgba(247,245,241,0.88) 100%); }
@keyframes heroKen { to { transform: scale(1); } }
.hero .shell { position: relative; z-index: 1; display: grid; gap: clamp(2rem, 5vw, 4rem); padding-block: clamp(2.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem); align-items: center; }
.hero-copy, .hero .quote-card { animation: heroRise 0.85s var(--ease-expo) both; }
.hero .quote-card { animation-delay: 0.12s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-copy { max-width: 38rem; }
.hero h1 { font-size: var(--h1); }
.hero h1 .hl { color: var(--stone-deep); }
.hero-eyebrow { margin-bottom: 1.1rem; }
.hero-sub { margin-top: 1.3rem; font-size: var(--step-lead); color: var(--muted); max-width: 44ch; }
.hero-cta { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-trust { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; }
.hero-trust .ht { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--text); }
.hero-trust .ht svg { width: 18px; height: 18px; color: var(--stone-deep); flex: none; }
.hero-trust .ht .stars { font-size: 0.92rem; }

/* hero quote form card */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--sh-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.quote-card .qc-top { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.3rem; }
.quote-card .qc-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-deep); background: var(--paper); border: 1px solid var(--line); padding: 0.3rem 0.6rem; border-radius: 100px; }
.quote-card h2 { font-size: 1.4rem; line-height: 1.15; margin-bottom: 0.3rem; }
.quote-card .qc-note { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.quote-card form { display: grid; gap: 0.7rem; }

.field label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--white); border: 1.5px solid var(--line); color: var(--text);
  padding: 0.8rem 0.9rem; font-size: 1rem; border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3ab; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,42,58,0.1); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.form-fineprint { font-size: 0.74rem; color: var(--muted); text-align: center; margin-top: 0.2rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.form-fineprint svg { width: 13px; height: 13px; color: var(--stone-deep); }

.form-success { display: none; text-align: center; padding: 1.5rem 0.5rem; }
.form-success.is-on { display: block; animation: popIn 0.45s var(--ease-expo); }
.form-success .ok { width: 58px; height: 58px; margin: 0 auto 1rem; border-radius: 50%; background: var(--navy); color: var(--on-navy); display: grid; place-items: center; }
.form-success .ok svg { width: 30px; height: 30px; }
.form-success h3 { font-size: 1.3rem; }
.form-success p { color: var(--muted); font-size: 0.92rem; margin-top: 0.4rem; }
@keyframes popIn { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: none; } }

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trustbar { border-block: 1px solid var(--line); background: var(--white); }
.trustbar .shell { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem 1rem; padding-block: 1.6rem; }
.trust-item { display: flex; align-items: center; gap: 0.7rem; }
.trust-item .tg { flex: none; width: 38px; height: 38px; border-radius: 10px; background: var(--paper); display: grid; place-items: center; color: var(--navy); }
.trust-item .tg svg { width: 20px; height: 20px; }
.trust-item b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--navy); }
.trust-item small { color: var(--muted); font-size: 0.76rem; }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.svc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--sh-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s; display: flex; flex-direction: column; }
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.svc-img { aspect-ratio: 3/2; overflow: hidden; background: var(--paper-2); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.svc:hover .svc-img img { transform: scale(1.05); }
.svc-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.svc-body h3 { font-size: var(--h4); }
.svc-body p { font-size: 0.92rem; color: var(--muted); flex: 1; }
.svc-body .link-arrow { margin-top: 0.3rem; }

/* ==========================================================================
   Work gallery
   ========================================================================== */
.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
.gtile { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy); aspect-ratio: 1/1; }
.gtile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gtile:hover img { transform: scale(1.06); }
.gtile figcaption { position: absolute; inset: auto 0 0 0; padding: 1.4rem 1rem 0.9rem; background: linear-gradient(transparent, rgba(19,32,44,0.85)); color: var(--on-navy); opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.gtile:hover figcaption, .gtile:focus-within figcaption { opacity: 1; transform: none; }
.gtile .gt-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone-light); font-weight: 700; }
.gtile .gt-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-top: 0.15rem; }
.gtile.wide { grid-column: span 2; aspect-ratio: 2/1; }

/* ==========================================================================
   Why choose us
   ========================================================================== */
.why-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why-figure { position: relative; }
.why-figure img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--sh-md); }
.why-figure .float-badge { position: absolute; left: -0.8rem; bottom: -0.8rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--sh-md); padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 0.7rem; }
.why-figure .float-badge .fb-num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--navy); line-height: 1; }
.why-figure .float-badge small { font-size: 0.72rem; color: var(--muted); line-height: 1.2; }
.why-list { display: grid; gap: 1.3rem; margin-top: var(--space-lg); }
.why-item { display: grid; grid-template-columns: 44px 1fr; gap: 0.9rem; align-items: start; }
.why-item .wi-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--on-navy); display: grid; place-items: center; }
.why-item .wi-ico svg { width: 22px; height: 22px; }
.why-item h3 { font-size: 1.08rem; }
.why-item p { font-size: 0.92rem; color: var(--muted); margin-top: 0.2rem; }

/* ==========================================================================
   Process
   ========================================================================== */
.steps { display: grid; gap: 1.3rem; grid-template-columns: 1fr; counter-reset: step; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; position: relative; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step .s-num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--stone-light); line-height: 1; }
.step h3 { font-size: 1.12rem; margin-top: 0.6rem; }
.step p { font-size: 0.92rem; color: var(--muted); margin-top: 0.4rem; }
.step .s-arrow { display: none; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.tmb-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.tmb { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.6rem 1.7rem; box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 0.8rem; }
.tmb .stars { font-size: 1rem; }
.tmb blockquote { font-size: 1rem; line-height: 1.6; color: var(--text); flex: 1; }
.tmb .who { display: flex; align-items: center; gap: 0.7rem; padding-top: 0.6rem; border-top: 1px solid var(--line-soft); }
.tmb .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--on-navy); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; flex: none; }
.tmb .who b { font-family: var(--font-display); font-size: 0.92rem; color: var(--navy); display: block; }
.tmb .who small { font-size: 0.76rem; color: var(--muted); }
.reviews-head .grev { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: var(--space-md); font-weight: 600; color: var(--text); font-size: 0.9rem; }
.reviews-head .grev .stars { font-size: 1.1rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; background: var(--navy-deep); overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5) saturate(0.9); }
.cta-band .cta-bg::after { content: ""; position: absolute; inset: 0; background: rgba(19,32,44,0.72); }
.cta-band .shell { position: relative; z-index: 2; display: grid; gap: 1.6rem; align-items: center; padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.cta-band h2 { font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.8rem); color: var(--on-navy); text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.cta-band p { color: var(--on-navy-muted); margin-top: 0.6rem; max-width: 46ch; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.cta-phone { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--on-navy); font-family: var(--font-display); font-weight: 700; }
.cta-phone svg { width: 20px; height: 20px; color: var(--stone-light); }
.cta-phone:hover { color: var(--stone-light); }

/* ==========================================================================
   Quote / contact section
   ========================================================================== */
.quote-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.quote-info h2 { font-size: var(--h2); }
.quote-info > .lead { margin-top: var(--space-md); }
.contact-cards { margin-top: var(--space-xl); display: grid; gap: 0.9rem; }
.cc { display: flex; gap: 0.9rem; align-items: center; padding: 1rem 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color 0.2s, box-shadow 0.2s; }
.cc:hover { border-color: var(--stone); box-shadow: var(--sh-sm); }
.cc .cc-ico { flex: none; width: 42px; height: 42px; border-radius: 11px; background: var(--paper); color: var(--navy); display: grid; place-items: center; }
.cc .cc-ico svg { width: 20px; height: 20px; }
.cc .k { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; margin-bottom: 0.15rem; }
.cc .v { display: block; font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 1rem; line-height: 1.2; }
.quote-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--sh-md); padding: clamp(1.5rem, 4vw, 2.4rem); }
.quote-form-wrap h3 { font-size: var(--h3); }
.quote-form-wrap > p { color: var(--muted); font-size: 0.92rem; margin-top: 0.3rem; margin-bottom: 1.2rem; }
.quote-form-wrap form { display: grid; gap: 0.9rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-deep); color: var(--on-navy-muted); }
.footer-top { display: grid; gap: 2.4rem; padding-block: var(--space-3xl) var(--space-2xl); }
.footer-brand .brand-name { color: var(--on-navy); }
.footer-brand .brand-sub { color: var(--stone-light); }
.footer-logo { display: inline-flex; background: var(--white); padding: 0.9rem 1.1rem; border-radius: var(--radius); box-shadow: var(--sh-md); }
.footer-logo img { height: 76px; width: auto; display: block; }
.footer-brand p { margin-top: 1.2rem; font-size: 0.88rem; max-width: 30ch; color: var(--on-navy-faint); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(199,190,174,0.22); display: grid; place-items: center; color: var(--on-navy-faint); transition: all 0.2s var(--ease); }
.footer-social a:hover { color: var(--navy-deep); background: var(--stone-light); border-color: var(--stone-light); transform: translateY(-2px); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-navy); margin-bottom: 1rem; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a, .footer-col span { font-size: 0.88rem; color: var(--on-navy-faint); transition: color 0.2s; }
.footer-col a:hover { color: var(--stone-light); }
.footer-col .k { display: block; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-navy-faint); margin-bottom: 0.15rem; }
.footer-col .v { color: var(--on-navy-muted); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(199,190,174,0.14); }
.footer-bottom .shell { display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; padding-block: 1.3rem; }
.footer-bottom p, .footer-bottom .seo { font-size: 0.74rem; color: var(--on-navy-faint); }
.footer-bottom .seo { max-width: 70ch; }

/* ==========================================================================
   Mobile sticky action bar
   ========================================================================== */
.mobile-bar { position: fixed; inset: auto 0 0 0; z-index: 45; display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--white) 92%, transparent); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px -16px rgba(27,42,58,0.4); }
.mobile-bar .btn { padding: 0.85rem 1rem; }
.mobile-bar .btn-call { background: var(--white); border: 1.5px solid var(--navy); color: var(--navy); }

/* ==========================================================================
   Reveal
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){transition-delay:.03s}
[data-stagger].in > *:nth-child(2){transition-delay:.09s}
[data-stagger].in > *:nth-child(3){transition-delay:.15s}
[data-stagger].in > *:nth-child(4){transition-delay:.21s}
[data-stagger].in > *:nth-child(5){transition-delay:.27s}
[data-stagger].in > *:nth-child(6){transition-delay:.33s}

/* ==========================================================================
   Accessibility helpers
   ========================================================================== */
.skip-link {
  position: absolute; left: 1rem; top: -100%; z-index: 100;
  background: var(--navy); color: var(--on-navy);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 1.2rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: 0; }

.vh {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

/* Honeypot: hidden from people, reachable by bots. Never use display:none only. */
.hp-field {
  position: absolute !important; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

/* Turnstile. In interaction-only mode the widget renders nothing until a
   visitor actually has to solve something, so it must not reserve space. */
.cf-turnstile { margin-bottom: 0; }
.cf-turnstile:not(:empty) { margin-bottom: 1rem; }

.form-error {
  margin-top: 0.9rem; padding: 0.85rem 1rem;
  background: #fdf3f2; border: 1px solid #e9c9c4; border-radius: var(--radius-sm);
  font-size: var(--step-small); line-height: 1.5; color: #7d3b32;
}
.form-error a { color: #7d3b32; font-weight: 700; text-decoration: underline; }
.btn:disabled { opacity: 0.65; cursor: progress; transform: none !important; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 0.7rem; max-width: 52rem; margin-inline: auto; }
.faq {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--sh-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq[open] { border-color: var(--stone-light); box-shadow: var(--sh-md); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.3rem; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700; font-size: var(--h4);
  line-height: 1.25; letter-spacing: -0.01em; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--navy-700); }
.faq-ico { position: relative; flex: none; width: 20px; height: 20px; }
.faq-ico::before, .faq-ico::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: var(--stone-deep); border-radius: 2px;
  transform: translate(-50%, -50%); transition: transform 0.3s var(--ease-expo), opacity 0.2s;
}
.faq-ico::before { width: 14px; height: 2px; }
.faq-ico::after { width: 2px; height: 14px; }
.faq[open] .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.3rem 1.25rem; }
.faq-a p { color: var(--muted); max-width: 62ch; }
.faq-a a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Areas served ---------- */
.areas { max-width: 52rem; margin: var(--space-2xl) auto 0; text-align: center; }
.areas h3 { font-size: var(--h3); }
.areas p { margin-top: var(--space-sm); color: var(--muted); }
.area-chips {
  margin-top: 1.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
}
.area-chips li {
  padding: 0.42rem 0.95rem; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: var(--step-small); font-weight: 600; color: var(--stone-deep);
}

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--navy-deep); color: var(--on-navy-faint); font-size: 0.82rem; }
.crumbs .shell { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; padding-block: 0.7rem; }
.crumbs a { color: var(--on-navy-muted); }
.crumbs a:hover { color: var(--on-navy); text-decoration: underline; text-underline-offset: 2px; }
.crumbs [aria-current="page"] { color: var(--stone-light); font-weight: 600; }
.crumb-sep { color: var(--on-navy-faint); }

/* ---------- Current nav item ---------- */
.nav a.is-current { color: var(--navy); font-weight: 700; }
.nav a.is-current::after { width: 100%; }
.mobile-menu a[aria-current="page"] { color: var(--stone-deep); }

/* ---------- Page hero ---------- */
.page-hero {
  background-color: var(--paper);
  background-image: radial-gradient(rgba(110,101,87,0.05) 1.1px, transparent 1.1px);
  background-size: 23px 23px;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.75rem, 2rem + 3.4vw, 5rem);
}
.page-hero h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem); margin-top: var(--space-sm); max-width: 20ch; }
.page-hero .lead { margin-top: var(--space-lg); max-width: 62ch; }
.page-hero .hero-cta { margin-top: var(--space-xl); }

/* ---------- Long-form copy ---------- */
.prose { max-width: 64ch; }
.prose h2 { font-size: var(--h2); }
.prose h3 { font-size: var(--h3); margin-top: var(--space-xl); }
.prose .eyebrow { margin-bottom: var(--space-sm); }
.prose p { margin-top: var(--space-md); color: var(--muted); }
.prose p:first-of-type { margin-top: var(--space-lg); }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Text + image split ---------- */
.split { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.split-copy h2 { font-size: var(--h2); margin-top: var(--space-sm); }
.split-copy p { margin-top: var(--space-md); color: var(--muted); max-width: 58ch; }
.split-figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.split-figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.85rem; align-items: flex-start; line-height: 1.55; color: var(--muted); }
.checklist .ck-ico {
  flex: none; width: 26px; height: 26px; margin-top: 0.15rem;
  border-radius: 8px; background: var(--navy); color: var(--on-navy);
  display: grid; place-items: center;
}
.checklist .ck-ico svg { width: 15px; height: 15px; }
.checklist b { color: var(--navy); font-family: var(--font-display); font-weight: 700; }

/* ---------- Spec table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.spec-table { width: 100%; border-collapse: collapse; min-width: 40rem; font-size: 0.95rem; }
.spec-table th, .spec-table td { padding: 0.95rem 1.1rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.spec-table thead th {
  background: var(--navy); color: var(--on-navy);
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase; border-bottom: none;
}
.spec-table tbody th { font-family: var(--font-display); font-weight: 700; color: var(--navy); white-space: nowrap; }
.spec-table tbody td { color: var(--muted); }
.spec-table tbody tr:last-child th, .spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table tbody tr:nth-child(even) { background: var(--paper); }
.table-note { margin-top: var(--space-md); font-size: var(--step-small); color: var(--muted); max-width: 70ch; }

/* ---------- Cost drivers ---------- */
.driver-grid { display: grid; gap: 1.1rem; }
.driver {
  padding: 1.4rem 1.5rem; background: var(--white);
  border: 1px solid var(--line); border-left: 3px solid var(--stone);
  border-radius: var(--radius);
}
.driver h3 { font-size: var(--h4); }
.driver p { margin-top: 0.5rem; color: var(--muted); font-size: 0.98rem; }

/* ---------- Image strip ---------- */
.strip { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }

/* ---------- Sibling service links ---------- */
.sib-grid { display: grid; gap: 0.8rem; }
.sib-grid a {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem;
  padding: 1.2rem 1.4rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.sib-grid a:hover { border-color: var(--stone-light); transform: translateY(-2px); box-shadow: var(--sh-md); }
.sib-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); }
.sib-blurb { display: block; margin-top: 0.3rem; font-size: 0.92rem; color: var(--muted); }
.sib-go { color: var(--stone-deep); display: grid; place-items: center; }

/* ---------- Work gallery cards ---------- */
.work-grid { display: grid; gap: 1.6rem; }
.work-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.work-card figure { overflow: hidden; background: var(--navy); }
.work-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover img { transform: scale(1.04); }
.work-body { padding: 1.3rem 1.4rem 1.5rem; }
.work-body h2 { font-size: var(--h4); margin-top: 0.6rem; }
.work-body p { margin-top: 0.6rem; color: var(--muted); font-size: 0.96rem; }
.work-card.wide img { aspect-ratio: 16/9; }

/* ---------- Contact: next steps ---------- */
.next-steps { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--line); }
.next-steps h3 { font-size: var(--h4); }
.next-steps ol { margin-top: var(--space-md); padding-left: 1.3rem; display: grid; gap: 0.8rem; }
.next-steps li { color: var(--muted); line-height: 1.55; }
.next-steps b { color: var(--navy); font-family: var(--font-display); font-weight: 700; }

/* ---------- Section footer link ---------- */
.section-foot { margin-top: var(--space-xl); }
.areas .section-foot { display: flex; justify-content: center; }
.svc-body h3 a { color: inherit; }
.svc-body h3 a:hover { color: var(--navy-700); }
.wide-list { max-width: 62rem; margin-inline: auto; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 560px) {
  .topbar .tb-hide { display: inline-flex; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 700px) {
  .checklist { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2rem; }
  .driver-grid { grid-template-columns: repeat(2, 1fr); }
  .sib-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.wide { grid-column: 1 / -1; }
  .strip { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split.flip .split-figure { order: -1; }
  .trustbar .shell { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr 1.1fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .tmb-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; }
  .cta-band .shell { grid-template-columns: 1.4fr auto; }
  .quote-grid { grid-template-columns: 0.95fr 1.05fr; }
}
@media (min-width: 960px) {
  .nav { display: flex; }
  .header-actions { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none; }
  .mobile-bar { display: none; }
  .hero .shell { grid-template-columns: 1.1fr 0.9fr; }
  .hero-bg::after { background:
    linear-gradient(96deg, rgba(247,245,241,0.97) 0%, rgba(247,245,241,0.9) 38%, rgba(247,245,241,0.52) 72%, rgba(247,245,241,0.42) 100%),
    linear-gradient(180deg, transparent 78%, rgba(247,245,241,0.7) 100%); }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .driver-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  body { padding-bottom: 0 !important; }
}
@media (max-width: 959px) {
  body { padding-bottom: 4.5rem; } /* room for mobile bar */
}
@media (max-width: 380px) {
  .field-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero-bg img { transform: none !important; animation: none !important; }
  .hero-copy, .hero .quote-card { opacity: 1 !important; transform: none !important; }
}
