/* =====================================================================
   The Squeegee Guys — site2
   Redesign: refined, editorial home-services aesthetic.
   Brand palette: deep navy + clear blue + signal gold.
   Display: Archivo (heavy, tracked caps).  Body: Hanken Grotesk.
   No build step, no dependencies — fast pages = good SEO.
   ===================================================================== */

:root {
  /* ---- colour ---- */
  --navy:      #0a2240;
  --navy-900:  #06182f;
  --navy-700:  #123257;
  --blue:      #0e63d6;
  --blue-600:  #0a4faf;
  --blue-300:  #6ea4e6;
  --sky:       #eef4fc;
  --sky-line:  #d6e4f7;
  --gold:      #f4b223;
  --gold-deep: #d4900a;
  --paper:     #fbfcfe;
  --ink:       #14202f;
  --muted:     #5c6b7d;
  --line:      #e1e8f1;
  --white:     #ffffff;

  /* ---- type ---- */
  --display: 'Archivo', 'Arial Narrow', sans-serif;
  --body:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- metrics ---- */
  --maxw: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 4px;
  --ease: cubic-bezier(.2, .65, .25, 1);
  --shadow-sm: 0 2px 10px rgba(10, 34, 64, .07);
  --shadow-md: 0 18px 44px -18px rgba(10, 34, 64, .32);
  --shadow-lg: 0 40px 80px -32px rgba(6, 24, 47, .5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }
::selection { background: var(--gold); color: var(--navy); }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.04; font-weight: 800; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; }

.band { padding-block: clamp(3.75rem, 8vw, 7rem); }
.band-sky   { background: var(--sky); }
.band-navy  { background: var(--navy); color: #d9e4f2; }
.band-navy h1, .band-navy h2, .band-navy h3 { color: #fff; }

/* hairline rule between same-coloured bands */
.rule-top { border-top: 1px solid var(--line); }

/* ---------- eyebrow / kicker ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-weight: 700; font-size: .78rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; background: var(--gold);
  display: block; flex: none;
}
.band-navy .eyebrow { color: var(--gold); }
.eyebrow-c { justify-content: center; }

/* ---------- section heading ---------- */
.sec-head { max-width: 38ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-title {
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  letter-spacing: -.015em; color: var(--navy);
  text-transform: uppercase; font-weight: 900;
}
.band-navy .sec-title { color: #fff; }
.sec-lead { margin-top: 1.1rem; color: var(--muted); font-size: 1.075rem; max-width: 52ch; }
.sec-head.center .sec-lead { margin-inline: auto; }
.band-navy .sec-lead { color: #aec3dc; }

/* gold marker swipe behind a word */
.swipe {
  position: relative; white-space: nowrap;
  color: var(--navy); z-index: 0;
}
.band-navy .swipe { color: #fff; }
.swipe::after {
  content: ""; position: absolute; z-index: -1;
  left: -.12em; right: -.12em; bottom: .04em; height: .34em;
  background: var(--gold); transform: skewX(-12deg);
  transform-origin: left;
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 700;
  font-size: .92rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .95rem 1.6rem; border: 2px solid transparent; border-radius: var(--radius);
  background: var(--bg); color: var(--fg); cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease),
              background .2s var(--ease), color .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 26px -10px rgba(10,34,64,.5); }
.btn:active { transform: translateY(0); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-blue { --bg: var(--blue); --fg: #fff; }
.btn-blue:hover { background: var(--blue-600); }
.btn-navy { --bg: var(--navy); --fg: #fff; }
.btn-ghost {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* arrow link */
.arrow-link {
  font-family: var(--display); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  color: var(--blue); display: inline-flex; align-items: center; gap: .5rem;
}
.arrow-link span { transition: transform .2s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-bar {
  display: flex; align-items: center; gap: 1.5rem;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.brand img { height: 54px; width: auto; }
.brand-tx { display: flex; flex-direction: column; line-height: 1; }
.brand-tx b {
  font-family: var(--display); font-weight: 900; font-size: 1.12rem;
  letter-spacing: .04em; color: #fff; text-transform: uppercase;
}
.brand-tx span {
  font-size: .58rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-top: 5px; font-weight: 600;
}

.nav { display: flex; gap: 1.9rem; margin-left: auto; }
.nav a {
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  color: #c4d2e4; text-decoration: none; padding-block: .35rem;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .38s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: #fff; }

.header-cta { display: flex; align-items: center; gap: 1.1rem; flex: none; }
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; text-decoration: none; font-family: var(--display);
  font-weight: 700; font-size: 1.02rem; letter-spacing: .01em;
}
.header-phone svg { width: 17px; height: 17px; color: var(--gold); }
.header-phone:hover { color: var(--gold); }
a[href^="tel:"] { white-space: nowrap; }

.burger {
  margin-left: auto; width: 46px; height: 46px; display: none;
  flex-direction: column; justify-content: center; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 11px;
}
.burger span { height: 2.5px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }

/* mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: var(--navy-900);
  display: flex; flex-direction: column;
  padding: 1.5rem var(--gutter) 2.5rem;
  transform: translateY(-100%); transition: transform .42s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mm-top { display: flex; align-items: center; height: 84px; }
.mm-close {
  margin-left: auto; width: 46px; height: 46px; background: none;
  border: 0; cursor: pointer; position: relative;
}
.mm-close::before, .mm-close::after {
  content: ""; position: absolute; left: 9px; top: 22px; width: 28px; height: 2.5px;
  background: #fff; border-radius: 2px;
}
.mm-close::before { transform: rotate(45deg); }
.mm-close::after  { transform: rotate(-45deg); }
.mm-links { display: flex; flex-direction: column; margin-top: 1.5rem; }
.mm-links a {
  font-family: var(--display); font-weight: 800;
  font-size: 1.9rem; text-transform: uppercase; letter-spacing: .01em;
  color: #fff; text-decoration: none;
  padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: baseline; gap: .9rem;
}
.mm-links a i {
  font-family: var(--body); font-style: normal; font-size: .8rem;
  color: var(--gold); font-weight: 700;
}
.mm-links a:hover { color: var(--gold); }
.mm-foot { margin-top: auto; padding-top: 2rem; }
.mm-foot .header-phone { font-size: 1.5rem; }
.mm-foot .btn { margin-top: 1.1rem; }

/* =====================================================================
   HERO  (homepage)
   ===================================================================== */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero-grid { display: grid; }
.hero-copy {
  padding: clamp(2.75rem, 6vw, 5.5rem) var(--gutter) clamp(3.5rem, 7vw, 6rem);
  position: relative; z-index: 2;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--display); font-weight: 700; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero-tag::before { content: ""; width: 30px; height: 3px; background: var(--gold); }
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.1rem);
  text-transform: uppercase; color: #fff; letter-spacing: -.02em;
  font-weight: 900;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  margin-top: 1.5rem; color: #b9c9dd; font-size: 1.15rem;
  max-width: 44ch;
}
.hero-actions { margin-top: 2.1rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-mini {
  margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem 1.8rem;
}
.hero-mini span {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .9rem; color: #cdd9e8; font-weight: 500;
}
.hero-mini svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

.hero-photo { position: relative; min-height: 320px; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
/* navy wash so the seam between copy + photo feels intentional */
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,34,64,.5) 0%, rgba(10,34,64,0) 30%);
}
.hero-badge {
  position: absolute; z-index: 3; right: var(--gutter); bottom: -1px;
  background: var(--gold); color: var(--navy);
  padding: 1rem 1.4rem; max-width: 215px;
}
.hero-badge b {
  font-family: var(--display); font-weight: 900; font-size: 2.6rem;
  display: block; line-height: 1;
}
.hero-badge span {
  font-size: .82rem; font-weight: 600; line-height: 1.35; display: block;
  margin-top: .35rem;
}

/* =====================================================================
   STAT BAR  (floats over hero/section seam)
   ===================================================================== */
.statbar { background: var(--paper); position: relative;
  padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.statbar-inner {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  position: relative; z-index: 5;
  box-shadow: var(--shadow-sm);
}
.stat {
  background: var(--white); padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: .15rem;
}
.stat b {
  font-family: var(--display); font-weight: 900; font-size: 2.5rem;
  color: var(--navy); line-height: 1;
}
.stat b i { font-style: normal; color: var(--gold); }
.stat span { font-size: .9rem; color: var(--muted); font-weight: 500; }

/* =====================================================================
   SERVICES  (asymmetric photo tiles)
   ===================================================================== */
.svc-head {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}
.svc-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.svc-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  min-height: 290px; display: flex; text-decoration: none;
  background: var(--navy);
  isolation: isolate;
}
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
  transition: transform .7s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6,24,47,.05) 0%, rgba(6,24,47,.55) 52%, rgba(6,24,47,.94) 100%);
  transition: background .3s var(--ease);
}
.svc-card:hover img { transform: scale(1.07); }
.svc-card:hover::after {
  background: linear-gradient(180deg, rgba(14,99,214,.2) 0%, rgba(6,24,47,.6) 52%, rgba(6,24,47,.96) 100%);
}
.svc-body {
  margin-top: auto; padding: 1.7rem; color: #fff; width: 100%;
}
.svc-num {
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .15em; color: var(--gold); display: block; margin-bottom: .5rem;
}
.svc-card h3 {
  font-size: 1.5rem; text-transform: uppercase; color: #fff;
  letter-spacing: -.005em;
}
.svc-card p {
  color: #c6d4e6; font-size: .96rem; margin-top: .45rem;
  max-width: 38ch;
}
.svc-go {
  margin-top: 1rem; display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
}
.svc-go::after {
  content: "→"; transition: transform .2s var(--ease); color: var(--gold);
}
.svc-card:hover .svc-go::after { transform: translateX(6px); }
.svc-card.feature { min-height: 360px; }
.svc-card.feature h3 { font-size: 1.95rem; }

/* =====================================================================
   LEGACY BAND  (giant 30 number)
   ===================================================================== */
.legacy { position: relative; overflow: hidden; }
.legacy-grid { display: grid; gap: 2.5rem; align-items: center; }
.legacy-num {
  font-family: var(--display); font-weight: 900;
  font-size: clamp(8rem, 26vw, 20rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,.18);
  letter-spacing: -.03em; pointer-events: none;
  position: absolute; top: -.08em; right: -.03em; z-index: 0;
}
.legacy-grid > * { position: relative; z-index: 1; }
.legacy-list { list-style: none; margin-top: 1.6rem; display: grid; gap: .15rem; }
.legacy-list li {
  padding: 1rem 0 1rem 2.4rem; position: relative;
  border-top: 1px solid rgba(255,255,255,.12); color: #c4d2e4;
}
.legacy-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.legacy-list li strong { color: #fff; }
.legacy-list li::before {
  content: ""; position: absolute; left: 0; top: 1.25rem;
  width: 14px; height: 14px; background: var(--gold);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.legacy-photo {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.legacy-photo img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   AREAS  ("window pane" — Calgary quadrants)
   ===================================================================== */
.pane-frame {
  margin-top: 2.6rem;
  border: 6px solid var(--navy); background: var(--navy);
  position: relative;
}
.pane-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.pane {
  position: relative; overflow: hidden; min-height: 180px;
  display: flex; text-decoration: none; background: var(--navy-700);
}
.pane img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .45;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.pane::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(14,99,214,.32), rgba(6,24,47,.85));
}
.pane:hover img { transform: scale(1.08); opacity: .65; }
.pane-tx { position: relative; z-index: 2; margin-top: auto; padding: 1.5rem; width: 100%; }
.pane-q {
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; color: var(--gold);
}
.pane h3 { color: #fff; font-size: 1.5rem; text-transform: uppercase; margin-top: .25rem; }
.pane p { color: #b9c9dd; font-size: .9rem; margin-top: .3rem; }
.pane-go {
  margin-top: .8rem; font-family: var(--display); font-weight: 700;
  font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  color: #fff;
}
.pane-go::after { content: " →"; color: var(--gold); }
/* inner-city — full-width strip below the 2x2 */
.pane.pane-wide { grid-column: 1 / -1; min-height: 150px; }
.pane.pane-wide::after { background: linear-gradient(110deg, rgba(6,24,47,.9) 30%, rgba(14,99,214,.4)); }

/* surrounding-area pills */
.pill-row {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem;
}
.pill-row.center { justify-content: center; }
.pill {
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; color: var(--navy);
  background: var(--white); border: 1.5px solid var(--line);
  padding: .6rem 1.15rem; border-radius: 999px;
  transition: .2s var(--ease);
}
.pill:hover {
  background: var(--navy); color: #fff; border-color: var(--navy);
  transform: translateY(-2px);
}
.band-navy .pill { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.band-navy .pill:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* =====================================================================
   PROCESS  (numbered steps)
   ===================================================================== */
.steps { display: grid; gap: 1.1rem; margin-top: 2.6rem; }
.step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.6rem;
  position: relative; overflow: hidden;
}
.step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--gold);
}
.step b {
  font-family: var(--display); font-weight: 900; font-size: 2.6rem;
  color: var(--sky-line); line-height: 1; display: block;
}
.band-navy .step { background: var(--navy-700); border-color: rgba(255,255,255,.1); }
.band-navy .step b { color: rgba(255,255,255,.16); }
.step h3 {
  font-size: 1.15rem; text-transform: uppercase; color: var(--navy);
  margin-top: .7rem;
}
.band-navy .step h3 { color: #fff; }
.step p { color: var(--muted); font-size: .96rem; margin-top: .35rem; }
.band-navy .step p { color: #aec3dc; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.rev-track {
  display: flex; gap: 1.2rem; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: .5rem .25rem 1.5rem;
  scrollbar-width: none;
}
.rev-track::-webkit-scrollbar { display: none; }
.rev-card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem;
  display: flex; flex-direction: column;
  border-top: 4px solid var(--gold);
}
.rev-stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.rev-card p { margin: .8rem 0 1.2rem; color: var(--ink); }
.rev-who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.rev-ava {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
}
.rev-who b { font-size: .92rem; color: var(--navy); font-family: var(--display); }
.rev-who span { font-size: .82rem; color: var(--muted); display: block; }
.rev-dots { display: flex; justify-content: center; gap: .5rem; margin-top: .4rem; }
.rev-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--sky-line); cursor: pointer; transition: .2s var(--ease);
}
.rev-dot.active { background: var(--blue); width: 26px; border-radius: 5px; }
.band-navy .rev-dot { background: rgba(255,255,255,.25); }
.band-navy .rev-dot.active { background: var(--gold); }

/* =====================================================================
   QUOTE / CONTACT
   ===================================================================== */
.quote-grid { display: grid; gap: 2.5rem; }
.quote-info .check {
  list-style: none; margin: 1.6rem 0; display: grid; gap: .7rem;
}
.quote-info .check li {
  display: flex; gap: .7rem; align-items: flex-start;
  font-weight: 600; color: #fff;
}
.quote-info .check svg { width: 21px; height: 21px; color: var(--gold); flex: none; margin-top: 2px; }
.contact-rows { display: grid; gap: 1px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12); margin-top: 1.8rem; }
.contact-row {
  background: var(--navy); display: flex; align-items: center; gap: 1rem;
  padding: 1.05rem 1.2rem; text-decoration: none;
}
.contact-row svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.contact-row .cr-k {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-300); display: block; font-weight: 700;
}
.contact-row .cr-v { color: #fff; font-weight: 600; font-family: var(--display); font-size: 1.05rem; }
.contact-row:hover .cr-v { color: var(--gold); }

.quote-form {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  display: grid; gap: 1rem;
}
.quote-form .qf-title {
  font-family: var(--display); font-weight: 900; font-size: 1.5rem;
  text-transform: uppercase; color: var(--navy);
}
.quote-form .qf-note { color: var(--muted); font-size: .92rem; margin-top: -.5rem; }
.quote-form label {
  display: grid; gap: .35rem;
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--navy);
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  font: inherit; font-size: 1rem; color: var(--ink);
  padding: .8rem .85rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); background: var(--paper); width: 100%;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,99,214,.14);
}
.quote-form textarea { resize: vertical; }

/* =====================================================================
   INNER-PAGE HERO
   ===================================================================== */
.subhero { position: relative; background: var(--navy); overflow: hidden; }
.subhero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .32;
}
.subhero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--navy) 28%, rgba(10,34,64,.55) 100%);
}
.subhero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(2.75rem, 6vw, 5rem);
}
.subhero h1 {
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  text-transform: uppercase; color: #fff; letter-spacing: -.018em;
  max-width: 20ch;
}
.subhero p { margin-top: 1.1rem; color: #b9c9dd; font-size: 1.12rem; max-width: 56ch; }
.subhero .hero-actions { margin-top: 1.8rem; }

/* =====================================================================
   PROSE + SIDEBAR  (service & location pages)
   ===================================================================== */
.layout { display: grid; gap: 3rem; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem); text-transform: uppercase;
  color: var(--navy); margin-top: 2.6rem; letter-spacing: -.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 + p { margin-top: 1rem; }
.prose p { color: var(--ink); }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--blue-600); }

/* feature list with gold ticks */
.ticks { list-style: none; display: grid; gap: .55rem; margin-top: 1.2rem; }
.ticks li { padding-left: 2.1rem; position: relative; color: var(--ink); }
.ticks li strong { color: var(--navy); }
.ticks li a { color: var(--navy); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .12rem;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sky);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e63d6' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 13px;
}

/* numbered process inside prose */
.prose-steps { counter-reset: ps; list-style: none; display: grid; gap: .9rem; margin-top: 1.3rem; }
.prose-steps li {
  counter-increment: ps; padding: 1rem 1.1rem 1rem 3.6rem;
  position: relative; background: var(--sky); border-radius: var(--radius);
}
.prose-steps li::before {
  content: counter(ps, decimal-leading-zero);
  position: absolute; left: 1.1rem; top: 1rem;
  font-family: var(--display); font-weight: 900; color: var(--blue);
  font-size: 1.15rem;
}
.prose-steps strong { display: block; color: var(--navy); font-family: var(--display);
  text-transform: uppercase; font-size: .95rem; letter-spacing: .02em; }

/* chip list (communities / builders) */
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.2rem; }
.chips li {
  background: var(--sky); border: 1px solid var(--sky-line);
  color: var(--navy); font-weight: 600; font-size: .9rem;
  padding: .4rem .9rem; border-radius: var(--radius);
}

/* sidebar */
.aside { display: grid; gap: 1.4rem; align-content: start; }
.aside-card {
  border-radius: var(--radius); padding: 1.7rem;
  border: 1px solid var(--line); background: var(--white);
}
.aside-card.dark { background: var(--navy); border-color: var(--navy); }
.aside-card.dark h3 { color: #fff; }
.aside-card.dark p { color: #aec3dc; }
.aside-card h3 {
  font-size: 1.25rem; text-transform: uppercase; color: var(--navy);
}
.aside-card p { color: var(--muted); font-size: .95rem; margin: .5rem 0 1.1rem; }
.aside-card .btn { width: 100%; }
.aside-phone {
  display: flex; align-items: center; gap: .6rem; margin-top: 1.1rem;
  color: #fff; text-decoration: none;
}
.aside-phone svg { width: 30px; height: 30px; color: var(--gold); }
.aside-phone span { display: block; font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue-300); font-weight: 700; }
.aside-phone b { font-family: var(--display); font-size: 1.3rem; color: #fff; }
.aside-links { list-style: none; display: grid; gap: .1rem; margin-top: .6rem; }
.aside-links a {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; text-decoration: none; color: var(--navy);
  font-weight: 600; border-bottom: 1px solid var(--line);
}
.aside-links a:last-child { border-bottom: 0; }
.aside-links a::after { content: "→"; color: var(--blue); }
.aside-links a:hover { color: var(--blue); }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq-list { margin-top: 2rem; display: grid; gap: .8rem; }
.faq-list details {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.faq-list summary {
  cursor: pointer; list-style: none; padding: 1.15rem 1.3rem;
  font-family: var(--display); font-weight: 700; color: var(--navy);
  font-size: 1.05rem; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-size: 1.5rem; color: var(--blue); flex: none;
  transition: transform .25s var(--ease); line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 1.3rem 1.25rem; color: var(--muted); }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta {
  background: var(--gold); color: var(--navy); text-align: center;
  position: relative; overflow: hidden;
}
.cta.cta-navy { background: var(--navy); color: #fff; }
.cta-inner { padding-block: clamp(2.75rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem); text-transform: uppercase;
  color: var(--navy);
}
.cta.cta-navy h2 { color: #fff; }
.cta p { margin: .7rem auto 1.6rem; font-weight: 500; max-width: 48ch; }
.cta.cta-navy p { color: #b9c9dd; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
/* faint window-pane lines as texture */
.cta::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(rgba(10,34,64,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,34,64,.07) 1px, transparent 1px);
  background-size: 64px 64px;
}
.cta.cta-navy::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--navy-900); color: #9fb1c8; }
.footer-top {
  display: grid; gap: 2.4rem; padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--display); font-weight: 800; font-size: .85rem;
  letter-spacing: .14em; text-transform: uppercase; color: #fff;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block; color: #9fb1c8; text-decoration: none;
  padding: .28rem 0; font-size: .95rem;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; font-size: .85rem;
}
.footer-bottom .dot::before { content: "•"; margin: 0 .55rem; color: var(--gold); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].in { opacity: 1; transform: none; }

/* hero load-in */
.load-up { opacity: 0; transform: translateY(26px); animation: loadUp .8s var(--ease) forwards; }
.load-up { animation-delay: var(--d, 0s); }
@keyframes loadUp { to { opacity: 1; transform: none; } }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (min-width: 560px) {
  .statbar-inner { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 720px) {
  .svc-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 1fr;
  }
  .svc-card { grid-column: span 3; }
  .svc-card.feature { grid-column: span 6; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; }
}

@media (min-width: 940px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-photo { min-height: 100%; }
  .statbar-inner { grid-template-columns: repeat(4, 1fr); }
  .legacy-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; }
  .quote-grid { grid-template-columns: .92fr 1.08fr; align-items: start; }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .layout { grid-template-columns: 1.7fr 1fr; gap: 3.5rem; }
  .footer-top { grid-template-columns: 1.8fr 1fr 1fr 1fr; }
  .svc-card.feature { grid-column: span 6; grid-row: span 1; }
  /* asymmetric service layout: feature wide, then 1 + 3 */
  .svc-grid.svc-5 .svc-card:nth-child(1) { grid-column: span 4; }
  .svc-grid.svc-5 .svc-card:nth-child(2) { grid-column: span 2; }
  .svc-grid.svc-5 .svc-card:nth-child(3),
  .svc-grid.svc-5 .svc-card:nth-child(4),
  .svc-grid.svc-5 .svc-card:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 939px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}

@media (min-width: 940px) {
  .burger { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
