/* ==========================================================================
   ASAP Remodeling, LLC — shared stylesheet
   Construction / grounded contractor: charcoal + concrete neutrals,
   one strong accent = safety orange. Flat blocks, solid borders,
   square corners. No blue, no glass, no glow, no big gradients.
   ========================================================================== */

:root {
  /* --- constant brand tokens (context-independent) --- */
  --orange:     #e6641e;   /* safety orange accent */
  --orange-600: #c9540f;   /* darker for hover */
  --orange-ink: #17110a;   /* dark text on orange */
  --charcoal:   #1d1f22;   /* structural dark */
  --charcoal-2: #141518;   /* near black */
  --white:      #ffffff;

  /* --- LIGHT context (default: concrete surfaces, charcoal text) --- */
  --bg:       #e6e3dd;   /* concrete page */
  --surface:  #ffffff;   /* cards */
  --surface-2:#efece6;   /* raised concrete */
  --line:     #cbc7bd;   /* concrete border */
  --ink:      #23252a;   /* body text */
  --muted:    #62666b;   /* secondary text (readable on concrete) */
  --heading:  #141518;   /* near-black headings */

  --head: "Archivo", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --wrap: 1200px;
  --radius: 3px;
}

/* Dark context: redefine tokens so var(--ink)/var(--muted)/etc. adapt.
   Applied to every charcoal band + component so inline var() usages work. */
.site-header,
.hero,
.page-hero,
.stats,
.foot,
.info-card,
.convert {
  --bg:       #17181b;
  --surface:  #1d1f22;
  --surface-2:#26282c;
  --line:     #34373c;
  --ink:      #e4e3df;
  --muted:    #9a9ea4;
  --heading:  #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-600); }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--heading);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 5.6vw, 4.2rem); text-transform: uppercase; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); }

p { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--orange); color: var(--orange-ink); font-family: var(--head);
  font-weight: 700; padding: 12px 18px; border-radius: 0 0 var(--radius) 0;
}
.skip:focus { left: 0; }

/* focus states */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, .chip:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Buttons — flat, square, sturdy
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--head); font-weight: 700; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase; line-height: 1;
  padding: 15px 22px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn--orange { background: var(--orange); color: var(--orange-ink); }
.btn--orange:hover { background: var(--orange-600); color: var(--white); }
/* .btn--blue kept for markup compatibility -> now a solid charcoal button */
.btn--blue { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.btn--blue:hover { background: var(--orange); color: var(--orange-ink); border-color: var(--orange); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn--lg { padding: 17px 28px; font-size: 1rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

/* --------------------------------------------------------------------------
   Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--charcoal-2);
  border-bottom: 3px solid var(--orange);
}
.header__row {
  display: flex; align-items: center; gap: 20px;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Textual wordmark logo — no icons. Heavy "ASAP", orange rule, tracked
   "REMODELING". Renders in Archivo; adapts to dark header + footer.
   -------------------------------------------------------------------------- */
.wordmark {
  display: inline-flex; flex-direction: column; line-height: 1;
  font-family: var(--head); color: var(--white); user-select: none;
}
.wordmark__top {
  display: inline-flex; align-items: flex-start;
  font-weight: 900; font-size: 1.9rem; letter-spacing: -0.02em;
  text-transform: uppercase; white-space: nowrap;
  padding-bottom: 5px; border-bottom: 3px solid var(--orange);
}
.wordmark__top sup {
  font-size: .34em; font-weight: 800; letter-spacing: .04em;
  color: var(--orange); margin-left: .18em; top: .1em; line-height: 1;
}
.wordmark__sub {
  margin-top: 5px; display: block;
  font-weight: 700; font-size: .62rem; letter-spacing: .53em;
  text-transform: uppercase; color: var(--orange);
  /* letter-spacing pads the right edge; pull the block back flush-left */
  margin-right: -0.53em;
}
@media (max-width: 560px){
  .wordmark__top { font-size: 1.55rem; }
  .wordmark__sub { font-size: .55rem; letter-spacing: .4em; margin-right: -0.4em; }
}

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 10px 14px; border-radius: var(--radius);
  font-family: var(--head); font-weight: 600; font-size: .92rem; color: var(--ink);
  text-transform: uppercase; letter-spacing: .04em;
}
.nav a:hover { color: var(--white); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: ""; display: block; height: 3px; margin-top: 5px;
  background: var(--orange);
}

.header__cta { flex: 0 0 auto; }

.burger {
  display: none; flex: 0 0 auto;
  width: 46px; height: 46px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface-2); cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--white);
  transition: transform .2s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 75px 0 auto 0;
    background: var(--charcoal-2); border-bottom: 3px solid var(--orange);
    max-height: 0; overflow: hidden; transition: max-height .28s ease;
    margin: 0;
  }
  .nav.is-open { max-height: 420px; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 16px 18px; }
  .nav a { padding: 14px 12px; font-size: 1rem; }
  .nav a[aria-current="page"]::after { display: none; }
  .nav a[aria-current="page"] { background: var(--surface-2); border-left: 3px solid var(--orange); }
  .burger { display: flex; }
  .header__cta { margin-left: auto; }
  .header__cta .btn { padding: 12px 16px; font-size: .82rem; }
}
@media (max-width: 480px) {
  .header__cta .cta-text { display: none; }
  .brand__name { font-size: 1.02rem; }
}

/* --------------------------------------------------------------------------
   Generic section helpers
   -------------------------------------------------------------------------- */
.section { padding: clamp(52px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.kicker {
  display: inline-block; font-family: var(--head); font-weight: 700;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); padding-left: 14px; margin: 0 0 14px;
  border-left: 4px solid var(--orange);
}
.kicker--orange { color: var(--orange); }
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.lead { font-size: 1.15rem; color: var(--ink); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--charcoal-2); border-bottom: 3px solid var(--orange); }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: rgba(20, 21, 24, .78);
}
.hero__inner {
  position: relative; z-index: 2;
  padding: clamp(64px, 12vw, 128px) 24px clamp(58px, 10vw, 112px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--white);
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  padding: 8px 14px; border-radius: var(--radius); margin-bottom: 22px;
}
.hero__eyebrow b { color: var(--orange); font-weight: 800; }
.hero h1 { max-width: 15ch; color: var(--white); }
.hero h1 .accent { color: var(--orange); }
.hero__lead { max-width: 46ch; font-size: 1.2rem; color: var(--ink); margin-top: 10px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 10px; list-style: none;
  margin: 32px 0 0; padding: 0;
}
.hero__chips li {
  font-family: var(--head); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   Service pillars (home) — flat concrete blocks
   -------------------------------------------------------------------------- */
.pillars { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pillar {
  position: relative; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--charcoal-2);
  display: grid; grid-template-rows: 148px auto;
  color: var(--white);
  transition: border-color .15s ease;
}
.pillar:hover { border-color: var(--orange); color: var(--white); }
.pillar__bg { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.pillar__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pillar__bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 21, 24, .32);
}
.pillar__body { padding: 18px 20px 22px; }
.pillar__num {
  display: inline-block; font-family: var(--head); font-weight: 800; font-size: .82rem;
  color: var(--orange-ink); background: var(--orange); letter-spacing: .06em;
  padding: 3px 8px; border-radius: var(--radius); margin-bottom: 10px;
}
.pillar h3 { margin: 0 0 4px; color: var(--white); }
.pillar p { color: #cfceca; font-size: .95rem; margin: 0; }

/* --------------------------------------------------------------------------
   Stats / why-us band — charcoal
   -------------------------------------------------------------------------- */
.stats { background: var(--charcoal-2); border-bottom: 3px solid var(--orange); }
.stats__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
}
.stat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  border-top: 4px solid var(--orange);
  padding: 24px 22px;
}
.stat__num {
  font-family: var(--head); font-weight: 800; font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--white); line-height: 1;
}
.stat:nth-child(2) .stat__num,
.stat:nth-child(3) .stat__num { color: var(--orange); }
.stat__label {
  color: var(--muted); font-size: .8rem; margin-top: 8px;
  text-transform: uppercase; letter-spacing: .08em; font-family: var(--head); font-weight: 600;
}
.why-list { list-style: none; margin: 22px 0 0; padding: 0; }
.why-list li {
  position: relative; padding: 12px 0 12px 34px;
  border-top: 1px solid var(--line); font-size: 1.02rem; color: var(--ink);
}
.why-list li:first-child { border-top: 0; }
.why-list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 18px; height: 18px; border-radius: var(--radius);
  background: var(--orange);
}
.why-list li::after {
  content: "✓"; position: absolute; left: 4px; top: 11px;
  font-size: .82rem; color: var(--orange-ink); font-weight: 800;
}

/* --------------------------------------------------------------------------
   Services page blocks
   -------------------------------------------------------------------------- */
.svc-block { border-top: 1px solid var(--line); }
.svc-block:first-of-type { border-top: 0; }
.svc-block__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.svc-block--rev .svc-block__row { direction: rtl; }
.svc-block--rev .svc-block__row > * { direction: ltr; }
.svc-block__media {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
}
.svc-block__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.svc-block__tag {
  font-family: var(--head); font-weight: 800; color: var(--orange);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px;
}
.svc-block ul { list-style: none; margin: 18px 0 26px; padding: 0; }
.svc-block ul li {
  position: relative; padding: 8px 0 8px 26px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.svc-block ul li::before {
  content: ""; position: absolute; left: 0; top: 16px;
  width: 10px; height: 10px; background: var(--orange);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px;
}
.chip {
  font-family: var(--head); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .04em;
  padding: 11px 18px; border-radius: var(--radius); cursor: pointer;
  background: var(--surface); color: var(--ink); border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--orange); }
.chip[aria-pressed="true"] { background: var(--orange); color: var(--orange-ink); border-color: var(--orange); }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--charcoal-2);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item__label {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  font-family: var(--head); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 6px 12px; border-radius: var(--radius);
  background: var(--orange); color: var(--orange-ink);
}
.gallery-item.is-hidden { display: none; }
.gallery-empty { color: var(--muted); padding: 20px 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start;
}
.form { background: var(--surface); border: 1px solid var(--line); border-top: 4px solid var(--orange); border-radius: var(--radius); padding: 30px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 7px; color: var(--ink);
}
.field label .req { color: var(--orange); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--body); font-size: 1rem;
  color: var(--ink); background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); transition: border-color .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { border-color: var(--orange); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.field .error { display: none; color: var(--orange-600); font-size: .86rem; margin-top: 6px; font-weight: 600; }
.field.is-error input, .field.is-error textarea { border-color: var(--orange); }
.field.is-error .error { display: block; }
.form__note { color: var(--muted); font-size: .88rem; margin-top: 8px; }
.form__status { margin-top: 14px; font-weight: 700; color: var(--orange-600); display: none; }
.form__status.is-visible { display: block; }

.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; margin-bottom: 16px;
}
.info-card h3 { color: var(--heading); }
.info-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 12px 0;
  border-top: 1px solid var(--line);
}
.info-row:first-of-type { border-top: 0; }
.info-row span { color: var(--muted); font-family: var(--head); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.info-row a { color: var(--ink); }
.info-row a:hover { color: var(--orange); }
.area-pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 8px 0 0; padding: 0; }
.area-pills li {
  font-size: .8rem; color: var(--ink); background: var(--surface-2);
  border: 1px solid var(--line); padding: 6px 12px; border-radius: var(--radius);
  font-family: var(--head); font-weight: 600; text-transform: uppercase; letter-spacing: .03em;
}

/* --- Contact asymmetric "action split" (40% conversion / 60% form) --- */
.contact-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 24px;
  align-items: stretch;
}

/* LEFT — charcoal conversion panel (marketing / urgency, not a form) */
.convert {
  background: var(--charcoal-2);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
}
.convert .kicker { margin-bottom: 16px; }
.convert__head {
  color: var(--white);
  font-family: var(--head); font-weight: 900;
  font-size: clamp(1.9rem, 3.4vw, 2.55rem);
  line-height: 1.02; letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.convert__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--head); font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--orange);
  padding: 6px 0 4px; margin-bottom: 4px;
}
.convert__phone:hover { color: var(--white); }
.convert__hours {
  color: var(--muted);
  font-family: var(--head); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .06em;
  margin: 0 0 26px;
}
.convert__trust { list-style: none; margin: auto 0 0; padding: 0; }
.convert__trust li {
  position: relative; padding: 12px 0 12px 30px; color: var(--ink);
  border-top: 1px solid var(--line); font-size: 1rem; font-weight: 500;
}
.convert__trust li:first-child { border-top: 0; }
.convert__trust li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 16px; height: 16px; border-radius: var(--radius); background: var(--orange);
}
.convert__trust li::after {
  content: "✓"; position: absolute; left: 3px; top: 11px;
  font-size: .75rem; font-weight: 800; color: var(--orange-ink);
}

/* BELOW — slim full-width service-area strip */
.area-strip {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px;
  margin-top: 24px; padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--orange); border-radius: var(--radius);
}
.area-strip__label {
  font-family: var(--head); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted);
}
.area-strip .area-pills { margin: 0; }

@media (max-width: 860px) {
  .contact-split { grid-template-columns: 1fr; gap: 20px; }
  .convert { padding: 28px 22px; }
  .convert__trust { margin-top: 22px; }
}

/* --------------------------------------------------------------------------
   CTA band — solid safety orange
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--orange);
  color: var(--orange-ink);
  border-top: 3px solid var(--charcoal-2);
  border-bottom: 3px solid var(--charcoal-2);
}
.cta-band__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 26px; padding: clamp(40px, 6vw, 62px) 0;
}
.cta-band h2 { color: var(--charcoal-2); margin: 0; }
.cta-band p { color: rgba(23, 17, 10, .82); margin: 8px 0 0; max-width: 46ch; font-weight: 500; }
/* primary CTA on orange -> solid charcoal for contrast */
.cta-band .btn--orange { background: var(--charcoal-2); color: var(--white); }
.cta-band .btn--orange:hover { background: var(--charcoal); color: var(--white); }
.cta-band .btn--ghost { border-color: var(--charcoal-2); color: var(--charcoal-2); }
.cta-band .btn--ghost:hover { background: var(--charcoal-2); color: var(--white); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.foot { background: var(--charcoal-2); border-top: 3px solid var(--orange); padding: clamp(54px, 8vw, 96px) 0 30px; }

/* Big-type statement — the visual centerpiece */
.foot__statement {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: clamp(24px, 4vw, 48px); padding-bottom: clamp(38px, 6vw, 64px);
  border-bottom: 1px solid var(--line);
}
.foot__headline {
  font-family: var(--head); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.5rem, 9vw, 6.5rem); line-height: .9; letter-spacing: -.02em;
  color: var(--white); margin: 0; max-width: 12ch;
}
.foot__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.foot__phone {
  display: inline-block; font-family: var(--head); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1;
  font-size: clamp(1.9rem, 5vw, 3.1rem); color: var(--orange);
}
.foot__phone:hover { color: var(--white); }

/* Slim info row */
.foot__row {
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between;
  gap: 28px 44px; padding: clamp(30px, 4vw, 44px) 0;
}
.foot__brandcell { flex: 1 1 240px; max-width: 34ch; }
.foot__brandcell .brand { display: inline-block; margin-bottom: 12px; }
.foot__tagline { color: var(--muted); font-size: .95rem; margin: 0; }
.foot .wordmark__top { font-size: 2rem; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 10px 26px; align-content: flex-start; }
.foot__nav a {
  font-family: var(--head); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .82rem; color: var(--ink);
}
.foot__nav a:hover { color: var(--orange); }
.foot__contact { font-style: normal; color: var(--ink); line-height: 1.8; font-size: .95rem; }
.foot__contact a { color: var(--ink); }
.foot__contact a:hover { color: var(--orange); }
.foot__serving { color: var(--muted); }
.bbb-badge { display:inline-block; background:none; border:0; padding:0; line-height:0; }
.bbb-badge img { display:block; width:150px; max-width:100%; height:auto; }
.foot__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .9rem;
}
.foot__bottom a { color: var(--muted); }
.foot__bottom a:hover { color: var(--orange); }

/* --------------------------------------------------------------------------
   Page hero (inner pages) — charcoal band
   -------------------------------------------------------------------------- */
.page-hero {
  background: var(--charcoal-2);
  border-bottom: 3px solid var(--orange);
  padding: clamp(54px, 8vw, 88px) 0 clamp(40px, 6vw, 60px);
}
.page-hero h1 { max-width: 20ch; color: var(--white); }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 54ch; }
.crumbs { font-family: var(--head); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.crumbs a { color: var(--orange); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; gap: 36px; }
  .svc-block__row { grid-template-columns: 1fr; gap: 30px; }
  .svc-block--rev .svc-block__row { direction: ltr; }
  .svc-block__media { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot__statement { align-items: flex-start; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .foot__statement { flex-direction: column; }
  .foot__cta { width: 100%; }
  .foot__cta .btn { width: 100%; justify-content: center; }
  .foot__row { flex-direction: column; gap: 24px; }
  .hero__actions .btn, .cta-band__actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
