/* ═══════════════════════════════════════════════════════════
   Universal Piping — style.css
   OrangeSky Websites · Barlow Condensed + Barlow
═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ──────────────────────────────────── */
:root {
  --navy:        #0c2340;
  --navy-deep:   #091a30;
  --copper:      #d4732c;
  --copper-lt:   #e8894a;
  --copper-dk:   #b85e1e;
  --sky:         #e8f2fa;
  --cloud:       #f5f8fb;
  --ink:         #1a2535;
  --ink-mid:     #3d4f63;
  --ink-lt:      #6b7f95;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --border:      #dde4ec;
  --os-orange:   #F7941D;
  --os-ink:      #231F20;
  --os-blue:     #0072BC;
  --os-green:    #0DB14B;

  --font-head:   'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.10);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.18);

  --max-w:       1200px;
  --section-v:   80px;

  /* Spacing scale */
  --space-1: 4px;  --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 24px; --space-6: 32px;  --space-7: 48px;  --space-8: 64px;
  --space-9: 96px; --space-10:128px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--font-body); color: var(--ink); background: var(--white);
        overflow-x: clip; line-height: 1.6; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul    { list-style: none; }

/* ─── Typography ─────────────────────────────────────────── */
.h-display { font-family:var(--font-head); font-weight:900;
             font-size:clamp(2.8rem,6vw,5.5rem);
             line-height:.95; text-transform:uppercase; letter-spacing:-.01em; }
.h1  { font-family:var(--font-head); font-weight:800;
       font-size:clamp(2.2rem,4.5vw,3.8rem); line-height:1.0; text-transform:uppercase; }
.h2  { font-family:var(--font-head); font-weight:800;
       font-size:clamp(1.8rem,3.5vw,3rem); line-height:1.05; text-transform:uppercase; }
.h3  { font-family:var(--font-head); font-weight:700;
       font-size:clamp(1.3rem,2.5vw,2rem); line-height:1.1; text-transform:uppercase; }
.eyebrow { font-family:var(--font-body); font-weight:600; font-size:.75rem;
           letter-spacing:.14em; text-transform:uppercase; color:var(--copper); }
.lead    { font-size:1.15rem; line-height:1.7; color:var(--ink-mid); }

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width:var(--max-w); margin-inline:auto;
             padding-inline:clamp(1rem,4vw,2rem); }
.section   { padding-block: var(--section-v); }
.section--dark  { background:var(--navy); color:var(--white); }
.section--cloud { background:var(--cloud); }
.section--off   { background:var(--off-white); }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.85rem 1.75rem; border-radius:var(--radius-sm);
  font-family:var(--font-body); font-weight:600; font-size:1rem;
  letter-spacing:.02em; transition:all .2s ease; cursor:pointer;
  border:2px solid transparent; text-decoration:none; white-space:nowrap;
}
.btn-primary { background:var(--copper); color:var(--white); border-color:var(--copper); }
.btn-primary:hover { background:var(--copper-dk); border-color:var(--copper-dk);
                     transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-ghost   { background:transparent; color:var(--white); border-color:var(--white); }
.btn-ghost:hover { background:rgba(255,255,255,.12); }
.btn-navy    { background:var(--navy); color:var(--white); border-color:var(--navy); }
.btn-navy:hover { background:var(--navy-deep); transform:translateY(-1px);
                  box-shadow:var(--shadow-md); }
.btn-lg { padding:1.1rem 2.2rem; font-size:1.1rem; }

/* ─── OrangeSky Top Bar ──────────────────────────────────── */
#os-top-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: var(--os-ink);
  border-bottom: 3px solid var(--os-orange);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: .55rem 1rem;
}
#os-top-bar .os-logo { height: 22px; width: auto; }
#os-top-bar span { color: rgba(255,255,255,.82); font-size: .8rem; }
#os-top-bar a.os-cta {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--os-orange); color: #fff;
  font-size: .8rem; font-weight: 600;
  padding: .3rem .85rem; border-radius: 3px;
  transition: background .2s; white-space: nowrap;
}
#os-top-bar a.os-cta:hover { background: #d4560e; }
body { padding-top: calc(36px + 3px); }

/* ─── Utility Bar ────────────────────────────────────────── */
#utility-bar { background: var(--navy-deep); padding: .5rem 0; }
.ub-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.5rem; }
.ub-left, .ub-right { display:flex; align-items:center; gap:1.5rem; }
#utility-bar a, .ub-hours {
  color: rgba(255,255,255,.78); font-size: .82rem;
  display: flex; align-items: center; gap: .35rem; transition: color .2s;
}
#utility-bar a:hover { color: var(--copper); }
.ub-badge {
  background: var(--copper); color: #fff;
  font-size: .7rem; font-weight: 600; padding: .15rem .55rem;
  border-radius: 2px; letter-spacing: .06em;
}

/* ─── Site Header ────────────────────────────────────────── */
#site-header {
  position: sticky; top: calc(36px + 3px); z-index: 900;
  background: var(--white); border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-sm); transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--shadow-md); }
.hdr-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-block: .85rem;
}
.logo-wrap img { height: auto; width: 260px; max-width: 260px; object-fit: contain; }
#main-nav { display:flex; align-items:center; gap:.25rem; flex-wrap:nowrap; }
#main-nav a {
  font-size: .9rem; font-weight: 600; color: var(--ink);
  padding: .45rem .8rem; border-radius: var(--radius-sm);
  transition: color .2s, background .2s; white-space: nowrap;
}
#main-nav a:hover { color: var(--copper); background: var(--sky); }
.hdr-cta { display:flex; align-items:center; gap:.75rem; flex-shrink:0; }
.hdr-phone {
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  color: var(--navy); letter-spacing: -.01em;
  display: flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.hdr-phone svg { color: var(--copper); }
.nav-toggle { display:none; flex-direction:column; gap:5px;
              padding:.5rem; background:none; border:none; }
.nav-toggle span { display:block; width:24px; height:2px;
                   background:var(--ink); border-radius:2px; transition:all .3s; }

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy-deep);
}
#hero-video-wrap { position:absolute; inset:0; z-index:0; overflow:hidden; }
#hero-video-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,26,48,.88) 40%, rgba(9,26,48,.45) 100%);
}
#hero-video-wrap video,
.hero-fallback { width:100%; height:100%; object-fit:cover; object-position:center; }
#hero .container { position:relative; z-index:1; padding-block:5rem; }
#hero-inner { max-width: 680px; }
#hero .eyebrow { color: var(--copper-lt); margin-bottom: 1rem; }
#hero h1 { color: var(--white); margin-bottom: 1.25rem; }
#hero h1 em { font-style:normal; color:var(--copper-lt); }
#hero .lead { color:rgba(255,255,255,.85); margin-bottom:2rem; max-width:520px; }
.hero-btns { display:flex; flex-wrap:wrap; gap:.85rem; align-items:center; }
.hero-trust { display:flex; align-items:center; gap:1.5rem; margin-top:2.5rem; flex-wrap:wrap; }
.hero-trust-item { display:flex; align-items:center; gap:.5rem;
                   color:rgba(255,255,255,.8); font-size:.88rem; }
.hero-trust-item svg { color:var(--copper-lt); flex-shrink:0; }

/* ─── Trust Strip ────────────────────────────────────────── */
#trust-strip { background: var(--copper); padding: 1rem 0; }
#trust-strip .inner { display:flex; justify-content:center; align-items:center;
                       gap:2.5rem; flex-wrap:wrap; }
.trust-item { display:flex; align-items:center; gap:.6rem;
              color:#fff; font-weight:600; font-size:.92rem; }
.trust-item svg { opacity:.85; }

/* ─── SEO Intro ──────────────────────────────────────────── */
#seo-intro .inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.intro-img { position:relative; border-radius:var(--radius-md); overflow:hidden;
             aspect-ratio:4/3; box-shadow:var(--shadow-lg); }
.intro-img img { width:100%; height:100%; object-fit:cover; }
.intro-img .badge {
  position:absolute; bottom:1.25rem; left:1.25rem;
  background:var(--copper); color:#fff;
  font-family:var(--font-head); font-weight:800; font-size:1rem; text-transform:uppercase;
  padding:.5rem 1rem; border-radius:var(--radius-sm);
}
#seo-intro h2 { margin-bottom:1rem; }
#seo-intro p  { color:var(--ink-mid); margin-bottom:1.25rem; line-height:1.75; }
.intro-checks { margin:1.5rem 0; display:flex; flex-direction:column; gap:.6rem; }
.intro-check  { display:flex; align-items:flex-start; gap:.65rem; font-size:.95rem; }
.intro-check svg { color:var(--copper); margin-top:.15rem; flex-shrink:0; }

/* ─── Services Grid ──────────────────────────────────────── */
#services { background: var(--cloud); }
.section-head { text-align:center; max-width:600px; margin:0 auto 3rem; }
.section-head h2 { margin-bottom:.75rem; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; }
.service-card {
  background:var(--white); border-radius:var(--radius-md); padding:2rem;
  border:1px solid var(--border);
  transition:transform .25s, box-shadow .25s;
  display:flex; flex-direction:column; gap:1rem;
}
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.svc-icon {
  width:52px; height:52px; border-radius:var(--radius-sm);
  background:var(--sky); display:flex; align-items:center; justify-content:center;
}
.svc-icon svg { color:var(--copper); width:28px; height:28px; }
.service-card h3 {
  font-family:var(--font-head); font-weight:700; font-size:1.25rem;
  text-transform:uppercase; color:var(--navy);
}
.service-card p { color:var(--ink-mid); font-size:.93rem; line-height:1.65; flex:1; }
.svc-link {
  font-size:.88rem; font-weight:600; color:var(--copper);
  display:flex; align-items:center; gap:.35rem; transition:gap .2s;
}
.svc-link:hover { gap:.6rem; }

/* ─── Before / After Slider ──────────────────────────────── */
#before-after { background: var(--navy); }
#before-after .section-head { margin-bottom:2.5rem; color:var(--white); }
#before-after .section-head h2 { color:var(--white); }
.ba-wrap {
  position:relative; max-width:860px; margin:0 auto;
  border-radius:var(--radius-md); overflow:hidden;
  user-select:none; touch-action:pan-y;
}
.ba-wrap img { width:100%; height:100%; object-fit:cover; display:block; aspect-ratio:16/9; }
.ba-after { position:absolute; inset:0; clip-path:inset(0 50% 0 0); }
.ba-divider {
  position:absolute; top:0; bottom:0; left:50%;
  width:3px; background:var(--white); transform:translateX(-50%); pointer-events:none;
}
.ba-handle {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:44px; height:44px; border-radius:50%;
  background:var(--white); border:3px solid var(--copper);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); pointer-events:none;
}
.ba-labels { position:absolute; bottom:1rem; display:flex;
             justify-content:space-between; width:100%; padding:0 1rem; }
.ba-label { background:rgba(0,0,0,.65); color:#fff;
            font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
            padding:.3rem .75rem; border-radius:3px; }
.ba-range {
  position:absolute; inset:0; opacity:0; cursor:ew-resize; width:100%; z-index:10;
}
.ba-caption { text-align:center; color:rgba(255,255,255,.65); font-size:.88rem; margin-top:1.25rem; }

/* ─── Why Us ─────────────────────────────────────────────── */
#why-us .inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.why-img { border-radius:var(--radius-md); overflow:hidden;
           aspect-ratio:3/4; box-shadow:var(--shadow-lg); position:relative; }
.why-img img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.why-img .stamp {
  position:absolute; bottom:1.5rem; right:1.5rem;
  width:100px; height:100px; border-radius:50%;
  background:var(--copper); color:#fff;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:800; text-transform:uppercase;
  font-size:.75rem; line-height:1.2; text-align:center; padding:.5rem;
  border:3px solid rgba(255,255,255,.4); box-shadow:var(--shadow-md);
}
.why-img .stamp strong { font-size:1.6rem; line-height:1; }
.why-content .eyebrow { margin-bottom:.75rem; }
.why-content h2 { margin-bottom:1.25rem; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.25rem; margin-top:1.75rem; }
.why-item {
  background:var(--sky); border-radius:var(--radius-sm);
  padding:1.25rem; border-left:3px solid var(--copper);
}
.why-item h4 {
  font-family:var(--font-head); font-weight:700; font-size:1rem;
  text-transform:uppercase; color:var(--navy); margin-bottom:.35rem;
}
.why-item p { font-size:.85rem; color:var(--ink-mid); line-height:1.5; }

/* ─── Parallax Quote ─────────────────────────────────────── */
#parallax-quote {
  position:relative; overflow:hidden;
  min-height:400px; display:flex; align-items:center;
  background:var(--navy-deep);
}
#parallax-bg {
  position:absolute; inset:-20%; z-index:0;
  background:url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  will-change:transform;
}
#parallax-quote::after { content:''; position:absolute; inset:0; z-index:1; background:rgba(9,26,48,.78); }
#parallax-quote .container { position:relative; z-index:2; text-align:center; padding-block:5rem; }
#parallax-quote blockquote {
  font-family:var(--font-head); font-weight:800;
  font-size:clamp(1.8rem,4vw,3.2rem); line-height:1.1; text-transform:uppercase;
  color:var(--white); max-width:800px; margin:0 auto 1.5rem;
}
#parallax-quote blockquote em { font-style:normal; color:var(--copper-lt); }
#parallax-quote cite { color:rgba(255,255,255,.65); font-size:.9rem; font-style:normal; display:block; }

/* ─── Gallery ────────────────────────────────────────────── */
#gallery { background: var(--off-white); }
#gallery .section-head { max-width:560px; margin-bottom:2.5rem; }
.gallery-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  grid-template-rows:auto; gap:.75rem;
}
.g-item { overflow:hidden; border-radius:var(--radius-sm); aspect-ratio:4/3; background:var(--sky); }
.g-item.wide { grid-column:span 2; }
.g-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.g-item:hover img { transform:scale(1.05); }

/* ─── Process ────────────────────────────────────────────── */
#process { background: var(--navy); }
#process .section-head { text-align:center; margin-bottom:3rem; }
#process .section-head h2 { color:var(--white); }
#process .section-head .eyebrow { color:var(--copper-lt); }
.process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; position:relative; }
.process-steps::before {
  content:''; position:absolute; top:42px;
  left:calc(12.5% + 21px); right:calc(12.5% + 21px);
  height:2px; background:rgba(255,255,255,.15); z-index:0;
}
.process-step { text-align:center; position:relative; z-index:1; padding:.5rem; }
.step-num {
  width:64px; height:64px; border-radius:50%;
  background:rgba(255,255,255,.08); border:2px solid var(--copper);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 1.25rem;
  font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:var(--copper);
}
.process-step h4 {
  font-family:var(--font-head); font-weight:700; font-size:1.1rem;
  text-transform:uppercase; color:var(--white); margin-bottom:.5rem;
}
.process-step p { font-size:.88rem; color:rgba(255,255,255,.65); line-height:1.55; }

/* ─── Reviews Marquee ────────────────────────────────────── */
#reviews { background: var(--cloud); }
#reviews .section-head { max-width:560px; margin-bottom:2.5rem; }
.sample-notice {
  display:inline-flex; align-items:center; gap:.5rem;
  background:rgba(212,115,44,.12); border:1px solid var(--copper);
  color:var(--copper-dk); font-size:.78rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:2px; margin-bottom:.85rem;
}
.marquee-wrap { overflow:hidden; mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent); }
.marquee-track {
  display:flex; gap:1.25rem; width:max-content;
  animation:marquee-scroll 42s linear infinite;
}
.marquee-track:hover { animation-play-state:paused; }
@keyframes marquee-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@media(prefers-reduced-motion:reduce){ .marquee-track{animation:none;flex-wrap:wrap;width:100%;} }
.review-card {
  flex-shrink:0; width:320px;
  background:var(--white); border-radius:var(--radius-md);
  padding:1.5rem; border:1px solid var(--border);
  box-shadow:var(--shadow-sm); position:relative;
}
.sample-tag {
  position:absolute; top:.75rem; right:.75rem;
  background:var(--copper); color:#fff; font-size:.65rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; padding:.2rem .5rem; border-radius:2px;
}
.review-card .stars { color:#f59e0b; font-size:1rem; letter-spacing:.1em; margin-bottom:.75rem; }
.review-card p { font-size:.9rem; color:var(--ink-mid); line-height:1.6; margin-bottom:1rem; }
.reviewer { display:flex; align-items:center; gap:.65rem; }
.reviewer .avatar {
  width:36px; height:36px; border-radius:50%; background:var(--sky);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-head); font-weight:700; color:var(--navy); font-size:1rem;
}
.reviewer .name   { font-weight:600; font-size:.88rem; color:var(--navy); }
.reviewer .source { font-size:.78rem; color:var(--ink-lt); }
.review-cta { text-align:center; margin-top:2rem; }

/* ─── Service Areas ──────────────────────────────────────── */
#service-areas .inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
#service-areas h2 { margin-bottom:1.25rem; }
#service-areas p  { color:var(--ink-mid); margin-bottom:1.5rem; line-height:1.7; }
.area-list { display:grid; grid-template-columns:1fr 1fr; gap:.5rem .75rem; }
.area-list li {
  display:flex; align-items:center; gap:.5rem;
  font-size:.92rem; color:var(--ink); padding:.4rem .5rem;
  border-radius:var(--radius-sm); transition:background .2s;
}
.area-list li:hover { background:var(--sky); }
.area-list li::before {
  content:''; width:8px; height:8px; border-radius:50%;
  background:var(--copper); flex-shrink:0;
}
.area-map { border-radius:var(--radius-md); overflow:hidden;
            border:1px solid var(--border); aspect-ratio:4/3;
            background:var(--sky); }
.area-map iframe { width:100%; height:100%; border:0; }

/* ─── FAQ ────────────────────────────────────────────────── */
#faq { background: var(--cloud); }
#faq .inner { display:grid; grid-template-columns:1fr 2fr; gap:4rem; align-items:start; }
.faq-aside .eyebrow { margin-bottom:.75rem; }
.faq-aside h2 { margin-bottom:1.25rem; }
.faq-aside p  { color:var(--ink-mid); line-height:1.7; margin-bottom:1.5rem; }
.faq-list { display:flex; flex-direction:column; gap:.75rem; }
.faq-item { background:var(--white); border-radius:var(--radius-sm);
            border:1px solid var(--border); overflow:hidden; }
.faq-btn {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding:1.1rem 1.25rem;
  font-family:var(--font-body); font-weight:600; font-size:.97rem; color:var(--ink);
  background:none; border:none; cursor:pointer; text-align:left; transition:background .2s;
}
.faq-btn:hover { background:var(--sky); }
.faq-btn[aria-expanded="true"] { color:var(--copper); }
.faq-icon { width:20px; height:20px; flex-shrink:0; transition:transform .3s; color:var(--copper); }
.faq-btn[aria-expanded="true"] .faq-icon { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .35s ease; }
.faq-answer.open { max-height:400px; }
.faq-answer p { padding:.1rem 1.25rem 1.1rem; color:var(--ink-mid); font-size:.93rem; line-height:1.7; }

/* ─── Quote Form ─────────────────────────────────────────── */
#quote-form { background: var(--navy); }
#quote-form .inner { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.form-aside .eyebrow { margin-bottom:.75rem; color:var(--copper-lt); }
.form-aside h2 { color:var(--white); margin-bottom:1rem; }
.form-aside p  { color:rgba(255,255,255,.7); line-height:1.7; margin-bottom:1.5rem; }
.form-perks { display:flex; flex-direction:column; gap:.75rem; }
.form-perk  { display:flex; align-items:center; gap:.65rem;
              color:rgba(255,255,255,.8); font-size:.92rem; }
.form-perk svg { color:var(--copper-lt); flex-shrink:0; }
.form-box {
  background:var(--white); border-radius:var(--radius-lg);
  padding:2.25rem; box-shadow:var(--shadow-lg);
}
.form-box h3 {
  font-family:var(--font-head); font-weight:800; font-size:1.5rem;
  text-transform:uppercase; color:var(--navy); margin-bottom:1.5rem;
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }
.form-group { display:flex; flex-direction:column; gap:.35rem; margin-bottom:1rem; }
.form-group label { font-size:.82rem; font-weight:600; color:var(--ink-mid); letter-spacing:.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:.75rem 1rem;
  border:1.5px solid var(--border); border-radius:var(--radius-sm);
  font-family:var(--font-body); font-size:.95rem; color:var(--ink);
  background:var(--white); transition:border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline:none; border-color:var(--copper); }
.form-group textarea { min-height:90px; resize:vertical; }
.form-submit { width:100%; margin-top:.5rem; }
.form-note   { text-align:center; margin-top:.75rem; font-size:.78rem; color:var(--ink-lt); }
.form-success { display:none; text-align:center; padding:2rem; color:var(--navy); }
.form-success svg { width:48px; height:48px; color:var(--copper); margin:0 auto 1rem; }

/* ─── Footer ─────────────────────────────────────────────── */
#footer { background:var(--navy-deep); color:rgba(255,255,255,.75); padding-block:3rem 1.5rem; }
.footer-top {
  display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:2.5rem; padding-bottom:2.5rem;
  border-bottom:1px solid rgba(255,255,255,.1); margin-bottom:1.5rem;
}
.footer-brand p { font-size:.88rem; line-height:1.7; max-width:260px; color:rgba(255,255,255,.6); margin-top:.75rem; }
.footer-logo { height:auto; margin-bottom:.75rem; }
.footer-brand .logo-wrap img { width:280px; max-width:280px; }
.footer-phone {
  display:flex; align-items:center; gap:.5rem;
  font-family:var(--font-head); font-weight:800; font-size:1.3rem;
  color:var(--white); margin-top:1rem;
}
.footer-phone svg { color:var(--copper); }
.footer-col h4 {
  font-family:var(--font-head); font-weight:700; font-size:1rem;
  text-transform:uppercase; color:var(--white); margin-bottom:1rem; letter-spacing:.06em;
}
.footer-col ul { display:flex; flex-direction:column; gap:.5rem; }
.footer-col ul a { font-size:.88rem; color:rgba(255,255,255,.6); transition:color .2s; }
.footer-col ul a:hover { color:var(--copper); }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:.75rem; font-size:.78rem; color:rgba(255,255,255,.4);
}
.os-sig { display:flex; align-items:center; gap:.5rem; color:rgba(255,255,255,.35); }
.os-sig a { color:rgba(255,255,255,.35); transition:color .2s; }
.os-sig a:hover { color:var(--os-orange); }

/* ─── Exit Overlay ───────────────────────────────────────── */
#exit-overlay {
  position:fixed; inset:0; z-index:9998;
  background:rgba(9,26,48,.82);
  display:flex; align-items:center; justify-content:center; padding:1rem;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
#exit-overlay.open { opacity:1; pointer-events:all; }
.exit-card {
  background:var(--white); border-radius:var(--radius-lg);
  max-width:520px; width:100%; padding:2.5rem;
  position:relative; box-shadow:var(--shadow-lg); text-align:center;
}
.exit-close {
  position:absolute; top:1rem; right:1rem;
  background:none; border:none; cursor:pointer;
  color:var(--ink-lt); transition:color .2s;
}
.exit-close:hover { color:var(--ink); }
.os-logo-exit { height:26px; margin:0 auto 1.25rem; }
.exit-card h3 {
  font-family:var(--font-head); font-weight:800; font-size:1.7rem;
  text-transform:uppercase; color:var(--navy); margin-bottom:.75rem;
}
.exit-card h3 em { font-style:normal; color:var(--copper); }
.exit-card p { color:var(--ink-mid); margin-bottom:1.75rem; line-height:1.65; }
.exit-btn    { width:100%; justify-content:center; font-size:1.05rem; padding:1rem; }
.exit-dismiss {
  display:block; margin-top:.85rem; font-size:.82rem;
  color:var(--ink-lt); cursor:pointer; background:none; border:none;
}
.exit-dismiss:hover { color:var(--ink); }

/* ─── Chatbot ────────────────────────────────────────────── */
#chatbot-fab { position:fixed; bottom:1.75rem; right:1.75rem; z-index:850; }
#chatbot-trigger {
  width:58px; height:58px; border-radius:50%;
  background:var(--copper); color:#fff; border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(212,115,44,.5);
  transition:transform .2s, box-shadow .2s; position:relative;
}
#chatbot-trigger:hover { transform:scale(1.08); box-shadow:0 6px 28px rgba(212,115,44,.6); }
.chat-badge {
  position:absolute; top:-4px; right:-4px;
  width:18px; height:18px; border-radius:50%;
  background:#e11d48; color:#fff; font-size:.65rem; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  border:2px solid var(--white);
}
#chatbot-window {
  position:fixed; bottom:calc(1.75rem + 68px); right:1.75rem; z-index:850;
  width:340px; max-height:480px;
  background:var(--white); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); border:1px solid var(--border);
  display:flex; flex-direction:column; overflow:hidden;
  opacity:0; transform:translateY(12px) scale(.97);
  pointer-events:none; transition:all .25s ease;
}
#chatbot-window.open { opacity:1; transform:none; pointer-events:all; }
.chat-header {
  background:var(--navy); padding:1rem 1.25rem;
  display:flex; align-items:center; gap:.75rem;
}
.chat-avatar {
  width:36px; height:36px; border-radius:50%;
  background:var(--copper); display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.chat-name   { font-weight:700; font-size:.92rem; color:#fff; }
.chat-status {
  font-size:.75rem; color:rgba(255,255,255,.6);
  display:flex; align-items:center; gap:.35rem;
}
.chat-status::before { content:''; width:7px; height:7px; border-radius:50%; background:#22c55e; }
.close-chat { margin-left:auto; background:none; border:none; color:rgba(255,255,255,.6);
              cursor:pointer; padding:.25rem; transition:color .2s; }
.close-chat:hover { color:#fff; }
.chat-messages { flex:1; overflow-y:auto; padding:1rem; display:flex; flex-direction:column; gap:.65rem; }
.chat-msg {
  max-width:82%; padding:.6rem .9rem; border-radius:var(--radius-md);
  font-size:.88rem; line-height:1.5;
}
.chat-msg.bot  { background:var(--sky); color:var(--ink); align-self:flex-start; border-bottom-left-radius:4px; }
.chat-msg.user { background:var(--copper); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
.chat-typing   { display:flex; gap:.3rem; padding:.75rem .9rem; background:var(--sky);
                 border-radius:var(--radius-md); align-self:flex-start; width:56px; }
.chat-typing span { width:7px; height:7px; border-radius:50%; background:var(--ink-lt);
                    animation:dot-bounce .9s infinite; }
.chat-typing span:nth-child(2) { animation-delay:.15s; }
.chat-typing span:nth-child(3) { animation-delay:.3s; }
@keyframes dot-bounce { 0%,80%,100%{transform:translateY(0)} 40%{transform:translateY(-5px)} }
.chat-quick-replies { display:flex; flex-wrap:wrap; gap:.4rem; padding:.25rem 1rem .75rem; }
.chat-qr {
  font-size:.78rem; font-weight:600; color:var(--navy);
  border:1.5px solid var(--border); border-radius:100px;
  padding:.3rem .75rem; cursor:pointer; background:none; transition:all .2s;
}
.chat-qr:hover { background:var(--sky); border-color:var(--copper); color:var(--copper); }
.chat-footer { padding:.75rem 1rem; border-top:1px solid var(--border); display:flex; gap:.5rem; }
.chat-footer input {
  flex:1; padding:.55rem .85rem; border:1.5px solid var(--border);
  border-radius:100px; font-size:.88rem; font-family:var(--font-body); transition:border-color .2s;
}
.chat-footer input:focus { outline:none; border-color:var(--copper); }
.chat-footer button {
  width:36px; height:36px; border-radius:50%; background:var(--copper);
  color:#fff; border:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .2s; flex-shrink:0;
}
.chat-footer button:hover { background:var(--copper-dk); }

/* ─── ADA Toolbar ────────────────────────────────────────── */
#ada-toolbar { position:fixed; bottom:1.75rem; left:1.75rem; z-index:849; }
#ada-trigger {
  width:46px; height:46px; border-radius:50%;
  background:var(--navy); color:#fff; border:2px solid rgba(255,255,255,.3);
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md); transition:background .2s;
}
#ada-trigger:hover { background:var(--navy-deep); }
#ada-panel {
  position:absolute; bottom:calc(100% + .65rem); left:0;
  background:var(--white); border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg); border:1px solid var(--border);
  padding:.75rem; display:flex; flex-direction:column; gap:.4rem; min-width:170px;
  opacity:0; transform:translateY(8px); pointer-events:none; transition:all .2s;
}
#ada-panel.open { opacity:1; transform:none; pointer-events:all; }
.ada-btn {
  display:flex; align-items:center; gap:.6rem;
  font-size:.85rem; font-weight:600; color:var(--ink);
  padding:.55rem .75rem; border-radius:var(--radius-sm);
  background:none; border:none; cursor:pointer; text-align:left;
  transition:background .2s; width:100%;
}
.ada-btn:hover { background:var(--sky); }

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal       { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal-left  { opacity:0; transform:translateX(-32px); transition:opacity .65s ease, transform .65s ease; }
.reveal-right { opacity:0; transform:translateX(32px);  transition:opacity .65s ease, transform .65s ease; }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity:1; transform:none; }
[data-delay="1"]{transition-delay:.1s} [data-delay="2"]{transition-delay:.2s}
[data-delay="3"]{transition-delay:.3s} [data-delay="4"]{transition-delay:.4s}
[data-delay="5"]{transition-delay:.5s}

/* ─── Focus Visible ──────────────────────────────────────── */
:focus-visible { outline:3px solid var(--copper); outline-offset:3px; border-radius:2px; }

/* ═══════════════════════════════════════════════════════════
   COMPONENT OVERRIDES — index.php class names
   ═══════════════════════════════════════════════════════════ */

/* Scroll reveal: data-reveal attribute system */
[data-reveal] { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
[data-reveal].revealed { opacity:1; transform:none; }
[data-delay="0"]  { transition-delay:0ms; }
[data-delay="40"] { transition-delay:40ms; }
[data-delay="60"] { transition-delay:60ms; }
[data-delay="80"] { transition-delay:80ms; }
[data-delay="120"]{ transition-delay:120ms; }
[data-delay="150"]{ transition-delay:150ms; }
[data-delay="160"]{ transition-delay:160ms; }
[data-delay="200"]{ transition-delay:200ms; }
[data-delay="240"]{ transition-delay:240ms; }
[data-delay="320"]{ transition-delay:320ms; }

/* Buttons — extra variants */
.btn-copper { background:var(--copper); color:#fff; border-color:var(--copper); }
.btn-copper:hover { background:var(--copper-dk); border-color:var(--copper-dk); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-outline { background:transparent; color:var(--navy); border-color:var(--navy); }
.btn-outline:hover { background:var(--navy); color:#fff; }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,.7); }
.btn-outline-white:hover { background:rgba(255,255,255,.12); }

/* Section header pattern */
section { padding-block: var(--section-v); }
.section-hd { text-align:center; max-width:620px; margin:0 auto var(--space-8); }
.section-hd h2 { font-family:var(--font-head); font-weight:800; font-size:clamp(1.9rem,3.5vw,3rem); text-transform:uppercase; margin-bottom:.65rem; color:var(--navy); }
.section-hd p { color:var(--ink-mid); line-height:1.7; }
.section-label { font-family:var(--font-body); font-weight:600; font-size:.72rem; letter-spacing:.15em; text-transform:uppercase; color:var(--copper); margin-bottom:.6rem; display:block; }

/* ── Hero (new layout) ── */
#hero { position:relative; min-height:88vh; display:flex; flex-direction:column; align-items:stretch; overflow:hidden; }
.hero-bg-wrap { position:absolute; inset:0; z-index:0; }
.hero-bg-img  { width:100%; height:100%; object-fit:cover; object-position:center 30%; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(110deg,rgba(9,26,48,.9) 42%,rgba(9,26,48,.5) 100%); }
.hero-inner   { position:relative; z-index:1; display:flex; flex-direction:column; justify-content:center; min-height:88vh; padding-block:5rem 3rem; gap:3rem; }
.hero-content { max-width:700px; }
.hero-eyebrow { font-family:var(--font-body); font-weight:600; font-size:.8rem; letter-spacing:.18em; text-transform:uppercase; color:var(--copper-lt); margin-bottom:1rem; display:block; }
.hero-headline { font-family:var(--font-head); font-weight:900; font-size:clamp(3rem,7vw,6rem); line-height:.92; text-transform:uppercase; color:#fff; margin-bottom:1rem; }
.hero-accent { color:var(--copper-lt); }
.hero-sub { font-size:1.05rem; color:rgba(255,255,255,.75); margin-bottom:2rem; letter-spacing:.04em; }
.hero-actions { display:flex; flex-wrap:wrap; gap:.85rem; align-items:center; }
.hero-trust-cards { display:flex; flex-wrap:wrap; gap:1rem; align-self:flex-end; max-width:100%; }
.htc { display:flex; align-items:center; gap:.6rem; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); border-radius:var(--radius-sm); padding:.65rem 1rem; color:rgba(255,255,255,.88); font-size:.88rem; font-weight:500; backdrop-filter:blur(6px); }
.hero-scroll-cue { position:absolute; bottom:2rem; left:50%; transform:translateX(-50%); z-index:1; animation:bounce-down 2s infinite; }
@keyframes bounce-down { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Trust Strip ── */
#trust-strip { background:var(--copper); padding:.9rem 0; }
.trust-inner { display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:1.5rem 2.5rem; }
.trust-item  { display:flex; align-items:center; gap:.6rem; color:#fff; }
.trust-item strong { font-family:var(--font-head); font-weight:800; font-size:1.35rem; }
.trust-item span   { font-size:.82rem; opacity:.88; }
.trust-divider     { width:1px; height:28px; background:rgba(255,255,255,.3); flex-shrink:0; }
.trust-gbp { display:flex; align-items:center; gap:.4rem; color:#fff; font-size:.82rem; font-weight:600; opacity:.9; text-decoration:underline; text-underline-offset:3px; }

/* ── SEO Intro ── */
#seo-intro { background:var(--cloud); }
.seo-inner  { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.seo-text h2 { font-family:var(--font-head); font-weight:800; font-size:clamp(1.7rem,3vw,2.6rem); text-transform:uppercase; color:var(--navy); margin-bottom:1rem; }
.seo-text p  { color:var(--ink-mid); line-height:1.75; margin-bottom:1.1rem; }
.seo-badges  { display:flex; flex-direction:column; gap:1rem; }
.badge-card  { display:flex; align-items:center; gap:1rem; background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md); padding:1.1rem 1.25rem; box-shadow:var(--shadow-sm); }
.badge-card > div strong { display:block; font-weight:700; color:var(--navy); font-size:.95rem; margin-bottom:.15rem; }
.badge-card > div span   { font-size:.82rem; color:var(--ink-lt); }

/* ── Services Grid ── */
#services { background:var(--cloud); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:1.5rem; }
.svc-card {
  background:var(--white); border-radius:var(--radius-md); padding:2rem;
  border:1px solid var(--border); transition:transform .25s, box-shadow .25s;
  display:flex; flex-direction:column; gap:.85rem; position:relative; overflow:hidden;
}
.svc-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.svc-card--highlight { background:var(--white); border-color:var(--copper); }
.svc-card-badge { position:absolute; top:1rem; right:1rem; background:var(--copper); color:#fff; font-size:.65rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.25rem .6rem; border-radius:2px; }
.svc-card h3 { font-family:var(--font-head); font-weight:700; font-size:1.25rem; text-transform:uppercase; color:var(--navy); }
.svc-card p  { color:var(--ink-mid); font-size:.92rem; line-height:1.65; flex:1; }
.svc-link { font-size:.85rem; font-weight:600; color:var(--copper); display:inline-flex; align-items:center; gap:.35rem; transition:gap .2s; margin-top:auto; }
.svc-link:hover { gap:.6rem; }

/* ── Before / After ── */
#before-after { background:var(--navy); }
#before-after .section-hd h2, #before-after .section-hd p, #before-after .section-label { color:rgba(255,255,255,.85); }
#before-after .section-label { color:var(--copper-lt); }
.ba-grid  { display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.ba-item  {}
.ba-slider { position:relative; overflow:hidden; border-radius:var(--radius-md); aspect-ratio:4/3; user-select:none; }
.ba-before, .ba-after { position:absolute; inset:0; }
.ba-before img, .ba-after img { width:100%; height:100%; object-fit:cover; }
.ba-after  { clip-path:inset(0 0 0 50%); }
.ba-range  { position:absolute; inset:0; opacity:0; cursor:ew-resize; width:100%; z-index:10; margin:0; }
.ba-handle { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:44px; height:44px; border-radius:50%; background:#fff; border:3px solid var(--copper); display:flex; align-items:center; justify-content:center; gap:2px; box-shadow:var(--shadow-md); pointer-events:none; z-index:5; }
.ba-label  { position:absolute; bottom:.75rem; background:rgba(0,0,0,.6); color:#fff; font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.25rem .65rem; border-radius:2px; z-index:4; }
.ba-label--before { left:.75rem; }
.ba-label--after  { right:.75rem; }
.ba-caption { text-align:center; color:rgba(255,255,255,.55); font-size:.85rem; margin-top:.85rem; }

/* ── Why Us ── */
#why-us { background:var(--white); }
.why-wrap    { display:grid; grid-template-columns:1fr 1.1fr; gap:4.5rem; align-items:center; }
.why-img-col { position:relative; }
.why-img-col img { width:100%; border-radius:var(--radius-lg); aspect-ratio:3/4; object-fit:cover; box-shadow:var(--shadow-lg); }
.why-img-badge { position:absolute; bottom:1.5rem; right:-1rem; background:var(--copper); color:#fff; padding:1.1rem 1.4rem; border-radius:var(--radius-md); text-align:center; box-shadow:var(--shadow-md); }
.why-img-badge strong { display:block; font-family:var(--font-head); font-weight:900; font-size:2rem; line-height:1; }
.why-img-badge span   { display:block; font-size:.72rem; font-weight:600; opacity:.9; margin-top:.2rem; }
.why-text-col .section-label { display:block; margin-bottom:.6rem; }
.why-text-col h2 { font-family:var(--font-head); font-weight:800; font-size:clamp(1.8rem,3vw,2.8rem); text-transform:uppercase; color:var(--navy); margin-bottom:1rem; }
.why-text-col > p { color:var(--ink-mid); line-height:1.7; margin-bottom:1.5rem; }
.why-list { display:flex; flex-direction:column; gap:1.1rem; }
.why-item { display:flex; align-items:flex-start; gap:.85rem; }
.why-icon { width:32px; height:32px; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:.1rem; }
.why-item strong { display:block; font-size:.97rem; font-weight:700; color:var(--navy); margin-bottom:.2rem; }
.why-item p { font-size:.88rem; color:var(--ink-mid); line-height:1.6; }
.why-ctas { display:flex; flex-wrap:wrap; gap:.85rem; margin-top:1.75rem; }

/* ── Parallax CTA Band ── */
#parallax-cta { position:relative; overflow:hidden; min-height:400px; display:flex; align-items:center; background:var(--navy-deep); }
#parallax-bg  { position:absolute; inset:-20%; z-index:0; background-size:cover; background-position:center; background-repeat:no-repeat; will-change:transform; }
.parallax-overlay { position:absolute; inset:0; z-index:1; background:rgba(9,26,48,.8); }
.parallax-inner { position:relative; z-index:2; text-align:center; padding-block:5rem; }
.parallax-inner h2 { font-family:var(--font-head); font-weight:900; font-size:clamp(2rem,5vw,4rem); text-transform:uppercase; color:#fff; margin-bottom:1rem; }
.parallax-inner p  { color:rgba(255,255,255,.72); margin-bottom:2rem; font-size:1.05rem; }

/* ── Gallery ── */
#gallery { background:var(--off-white); }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.85rem; }
.gallery-item { overflow:hidden; border-radius:var(--radius-sm); aspect-ratio:4/3; background:var(--sky); }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-item:hover img { transform:scale(1.05); }

/* ── Process ── */
#process { background:var(--cloud); }
#process .section-hd h2 { color:var(--navy); }
.process-track { display:flex; flex-direction:column; gap:0; max-width:780px; margin:0 auto; }
.process-step  { display:flex; gap:2rem; align-items:flex-start; }
.ps-num { font-family:var(--font-head); font-weight:900; font-size:3.5rem; color:var(--copper); line-height:1; flex-shrink:0; width:72px; text-align:right; opacity:.35; }
.ps-body { padding-bottom:2.5rem; border-left:2px solid var(--border); padding-left:2rem; flex:1; }
.process-step:last-child .ps-body { border-left-color:transparent; }
.ps-body h3 { font-family:var(--font-head); font-weight:700; font-size:1.4rem; text-transform:uppercase; color:var(--navy); margin-bottom:.5rem; }
.ps-body p  { color:var(--ink-mid); line-height:1.7; }
.process-connector { display:none; }

/* ── Reviews Marquee ── */
#reviews { background:var(--cloud); overflow:hidden; }
.reviews-hd-wrap { text-align:center; max-width:620px; margin:0 auto var(--space-5); }
.reviews-hd-wrap h2 { font-family:var(--font-head); font-weight:800; font-size:clamp(1.9rem,3.5vw,3rem); text-transform:uppercase; color:var(--navy); margin-bottom:.5rem; }
.reviews-sample-notice { font-size:.78rem; color:var(--ink-lt); font-style:italic; }
.rc-sample-tag { position:absolute; top:.75rem; right:.75rem; background:var(--copper); color:#fff; font-size:.62rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:.2rem .5rem; border-radius:2px; }
.review-card   { position:relative; }
.rc-stars      { display:flex; gap:2px; margin-bottom:.75rem; }
.rc-text       { font-size:.9rem; color:var(--ink-mid); line-height:1.65; margin-bottom:.85rem; font-style:italic; }
.rc-author strong { display:block; font-size:.88rem; font-weight:700; color:var(--navy); }
.rc-author span   { font-size:.78rem; color:var(--ink-lt); }
.reviews-cta   { text-align:center; margin-top:2rem; }

/* ── Service Areas ── */
#service-areas { background:var(--white); }
.areas-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1rem; }
.area-card  { display:flex; align-items:flex-start; gap:.85rem; padding:1.1rem 1.25rem; border:1px solid var(--border); border-radius:var(--radius-md); transition:all .2s; text-decoration:none; }
.area-card:hover { border-color:var(--copper); background:var(--sky); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.area-card svg   { flex-shrink:0; margin-top:.1rem; }
.area-card strong { display:block; font-size:.95rem; font-weight:700; color:var(--navy); margin-bottom:.2rem; }
.area-card span   { font-size:.82rem; color:var(--ink-mid); line-height:1.5; }

/* ── FAQ ── */
#faq { background:var(--cloud); }
.faq-wrap { max-width:860px; margin:0 auto; }
.faq-list  { display:flex; flex-direction:column; gap:.6rem; }
.faq-item  { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-sm); overflow:hidden; }
.faq-q     { width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.1rem 1.25rem; font-family:var(--font-body); font-weight:600; font-size:.97rem; color:var(--ink); background:none; border:none; cursor:pointer; text-align:left; transition:background .2s; }
.faq-q:hover { background:var(--sky); }
.faq-q[aria-expanded="true"] { color:var(--copper); }
.faq-chevron { flex-shrink:0; transition:transform .3s; color:var(--copper); }
.faq-q[aria-expanded="true"] .faq-chevron { transform:rotate(180deg); }
.faq-a  { overflow:hidden; transition:max-height .35s ease; }
.faq-a p { padding:.25rem 1.25rem 1.1rem; color:var(--ink-mid); font-size:.93rem; line-height:1.7; }

/* ── Quote Form ── */
#quote-form { background:var(--navy); }
.qf-wrap { display:grid; grid-template-columns:1fr 1.1fr; gap:4rem; align-items:center; }
.qf-text .section-label { color:var(--copper-lt); }
.qf-text h2 { font-family:var(--font-head); font-weight:800; font-size:clamp(1.8rem,3vw,2.8rem); text-transform:uppercase; color:#fff; margin-bottom:1rem; }
.qf-text p  { color:rgba(255,255,255,.72); line-height:1.7; margin-bottom:1.5rem; }
.qf-contact-opts { display:flex; flex-direction:column; gap:.75rem; }
.qf-opt { display:flex; align-items:center; gap:.65rem; color:rgba(255,255,255,.8); font-size:.95rem; font-weight:500; transition:color .2s; }
.qf-opt:hover { color:#fff; }
.qf-form { background:var(--white); border-radius:var(--radius-lg); padding:2.25rem; box-shadow:var(--shadow-lg); }
.form-footer { margin-top:.5rem; }
.form-fine-print { font-size:.75rem; color:var(--ink-lt); margin-top:.65rem; text-align:center; }
.form-msg { margin-top:.75rem; font-size:.88rem; font-weight:600; min-height:1.2em; }
.form-msg.success { color:#16a34a; }
.form-msg.error   { color:#dc2626; }
.qr-btn { font-size:.78rem; font-weight:600; color:var(--navy); border:1.5px solid var(--border); border-radius:100px; padding:.3rem .75rem; cursor:pointer; background:none; transition:all .2s; }
.qr-btn:hover { background:var(--sky); border-color:var(--copper); color:var(--copper); }

/* ── Chatbot typing dots ── */
.chat-msg.typing .dot { display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--ink-lt); margin:.15rem .1rem; animation:dot-bounce .9s infinite; }
.chat-msg.typing .dot:nth-child(2) { animation-delay:.15s; }
.chat-msg.typing .dot:nth-child(3) { animation-delay:.3s; }

/* ── Exit overlay active state ── */
#exit-overlay.active { opacity:1; pointer-events:all; }

/* ── High contrast ── */
body.high-contrast {
  filter:contrast(1.5) brightness(.9);
}

/* ── Our Work (replaces B&A) ── */
#our-work { background: var(--off-white); }
.work-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.work-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.work-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.work-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.work-card:hover .work-img-wrap img { transform: scale(1.04); }
.work-caption { padding: .85rem 1.1rem; font-size: .92rem; font-weight: 600; color: var(--navy); }

/* ─── Responsive ─────────────────────────────────────────── */
@media(max-width:900px){
  #seo-intro .inner, #why-us .inner,
  #service-areas .inner, #quote-form .inner, #faq .inner { grid-template-columns:1fr; }
  .seo-inner, .why-wrap, .qf-wrap { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .process-steps::before { display:none; }
  .why-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .g-item.wide { grid-column:span 1; }
  .ba-grid { grid-template-columns:1fr; }
  .work-duo { grid-template-columns:1fr; }
  .why-img-badge { right:.5rem; }
  .areas-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:640px){
  :root { --section-v: 56px; }
  #main-nav {
    display:none; position:absolute; top:100%; left:0; right:0;
    background:var(--white); flex-direction:column;
    padding:1rem; border-bottom:2px solid var(--border);
    box-shadow:var(--shadow-md);
  }
  #main-nav.open { display:flex; }
  #main-nav a { padding:.65rem 1rem; }
  .nav-toggle { display:flex; }
  .hdr-cta .btn { display:none; }
  .ub-left { display:none; }
  .footer-top { grid-template-columns:1fr; }
  #chatbot-window { width:calc(100vw - 2rem); right:1rem; bottom:calc(1rem + 68px); }
  .form-row { grid-template-columns:1fr; }
  .process-steps { grid-template-columns:1fr; }
  .hero-trust { gap:1rem; }
  #os-top-bar span { display:none; }
  .hero-trust-cards { display:none; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .areas-grid { grid-template-columns:1fr; }
  .trust-divider { display:none; }
  .trust-inner { gap:1rem 1.5rem; }
}
