/* ════════════════════════════════════════════════════════════════════════
   OZZY EPOXY BROZ — stylesheet
   Palette is sampled from the logo: black ring, emerald shamrock, white
   monogram. Emerald is reserved for calls to action, active states and
   finish labels — nowhere else. Everything else is greyscale + photography.
   ════════════════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ───────────────────────────────────────────────────────── */
:root{
  /* colour */
  --ink:            #101312;   /* near-black with a green undertone */
  --ink-2:          #1A1F1D;   /* raised surface on dark bands */
  --ink-3:          #263029;   /* hairlines on dark */
  --emerald:        #247848;   /* exact brand green, dominant in the logo */
  --emerald-deep:   #1B5C37;   /* pressed state */
  --emerald-bright: #34A863;   /* the logo's sheen — CTAs on dark, hover */
  --concrete:       #E8E9E6;   /* dominant light surface */
  --concrete-2:     #DDDFDA;   /* alternate light band */
  --concrete-3:     #C6C9C3;   /* borders, rules */
  --white:          #FFFFFF;
  --muted:          #5C635E;   /* body text on light */
  --muted-light:    #A7AFA9;   /* body text on dark */

  /* type */
  --display: 'Archivo', 'Segoe UI', system-ui, sans-serif;
  --body:    'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'Cascadia Mono', monospace;

  /* metrics */
  --header-h: 76px;
  --shell:    1240px;
  --gutter:   clamp(1.25rem, 4vw, 3rem);
  --band:     clamp(3.25rem, 6vw, 5.5rem);   /* vertical breathing room per section */
  --r:        4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (max-width: 900px){ :root{ --header-h: 62px; } }

/* ── 2. RESET / BASE ─────────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--concrete);
  color:var(--ink);
  font-family:var(--body);
  font-size:clamp(1rem,.96rem + .2vw,1.0625rem);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg,iframe{ display:block; max-width:100%; }
img{ height:auto; }
button,input,select,textarea{ font:inherit; color:inherit; }
button{ cursor:pointer; }
a{ color:inherit; }
h1,h2,h3,h4{ margin:0; font-family:var(--display); font-weight:800; line-height:1.02; letter-spacing:-.02em; }
p{ margin:0 0 1.1em; }
ul,ol{ margin:0; padding:0; list-style:none; }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.skip-link{
  position:absolute; left:12px; top:-64px; z-index:200;
  background:var(--emerald); color:#fff; padding:.7rem 1.1rem;
  border-radius:var(--r); font-weight:600; text-decoration:none;
  transition:top .18s var(--ease);
}
.skip-link:focus{ top:12px; }

:where(a,button,input,select,textarea,summary,[tabindex]):focus-visible{
  outline:3px solid var(--emerald-bright);
  outline-offset:3px;
  border-radius:2px;
}

.shell{ width:100%; max-width:var(--shell); margin-inline:auto; padding-inline:var(--gutter); }

/* ── 3. TYPE SCALE ───────────────────────────────────────────────────── */
.h2{ font-size:clamp(2.1rem,1.3rem + 3.4vw,3.9rem); }
.h2--light{ color:var(--white); }

.eyebrow{
  font-family:var(--mono); font-size:.72rem; font-weight:500;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--emerald); margin:0 0 1rem;
}
/* On the dark bands this shadow is invisible; over the hero photo it's what
   keeps the eyebrow readable when a bright part of the image sits behind it. */
.eyebrow--light{ color:var(--emerald-bright); text-shadow:0 1px 3px rgba(0,0,0,.75), 0 2px 16px rgba(0,0,0,.85); }

.lede{ font-size:1.15em; line-height:1.6; }

/* ── 4. BUTTONS ──────────────────────────────────────────────────────── */
.btn{
  --btn-bg:var(--emerald); --btn-fg:#fff; --btn-bd:var(--emerald);
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.78rem 1.4rem;
  background:var(--btn-bg); color:var(--btn-fg);
  border:1.5px solid var(--btn-bd); border-radius:var(--r);
  font-family:var(--display); font-weight:700; font-size:.94rem;
  letter-spacing:.01em; text-decoration:none; white-space:nowrap;
  transition:background .18s var(--ease), border-color .18s var(--ease),
             color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover{ --btn-bg:var(--emerald-bright); --btn-bd:var(--emerald-bright); transform:translateY(-1px); }
.btn:active{ --btn-bg:var(--emerald-deep); --btn-bd:var(--emerald-deep); transform:translateY(0); }

.btn--ghost{ --btn-bg:transparent; --btn-fg:#fff; --btn-bd:rgba(255,255,255,.5); }
.btn--ghost:hover{ --btn-bg:rgba(255,255,255,.12); --btn-bd:#fff; }

.btn--sm{ padding:.5rem 1rem; font-size:.85rem; }
.btn--lg{ padding:1rem 1.9rem; font-size:1.02rem; }
.btn--block{ width:100%; }

/* ── 5. HEADER ───────────────────────────────────────────────────────── */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  height:var(--header-h);
  background:transparent;
  transition:background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header::after{
  content:''; position:absolute; inset:0; z-index:-1;
  background:linear-gradient(180deg, rgba(16,19,18,.72), rgba(16,19,18,0));
  transition:opacity .3s var(--ease);
}
.site-header.is-stuck{ background:var(--ink); box-shadow:0 1px 0 var(--ink-3), 0 10px 30px rgba(0,0,0,.22); }
.site-header.is-stuck::after{ opacity:0; }

.site-header__inner{
  height:100%; display:flex; align-items:center; gap:1.25rem;
}

.brand{ display:flex; align-items:center; gap:.7rem; text-decoration:none; flex:0 0 auto; }
.brand__coin{
  display:grid; place-items:center;
  width:42px; height:42px; flex:0 0 auto;
  background:var(--concrete); border-radius:50%;
  box-shadow:0 0 0 1px rgba(255,255,255,.14);
}
.brand__coin img{ width:88%; height:88%; object-fit:contain; }
.brand__coin--lg{ width:68px; height:68px; }

.brand__words{ display:flex; flex-direction:column; line-height:1.1; }
.brand__name{
  font-family:var(--display); font-weight:800; font-size:1.02rem;
  letter-spacing:-.015em; color:#fff;
}
.brand__tag{
  font-family:var(--mono); font-size:.6rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted-light);
}

.nav{ margin-left:auto; }
.nav__list{ display:flex; align-items:center; gap:.15rem; }
.nav__link{
  display:block; padding:.5rem .7rem;
  font-size:.9rem; font-weight:500; text-decoration:none; color:rgba(255,255,255,.82);
  border-radius:var(--r);
  transition:color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover{ color:#fff; background:rgba(255,255,255,.08); }
.nav__link.is-active{ color:var(--emerald-bright); }

.site-header__actions{ display:flex; align-items:center; gap:.75rem; flex:0 0 auto; }

.header-phone{
  display:flex; flex-direction:column; line-height:1.15; text-decoration:none;
  padding-right:.25rem;
}
.header-phone__label{
  font-family:var(--mono); font-size:.58rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--muted-light);
}
.header-phone__num{ font-family:var(--display); font-weight:700; font-size:.92rem; color:#fff; }
.header-phone:hover .header-phone__num{ color:var(--emerald-bright); }

.burger{ display:none; background:none; border:0; padding:.4rem; }
.burger__box{ display:block; width:24px; }
.burger__box i{
  display:block; height:2px; background:#fff; border-radius:2px;
  transition:transform .25s var(--ease), opacity .2s var(--ease);
}
.burger__box i+i{ margin-top:5px; }
.burger[aria-expanded="true"] i:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] i:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:1080px){
  .brand__tag{ display:none; }
  .nav__link{ padding:.5rem .5rem; font-size:.86rem; }
}
@media (max-width:900px){
  .burger{ display:block; }
  .header-phone{ display:none; }
  /* The sticky action bar already carries Call + Get a quote from here down,
     so the header CTA is duplicate weight — and on a 360px screen it pushed
     the burger off the edge, making the menu unreachable. */
  .site-header__actions > .btn{ display:none; }
  .nav{
    position:fixed; inset:var(--header-h) 0 auto 0;
    background:var(--ink); border-top:1px solid var(--ink-3);
    padding:.5rem var(--gutter) 1.25rem;
    transform:translateY(-8px); opacity:0; pointer-events:none;
    transition:opacity .22s var(--ease), transform .22s var(--ease);
    max-height:calc(100dvh - var(--header-h)); overflow-y:auto;
  }
  .nav.is-open{ opacity:1; transform:none; pointer-events:auto; }
  .nav__list{ flex-direction:column; align-items:stretch; gap:0; }
  .nav__link{ padding:.85rem .25rem; font-size:1rem; border-bottom:1px solid var(--ink-3); border-radius:0; }
}

/* ── 6. HERO — the finish wipe ───────────────────────────────────────── */
.hero{
  position:relative; isolation:isolate;
  min-height:min(100svh, 860px);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding-top:calc(var(--header-h) + 2rem);
  background:var(--ink);
  overflow:hidden;
}

.hero__stage{ position:absolute; inset:0; z-index:-2; }

.hero__layer{
  position:absolute; inset:0; margin:0;
  clip-path:inset(0 100% 0 0);
  transition:clip-path .62s var(--ease);
  will-change:clip-path;
}
.hero__layer[data-layer="0"]{ clip-path:inset(0 0 0 0); }
.hero__layer.is-shown{ clip-path:inset(0 0 0 0); }
.hero__layer img{
  width:100%; height:100%; object-fit:cover; object-position:center 62%;
}

.hero__scrim{
  position:absolute; inset:0; pointer-events:none;
  /* Dark enough for white type to pass contrast over any of the four photos,
     light enough that the floor finish itself still reads — that's the point. */
  background:
    linear-gradient(180deg, rgba(16,19,18,.50) 0%, rgba(16,19,18,.10) 36%, rgba(16,19,18,.70) 76%, rgba(16,19,18,.94) 100%),
    linear-gradient(90deg, rgba(16,19,18,.62) 0%, rgba(16,19,18,.06) 64%);
}

.hero__hairline{
  position:absolute; top:0; bottom:0; width:1px;
  left:var(--wipe-x, 50%);
  background:linear-gradient(180deg, transparent, rgba(255,255,255,.55) 30%, rgba(255,255,255,.55) 70%, transparent);
  opacity:0; transition:opacity .3s var(--ease);
  pointer-events:none;
}
.hero__stage.is-live .hero__hairline{ opacity:.5; }

.hero__content{ position:relative; padding-block:2rem 1.5rem; }
.hero__title{
  font-size:clamp(2.6rem,1.2rem + 6vw,6rem);
  color:#fff; margin:0 0 1.1rem;
  letter-spacing:-.035em;
  text-wrap:balance;
}
.hero__lede{
  max-width:52ch; color:rgba(255,255,255,.92);
  font-size:clamp(1rem,.95rem + .3vw,1.2rem);
  margin-bottom:1.9rem;
  text-shadow:0 1px 3px rgba(0,0,0,.6), 0 2px 20px rgba(0,0,0,.7);
}
.hero__cta{ display:flex; flex-wrap:wrap; gap:.75rem; }

.hero__rail{
  position:relative;
  border-top:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(3px);
  background:rgba(16,19,18,.3);
}
.hero__rail-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; flex-wrap:wrap; padding-block:.9rem;
}
.hero__hint{
  margin:0; font-family:var(--mono); font-size:.68rem;
  letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.6);
}

.finishes{ display:flex; gap:.4rem; flex-wrap:wrap; }
.finish{
  display:flex; align-items:baseline; gap:.5rem;
  padding:.5rem .85rem;
  background:transparent; border:1px solid rgba(255,255,255,.2);
  border-radius:var(--r); color:rgba(255,255,255,.62);
  transition:color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.finish__idx{ font-family:var(--mono); font-size:.62rem; letter-spacing:.08em; opacity:.7; }
.finish__name{ font-family:var(--display); font-weight:700; font-size:.9rem; letter-spacing:-.01em; }
.finish:hover{ color:#fff; border-color:rgba(255,255,255,.5); }
.finish[aria-selected="true"]{
  color:var(--ink); background:var(--emerald-bright); border-color:var(--emerald-bright);
}

@media (max-width:640px){
  .hero__hint{ display:none; }
  .finishes{ width:100%; display:grid; grid-template-columns:repeat(4,1fr); gap:.35rem; }
  .finish{ flex-direction:column; align-items:center; gap:.1rem; padding:.45rem .3rem; }
  .finish__name{ font-size:.76rem; }
}

/* ── 7. TRUST STRIP ──────────────────────────────────────────────────── */
.strip{ background:var(--ink); border-top:1px solid var(--ink-3); }
.strip__grid{
  display:grid; grid-template-columns:repeat(4,1fr);
  padding-block:clamp(1.75rem,3vw,2.5rem);
  gap:1.25rem;
}
.strip__item{ display:flex; flex-direction:column; gap:.2rem; }
.strip__fig{
  font-family:var(--display); font-weight:800; font-size:clamp(1.9rem,1.2rem + 2vw,2.9rem);
  color:var(--emerald-bright); line-height:1; letter-spacing:-.03em;
}
.strip__unit{ font-size:.45em; margin-left:.06em; }
.strip__lab{
  font-family:var(--mono); font-size:.68rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--muted-light);
}
@media (max-width:720px){ .strip__grid{ grid-template-columns:repeat(2,1fr); gap:1.5rem 1rem; } }

/* ── 8. SECTIONS ─────────────────────────────────────────────────────── */
.section{ padding-block:var(--band); scroll-margin-top:calc(var(--header-h) + 8px); }
.section--light{ background:var(--concrete); color:var(--ink); }
.section--ink{ background:var(--ink); color:var(--muted-light); }
.section--quote{ background:var(--concrete-2); color:var(--ink); }

.section__head{ max-width:62ch; margin-bottom:clamp(2.5rem,5vw,4rem); }
.section__sub{ margin-top:1.25rem; font-size:1.08em; max-width:58ch; }
.section--light .section__sub, .section--quote .section__sub{ color:var(--muted); }
.section__foot{ margin-top:clamp(2.5rem,5vw,3.5rem); }

/* The Reviews section (a dark band) used to sit between Process and Service
   areas. With it removed those two light sections meet and read as one long
   block, so this hairline keeps the boundary legible. Delete it if Reviews
   is ever restored — see _backup/reviews-section.html. */
#process + #areas{ border-top:1px solid var(--concrete-3); }

/* ── 9. ABOUT ────────────────────────────────────────────────────────── */
.about{ display:grid; grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr); gap:clamp(2rem,5vw,4.5rem); }
.about__intro .h2{ margin:0; }
.about__photo{
  margin:2rem 0 0; /* sits under the heading in the left column */
}
.about__photo img{
  width:100%; height:auto; aspect-ratio:4/3; object-fit:cover;
  border:1px solid var(--concrete-3); border-radius:var(--r);
  background:var(--concrete-2);
}
.about__photo figcaption{
  margin-top:.7rem; font-family:var(--mono); font-size:.62rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted); line-height:1.6;
}
.about__body p{ color:var(--muted); }
.about__body .lede{ color:var(--ink); font-weight:500; }

.owners{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; margin-top:2.25rem; }
.owner{
  display:flex; flex-direction:column; gap:.15rem;
  padding:1.1rem 1.25rem; background:var(--white);
  border:1px solid var(--concrete-3); border-radius:var(--r);
  border-left:3px solid var(--emerald);
}
.owner__name{ font-family:var(--display); font-weight:800; font-size:1.05rem; }
.owner__role{ font-family:var(--mono); font-size:.65rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted); }
.owner__tel{ margin-top:.4rem; font-weight:600; color:var(--emerald); text-decoration:none; }
.owner__tel:hover{ text-decoration:underline; }

@media (max-width:860px){
  .about{ grid-template-columns:1fr; gap:2rem; }
  .owners{ grid-template-columns:1fr; }
}

/* ── 10. SERVICES ────────────────────────────────────────────────────── */
.tile-tag{
  display:inline-block; align-self:flex-start;
  font-family:var(--mono); font-size:.6rem; font-weight:500;
  letter-spacing:.13em; text-transform:uppercase;
  color:var(--emerald-bright);
  border:1px solid rgba(52,168,99,.42); border-radius:100px;
  padding:.22rem .6rem; margin-bottom:.7rem;
}
.tile-tag--inline{ margin:0; vertical-align:middle; }

.family{ margin-bottom:clamp(3rem,6vw,5rem); }
.family:last-of-type{ margin-bottom:0; }
.family__head{
  display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap;
  padding-bottom:.9rem; margin-bottom:1.75rem;
  border-bottom:1px solid var(--ink-3);
}
.family__title{
  font-size:clamp(1.15rem,1rem + .5vw,1.45rem); color:var(--white);
  font-weight:700; letter-spacing:-.01em;
}
.family__note{
  margin:0; font-family:var(--mono); font-size:.68rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light);
}

.cards{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
.card{
  display:flex; flex-direction:column;
  background:var(--ink-2); border:1px solid var(--ink-3);
  border-radius:var(--r); overflow:hidden;
  transition:border-color .22s var(--ease), transform .22s var(--ease);
}
.card:hover{ border-color:rgba(52,168,99,.45); transform:translateY(-3px); }
.card__media{ display:block; aspect-ratio:4/3; overflow:hidden; background:var(--ink-3); }
.card__media img{
  width:100%; height:100%; object-fit:cover; object-position:center 62%;
  transition:transform .5s var(--ease);
}
.card:hover .card__media img{ transform:scale(1.05); }
.card__body{ display:flex; flex-direction:column; flex:1; padding:1.15rem 1.15rem 1.25rem; }
.card__title{ font-size:1.08rem; color:var(--white); margin-bottom:.5rem; font-weight:700; }
.card__text{ font-size:.9rem; line-height:1.55; color:var(--muted-light); flex:1; margin-bottom:1rem; }
.card__cta{
  align-self:flex-start; font-family:var(--display); font-weight:700; font-size:.84rem;
  color:var(--emerald-bright); text-decoration:none;
}
.card__cta span{ display:inline-block; transition:transform .2s var(--ease); }
.card__cta:hover span{ transform:translateX(3px); }

@media (max-width:1080px){ .cards{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .cards{ grid-template-columns:1fr; } }

/* ── 11. WHY US ──────────────────────────────────────────────────────── */
.why{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.05fr); gap:clamp(1.5rem,4vw,3rem); align-items:start; }

.why__lead{
  padding:clamp(1.75rem,3vw,2.5rem);
  background:var(--ink); color:var(--muted-light);
  border-radius:var(--r); position:relative; overflow:hidden;
}
.why__lead::before{
  content:''; position:absolute; inset:0 auto 0 0; width:3px; background:var(--emerald-bright);
}
.why__flag{
  display:inline-block; font-family:var(--mono); font-size:.62rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--emerald-bright);
  margin-bottom:.9rem;
}
.why__lead-title{ font-size:clamp(1.4rem,1.1rem + 1.2vw,2rem); color:#fff; margin-bottom:1rem; }
.why__lead p{ font-size:.98rem; }
.why__lead .btn{ margin-top:.5rem; }

.why__grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.why__item{
  padding:1.35rem 1.4rem; background:var(--white);
  border:1px solid var(--concrete-3); border-radius:var(--r);
}
.why__title{ font-size:1rem; font-weight:700; margin-bottom:.5rem; letter-spacing:-.01em; }
.why__item p{ margin:0; font-size:.9rem; line-height:1.55; color:var(--muted); }

@media (max-width:960px){ .why{ grid-template-columns:1fr; } }
@media (max-width:560px){ .why__grid{ grid-template-columns:1fr; } }

/* ── 12. GALLERY ─────────────────────────────────────────────────────── */
.filters{ display:flex; flex-wrap:wrap; gap:.4rem; margin-bottom:1.75rem; }
.filter{
  padding:.45rem 1rem; background:transparent;
  border:1px solid var(--ink-3); border-radius:100px;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--muted-light);
  transition:color .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}
.filter:hover{ color:#fff; border-color:var(--muted-light); }
.filter.is-on{ background:var(--emerald-bright); border-color:var(--emerald-bright); color:var(--ink); font-weight:500; }

.gallery{
  display:grid; grid-template-columns:repeat(4,1fr); gap:.85rem;
}
.shot{ margin:0; }
.shot[hidden]{ display:none; }
.shot__btn{
  display:block; width:100%; padding:0; position:relative;
  background:var(--ink-2); border:1px solid var(--ink-3); border-radius:var(--r);
  overflow:hidden; aspect-ratio:1/1;
  transition:border-color .22s var(--ease);
}
.shot__btn:hover{ border-color:var(--emerald-bright); }
.shot__btn img{ width:100%; height:100%; object-fit:cover; object-position:center 62%; transition:transform .5s var(--ease); }
.shot__btn:hover img{ transform:scale(1.06); }
.shot__cap{
  position:absolute; inset:auto 0 0 0; padding:1.6rem .8rem .65rem;
  font-family:var(--mono); font-size:.64rem; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; text-align:left;
  background:linear-gradient(180deg, transparent, rgba(16,19,18,.88));
}
.gallery__empty{ font-family:var(--mono); font-size:.8rem; color:var(--muted-light); }

@media (max-width:1080px){ .gallery{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:680px){ .gallery{ grid-template-columns:repeat(2,1fr); gap:.6rem; } }

/* Lightbox */
.lightbox{ position:fixed; inset:0; z-index:150; display:grid; place-items:center; }
.lightbox[hidden]{ display:none; }
.lightbox__backdrop{ position:absolute; inset:0; background:rgba(8,10,9,.93); }
.lightbox__panel{
  position:relative; z-index:1;
  width:min(94vw,1100px); max-height:90dvh;
  display:flex; flex-direction:column; align-items:center; gap:.75rem;
}
.lightbox__img{ max-width:100%; max-height:78dvh; object-fit:contain; border-radius:var(--r); }
.lightbox__cap{
  margin:0; font-family:var(--mono); font-size:.72rem;
  letter-spacing:.1em; text-transform:uppercase; color:var(--muted-light);
}
.lightbox__close,.lightbox__nav{
  position:absolute; display:grid; place-items:center;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
  color:#fff; font-size:1.5rem; line-height:1;
  transition:background .18s var(--ease);
}
.lightbox__close:hover,.lightbox__nav:hover{ background:rgba(255,255,255,.24); }
.lightbox__close{ top:-56px; right:0; }
.lightbox__nav{ top:calc(39dvh - 22px); }
.lightbox__nav--prev{ left:-58px; }
.lightbox__nav--next{ right:-58px; }
@media (max-width:1240px){
  .lightbox__nav--prev{ left:8px; }
  .lightbox__nav--next{ right:8px; }
  .lightbox__close{ top:-52px; right:8px; }
}

/* ── 13. PROCESS ─────────────────────────────────────────────────────── */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; counter-reset:none; }
.step{
  position:relative; padding-top:1.5rem;
  border-top:2px solid var(--concrete-3);
  transition:border-color .3s var(--ease);
}
.step.is-in{ border-top-color:var(--emerald); }
.step__num{
  display:block; font-family:var(--mono); font-size:.72rem; font-weight:500;
  letter-spacing:.16em; color:var(--emerald); margin-bottom:.9rem;
}
.step__title{ font-size:1.2rem; margin-bottom:.6rem; font-weight:700; }
.step__body p{ margin:0; font-size:.93rem; line-height:1.6; color:var(--muted); }
@media (max-width:900px){ .steps{ grid-template-columns:repeat(2,1fr); gap:1.75rem 1.25rem; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }

/* ── 14. REVIEWS ─────────────────────────────────────────────────────── */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.quote{
  display:flex; flex-direction:column;
  padding:1.6rem 1.5rem; background:var(--ink-2);
  border:1px solid var(--ink-3); border-radius:var(--r);
}
.quote__mark{
  font-family:var(--display); font-size:3rem; font-weight:800; line-height:.6;
  color:var(--emerald-bright); margin:0 0 .5rem; opacity:.5;
}
.quote__text{ margin:0 0 1.25rem; font-size:.95rem; line-height:1.6; color:var(--muted-light); font-style:italic; }
.quote__who{ margin:0; margin-top:auto; }
/* Attribution once a real review replaces the placeholder. */
.quote__name{ display:block; font-family:var(--display); font-weight:700; font-size:.95rem; color:#fff; }
.quote__where{
  display:block; font-family:var(--mono); font-size:.62rem;
  letter-spacing:.12em; text-transform:uppercase; color:var(--muted); margin-top:.15rem;
}
.quote__pending{
  font-family:var(--mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--muted); border:1px dashed var(--ink-3); border-radius:100px; padding:.25rem .65rem;
  display:inline-block;
}
@media (max-width:900px){ .quotes{ grid-template-columns:1fr; } }

/* ── 15. SERVICE AREAS ───────────────────────────────────────────────── */
.areas{ display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1.1fr); gap:clamp(1.5rem,4vw,3rem); align-items:start; }
.areas__map{
  border:1px solid var(--concrete-3); border-radius:var(--r);
  overflow:hidden; background:var(--concrete-2);
}
.areas__map iframe{ width:100%; height:clamp(320px,42vw,470px); }

.areas__lists{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem 2rem; }
.areas__col--wide{ grid-column:1/-1; }
.areas__title{
  font-family:var(--mono); font-size:.7rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; color:var(--emerald);
  margin-bottom:.55rem; display:flex; align-items:center; gap:.5rem; flex-wrap:wrap;
}
.areas__badge{
  font-size:.62rem; letter-spacing:.1em; color:var(--muted);
  border:1px solid var(--concrete-3); border-radius:100px; padding:.12rem .5rem;
  text-transform:none;
}
.areas__row{ margin:0; font-size:.92rem; line-height:1.7; color:var(--muted); }

@media (max-width:960px){ .areas{ grid-template-columns:1fr; } }
@media (max-width:520px){ .areas__lists{ grid-template-columns:1fr; } }

/* ── 16. FAQ ─────────────────────────────────────────────────────────── */
.faq-wrap .section__head{ margin-bottom:clamp(2rem,4vw,3rem); }
.faq{ max-width:900px; border-top:1px solid var(--ink-3); }
.qa{ border-bottom:1px solid var(--ink-3); }
.qa__q{
  display:flex; align-items:center; justify-content:space-between; gap:1rem;
  padding:1.15rem 0; cursor:pointer; list-style:none;
  font-family:var(--display); font-weight:700; font-size:clamp(1rem,.95rem + .3vw,1.14rem);
  color:#fff; letter-spacing:-.01em;
  transition:color .18s var(--ease);
}
.qa__q::-webkit-details-marker{ display:none; }
.qa__q:hover{ color:var(--emerald-bright); }
.qa__icon{
  position:relative; flex:0 0 auto; width:18px; height:18px;
}
.qa__icon::before,.qa__icon::after{
  content:''; position:absolute; left:50%; top:50%; background:var(--emerald-bright);
  transform:translate(-50%,-50%);
}
.qa__icon::before{ width:15px; height:2px; }
.qa__icon::after{ width:2px; height:15px; transition:transform .25s var(--ease); }
.qa[open] .qa__icon::after{ transform:translate(-50%,-50%) scaleY(0); }
.qa__a{ padding-bottom:1.35rem; max-width:72ch; }
.qa__a p{ margin:0; font-size:.96rem; line-height:1.7; color:var(--muted-light); }

/* ── 17. QUOTE FORM ──────────────────────────────────────────────────── */
/* NOTE: this block is the enquiry form layout. Do not name it `.quote` —
   that class already belongs to the testimonial cards in section 14, and a
   second definition here silently turned every testimonial into a 2-col grid. */
.quote-form{ display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(2rem,5vw,4rem); align-items:start; }
.quote-form__intro .h2{ margin-bottom:1.25rem; }
.quote-form__intro .lede{ color:var(--muted); }

.contact{ margin-top:2rem; border-top:1px solid var(--concrete-3); }
.contact__row{
  display:flex; align-items:baseline; gap:1rem;
  padding:.85rem 0; border-bottom:1px solid var(--concrete-3);
}
.contact__label{
  flex:0 0 4.5rem; font-family:var(--mono); font-size:.65rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--muted);
}
.contact__value{
  font-family:var(--display); font-weight:700; font-size:1.02rem;
  color:var(--emerald); text-decoration:none; word-break:break-word;
}
.contact__value:hover{ text-decoration:underline; }
.contact__value--plain{
  font-family:var(--body); font-weight:400; font-size:.9rem;
  color:var(--muted); line-height:1.5;
}
.contact__value--plain:hover{ text-decoration:none; }

.form{
  display:grid; grid-template-columns:repeat(2,1fr); gap:1rem;
  padding:clamp(1.5rem,3vw,2.25rem);
  background:var(--white); border:1px solid var(--concrete-3); border-radius:var(--r);
}
.field{ display:flex; flex-direction:column; gap:.35rem; }
.field--wide{ grid-column:1/-1; }
.field__label{ font-size:.82rem; font-weight:600; letter-spacing:.01em; }
.req{ color:var(--emerald); }
.opt{ font-weight:400; color:var(--muted); font-size:.78rem; }
.field__input{
  width:100%; padding:.72rem .85rem;
  background:var(--concrete); color:var(--ink);
  border:1.5px solid var(--concrete-3); border-radius:var(--r);
  font-size:.95rem;
  transition:border-color .18s var(--ease), background .18s var(--ease);
}
.field__input:hover{ border-color:var(--muted); }
.field__input:focus{ background:var(--white); border-color:var(--emerald); }
.field__input--area{ resize:vertical; min-height:110px; line-height:1.55; }
.field.is-bad .field__input{ border-color:#B4342C; background:#FCF3F2; }
.field__err{ margin:0; font-size:.78rem; color:#B4342C; min-height:0; }
.field__err:empty{ display:none; }

.hp{ position:absolute; left:-9999px; opacity:0; height:0; width:0; }

.form__foot{ grid-column:1/-1; display:flex; flex-direction:column; gap:.65rem; }
.form__note{ margin:0; font-size:.78rem; color:var(--muted); }
.form__status{ margin:0; font-size:.86rem; font-weight:600; color:#B4342C; }
.form__status:empty{ display:none; }

.done{
  padding:clamp(2rem,4vw,3rem); text-align:center;
  background:var(--white); border:1px solid var(--emerald); border-left:3px solid var(--emerald);
  border-radius:var(--r);
}
.done[hidden]{ display:none; }
.done__tick{
  width:52px; height:52px; margin:0 auto 1rem; display:grid; place-items:center;
  background:var(--emerald); color:#fff; border-radius:50%; font-size:1.5rem;
}
.done__title{ font-size:1.5rem; margin-bottom:.6rem; }
.done__text{ margin:0; color:var(--muted); }
.done__text a{ color:var(--emerald); font-weight:600; }

@media (max-width:960px){ .quote-form{ grid-template-columns:1fr; } }
@media (max-width:560px){ .form{ grid-template-columns:1fr; } }

/* ── 18. FOOTER ──────────────────────────────────────────────────────── */
.footer{ background:var(--ink); color:var(--muted-light); padding-top:clamp(3rem,6vw,5rem); }
.footer__inner{
  display:grid; grid-template-columns:2fr 1fr 1.3fr; gap:2.5rem;
  padding-bottom:2.5rem;
}
.footer__name{ font-family:var(--display); font-weight:800; font-size:1.3rem; color:#fff; margin:.9rem 0 .2rem; }
.footer__tag{ font-family:var(--mono); font-size:.66rem; letter-spacing:.12em; text-transform:uppercase; color:var(--emerald-bright); margin:0; }
.footer__h{
  font-family:var(--mono); font-size:.66rem; font-weight:500;
  letter-spacing:.14em; text-transform:uppercase; color:var(--muted);
  margin:0 0 .9rem;
}
.footer__nav a,.footer__contact a{
  display:inline-block; padding:.28rem 0; font-size:.92rem;
  color:var(--muted-light); text-decoration:none;
}
.footer__nav a:hover,.footer__contact a:hover{ color:var(--emerald-bright); }
.footer__plain{ padding:.28rem 0; font-size:.92rem; }

.footer__base{
  display:flex; justify-content:space-between; align-items:center; gap:1rem; flex-wrap:wrap;
  padding-block:1.5rem; border-top:1px solid var(--ink-3);
}
.footer__base p{ margin:0; font-size:.8rem; color:var(--muted); }
.footer__made{ font-family:var(--mono); font-size:.66rem !important; letter-spacing:.08em; }
/* Agency credit — deliberately quiet. It's the client's site, not a portfolio piece. */
.footer__by{ font-family:var(--mono); font-size:.66rem !important; letter-spacing:.08em; }
.footer__by a{ color:var(--muted-light); text-decoration:none; border-bottom:1px solid var(--ink-3); }
.footer__by a:hover{ color:#fff; border-bottom-color:var(--muted-light); }

@media (max-width:860px){ .footer__inner{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer__inner{ grid-template-columns:1fr; gap:2rem; } }

/* ── 19. MOBILE ACTION BAR ───────────────────────────────────────────── */
.actionbar{
  position:fixed; inset:auto 0 0 0; z-index:90;
  display:none; gap:.5rem; padding:.6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background:rgba(16,19,18,.96); border-top:1px solid var(--ink-3);
  backdrop-filter:blur(8px);
}
.actionbar__btn{
  flex:1; display:flex; align-items:center; justify-content:center; gap:.45rem;
  padding:.85rem .5rem; border-radius:var(--r);
  font-family:var(--display); font-weight:700; font-size:.95rem; text-decoration:none;
}
.actionbar__btn--call{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,.4); }
.actionbar__btn--quote{ background:var(--emerald-bright); color:var(--ink); border:1.5px solid var(--emerald-bright); }

@media (max-width:900px){
  .actionbar{ display:flex; }
  body{ padding-bottom:74px; }
}

/* ── 20. MOTION / SCROLL REVEAL ──────────────────────────────────────── */
[data-reveal]{ opacity:0; transform:translateY(18px); }
.js-ready [data-reveal]{ transition:opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-in{ opacity:1; transform:none; }

@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;
  }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
  .hero__layer{ transition:opacity .001ms !important; }
  .hero__hairline{ display:none; }
}

/* ── 21. PRINT ───────────────────────────────────────────────────────── */
@media print{
  .site-header,.actionbar,.hero__rail,.filters,.lightbox,.form{ display:none !important; }
  body{ background:#fff; color:#000; padding:0; }
  .section{ padding-block:1.5rem; break-inside:avoid; }
}
