/* =================================================================
   ALEXANDER CONSTRUCTION, LLC — "BUILD BOLD"
   Palette: warm concrete + safety yellow + near-black ink
   Type: Syne (display) / Space Mono (labels) / DM Sans (body)
   ================================================================= */

:root {
  --concrete: #e9e6df;
  --paper:    #f7f5f0;
  --ink:      #131210;
  --yellow:   #ffd400;
  --yellow-d: #e0b400;
  --grey:     #5c5852;
  --hair:     #d4d0c6;
  --white:    #ffffff;

  --font-display: 'Syne', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --font-body: 'DM Sans', sans-serif;

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --shadow-sm: 0 4px 18px rgba(19,18,16,.08);
  --shadow-md: 0 18px 50px rgba(19,18,16,.16);
  --shadow-lg: 0 30px 80px rgba(19,18,16,.28);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--concrete);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3 { margin: 0; }

/* atmospheric base texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,212,0,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(19,18,16,.05), transparent 60%);
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}

/* ---------- ACCESS ---------- */
.skip-link {
  position: absolute;
  left: 14px; top: -60px;
  background: var(--ink);
  color: var(--yellow);
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 2000;
  font-family: var(--font-mono);
  font-size: .8rem;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 14px; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.btn-yellow:focus-visible,
.phone-pill:focus-visible { outline-color: var(--ink); }

/* ---------- TYPE HELPERS ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 18px;
}
.eyebrow-yellow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: .16em;
  font-weight: 700;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 5.4vw, 3.6rem);
}
.section-title.huge { font-size: clamp(2.8rem, 11vw, 7.5rem); }
.section-sub {
  max-width: 56ch;
  color: var(--grey);
  font-size: 1.05rem;
  margin: 18px 0 0;
}
.section-head { margin-bottom: 52px; }
.hl { color: var(--yellow); }
.ink-on-yellow {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 .14em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: .92rem;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: transform .18s var(--ease), background .2s var(--ease),
              color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--yellow-d);
}
.btn-yellow:hover { background: var(--yellow-d); transform: translateY(-2px); box-shadow: 0 8px 0 #c79f00; }
.btn-yellow:active { transform: translateY(2px); box-shadow: 0 2px 0 #c79f00; }

.btn-dark {
  background: var(--ink);
  color: var(--yellow);
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--yellow); }

.btn-ghost-light {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(233,230,223,.0);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--hair), var(--shadow-sm);
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-badge { display: inline-flex; flex: none; }
.logo-badge svg { display: block; filter: drop-shadow(0 4px 10px rgba(19,18,16,.25)); }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: .01em;
  color: var(--ink);
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .28em;
  color: var(--grey);
  margin-top: 4px;
}
.logo-light .logo-name { color: var(--paper); }
.logo-light .logo-sub { color: rgba(247,245,240,.6); }

/* NAV */
.primary-nav { display: flex; gap: 28px; }
.primary-nav a {
  font-family: var(--font-mono);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 3px;
  background: var(--yellow);
  transition: width .25s var(--ease);
}
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .82rem;
  color: var(--ink);
  letter-spacing: .04em;
}
.phone-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255,212,0,.28);
  flex: none;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,212,0,.3); }
  50% { box-shadow: 0 0 0 7px rgba(255,212,0,.08); }
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--yellow);
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 22px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* MOBILE MENU — clip-path reveal (no overflow) */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: var(--ink);
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  visibility: hidden;
  transition: clip-path .4s var(--ease), opacity .3s var(--ease), visibility .3s;
}
.mobile-menu.open {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 80px var(--gutter) 40px;
}
.mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 48px; height: 48px;
  border: none;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 10px;
  font-size: 2rem;
  line-height: 1;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2rem;
  color: var(--paper);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu nav a:hover { color: var(--yellow); }

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(19,18,16,.92) 0%, rgba(19,18,16,.72) 40%, rgba(19,18,16,.30) 100%),
    linear-gradient(0deg, rgba(19,18,16,.85) 0%, transparent 55%);
}
.hero-grid { position: relative; z-index: 2; }
.hero-copy { max-width: 720px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 13vw, 8.2rem);
  line-height: .88;
  letter-spacing: -.02em;
  margin: 14px 0 26px;
  text-shadow: 0 6px 30px rgba(0,0,0,.4);
}
.hero-lede {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(247,245,240,.86);
  max-width: 52ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(247,245,240,.7);
}
.hero-trust li { display: flex; align-items: center; gap: 9px; }
.hero-trust li::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--yellow);
  display: inline-block;
  transform: rotate(45deg);
}
.hero-corner {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(60px, 9vw, 120px);
  z-index: 3;
  background: var(--yellow);
  color: var(--ink);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: right;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}
.hc-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
}
.hc-label {
  font-family: var(--font-mono);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.3;
}

/* ====================================================
   MARQUEE
   ==================================================== */
.marquee {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink);
  padding-right: 12px;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====================================================
   INTRO
   ==================================================== */
.intro {
  background: var(--paper);
  padding: clamp(64px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--hair);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.intro-left .section-title { font-size: clamp(1.8rem, 4vw, 3rem); }
.intro-right p { margin: 0 0 20px; color: var(--grey); font-size: 1.08rem; }
.intro-right p:last-child { margin-bottom: 0; }

/* ====================================================
   SERVICES
   ==================================================== */
.services {
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    linear-gradient(var(--concrete), var(--concrete));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), border-color .3s var(--ease);
}
.svc-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 6px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .9rem;
  color: var(--yellow-d);
  background: var(--ink);
  color: var(--yellow);
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 22px;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.32rem;
  line-height: 1.05;
  margin-bottom: 12px;
}
.svc-card p { color: var(--grey); font-size: .98rem; margin: 0; }
.svc-arrow {
  position: absolute;
  right: 26px; bottom: 24px;
  font-size: 1.4rem;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.svc-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ====================================================
   STATS — black block, huge yellow numerals
   ==================================================== */
.stats {
  background: var(--ink);
  color: #fff;
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,212,0,.06) 0 14px,
    transparent 14px 28px
  );
  opacity: .5;
}
.stats .eyebrow-yellow { margin-bottom: 40px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.stat { border-left: 3px solid var(--yellow); padding-left: 22px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(247,245,240,.72);
  margin-top: 10px;
  display: block;
}

/* ====================================================
   PROCESS
   ==================================================== */
.process {
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--ink);
}
.proc-step {
  padding: 36px 26px 36px 0;
  border-right: 1px solid var(--hair);
  position: relative;
}
.proc-step:last-child { border-right: none; }
.proc-step::before {
  content: "";
  position: absolute;
  top: -2px; left: 0;
  width: 60px; height: 6px;
  background: var(--yellow);
}
.proc-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  color: var(--grey);
  display: block;
  margin: 14px 0 18px;
}
.proc-step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.proc-step p { color: var(--grey); font-size: .98rem; margin: 0; padding-right: 8px; }

/* ====================================================
   WORK / PORTFOLIO
   ==================================================== */
.work {
  background: var(--concrete);
  padding: clamp(70px, 10vw, 130px) 0;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 10px 20px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 30px;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.filter-btn:hover { transform: translateY(-2px); }
.filter-btn.is-active { background: var(--ink); color: var(--yellow); }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  border: 1px solid var(--hair);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .4s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); filter: brightness(.7); }
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: translateY(0); }
.gallery-cap-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.1;
}
.gallery-cap-tag {
  font-family: var(--font-mono);
  font-size: .64rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  background: var(--yellow);
  color: var(--ink);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex: none;
}
.gallery-item:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ====================================================
   WHY US
   ==================================================== */
.why {
  background: var(--ink);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.why-media { position: relative; }
.why-media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.why-media-badge {
  position: absolute;
  left: -16px; bottom: 28px;
  background: var(--yellow);
  color: var(--ink);
  padding: 18px 22px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  font-size: 1.15rem;
  box-shadow: var(--shadow-md);
  transform: rotate(-3deg);
}
.why-copy .section-title { color: #fff; }
.why-lede { color: rgba(247,245,240,.84); font-size: 1.08rem; margin: 20px 0 28px; }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; }
.why-list div { color: rgba(247,245,240,.8); font-size: .98rem; }
.why-list strong { color: #fff; }
.why-check {
  flex: none;
  width: 30px; height: 30px;
  background: var(--yellow);
  color: var(--ink);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials {
  background: var(--paper);
  padding: clamp(70px, 10vw, 130px) 0;
}
.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tst-card {
  background: var(--concrete);
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tst-stars { color: var(--yellow-d); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: 16px; }
.tst-card blockquote {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.55;
  font-weight: 500;
}
.tst-card figcaption {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hair);
  padding-top: 16px;
}
.tst-card figcaption strong { font-family: var(--font-display); font-weight: 700; }
.tst-card figcaption span {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey);
  margin-top: 4px;
}

/* ====================================================
   SERVICE AREA
   ==================================================== */
.area {
  background: var(--concrete);
  padding: clamp(70px, 10vw, 130px) 0;
}
.area-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}
.area-lede { color: var(--grey); font-size: 1.08rem; margin: 20px 0 30px; max-width: 50ch; }
.town-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.town-list li {
  font-family: var(--font-mono);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--hair);
  border-radius: 8px;
  position: relative;
  padding-left: 30px;
}
.town-list li::before {
  content: "◆";
  position: absolute;
  left: 12px;
  color: var(--yellow-d);
  font-size: .7rem;
}
.area-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255,212,0,.07) 0 12px, transparent 12px 24px);
}
.area-card > * { position: relative; z-index: 1; }
.area-pin { display: block; color: var(--yellow); font-size: 2rem; margin-bottom: 14px; }
.area-card-eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(247,245,240,.6);
  margin: 0;
}
.area-card-town {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--yellow);
  margin: 8px 0 6px;
}
.area-card-county {
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(247,245,240,.7);
  margin: 0 0 26px;
}

/* ====================================================
   FINAL CTA / ESTIMATE
   ==================================================== */
.cta {
  background: var(--ink);
  color: #fff;
  padding: clamp(70px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,212,0,.18), transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  line-height: .9;
  margin: 10px 0 24px;
}
.cta-lede { color: rgba(247,245,240,.84); font-size: 1.1rem; margin: 0 0 30px; max-width: 44ch; }
.cta-call {
  display: inline-flex;
  flex-direction: column;
  background: var(--yellow);
  color: var(--ink);
  padding: 18px 30px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 6px 0 var(--yellow-d);
  transition: transform .18s var(--ease);
}
.cta-call:hover { transform: translateY(-2px); }
.cta-call:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--yellow-d); }
.cta-call-label {
  font-family: var(--font-mono);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.cta-call-num { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; line-height: 1.1; }
.cta-text-link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  margin-left: 6px;
}
.cta-text-link:hover { text-decoration: underline; }
.cta-hours {
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(247,245,240,.6);
  margin: 24px 0 0;
}

/* FORM */
.cta-form-wrap {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--yellow);
}
.estimate-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  font-family: var(--font-mono);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--grey);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 2px solid var(--hair);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,212,0,.4);
}
.field input.invalid,
.field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 4px rgba(192,57,43,.18); }
.form-fineprint {
  font-family: var(--font-mono);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey);
  text-align: center;
  margin: 4px 0 0;
}
.form-success {
  background: var(--yellow);
  color: var(--ink);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: .96rem;
  margin: 4px 0 0;
}
.form-success strong { display: block; font-family: var(--font-display); margin-bottom: 4px; }
.form-success a { text-decoration: underline; font-weight: 700; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--ink);
  color: rgba(247,245,240,.72);
  padding: clamp(56px, 8vw, 90px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-tag {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.05rem;
  margin: 22px 0 14px;
}
.footer-fb {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(247,245,240,.72);
}
.footer-fb:hover { color: var(--yellow); }
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: .94rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--yellow); }
.footer-phone {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--yellow);
  margin-bottom: 6px;
}
.footer-sms {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(247,245,240,.72);
}
.footer-sms:hover { color: var(--yellow); }
.footer-hours, .footer-loc {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .04em;
  margin: 14px 0 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 26px;
}
.footer-license, .footer-copy {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(247,245,240,.5);
  margin: 0;
}

/* ====================================================
   STICKY MOBILE BAR
   ==================================================== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1200;
  display: none;
  background: var(--ink);
  border-top: 3px solid var(--yellow);
  padding: 8px;
  gap: 8px;
}
.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .92rem;
}
.mb-call { background: rgba(247,245,240,.1); color: #fff; }
.mb-estimate { background: var(--yellow); color: var(--ink); }
.mb-icon { font-size: 1rem; }

/* ====================================================
   LIGHTBOX
   ==================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,9,8,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-figure {
  margin: 0;
  max-width: 1000px;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 8px;
  border: 3px solid var(--yellow);
}
.lb-figure figcaption {
  font-family: var(--font-mono);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--yellow);
  text-align: center;
}
.lb-close, .lb-nav {
  position: absolute;
  background: var(--yellow);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  width: 54px; height: 54px;
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.lb-close:hover, .lb-nav:hover { background: var(--yellow-d); }
.lb-close { top: 22px; right: 22px; }
.lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-step:nth-child(2) { border-right: none; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .primary-nav, .header-cta .btn, .phone-pill { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { max-width: 460px; }
  .area-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .hero-corner { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid var(--hair); }
  .gallery { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .town-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .hero { min-height: 92svh; }
  .hero-actions .btn { flex: 1; }
  .lb-nav { width: 46px; height: 46px; font-size: 1.5rem; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
}

@media (max-width: 380px) {
  .logo-name { font-size: 1.15rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ====================================================
   REDUCED MOTION
   ==================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .phone-dot { animation: none; }
}
