/* ============================================================
   CLEARVIEW AUTO & HOME — STYLESHEET
   Palette: deep evergreen / brass / cream, warm-neutral base
   Type: Lora (display serif) + Libre Franklin (body/UI)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root{
  /* Core palette */
  --forest:        #24312a;   /* primary dark: header text, CTA bg */
  --forest-2:       #30412f;  /* secondary dark, gradients */
  --sage:           #64795a;  /* mid sage — safe for white text (trust band) */
  --sage-light:     #a9b89c;  /* decorative light sage, dark text only */
  --brass:          #9c7a49;  /* button-safe accent (white text) */
  --brass-light:    #d3b98c;  /* decorative light brass, dark text only */
  --brass-dark:     #7a5f39;  /* hover state for brass */
  --cream:          #f6f2ea;  /* page background */
  --cream-alt:      #efe8d9;  /* alternate section background */
  --white:          #fffdf8;  /* card / surface background */
  --ink:            #2a2621;  /* body text */
  --ink-soft:       #5b554a;  /* secondary text */
  --line:           #ddd4bf;  /* hairline borders */
  --line-dark:      rgba(255,253,248,.16);

  /* Type */
  --font-display: "Lora", "Iowan Old Style", Georgia, serif;
  --font-body: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;

  --max: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
svg{ width: 20px; height: 20px; flex-shrink: 0; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 20px;
  color: var(--forest);
}
h1{ font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 480; }
h2{ font-size: clamp(2rem, 3.6vw, 3.1rem); }
h3{ font-size: 1.4rem; font-weight: 600; }
p{ margin: 0 0 16px; color: var(--ink-soft); font-size: 1.02rem; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }

/* Focus visibility — accessibility floor */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link{
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--forest); color: #fff; padding: 14px 22px;
  font-size: .85rem; letter-spacing: .04em;
}
.skip-link:focus{ left: 16px; top: 16px; }

.container{ width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.container--narrow{ width: min(calc(100% - 48px), 760px); margin: 0 auto; }

.visually-hidden{
  position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}

/* ---------- Type helpers ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: ""; width: 22px; height: 1px; background: var(--brass);
}
.eyebrow--center{ justify-content: center; }
.lede{ font-size: 1.14rem; max-width: 46ch; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--forest); color: #fff;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  text-transform: uppercase; letter-spacing: .07em;
  font-size: .76rem; font-weight: 700;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn svg{ width: 15px; height: 15px; transition: transform .2s var(--ease); }
.btn:hover{ background: var(--forest-2); transform: translateY(-1px); }
.btn:hover svg{ transform: translateX(3px); }
.btn.brass{ background: var(--brass); border-color: var(--brass); }
.btn.brass:hover{ background: var(--brass-dark); border-color: var(--brass-dark); }
.btn.ghost{ background: transparent; color: var(--forest); border-color: var(--forest); }
.btn.ghost:hover{ background: var(--forest); color: #fff; }
.btn.on-dark{ background: transparent; color: #fff; border-color: var(--line-dark); }
.btn.on-dark:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.btn.block{ width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,242,234,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{
  min-height: 84px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand{
  display: flex; flex-direction: column; align-items: flex-end; line-height: 1;
  font-family: var(--font-display); color: var(--forest);
}
.brand .brand-main{ font-size: 1.5rem; letter-spacing: .05em; text-transform: uppercase; }
.brand .brand-sub{
  font-family: var(--font-body); font-size: .6rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--brass-dark); margin-top: 5px;
}
.navlinks{
  display: flex; align-items: center; gap: 30px;
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.navlinks a:not(.btn){
  position: relative; padding: 6px 0; color: var(--forest);
}
.navlinks a:not(.btn)::after{
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
  background: var(--brass); transition: right .25s var(--ease);
}
.navlinks a:not(.btn):hover::after,
.navlinks a[aria-current="page"]::after{ right: 0; }
.navlinks a[aria-current="page"]{ color: var(--brass-dark); }

.mobile-toggle{
  display: none; border: 1px solid var(--line); background: var(--white);
  width: 42px; height: 42px; border-radius: var(--radius);
  align-items: center; justify-content: center;
}
.mobile-toggle svg{ width: 19px; height: 19px; }
.mobile-toggle .icon-close{ display: none; }
.mobile-toggle[aria-expanded="true"] .icon-open{ display: none; }
.mobile-toggle[aria-expanded="true"] .icon-close{ display: block; }

.mobile-cta{
  display: none; height: 42px; padding: 0 16px; box-sizing: border-box;
  align-items: center; justify-content: center; margin-left: auto;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.mobile-cta.btn.brass:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(20,20,15,.32);
  background: var(--forest);
  border-color: var(--forest);
}

/* ---------- Hero (home page) ---------- */
.hero{ position: relative; overflow: hidden; background: var(--forest); }
.hero-grid{ display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.hero-panel{
  position: relative; display: flex; align-items: flex-end; padding: 48px;
  overflow: hidden;
}
.hero-panel.is-auto{
  background:
    radial-gradient(120% 140% at 15% 100%, rgba(156,122,73,.25), transparent 55%),
    linear-gradient(160deg, #1c2620 0%, var(--forest) 55%, #384938 100%);
}
.hero-panel.is-home{
  background:
    radial-gradient(120% 140% at 85% 100%, rgba(156,122,73,.18), transparent 55%),
    linear-gradient(200deg, var(--cream-alt) 0%, var(--cream) 60%, #e6ddc7 100%);
}
.hero-panel .blueprint{
  position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(var(--grid-line,rgba(255,253,248,.06)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line,rgba(255,253,248,.06)) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(85% 85% at 50% 50%, black 30%, transparent 80%);
}
.hero-panel.is-home .blueprint{ --grid-line: rgba(36,49,42,.06); }
.hero-panel .art{
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: .9;
}
.hero-panel .art svg{ width: min(62%, 340px); height: auto; }
.hero-panel.is-auto .art svg{ color: var(--brass-light); opacity: .55; }
.hero-panel.is-home .art svg{ color: var(--sage); opacity: .5; }

.hero-center{
  position: absolute; inset: 0; display: flex; align-items: flex-start; justify-content: center;
  padding: 84px 24px 40px; text-align: center; pointer-events: none;
}
.hero-copy{
  width: min(560px, 100%); pointer-events: auto;
  background: rgba(246,242,234,.94);
  padding: 46px 42px;
  box-shadow: 0 25px 60px rgba(20,20,10,.28);
  border: 1px solid rgba(255,255,255,.4);
}
.hero-copy .eyebrow{ justify-content: center; }
.hero-copy h1{ margin-bottom: 14px; }
.hero-copy p{ max-width: 42ch; margin: 0 auto; font-size: 1.05rem; }

.choice-wrap{
  position: absolute; z-index: 3; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: min(780px, 90%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.choice{
  padding: 30px 28px;
  background: rgba(28,38,32,.94); color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
  transition: transform .2s var(--ease);
}
.choice:hover{ transform: translateY(-3px); }
.choice.is-light{ background: rgba(255,253,248,.96); color: var(--forest); }
.choice .icon{ color: var(--brass-light); margin-bottom: 14px; }
.choice.is-light .icon{ color: var(--brass); }
.choice .icon svg{ width: 30px; height: 30px; }
.choice h3{ font-family: var(--font-body); color: inherit; font-size: 1.05rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.choice p{ color: inherit; opacity: .8; margin: 0 0 18px; font-size: .92rem; }

/* wipe-reveal signature animation, echoes a squeegee clearing fog */
.hero-panel{
  clip-path: inset(0 0 0 0);
}
.hero-panel.is-auto{ animation: wipe-in-left .9s var(--ease) both; }
.hero-panel.is-home{ animation: wipe-in-right .9s var(--ease) both; }
.hero-copy{ animation: fade-up .7s .5s var(--ease) both; }
@keyframes wipe-in-left{ from{ clip-path: inset(0 100% 0 0); } to{ clip-path: inset(0 0 0 0); } }
@keyframes wipe-in-right{ from{ clip-path: inset(0 0 0 100%); } to{ clip-path: inset(0 0 0 0); } }
@keyframes fade-up{ from{ opacity: 0; transform: translateY(14px); } to{ opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce){
  .hero-panel.is-auto, .hero-panel.is-home, .hero-copy{ animation: none; }
}

/* ---------- Sections ---------- */
.section{ padding: 100px 0; }
.section.alt{ background: var(--cream-alt); }
.section-head{ max-width: 640px; margin: 0 0 50px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* Intro / features */
.intro-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feature-grid{ display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-width: 1px 0 0 1px; }
.feature{ padding: 28px 30px; border: 1px solid var(--line); border-width: 0 1px 1px 0; }
.feature-grid--compact .feature{ padding: 18px 20px; }
.feature-grid--compact .feature strong{ font-size: 1rem; }
.feature-grid--compact .feature span{ font-size: .88rem; }
.feature-grid--compact .icon{ margin-bottom: 8px; }

.cert-badge--fixed{ width: 250px; }
.feature .icon{ color: var(--brass); margin-bottom: 12px; }
.feature .icon svg{ width: 26px; height: 26px; }
.feature strong{ display: block; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--forest); margin-bottom: 6px; }
.feature span{ font-size: .93rem; color: var(--ink-soft); }

/* Services overview (home page split) */
.service-columns{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 10px; }
.service-col-head{ display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-bottom: 2px solid var(--forest); padding-bottom: 14px; margin-bottom: 24px; }
.service-col-head h3{ margin: 0; font-size: 1.3rem; }
.service-col-head a{ font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-dark); white-space: nowrap; }
.service-col-head a:hover{ text-decoration: underline; }
.service-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-card{
  background: var(--white); border: 1px solid var(--line); padding: 26px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .25s var(--ease);
}
.service-card h4{ transition: color .25s var(--ease); }
.service-card p{ transition: color .25s var(--ease); }
.service-card .icon{ transition: color .25s var(--ease); }
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(20,20,15,.32);
  background: var(--forest);
  border-color: var(--forest);
}
.service-card:hover h4{ color: #fff; }
.service-card:hover p{ color: rgba(255,255,255,.75); }
.service-card:hover .icon{ color: var(--brass-light); }
.service-card .icon{ color: var(--brass); margin-bottom: 14px; }
.service-card .icon svg{ width: 30px; height: 30px; }
.service-card h4{ font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; color: var(--forest); margin: 0 0 6px; }
.service-card p{ font-size: .9rem; margin: 0; }

/* Trust band */
.trust{ background: var(--sage); color: #fff; }
.trust-grid{ display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; padding: 56px 0; text-align: center; }
.trust-item .icon{ margin: 0 auto 14px; width: 44px; height: 44px; }
.trust-item .icon svg{ width: 100%; height: 100%; }
.trust-item strong{ display: block; font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.trust-item span{ font-size: .88rem; opacity: .9; }

/* CTA band */
.cta-band{ background: var(--forest); color: #fff; text-align: center; padding: 86px 0; }
.cta-band h2{ color: #fff; }
.cta-band p{ color: rgba(255,255,255,.75); max-width: 46ch; margin: 0 auto 30px; }

/* Footer */
.footer{ background: #1c2620; color: #d9d9cd; padding: 72px 0 28px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dark); }
.footer-brand .brand-main{ color: #fff; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: .05em; text-transform: uppercase; }
.footer-brand .brand-sub{ display: block; font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-light); margin: 6px 0 16px; }
.footer p{ color: #b7b7a8; font-size: .92rem; }
.footer h5{ font-family: var(--font-body); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin: 0 0 18px; }
.footer-col ul{ display: flex; flex-direction: column; gap: 11px; }
.footer-col a{ font-size: .92rem; color: #cfcfc2; transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--brass-light); }
.footer-contact li{ display: flex; gap: 10px; font-size: .92rem; color: #cfcfc2; align-items: flex-start; }
.footer-contact svg{ width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--brass-light); }
.footer-bottom{ display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 26px; font-size: .82rem; color: #8f8f80; flex-wrap: wrap; }
.footer-bottom .socials{ display: flex; gap: 16px; }
.footer-bottom .socials a{ color: #cfcfc2; }
.footer-bottom .socials a:hover{ color: var(--brass-light); }
.footer-bottom .socials svg{ width: 18px; height: 18px; }

/* ---------- Interior page hero ---------- */
.page-hero{ padding: 64px 0 56px; background: linear-gradient(155deg, var(--cream-alt), var(--cream)); border-bottom: 1px solid var(--line); }
.breadcrumbs{ font-size: .78rem; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a{ color: var(--ink-soft); }
.breadcrumbs a:hover{ color: var(--brass-dark); }
.breadcrumbs .sep{ color: var(--line); }
.breadcrumbs .current{ color: var(--forest); font-weight: 600; }
.page-hero h1{ margin-bottom: 16px; }
.page-hero .lede{ font-size: 1.1rem; }

.page-body{ padding: 90px 0; }

/* Card grids used on hub / about pages */
.cards{ display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.cards.three{ grid-template-columns: repeat(3,1fr); }
.content-card{
  background: var(--white); border: 1px solid var(--line); padding: 32px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .25s var(--ease);
}
.content-card h3{ transition: color .25s var(--ease); }
.content-card p{ transition: color .25s var(--ease); }
.content-card .icon{ transition: color .25s var(--ease); }
.content-card .card-link{ transition: color .25s var(--ease); }
a.content-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(20,20,15,.32);
  background: var(--forest);
  border-color: var(--forest);
}
a.content-card:hover h3{ color: #fff; }
a.content-card:hover p{ color: rgba(255,255,255,.75); }
a.content-card:hover .icon{ color: var(--brass-light); }
a.content-card:hover .card-link{ color: var(--brass-light); }
.content-card .icon{ color: var(--brass); margin-bottom: 16px; }
.content-card .icon svg{ width: 32px; height: 32px; }
.content-card h3{ margin-bottom: 8px; }
.content-card .card-link{ display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--brass-dark); }
.content-card .card-link svg{ width: 13px; height: 13px; }

/* Service detail (alternating rows) */
.service-detail{ display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; margin-bottom: 84px; }
.service-detail:last-child{ margin-bottom: 0; }
.service-detail.reverse .copy{ order: 2; }
.service-detail.reverse .art-panel{ order: 1; }

/* "Inspection panel" art treatment — replaces stock photography */
.art-panel{
  position: relative; min-height: 380px; border-radius: 2px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  gap: 18px; text-align: center;
}
.art-panel.tone-forest{
  background: radial-gradient(120% 120% at 20% 15%, rgba(156,122,73,.22), transparent 60%), linear-gradient(150deg, #1c2620, var(--forest) 60%, #3a4c39);
  color: var(--brass-light);
}
.art-panel.tone-cream{
  background: radial-gradient(120% 120% at 80% 15%, rgba(100,121,90,.16), transparent 60%), linear-gradient(150deg, #efe8d9, #e4dac2);
  color: var(--sage);
}
.art-panel .blueprint{
  position: absolute; inset: 0; opacity: .55;
  background-image: linear-gradient(var(--grid,rgba(255,253,248,.07)) 1px, transparent 1px), linear-gradient(90deg, var(--grid,rgba(255,253,248,.07)) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(75% 75% at 50% 50%, black 25%, transparent 78%);
}
.art-panel.tone-cream .blueprint{ --grid: rgba(36,49,42,.07); }
.art-panel .icon-wrap{ position: relative; z-index: 1; }
.art-panel .icon-wrap svg{ width: 78px; height: 78px; }
.art-panel .art-label{
  position: relative; z-index: 1; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .85;
}

.video-embed{
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 2px; border: 1px solid var(--line);
  background: var(--forest);
}
.video-embed iframe{
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

.video-facade{
  position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 2px; border: 1px solid var(--line);
  background: var(--forest); cursor: pointer;
}
.video-facade img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.video-facade .play-btn{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 68px; height: 68px; border-radius: 50%;
  background: rgba(28,38,32,.72); border: 2px solid rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.video-facade:hover .play-btn{ background: var(--brass); transform: translate(-50%, -50%) scale(1.06); }
.video-facade .play-btn svg{ width: 24px; height: 24px; color: #fff; margin-left: 4px; }
.video-facade iframe{
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* Before / after comparison slider */
.ba-slider{
  position: relative; min-height: 380px; border-radius: 2px; overflow: hidden;
  border: 1px solid var(--line);
}
.ba-layer{ position: absolute; inset: 0; display: block; }
.ba-content{
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px;
}
.ba-after{ z-index: 1; }
.ba-before{ z-index: 2; clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-badge{
  position: absolute; top: 16px;
  padding: 6px 14px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(20,20,15,.6); color: #fff; border-radius: 2px; z-index: 3;
}
.ba-badge-before{ left: 16px; }
.ba-badge-after{ right: 16px; }
.ba-handle{
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 0; z-index: 4; pointer-events: none;
}
.ba-handle::before{
  content: ""; position: absolute; top: 0; bottom: 0; left: -1px; width: 2px; background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}
.ba-handle-grip{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.28);
}
.ba-handle-grip svg{ width: 14px; height: 14px; color: var(--forest); }
.ba-range{
  touch-action: pan-y;
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: ew-resize; z-index: 5;
  -webkit-appearance: none; appearance: none; background: transparent;
}
.ba-range::-webkit-slider-thumb{ -webkit-appearance: none; width: 42px; height: 100%; }
.ba-range::-moz-range-thumb{ width: 42px; height: 100%; background: transparent; border: 0; }
.ba-caption{
  text-align: center; font-size: .82rem; color: var(--ink-soft); margin-top: 12px;
}

.copy .eyebrow{ margin-bottom: 12px; }
.steps{ display: grid; gap: 20px; margin-top: 8px; }
.step{ display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.step:first-child{ border-top: 0; padding-top: 0; }
.step-num{ font-family: var(--font-display); font-size: 1.5rem; color: var(--brass-light); min-width: 40px; }
.step h4{ font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--forest); margin: 0 0 4px; }
.step p{ margin: 0; font-size: .93rem; }

.detail-extra{ background: var(--white); border: 1px solid var(--line); padding: 40px; margin-top: 20px; }

.chip-row{ display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; }
.chip{ padding: 8px 14px; background: var(--cream-alt); border: 1px solid var(--line); font-size: .82rem; color: var(--ink-soft); }

.cert-badge{
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 12px 18px 12px 12px;
  background: var(--white); border: 1px solid var(--line);
}
.cert-badge img{ height: 46px; width: auto; flex-shrink: 0; }
.cert-badge span{ font-size: .82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .01em; }
.cert-badge-row{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.cert-badge-row .cert-badge{ margin-top: 0; }
.cert-strip{ display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
.cert-strip .cert-badge{ margin-top: 0; }

/* About: values + process */
.value-list{ display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.process-row{ display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 10px; }
.process-item{ padding: 26px 22px; background: var(--white); border: 1px solid var(--line); }
.process-item .step-num{ display: block; margin-bottom: 12px; }

/* Gallery */
.gallery-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 26px; }
.gallery-note{
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--cream-alt); border: 1px dashed var(--line); padding: 22px 26px; margin-top: 40px;
  font-size: .92rem; color: var(--ink-soft);
}
.gallery-note svg{ color: var(--brass-dark); margin-top: 2px; }

/* Contact / quote form */
.contact-layout{ display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; align-items: start; }
.quote-box{ background: var(--white); border: 1px solid var(--line); padding: 42px; }
.quote-box h2{ font-size: 1.5rem; margin-bottom: 6px; }
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px; }
.form-grid .full{ grid-column: 1 / -1; }
.field label{ display: block; font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); margin-bottom: 8px; }
.field .req{ color: var(--brass-dark); }
input, textarea, select{
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); background: var(--cream);
  font: inherit; color: var(--ink); border-radius: 2px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
input:focus, textarea:focus, select:focus{ background: var(--white); border-color: var(--brass); }
textarea{ min-height: 130px; resize: vertical; }
fieldset{ border: 0; padding: 0; margin: 0; }
.checkbox-row{ display: flex; gap: 10px; align-items: flex-start; font-size: .86rem; color: var(--ink-soft); }
.checkbox-row input{ width: auto; margin-top: 3px; }
.form-note{ font-size: .82rem; color: var(--ink-soft); margin-top: 16px; }
.form-status{ margin-top: 18px; padding: 14px 16px; border-radius: 2px; font-size: .9rem; display: none; }
.form-status.is-visible{ display: block; }
.form-status.success{ background: #e7efe1; color: #35502f; border: 1px solid #bcd1ac; }
.form-status.error{ background: #fbeceb; color: #8a2f27; border: 1px solid #eec4c0; }

.info-card{ background: var(--forest); color: #fff; padding: 40px; margin-bottom: 20px; }
.info-card h3{ color: #fff; font-size: 1.2rem; }
.info-card ul{ display: flex; flex-direction: column; gap: 16px; margin-top: 18px; }
.info-card li{ display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: rgba(255,255,255,.85); }
.info-card svg{ width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px; color: var(--brass-light); }
.hours-card{ background: var(--white); border: 1px solid var(--line); padding: 32px; }
.hours-row{ display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .92rem; }
.hours-row:last-child{ border-bottom: 0; }
.hours-row span:first-child{ color: var(--ink); font-weight: 600; }
.hours-row span:last-child{ color: var(--ink-soft); }

/* Placeholder-data notice, shown once at top of contact page */
.notice{
  display: flex; gap: 12px; align-items: flex-start;
  background: #fbf3df; border: 1px solid #e6d4a3; color: #6b551f;
  padding: 16px 18px; font-size: .88rem; margin-bottom: 34px;
}
.notice svg{ width: 19px; height: 19px; flex-shrink: 0; margin-top: 1px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .intro-grid, .service-columns, .service-detail, .contact-layout{ grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse .copy{ order: 0; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .process-row{ grid-template-columns: 1fr 1fr; }
  .hero-grid{ min-height: 760px; }
}

@media (max-width: 800px){
  .nav{ min-height: 68px; }
  .navlinks{ display: none; }
  .mobile-toggle{ display: inline-flex; }
  .mobile-cta{ display: inline-flex; }
  .navlinks.is-open{
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }
  .navlinks.is-open a:not(.btn){ padding: 14px 0; border-bottom: 1px solid var(--line); }
  .navlinks.is-open .btn{ margin-top: 16px; justify-content: center; }

  .hero-grid{ grid-template-columns: 1fr; min-height: 840px; }
  .hero-panel{ min-height: 390px; }
  .hero-center{ padding-top: 46px; }
  .hero-copy{ padding: 28px 24px; }
  .hero-panel.is-auto{ animation-name: fade-up; }
  .hero-panel.is-home{ animation-name: fade-up; }
  .choice-wrap{ grid-template-columns: 1fr; bottom: 18px; gap: 12px; width: 88%; }
  .choice{ padding: 20px 22px; }

  .section{ padding: 64px 0; }
  .feature-grid, .cards, .cards.three, .value-list, .process-row, .trust-grid, .gallery-grid, .service-list{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-grid{ grid-template-columns: 1fr; }
}
