/* =============================================================
   All State Roofing & Chimney NJ — Main Stylesheet
   ============================================================= */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --orange:  #E8610A;
  --od:      #c4500a;
  --ol:      #ff7a2e;
  --amber:   #F5A623;
  --slate:   #1A2332;
  --slm:     #243040;
  --text:    #0e1822;
  --muted:   #5c7080;
  --border:  #d8e0e8;
  --bg:      #f2f4f7;
  --white:   #ffffff;
  --cream:   #faf9f7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.lt { color: var(--amber); }
.eyebrow.lt::before { background: var(--amber); }

h2.ttl {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  letter-spacing: .01em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}
h2.ttl.wh { color: #fff; }

.body-txt { font-size: 1rem; line-height: 1.8; color: var(--muted); }

/* ── TOP BAR ── */
.topbar {
  background: var(--slate);
  padding: 9px 0;
  font-size: .78rem;
  color: #8fa8bf;
  letter-spacing: .03em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--amber); text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #fff; }
.tb-left, .tb-right { display: flex; align-items: center; gap: 10px; }
.tb-icon { width: 13px; height: 13px; flex-shrink: 0; opacity: .7; }
.topbar a .tb-icon { opacity: 1; color: var(--amber); }
.tb-div { display: inline-block; width: 1px; height: 11px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-sq {
  width: 50px; height: 50px;
  background: var(--orange);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,.2);
  flex-shrink: 0;
}
.logo-sq span { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: #fff; line-height: 1; }
.logo-name { font-family: 'Fjalla One', sans-serif; font-size: 1.15rem; color: var(--slate); letter-spacing: .03em; line-height: 1.1; display: block; }
.logo-tag  { font-size: .62rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; display: block; }

/* Nav */
nav { display: flex; align-items: center; gap: 2px; }
.nl {
  font-size: .84rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--slate); text-decoration: none;
  padding: 8px 12px; border-radius: 4px;
  transition: color .18s, background .18s;
}
.nl:hover, .nl.on { color: var(--orange); background: rgba(232,97,10,.06); }

.hdr-r { display: flex; align-items: center; gap: 10px; }
.hdr-ph {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none;
  border-left: 1px solid var(--border);
  padding-left: 18px;
}
.hdr-ph-ic {
  width: 36px; height: 36px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.hdr-ph-num { font-family: 'Fjalla One', sans-serif; font-size: 1.05rem; color: var(--slate); display: block; line-height: 1.1; }
.hdr-ph-lbl { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; display: block; }

/* ── SHARED BUTTONS ── */
.btn-cta {
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .92rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 0 var(--od);
}
.btn-cta:hover { background: var(--ol); transform: translateY(-1px); }

.btn-p {
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 4px;
  text-decoration: none;
  transition: background .2s, transform .15s;
  box-shadow: 0 3px 0 var(--od);
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-p:hover { background: var(--ol); transform: translateY(-2px); }

.btn-g {
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.82);
  font-family: 'Fjalla One', sans-serif; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 4px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.btn-g:hover { border-color: var(--amber); color: var(--amber); }

.btn-wh {
  background: #fff; color: var(--orange);
  font-family: 'Fjalla One', sans-serif; font-size: 1rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 34px; border-radius: 4px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-wh:hover { background: #fff3ec; transform: translateY(-2px); }

.btn-bw {
  border: 2px solid rgba(255,255,255,.5); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .9rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 12px 28px; border-radius: 4px;
  text-decoration: none; white-space: nowrap; text-align: center;
  transition: border-color .2s, background .2s;
}
.btn-bw:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-coup {
  display: block; background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 9px; border-radius: 3px;
  text-decoration: none; transition: background .2s;
}
.btn-coup:hover { background: var(--ol); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden; background: var(--slate);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/allstate/hero.jpg') center 30% / cover no-repeat;
  opacity: .45;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,35,50,.88) 42%, rgba(26,35,50,.4) 100%);
}
.hero-in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 395px;
  gap: 52px; align-items: center;
  padding: 90px 0 80px; width: 100%;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 30px; padding: 5px 16px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: .97; letter-spacing: .01em;
  color: #fff; margin-bottom: 18px;
}
.hero h1 em { color: var(--orange); font-style: normal; display: block; }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,.58);
  line-height: 1.75; max-width: 500px;
  margin-bottom: 30px; font-weight: 300;
}
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.tc { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: rgba(255,255,255,.65); letter-spacing: .03em; }
.tc .dot {
  width: 18px; height: 18px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 900; color: #fff; flex-shrink: 0;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Form card */
.hcard { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.hcard-hd { background: var(--orange); padding: 20px 24px; position: relative; overflow: hidden; }
.hcard-hd::after {
  content: 'AS'; position: absolute;
  right: -8px; top: -22px;
  font-family: 'Bebas Neue', sans-serif; font-size: 8rem;
  color: rgba(255,255,255,.07); line-height: 1; pointer-events: none;
}
.hcard-hd h3 { font-family: 'Fjalla One', sans-serif; font-size: 1.15rem; color: #fff; letter-spacing: .04em; position: relative; margin: 0; }
.hcard-hd p  { font-size: .78rem; color: rgba(255,255,255,.8); margin: 3px 0 0; position: relative; }
.hcard-bd { padding: 22px 22px 24px; }
.fpill {
  display: block;
  background: linear-gradient(135deg, var(--amber), #f0b830);
  color: #fff; font-family: 'Fjalla One', sans-serif;
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  text-align: center; margin-bottom: 16px;
}
.fg { margin-bottom: 12px; }
.fg label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif; font-size: .9rem;
  color: var(--text); background: #fafbfc;
  outline: none; transition: border-color .2s;
  appearance: auto;
}
.fg input:focus, .fg select:focus { border-color: var(--orange); background: #fff; }
.fg textarea { resize: vertical; min-height: 65px; }
.fsub {
  width: 100%; background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: 1.05rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 13px; border: none; border-radius: 4px;
  cursor: pointer; transition: background .2s;
  box-shadow: 0 3px 0 var(--od);
}
.fsub:hover { background: var(--ol); }
.ffoot { text-align: center; font-size: .72rem; color: var(--muted); margin-top: 8px; }
.ferr  { display: block; font-size: .72rem; color: #E8610A; margin-top: 4px; line-height: 1.4; }

/* ── RIBBON ── */
.ribbon { background: var(--orange); }
.ribbon-list { display: flex; align-items: stretch; }
.ri {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 18px 14px;
  border-right: 1px solid rgba(255,255,255,.18);
  font-size: .75rem; font-weight: 700; color: #fff;
  letter-spacing: .05em; text-transform: uppercase;
  text-align: left; line-height: 1.3;
}
.ri:last-child { border-right: none; }
.ri-ic {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.ri-ic svg { width: 17px; height: 17px; }

/* ── SERVICES ── */
.svc-sec { background: #fff; padding: 88px 0; }
.sec-hd  { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 14px; flex-wrap: wrap; gap: 20px; }
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 44px;
}
.svc {
  background: #fff; border-radius: 8px;
  position: relative; overflow: hidden;
  transition: background .2s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
.svc-img {
  width: 100%; height: 180px;
  overflow: hidden; flex-shrink: 0;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.svc:hover .svc-img img { transform: scale(1.08); }
.svc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.svc-n  { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--border); line-height: 1; margin-bottom: 6px; transition: color .2s; }
.svc:hover .svc-n  { color: rgba(232,97,10,.15); }
.svc-ti { font-family: 'Fjalla One', sans-serif; font-size: 1.08rem; letter-spacing: .03em; color: var(--text); margin-bottom: 8px; }
.svc-de { font-size: .87rem; line-height: 1.7; color: var(--muted); flex: 1; }
.svc-lk {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--orange); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  text-decoration: none; margin-top: 14px; opacity: 0; transition: opacity .2s;
}
.svc:hover .svc-lk { opacity: 1; }
.svc.em              { background: var(--orange); cursor: pointer; }
.svc.em .svc-img     { position: relative; }
.svc.em .svc-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(232, 97, 10, 0.45);
}
.svc.em .svc-n       { color: rgba(255,255,255,.15); }
.svc.em .svc-ti      { color: #fff; }
.svc.em .svc-de      { color: rgba(255,255,255,.8); }
.svc.em .svc-lk      { opacity: 1; color: #fff; font-size: .88rem; }
.svc.em:hover        { background: var(--ol); }

/* ── ABOUT ── */
.about-sec  { background: var(--slate); padding: 88px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

/* image wrapper */
.about-iw   { position: relative; padding-bottom: 28px; }
.about-img  { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-bdg {
  position: absolute; bottom: 0; right: -16px;
  background: var(--orange); color: #fff;
  padding: 16px 22px; border-radius: 6px; text-align: center;
  box-shadow: 0 8px 28px rgba(232,97,10,.45);
  border: 4px solid var(--slate);
}
.about-bdg big   { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; line-height: 1; display: block; }
.about-bdg small { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .9; line-height: 1.3; }

/* content column */
.abt-lead { color: rgba(255,255,255,.6); margin-bottom: 28px; }

/* stats row */
.abt-stats { display: flex; align-items: center; gap: 20px; margin-bottom: 28px; }
.ast { display: flex; flex-direction: column; }
.ast-n { font-family: 'Fjalla One', sans-serif; font-size: 1.8rem; color: var(--orange); line-height: 1; }
.ast-l { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.ast-div { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }

/* feature grid */
.abt-feats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
.af {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  border-left: 3px solid var(--orange);
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.78); line-height: 1.3;
}
.af svg { flex-shrink: 0; color: var(--orange); }

/* ── GALLERY ── */
.gal-sec { background: var(--slate); padding: 88px 0; }
.gal-sec h2.ttl { color: #fff; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 10px; margin-top: 44px;
}
.gi       { overflow: hidden; border-radius: 4px; position: relative; cursor: pointer; }
.gi.tall  { grid-row: span 2; }
.gi.wide  { grid-column: span 2; }
.gi img   { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.gi:hover img { transform: scale(1.06); }
.gi-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,.78) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.gi:hover .gi-ov { opacity: 1; }
.gi-lbl {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  color: #fff; font-family: 'Fjalla One', sans-serif;
  font-size: .88rem; letter-spacing: .06em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s, transform .3s;
}
.gi:hover .gi-lbl { opacity: 1; transform: translateY(0); }

/* ── BEFORE / AFTER ── */
.ba-sec  { background: #fff; padding: 88px 0; }
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border-radius: 8px; overflow: hidden;
  margin-top: 44px; box-shadow: 0 4px 40px rgba(0,0,0,.13);
}
.ba-p { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.ba-p img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.ba-p:hover img { transform: scale(1.04); }
.ba-lbl {
  position: absolute; top: 16px; left: 16px;
  background: rgba(26,35,50,.82); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
}
.ba-lbl.af { background: var(--orange); left: auto; right: 16px; }

/* ── STATS ── */
.stats-sec  { background: var(--slm); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.st { text-align: center; padding: 28px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.st:last-child { border: none; }
.st-n { font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.st-n sup { font-size: 1.8rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.st-l { font-size: .77rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }

/* ── PROCESS ── */
.proc-sec  { background: var(--bg); padding: 88px 0; }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 52px; position: relative; }
.proc-grid::before {
  content: ''; position: absolute;
  top: 34px; left: 12.5%; right: 12.5%; height: 2px;
  background: linear-gradient(to right, var(--orange), var(--amber)); z-index: 0;
}
.step      { padding: 0 20px 32px; text-align: center; position: relative; z-index: 1; }
.step-dot  {
  width: 50px; height: 50px; background: var(--orange); border-radius: 50%;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid var(--bg); box-shadow: 0 0 0 2px var(--orange);
  position: relative; z-index: 2;
}
.step-ti { font-family: 'Fjalla One', sans-serif; font-size: .97rem; letter-spacing: .04em; color: var(--text); margin-bottom: 8px; text-transform: uppercase; }
.step-de { font-size: .84rem; line-height: 1.65; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testi-sec  { background: #fff; padding: 88px 0; }

/* Google GBP banner */
.gbp-banner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
  background: #f8f9fa; border: 1.5px solid #e4e8ec; border-radius: 10px;
  padding: 22px 30px; margin-bottom: 52px;
}
.gbp-left   { display: flex; align-items: center; gap: 18px; }
.gbp-g      { width: 44px; height: 44px; flex-shrink: 0; }
.gbp-score  { font-family: 'Fjalla One', sans-serif; font-size: 2.2rem; color: var(--text); line-height: 1; }
.gbp-stars  { color: #fbbc04; font-size: 1.05rem; letter-spacing: 2px; margin: 2px 0 3px; }
.gbp-label  { font-size: .78rem; color: var(--muted); font-weight: 600; }
.gbp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1.5px solid #dadce0; border-radius: 6px;
  padding: 10px 20px; font-size: .85rem; font-weight: 700; color: #3c4043;
  text-decoration: none; transition: background .18s, box-shadow .18s;
  white-space: nowrap;
}
.gbp-cta:hover { background: #f1f3f4; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* review grid — 2 rows × 3 */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.tc-card {
  background: var(--bg); border-radius: 8px; padding: 28px 24px;
  border-bottom: 3px solid transparent;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.tc-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.09); }
.tc-stars { color: #fbbc04; font-size: .9rem; letter-spacing: 3px; margin-bottom: 12px; }
.tc-text  { font-size: .91rem; line-height: 1.78; color: var(--muted); font-style: italic; margin-bottom: 20px; flex: 1; }
.tc-foot  { display: flex; align-items: center; justify-content: space-between; }
.tc-auth  { display: flex; align-items: center; gap: 11px; }
.tc-av    { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; font-family: 'Fjalla One', sans-serif; font-size: .88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tc-name  { font-weight: 700; font-size: .86rem; color: var(--text); }
.tc-loc   { font-size: .73rem; color: var(--muted); }
.tc-via   {
  display: flex; align-items: center; gap: 5px; font-size: .68rem; color: #5f6368;
  font-weight: 600; flex-shrink: 0;
}
.tc-via svg { width: 14px; height: 14px; }

/* bottom CTA */
.testi-footer { text-align: center; margin-top: 44px; }
.btn-reviews {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid #dadce0; border-radius: 8px;
  padding: 13px 28px; font-size: .9rem; font-weight: 700; color: #3c4043;
  text-decoration: none; transition: background .18s, box-shadow .18s, border-color .18s;
}
.btn-reviews svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-reviews:hover { background: #f1f3f4; border-color: #bdc1c6; box-shadow: 0 2px 8px rgba(0,0,0,.1); }

/* ── COUPONS ── */
.coup-sec  { background: var(--slm); padding: 72px 0; }
.coup-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 44px; }
.coup {
  background: var(--slate); border: 2px dashed rgba(232,97,10,.45);
  border-radius: 6px; padding: 26px 18px; text-align: center;
  transition: border-color .2s, transform .22s;
}
.coup:hover  { border-color: var(--orange); transform: translateY(-3px); }
.coup-amt  { font-family: 'Bebas Neue', sans-serif; font-size: 3.4rem; color: var(--orange); line-height: 1; }
.coup-unit { font-family: 'Fjalla One', sans-serif; font-size: .98rem; color: var(--amber); letter-spacing: .06em; text-transform: uppercase; }
.coup-svc  { font-family: 'Fjalla One', sans-serif; font-size: .96rem; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin: 6px 0 8px; }
.coup-desc { font-size: .77rem; color: rgba(255,255,255,.5); line-height: 1.5; margin-bottom: 14px; }
.coup-fine { font-size: .67rem; color: rgba(255,255,255,.28); margin-top: 6px; }

/* ── CTA BAND ── */
.cta-sec {
  background: var(--orange); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-sec::before {
  content: 'AS'; position: absolute; right: -40px; top: -50px;
  font-family: 'Bebas Neue', sans-serif; font-size: 28rem;
  color: rgba(255,255,255,.05); line-height: 1; pointer-events: none;
}
.cta-in { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-in h2 { font-family: 'Fjalla One', sans-serif; font-size: clamp(2rem,4vw,3.2rem); color: #fff; line-height: 1.05; margin-bottom: 10px; }
.cta-in p  { font-size: 1rem; color: rgba(255,255,255,.82); max-width: 520px; line-height: 1.7; font-weight: 300; }
.cta-btns  { display: flex; flex-direction: row; gap: 12px; flex-shrink: 0; align-items: center; flex-wrap: wrap; }
.cta-btns .btn-wh { font-size: .82rem; padding: 10px 20px; }
.cta-btns .btn-bw { font-size: .82rem; padding: 9px 18px; }

/* CTA alt (dark variant) */
.cta-alt { background: var(--slate); }
.cta-alt::before { color: rgba(255,255,255,.04); }

/* ── CTA STRIP ── */
.cta-strip {
  background: #1a232e; border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange); padding: 20px 0;
}
.cta-strip-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cta-strip-text {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.75); font-size: .95rem;
}
.cta-strip-badge {
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; white-space: nowrap;
}
.cta-strip-btns {
  display: flex; align-items: center; gap: 18px; flex-shrink: 0;
}
.cta-strip-ph {
  color: var(--amber); font-family: 'Fjalla One', sans-serif;
  font-size: 1rem; text-decoration: none; letter-spacing: .04em;
  transition: color .2s;
}
.cta-strip-ph:hover { color: #fff; }
@media (max-width: 640px) {
  .cta-strip-in { flex-direction: column; align-items: flex-start; }
  .cta-strip-text { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ── FOOTER ── */
footer    { background: var(--slate); padding: 60px 0 0; }
.ftr-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ftr-brand    { font-family: 'Fjalla One', sans-serif; font-size: 1.1rem; color: #fff; display: block; margin-bottom: 3px; }
.ftr-sub      { font-size: .62rem; color: var(--amber); letter-spacing: .14em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.ftr-desc     { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 18px; }
.ftr-contacts a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.55); text-decoration: none; font-size: .84rem; margin-bottom: 7px; transition: color .2s; }
.ftr-contacts a:hover { color: var(--amber); }
.ftr-col h4 { font-family: 'Fjalla One', sans-serif; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.ftr-col a  { display: block; color: rgba(255,255,255,.4); text-decoration: none; font-size: .83rem; margin-bottom: 6px; transition: color .2s; }
.ftr-col a:hover { color: var(--amber); }
.ftr-btm {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0; font-size: .78rem; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: 8px;
}

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .88rem;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 50px;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(232,97,10,.5);
  transition: transform .2s, box-shadow .2s;
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(232,97,10,.65); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-pill { animation: fadeUp .50s .10s both; }
.hero h1   { animation: fadeUp .55s .20s both; }
.hero-desc { animation: fadeUp .55s .30s both; }
.trust-row { animation: fadeUp .55s .35s both; }
.hero-btns { animation: fadeUp .55s .40s both; }
.hcard     { animation: fadeUp .65s .25s both; }

/* ── SCROLL REVEAL (added by JS) ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — TABLET 980px ── */
@media (max-width: 980px) {
  .hero-in, .about-grid, .cta-in, .ftr-grid { grid-template-columns: 1fr; }
  .hcard { max-width: 480px; margin: 0 auto; }
  .svc-grid, .testi-grid, .coup-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid, .proc-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gi.tall, .gi.wide { grid-row: auto; grid-column: auto; }
  nav { display: none; }
  .hdr-ph { display: none; }
  #hamburger { display: flex !important; }
  .hero-in { padding: 60px 0 50px; gap: 36px; }
}

/* ── RESPONSIVE — MOBILE 600px ── */
@media (max-width: 600px) {
  /* Topbar: hide on small screens, sticky header covers contact info */
  .topbar { display: none; }

  /* Logo: show name only, drop the subtitle */
  .logo-tag { display: none; }

  /* Hero */
  .hero-in { padding: 44px 0 36px; gap: 28px; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.0; }
  .hero-desc { font-size: .95rem; margin-bottom: 22px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns a, .hero-btns button { width: 100%; justify-content: center; text-align: center; }
  .trust-row { gap: 8px; margin-bottom: 20px; }
  .tc { font-size: .74rem; }

  /* Hero form card */
  .hcard { max-width: 100%; width: 100%; }
  .hcard-bd { padding: 16px 16px 20px; }
  .fg input, .fg select, .fg textarea { min-height: 44px; font-size: 1rem; }

  /* Section padding */
  section { padding: 56px 0; }

  /* Grids */
  .abt-feats { grid-template-columns: 1fr; }
  .abt-stats { flex-wrap: wrap; gap: 14px; }
  .svc-grid, .testi-grid, .coup-grid, .proc-grid { grid-template-columns: 1fr; }
  .gbp-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .gbp-cta { width: 100%; justify-content: center; }
  .btn-reviews { width: 100%; justify-content: center; }
  .ba-grid  { grid-template-columns: 1fr; }
  .ribbon-list { flex-wrap: wrap; }
  .ri { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .ftr-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer { padding: 40px 0 0; }

  /* CTA strip */
  .cta-strip-btns { flex-direction: column; width: 100%; }
  .cta-strip-btns a { width: 100%; text-align: center; justify-content: center; }
}

/* ── MOBILE NAV ── */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 4px;
}
#hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--slate); border-radius: 2px;
  transition: all .25s;
}
#hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

#mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
  position: absolute;
  top: 76px; left: 0; right: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 199;
}
#mobile-nav.open { display: flex; }
#mobile-nav .nl  { padding: 12px 28px; border-radius: 0; font-size: .92rem; }

/* ── LIGHTBOX ── */
#lightbox {
  display: none; position: fixed; inset: 0;
  z-index: 9999; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lb-backdrop   { position: absolute; inset: 0; background: rgba(14,24,34,.94); }
#lb-content    { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 12px; }
#lb-img        { max-width: 90vw; max-height: 78vh; border-radius: 6px; object-fit: contain; box-shadow: 0 24px 80px rgba(0,0,0,.6); display: block; }
#lb-caption    { color: rgba(255,255,255,.75); font-family: 'Fjalla One', sans-serif; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
#lb-counter    { color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: .1em; }
#lb-close      { position: fixed; top: 20px; right: 24px; background: var(--orange); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 2; transition: background .2s; }
#lb-close:hover { background: var(--ol); }
#lb-prev, #lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; transition: background .2s; z-index: 2;
}
#lb-prev { left: 20px; }
#lb-next { right: 20px; }
#lb-prev:hover, #lb-next:hover { background: rgba(232,97,10,.5); }

/* ── QUOTE WIZARD ── */
.wiz-overlay {
  display: none; position: fixed; inset: 0; z-index: 10000;
  background: rgba(14,24,34,.88);
  align-items: flex-start; justify-content: center;
  padding: 20px; overflow-y: auto;
}
.wiz-overlay.open { display: flex; }
.wiz-modal {
  background: #fff; border-radius: 12px;
  width: 100%; max-width: 560px;
  overflow: hidden; margin: auto;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.wiz-hdr {
  background: var(--slate); padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.wiz-logo {
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: 1.1rem;
  width: 40px; height: 40px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.wiz-title { font-family: 'Fjalla One', sans-serif; color: #fff; font-size: 1rem; }
.wiz-sub   { font-size: .72rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.wiz-close {
  margin-left: auto; background: rgba(255,255,255,.12); border: none;
  color: #fff; width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; flex-shrink: 0; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.wiz-close:hover { background: rgba(255,255,255,.25); }
.wiz-prog     { height: 4px; background: rgba(232,97,10,.18); }
.wiz-prog-bar { height: 100%; background: var(--orange); transition: width .35s ease; }
.wiz-body { padding: 28px 28px 8px; }
.wiz-step { display: none; }
.wiz-step.active { display: block; }
.wiz-step h3 {
  font-family: 'Fjalla One', sans-serif; color: var(--slate);
  font-size: 1.3rem; margin-bottom: 4px;
}
.wiz-hint { font-size: .82rem; color: var(--muted); margin-bottom: 20px; }
.wiz-opt  { color: #aaa; font-weight: 400; font-size: .78rem; }
.wiz-group { margin-bottom: 20px; }
.wiz-group-lbl {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); margin-bottom: 10px;
}
.wiz-tiles    { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 8px; }
.wiz-tiles.sm { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
.wiz-tile {
  border: 2px solid var(--border); border-radius: 8px;
  padding: 14px 10px; text-align: center; cursor: pointer;
  font-size: .82rem; color: var(--text); line-height: 1.4;
  transition: border-color .18s, background .18s; user-select: none;
}
.wiz-tile:hover   { border-color: var(--orange); background: rgba(232,97,10,.04); }
.wiz-tile.selected {
  border-color: var(--orange); background: rgba(232,97,10,.09);
  color: var(--orange); font-weight: 700;
}
.wiz-tile-ic  {
  width: 52px; height: 52px;
  background: rgba(232,97,10,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  transition: background .18s;
}
.wiz-tile-ic svg {
  width: 26px; height: 26px;
  stroke: var(--orange);
  transition: stroke .18s;
}
.wiz-tile.selected .wiz-tile-ic { background: var(--orange); }
.wiz-tile.selected .wiz-tile-ic svg { stroke: #fff; }
.wiz-tile-lbl { font-weight: 700; font-size: .88rem; color: var(--slate); }
.wiz-tile.selected .wiz-tile-lbl { color: var(--orange); }
.wiz-tile-sub { font-size: .7rem; color: var(--muted); margin-top: 3px; }
.wiz-tile small { font-size: .68rem; color: var(--muted); font-weight: 400; }
.wiz-review {
  background: var(--bg); border-radius: 8px;
  border: 1px solid var(--border); overflow: hidden;
}
.wiz-review-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
}
.wiz-review-row:last-child { border-bottom: none; }
.wiz-review-lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); min-width: 90px; padding-top: 2px; }
.wiz-review-val { font-size: .88rem; font-weight: 600; color: var(--slate); }
.wiz-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px 24px;
}
.wiz-back {
  background: none; border: none; color: var(--muted);
  font-size: .85rem; cursor: pointer; padding: 8px 4px; transition: color .2s;
}
.wiz-back:hover { color: var(--text); }
.wiz-back.hidden { visibility: hidden; pointer-events: none; }
.wiz-next {
  background: var(--orange); color: #fff;
  font-family: 'Fjalla One', sans-serif; font-size: .95rem;
  border: none; padding: 12px 26px; border-radius: 4px; cursor: pointer;
  box-shadow: 0 3px 0 var(--od); transition: background .2s, transform .15s;
}
.wiz-next:hover { background: var(--ol); transform: translateY(-1px); }
@media (max-width: 600px) {
  /* Full-screen sheet on mobile */
  .wiz-overlay {
    padding: 0;
    align-items: stretch;
    overflow-y: hidden;
  }
  .wiz-modal {
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  /* Only body scrolls; header + nav stay pinned */
  .wiz-body {
    padding: 20px 16px 8px;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .wiz-nav {
    padding: 12px 16px 20px;
    flex-shrink: 0;
    border-top: 1px solid var(--border);
    background: #fff;
  }
  /* Full-width next button for easy tapping */
  .wiz-nav { flex-direction: column-reverse; gap: 8px; }
  .wiz-next { width: 100%; padding: 14px; font-size: 1rem; }
  .wiz-back { width: 100%; text-align: center; padding: 8px; }

  /* Tiles: 2-col grid with generous tap targets */
  .wiz-tiles { grid-template-columns: 1fr 1fr; }
  .wiz-tiles.sm { grid-template-columns: 1fr 1fr; }
  .wiz-tile { min-height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; }

  /* Inputs inside wizard */
  .wiz-body .fg input,
  .wiz-body .fg select,
  .wiz-body .fg textarea { min-height: 44px; font-size: 1rem; }
}
