/* ==========================================================================
   Bressler's HVAC LLC — Design System
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --green-900: #0E2C1E;   /* footer */
  --green-800: #123D28;
  --green-700: #14532D;   /* headings, logo text */
  --green-600: #1A5B34;   /* CTA bands */
  --green-500: #1D6B3D;   /* primary buttons */
  --green-400: #2A7F4C;
  --mint-300:  #A8D5BA;   /* step circles, icon chips */
  --mint-100:  #DCEEE3;

  --orange-600: #D4541F;
  --orange-500: #E8622C;  /* nav bar, accents */
  --orange-400: #F07A45;

  --cream-100: #FDF3EA;   /* section background */
  --cream-200: #FBEADB;
  --peach-200: #FCE3BE;   /* process section */

  --ink-900: #1A1A1A;
  --ink-700: #333333;
  --ink-500: #5C5C5C;
  --white:    #FFFFFF;
  --line:     #E2DCD4;

  /* Type */
  --font-display: "Outfit", "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(0.95rem, 0.91rem + 0.2vw, 1.05rem);
  --step-1:  clamp(1.1rem, 1.03rem + 0.35vw, 1.3rem);
  --step-2:  clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --step-3:  clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem);
  --step-4:  clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(3rem, 6vw, 5.5rem);
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(14, 44, 30, .06), 0 2px 8px rgba(14, 44, 30, .05);
  --shadow-md: 0 4px 16px rgba(14, 44, 30, .09);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; text-wrap: balance; }
p { text-wrap: pretty; }
a { color: var(--green-500); text-underline-offset: 3px; }
ul { padding-left: 1.15rem; }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 3px;
}
.skip-link {
  position: absolute; left: 0; top: 0; z-index: 999;
  background: var(--green-700); color: var(--white);
  padding: .75rem 1.25rem; font-weight: 600;
  transform: translateY(-120%);
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.wrap { width: min(100% - (var(--gutter) * 2), var(--wrap)); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--cream { background: var(--cream-100); }
.section--peach { background: var(--peach-200); }
.section--white { background: var(--white); }
.stack > * + * { margin-top: 1rem; }
.text-center { text-align: center; }

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--orange-500);
  font-weight: 600;
  margin-bottom: .35rem;
}
.section-title { color: var(--green-700); font-size: var(--step-3); }
.page-title { color: var(--green-700); font-size: var(--step-4); letter-spacing: -0.01em; }
.lede { max-width: 68ch; color: var(--ink-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--step-0);
  padding: .7rem 1.4rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green-500); color: var(--white); border-color: var(--green-500); }
.btn--primary:hover { background: var(--green-700); border-color: var(--green-700); }
.btn--ghost { background: var(--white); color: var(--green-700); border-color: var(--green-700); }
.btn--ghost:hover { background: var(--green-700); color: var(--white); }
.btn--on-dark { background: var(--white); color: var(--green-700); border-color: var(--white); }
.btn--on-dark:hover { background: var(--cream-100); }
.btn--outline-light { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-light:hover { background: var(--white); color: var(--green-700); }
.btn--block { width: 100%; }
.btn--lg { padding: .9rem 1.75rem; font-size: var(--step-1); }
.icon { width: 1.05em; height: 1.05em; flex: none; display: inline-block; vertical-align: -0.15em; }
.btn .icon { display: block; }

.pill {
  display: inline-block;
  background: var(--orange-500); color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step--1); letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .8rem; border-radius: 4px;
}
.tag {
  display: inline-block; border: 1px solid var(--orange-400);
  color: var(--orange-600); background: var(--white);
  font-family: var(--font-display); font-weight: 600;
  font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .18rem .5rem; border-radius: 4px; white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header { background: var(--white); border-bottom: 1px solid var(--line); }
.header-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-block: clamp(.75rem, 2vw, 1.4rem);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { width: clamp(180px, 24vw, 300px); }
.header-actions { display: flex; align-items: center; gap: .65rem; }

.nav-toggle {
  display: none; align-items: center; gap: .5rem;
  background: var(--green-700); color: var(--white);
  border: 0; border-radius: var(--radius); padding: .6rem .85rem;
  font-family: var(--font-display); font-weight: 600;
}
.nav-toggle .bars { width: 20px; height: 14px; position: relative; display: block; }
.nav-toggle .bars span {
  position: absolute; left: 0; right: 0; height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Primary nav (orange bar) ---------- */
.site-nav { background: var(--orange-500); }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: stretch; flex-wrap: wrap;
}
.nav-list > li { position: relative; }
.nav-list a, .nav-list .subnav-toggle {
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-size: var(--step-0); font-weight: 500;
  color: var(--white); text-decoration: none;
  padding: .8rem clamp(.7rem, 1.6vw, 1.3rem);
  background: none; border: 0; cursor: pointer;
  transition: background-color .15s ease;
}
.nav-list a:hover, .nav-list .subnav-toggle:hover { background: var(--orange-600); }
.nav-list a[aria-current="page"], .nav-list li.is-active > a, .nav-list li.is-active > .subnav-toggle { font-weight: 700; }
.caret { width: .6rem; height: .6rem; transition: transform .2s ease; }
.has-sub[aria-expanded="true"] .caret { transform: rotate(180deg); }

.subnav {
  list-style: none; margin: 0; padding: .35rem 0;
  position: absolute; top: 100%; left: 0; z-index: 60;
  min-width: 232px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
  display: none;
}
.subnav a { color: var(--green-700); padding: .6rem 1.1rem; font-weight: 500; }
.subnav a:hover { background: var(--cream-100); color: var(--green-700); }
.nav-list li.open > .subnav { display: block; }
@media (hover: hover) and (min-width: 861px) {
  .nav-list li:hover > .subnav, .nav-list li:focus-within > .subnav { display: block; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  /* Schedule Service also lives in the nav below, so drop the duplicate here */
  .header-actions .btn--ghost { display: none; }
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding-block: .35rem; }
  .nav-list > li { border-top: 1px solid rgba(255,255,255,.22); }
  .nav-list > li:first-child { border-top: 0; }
  .nav-list a, .nav-list .subnav-toggle { padding: .85rem var(--gutter); width: 100%; }
  .subnav {
    position: static; display: none; box-shadow: none; border: 0;
    border-radius: 0; background: rgba(0,0,0,.12); min-width: 0;
  }
  .subnav a { color: var(--white); padding-left: calc(var(--gutter) + 1rem); }
  .subnav a:hover { background: rgba(0,0,0,.2); color: var(--white); }
}

@media (max-width: 430px) {
  .header-actions .btn--primary span { display: none; }
  .header-actions .btn--primary { padding-inline: .85rem; }
  .header-actions .btn--primary .icon { width: 1.25rem; height: 1.25rem; }
  .nav-toggle span:last-child { display: none; }
  .nav-toggle { padding: .6rem .7rem; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  color: var(--white);
  background: var(--green-800);
  padding-block: clamp(3rem, 9vw, 6.5rem);
  min-height: clamp(24rem, 42vw, 34rem);
  display: flex; align-items: center;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(14,44,30,.72) 0%, rgba(14,44,30,.55) 45%, rgba(14,44,30,.26) 100%);
}
.hero__inner { max-width: 44rem; }
.hero h1 { font-size: var(--step-4); margin-block: .9rem .75rem; }
.hero p { font-size: var(--step-1); color: rgba(255,255,255,.92); max-width: 40rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.hero__points {
  list-style: none; padding: 0; margin-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .35rem 1.5rem;
  font-size: var(--step--1); color: rgba(255,255,255,.88);
}
.hero__points li::before { content: "• "; color: var(--orange-400); }

@media (max-width: 640px) {
  .hero__bg { object-position: 62% 50%; }
  .hero::after { background: linear-gradient(180deg, rgba(14,44,30,.80) 0%, rgba(14,44,30,.62) 100%); }
}

/* ---------- Stats band ---------- */
.stats { background: var(--green-800); color: var(--white); }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; padding-block: clamp(1.4rem, 3vw, 2.1rem);
}
.stats__value { font-family: var(--font-display); font-size: var(--step-2); font-weight: 700; }
.stats__label { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.75); }
@media (max-width: 640px) { .stats__grid { grid-template-columns: 1fr; text-align: center; } }

/* ==========================================================================
   Service cards
   ========================================================================== */
.card-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: repeat(3, 1fr);   /* 6 services = two rows of three */
  margin-top: 2rem;
}
@media (max-width: 1000px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }
.svc-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem;
  display: flex; flex-direction: column; gap: .6rem;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--mint-300); }
.svc-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.svc-card__icon { width: 2.3rem; height: 2.3rem; flex: none; }
.svc-card h3 { font-size: var(--step-1); color: var(--green-700); }
.svc-card p { font-size: var(--step--1); color: var(--ink-700); flex: 1; }
.svc-card .more {
  display: inline-flex; align-items: center; gap: .28rem;
  align-self: flex-start;
  font-weight: 600; font-size: var(--step--1);
  text-decoration: none; color: var(--green-500);
}
.svc-card .more .icon { width: .85em; height: .85em; display: block; }
.svc-card .more:hover { text-decoration: underline; }
.svc-card .more:hover .icon { transform: translateX(2px); }
.svc-card .more .icon { transition: transform .15s ease; }

.promise {
  margin-top: 1.75rem; background: var(--peach-200);
  border-radius: var(--radius); padding: 1.35rem 1.5rem;
}
.promise h3 { color: var(--green-700); font-size: var(--step-1); margin-bottom: .3rem; }
.promise p { font-size: var(--step--1); color: var(--ink-700); }

/* ==========================================================================
   CTA bands
   ========================================================================== */
.band { background: var(--green-600); color: var(--white); padding-block: clamp(1.75rem, 4vw, 2.75rem); }
.band--dark { background: var(--green-800); }
.band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.band__text { flex: 1 1 26rem; }
.band h2 { font-size: var(--step-3); margin-block: .6rem .4rem; }
.band p { color: rgba(255,255,255,.9); font-size: var(--step-0); max-width: 60ch; }
.band a:not(.btn) { color: var(--white); font-weight: 600; }

/* Any link on a dark surface must be light — the default link colour is
   dark green and disappears completely against these backgrounds. */
.hero a:not(.btn),
.stats a:not(.btn),
.band a:not(.btn),
.area-split__panel a:not(.btn) { color: var(--white); font-weight: 600; }

.hero a:not(.btn):hover,
.stats a:not(.btn):hover,
.band a:not(.btn):hover,
.area-split__panel a:not(.btn):hover { color: var(--mint-300); }

.hero :focus-visible,
.stats :focus-visible,
.band :focus-visible,
.area-split__panel :focus-visible,
.site-footer :focus-visible { outline-color: var(--mint-300); }

/* ==========================================================================
   Split / feature sections
   ========================================================================== */
.split {
  display: grid; gap: clamp(1.75rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  align-items: center;
}
.split--top { align-items: start; }
.split__media img { width: 100%; border-radius: var(--radius); }
.split h2 { color: var(--green-700); font-size: var(--step-3); }
.split h3 { color: var(--green-700); font-size: var(--step-2); margin-top: 1.5rem; }
.split h3:first-child { margin-top: 0; }
.split .sub-head {
  font-family: var(--font-display); font-weight: 600;
  color: var(--orange-500); letter-spacing: .1em; text-transform: uppercase;
  font-size: var(--step--1); margin-top: 1.35rem; margin-bottom: .25rem;
}
.split p + .fact-title { margin-top: 1.1rem; }
.fact-title { font-weight: 700; color: var(--ink-900); }

.checklist { list-style: none; padding: 0; margin-top: 1rem; display: grid; gap: .55rem; }
.checklist li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; font-size: var(--step--1); }
.checklist li::before {
  content: ""; flex: none; width: 1.1rem; height: 1.1rem; margin-top: .22rem;
  border-radius: 50%; background: var(--mint-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314532D' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 72%; background-position: center; background-repeat: no-repeat;
}

/* ---------- Process steps ---------- */
.steps {
  display: grid; gap: 1.75rem; margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  text-align: center;
}
.step__num { width: 3.6rem; height: 3.6rem; margin: 0 auto .85rem; }
.step h3 { color: var(--green-700); font-size: var(--step-1); margin-bottom: .35rem; }
.step p { font-size: var(--step--1); color: var(--ink-700); }

/* ---------- Reviews (Google widget slot) ---------- */
.stars { color: #F5B301; letter-spacing: .1em; font-size: var(--step-1); }

.reviews-embed {
  margin-top: 2rem;
  min-height: 16rem;              /* reserve space so the widget can't shift layout */
  display: grid; align-content: center;
}
/* Most review widgets inject a fixed-width iframe or absolutely-positioned
   carousel - keep whatever lands here inside the column. */
.reviews-embed > :not(.reviews-embed__fallback) { max-width: 100%; }
.reviews-embed iframe { max-width: 100%; border: 0; }

.reviews-embed__fallback {
  text-align: center;
  background: var(--cream-100);
  border: 1px dashed var(--mint-300);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: grid; justify-items: center; gap: .75rem;
}
.reviews-embed__lede { max-width: 44ch; color: var(--ink-700); font-size: var(--step-0); }
.reviews-embed__fallback[hidden] { display: none; }

/* ---------- Service area split ---------- */
.area-split { display: grid; grid-template-columns: 1.15fr 1fr; }
.area-split__map { position: relative; min-height: 22rem; background: var(--green-600); }
.area-split__map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.area-split__panel {
  background: var(--green-800); color: var(--white);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}
.area-split__panel h2 { font-size: var(--step-3); }
.area-split__panel p { color: rgba(255,255,255,.88); font-size: var(--step--1); }
.hours { display: grid; gap: 1.1rem; margin-top: 1.75rem; }
.hours__item { display: flex; gap: .85rem; align-items: flex-start; }
.hours__icon { width: 2.2rem; height: 2.2rem; flex: none; }
.hours__label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mint-300); font-weight: 600; }
.hours__value { font-size: var(--step--1); }
@media (max-width: 860px) { .area-split { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQs
   ========================================================================== */
.faq-list { list-style: none; padding: 0; display: grid; gap: .75rem; margin-top: 2rem; }
.faq {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--font-display); font-weight: 600; color: var(--green-700);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 1rem; height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8622C' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .2s ease;
}
.faq[open] summary::after { transform: rotate(180deg); }
.faq__body { padding: 0 1.25rem 1.15rem; font-size: var(--step--1); color: var(--ink-700); }
.faq__body p + p { margin-top: .7rem; }

/* ==========================================================================
   Service area list
   ========================================================================== */
.city-list {
  list-style: none; padding: 0; margin-top: 1.75rem;
  columns: 4; column-gap: 2rem;
  font-size: var(--step--1);
}
.city-list li { break-inside: avoid; padding: .22rem 0 .22rem 1rem; position: relative; }
.city-list li::before { content: "•"; position: absolute; left: 0; color: var(--green-500); }
@media (max-width: 1024px) { .city-list { columns: 3; } }
@media (max-width: 720px)  { .city-list { columns: 2; } }
@media (max-width: 420px)  { .city-list { columns: 1; } }
.area-note { margin-top: 2rem; font-weight: 700; }

/* ==========================================================================
   Form
   ========================================================================== */
/* Heading and card share one centred column so their left edges line up. */
.form-page { max-width: 60rem; margin-inline: auto; }
.form-card {
  background: var(--white); border: 1px solid var(--green-700);
  border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.75rem);
  width: 100%;
}
.form-card h2 { color: var(--green-700); font-size: var(--step-2); margin-bottom: 1.5rem; }
.form-grid { display: grid; gap: 1.15rem; grid-template-columns: 1fr 1fr; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--step--1); font-weight: 500; }
.field .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  border: 1px solid var(--line); background: #F7F7F7;
  border-radius: var(--radius); padding: .7rem .85rem;
  font-size: var(--step-0); width: 100%;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--white); border-color: var(--green-500); }
.form-note { font-size: .78rem; color: var(--ink-500); margin-top: 1rem; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.88); padding-block: clamp(2.5rem, 5vw, 3.75rem) 0; }
.footer-grid {
  display: grid; gap: 2rem clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: 1.3fr 1.4fr 1fr;
}
.site-footer h2 {
  font-family: var(--font-display); font-size: var(--step--1); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--white); margin-bottom: .9rem;
}
.site-footer p { font-size: var(--step--1); }
.footer-grid p { max-width: 32ch; }   /* blurb column only, not the legal line */
.site-footer a { color: var(--white); font-size: var(--step--1); text-decoration: none; }
/* Underline returns on hover/focus so the links still read as interactive. */
.site-footer a:hover { color: var(--mint-300); text-decoration: underline; }
.site-footer a:focus-visible { text-decoration: underline; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.5rem; list-style: none; padding: 0; }
.footer-contact { display: grid; gap: .55rem; list-style: none; padding: 0; font-size: var(--step--1); }
.social { display: inline-flex; margin-top: 1.1rem; }

/* NATE stamp: this is the reversed ("white") artwork - the outer
   "PROUD TO EMPLOY / CERTIFIED TECHNICIANS" ring is white ink and
   disappears on any light background. Dark surfaces only. */
.cert-badge { width: 6rem; height: auto; margin-top: 1.25rem; }
@media (max-width: 560px) { .cert-badge { width: 5.5rem; } }
.social svg { width: 1.6rem; height: 1.6rem; fill: var(--white); }
.social:hover svg { fill: var(--mint-300); }
.footer-legal {
  margin-top: clamp(2rem, 4vw, 3rem); padding-block: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .78rem; color: rgba(255,255,255,.6);
  max-width: none; text-wrap: nowrap;
}
/* Too narrow for one line on small phones - let it wrap rather than overflow. */
@media (max-width: 560px) { .footer-legal { text-wrap: wrap; } }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-links { grid-template-columns: 1fr 1fr; } }

/* ---------- Print ---------- */
@media print {
  .site-nav, .nav-toggle, .header-actions, .band, .hero__cta { display: none !important; }
  body { color: #000; }
}

/* ---------- Badge illustration (service pages) ---------- */
.badge-media { display: grid; place-items: center; padding: clamp(.5rem, 2vw, 1.5rem); }
.badge-media img { width: min(100%, 30rem); }

/* ---------- Friendly Professionals graphic ---------- */
.friendly-media img { width: 100%; border-radius: var(--radius); }

/* ---------- Hero fallback when photo is absent ---------- */
.hero--fallback { background:
  radial-gradient(120% 140% at 15% 0%, #1F6B41 0%, #0E2C1E 62%); }
