/* =============================================================
   Northway Heating & Air — Mainstay HVAC template
   Steel-blue + work-yellow · Barlow Condensed + Inter + JetBrains Mono
   ============================================================= */

:root {
  /* palette */
  --steel: #1F3A5F;
  --steel-dark: #142844;
  --bg: #FFFFFF;
  --bg-soft: #F4F6F9;
  --card: #FFFFFF;
  --ink: #0E1620;
  --ink-soft: #4A5260;
  --rule: #D8DEE6;
  --accent-yellow: #F4B400;
  --accent-iron: #6E7A88;
  --ok-green: #1E8E3E;
  --shadow: rgba(15, 31, 53, 0.08);
  --shadow-strong: rgba(15, 31, 53, 0.18);

  /* type */
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --ui: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ui);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--steel); text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 0.2em; transition: text-decoration-color 0.18s, color 0.18s; }
a:hover { text-decoration-color: var(--accent-yellow); color: var(--steel-dark); }

h1, h2, h3, h4 { color: var(--steel); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 2.75rem); letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.25; }
p { margin-bottom: 1em; }

.display { font-family: var(--display); font-weight: 700; line-height: 1.0; letter-spacing: -0.01em; text-transform: uppercase; }

/* eyebrows / smallcaps — Inter, 0.18em letter-spacing */
.smallcaps {
  font-family: var(--ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--accent-iron);
}
.smallcaps--yellow { color: var(--accent-yellow); }
.smallcaps--steel { color: var(--steel); }
.smallcaps--white { color: rgba(255,255,255,0.85); }

.wrap { max-width: 76rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 44rem; margin: 0 auto; padding: 0 1.5rem; }
.wrap--medium { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; }

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--steel);
  color: #fff;
  padding: 0.65rem 1.25rem;
  font-size: 0.85rem;
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent-yellow); }

:focus-visible { outline: 2px solid var(--accent-yellow); outline-offset: 2px; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 0 var(--shadow), 0 8px 24px var(--shadow);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 0.85rem 0;
}
.header-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.header-brand .wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--steel);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.header-brand .lineage {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-iron);
  margin-top: 0.18rem;
}
.site-nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: center;
}
.site-nav a {
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.18s;
}
.site-nav a:hover { color: var(--steel); border-bottom-color: var(--accent-yellow); }
.site-nav a.is-current { color: var(--steel); border-bottom-color: var(--accent-yellow); }
.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.05;
  text-decoration: none;
}
.header-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ui);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-iron);
  margin-bottom: 0.18rem;
}
.header-cta-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok-green);
  box-shadow: 0 0 0 0 rgba(30, 142, 62, 0.6);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(30, 142, 62, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(30, 142, 62, 0); }
}
.header-cta-phone {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--steel);
  letter-spacing: -0.005em;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.5rem;
  color: var(--steel);
}
.mobile-phone-btn {
  display: none;
  background: var(--accent-yellow);
  color: var(--steel);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 4px var(--shadow);
}

@media (max-width: 960px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 0.5rem; }
  .site-nav { display: none; }
  .header-cta { display: none; }
  .mobile-phone-btn { display: inline-flex; }
  .menu-toggle { display: block; order: -1; }
  .header-brand { justify-self: center; }
  .header-brand .wordmark { font-size: 1.35rem; }
  .header-brand .lineage { font-size: 0.55rem; }
}

/* ============================ SKIP-TO-CONTENT TOP PAD ============================ */
main { display: block; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.06s, box-shadow 0.18s;
  line-height: 1;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent-yellow);
  color: var(--steel);
  border-color: var(--accent-yellow);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 10px var(--shadow);
}
.btn--primary:hover {
  background: #FFC417;
  border-color: #FFC417;
  color: var(--steel-dark);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 8px 20px var(--shadow-strong);
}

.btn--steel {
  background: var(--steel);
  color: #fff;
  border-color: var(--steel);
}
.btn--steel:hover {
  background: var(--steel-dark);
  border-color: var(--steel-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}
.btn--ghost:hover {
  background: var(--steel);
  color: #fff;
}

.btn--ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost-white:hover {
  background: #fff;
  color: var(--steel);
  border-color: #fff;
}

.btn .icon { width: 18px; height: 18px; display: inline-block; }

/* ============================ SECTIONS ============================ */
section { padding: 5rem 0; }
section.section--soft { background: var(--bg-soft); }
section.section--steel { background: var(--steel); color: #fff; }
section.section--steel h1,
section.section--steel h2,
section.section--steel h3 { color: #fff; }
section.tight { padding: 3rem 0; }

/* ============================ HOME · HERO ============================ */
.hero {
  padding: 5rem 0 4rem;
  background: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-inner .smallcaps { display: inline-block; margin-bottom: 1.5rem; }
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--steel);
  font-size: clamp(3rem, 6vw, 4.75rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 32ch;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero-trust {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38ch;
}
.hero-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  box-shadow: 0 30px 60px -20px var(--shadow-strong);
}
@media (max-width: 900px) {
  .hero { padding: 2.5rem 0 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-photo { aspect-ratio: 16/9; order: -1; }
  .hero h1 { font-size: clamp(2.5rem, 9vw, 3.5rem); }
}

/* ============================ TRUST BAND ============================ */
.trust-band {
  background: var(--bg-soft);
  padding: 1.75rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-band-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}
.trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--steel);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.78rem;
  color: var(--steel);
  background: #fff;
}
@media (max-width: 800px) {
  .trust-band { padding: 1.25rem 0; }
  .trust-band-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    justify-content: safe center;
    padding-bottom: 0.5rem;
  }
  .trust-badge { scroll-snap-align: start; flex-shrink: 0; }
}

/* ============================ STAT BAND ============================ */
.stat-band {
  background: var(--steel);
  color: #fff;
  padding: 4.5rem 0;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.25rem);
  line-height: 1;
  color: var(--accent-yellow);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--ui);
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  max-width: 18ch;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .stat-band { padding: 3rem 0; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 1.5rem; }
}

/* ============================ SECTION HEADER ============================ */
.section-head {
  margin-bottom: 3rem;
  max-width: 38rem;
}
.section-head .smallcaps { display: block; margin-bottom: 0.85rem; }
.section-head h2 { font-family: var(--ui); }
.section-head--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 100%;
}

/* ============================ SERVICE CARDS GRID (HOME) ============================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: #fff;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -16px var(--shadow-strong);
  border-color: var(--steel);
}
.svc-card-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.svc-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 {
  font-family: var(--ui);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.svc-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}
.svc-card-more {
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--steel);
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media (max-width: 1180px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
}

/* ============================ COMFORT CLUB FEATURE BLOCK ============================ */
.feature-split {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.feature-split-img {
  aspect-ratio: auto;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.feature-split-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-split-body h2 {
  font-family: var(--ui);
  margin-bottom: 1.25rem;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
  line-height: 1.2;
}
.feature-split-body p { color: var(--ink); margin-bottom: 1rem; line-height: 1.65; }
.feature-split-price {
  display: block;
  margin: 1rem 0 1.5rem;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--steel);
  letter-spacing: -0.01em;
}
.feature-split-price small {
  display: block;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.4rem;
}
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-split-img { min-height: 260px; aspect-ratio: 16/9; }
  .feature-split-body { padding: 2.5rem 1.75rem; }
}

/* ============================ WHY (3-pillar) ============================ */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.pillar {
  background: #fff;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid var(--rule);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--steel);
}
.pillar-icon svg { width: 100%; height: 100%; stroke: currentColor; stroke-width: 1.5; fill: none; }
.pillar h3 {
  font-family: var(--ui);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.pillar p { color: var(--ink-soft); font-size: 0.9375rem; line-height: 1.6; }
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ============================ REVIEW CARDS ============================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.review-stars {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
  line-height: 1;
}
.review-body {
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.review-attrib {
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 0.2rem;
}
.review-source {
  font-family: var(--ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-iron);
  font-weight: 600;
}
.reviews-more {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* ============================ SERVICE-AREA + MAP ============================ */
.area-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--rule);
  background: #fff;
}
.area-map-frame {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}
.area-info {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.area-info h2 {
  font-family: var(--ui);
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.6vw, 2.1rem);
}
.area-cities {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin: 1.25rem 0 1.5rem;
}
.area-cities li {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--steel);
  position: relative;
  padding-left: 1.1rem;
}
.area-cities li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: 700;
}
.area-cities a { color: var(--steel); text-decoration: none; }
.area-cities a:hover { color: var(--steel-dark); text-decoration: underline; text-decoration-color: var(--accent-yellow); }
@media (max-width: 900px) {
  .area-grid { grid-template-columns: 1fr; }
  .area-info { padding: 2.5rem 1.75rem; }
}

/* ============================ FINAL CTA BAND ============================ */
.cta-band {
  background: var(--steel);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--ui);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
.cta-band .cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.cta-band-foot {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================ PAGE HERO (interior pages) ============================ */
.page-hero {
  padding: 4rem 0 3rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--rule);
}
.page-hero--photo {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 4rem 0 3rem;
  color: #fff;
  background: var(--steel-dark);
  border-bottom: 0;
}
.page-hero--photo .photo-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero--photo .photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,40,68,0.4) 0%, rgba(20,40,68,0.85) 100%);
}
.page-hero--photo .wrap { position: relative; z-index: 2; }
.page-hero--photo h1,
.page-hero--photo .smallcaps,
.page-hero--photo .breadcrumb a,
.page-hero--photo .breadcrumb { color: #fff; }
.page-hero--photo .smallcaps { color: var(--accent-yellow); }
.page-hero--photo .breadcrumb .sep { color: rgba(255,255,255,0.6); }

.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--steel);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 22ch;
  margin-bottom: 0.5rem;
}
.page-hero .smallcaps { display: block; margin-bottom: 1rem; }

.breadcrumb {
  font-family: var(--ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-iron);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.breadcrumb a { color: var(--accent-iron); text-decoration: none; }
.breadcrumb a:hover { color: var(--steel); }
.breadcrumb .sep { margin: 0 0.55rem; color: var(--accent-iron); }

/* ============================ ARTICLE PROSE ============================ */
.article-prose {
  font-family: var(--ui);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
}
.article-prose p { margin-bottom: 1.25rem; }
.article-prose h2 {
  font-family: var(--ui);
  margin: 3rem 0 1rem;
  color: var(--steel);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  letter-spacing: -0.015em;
}
.article-prose h3 { margin: 2rem 0 0.75rem; color: var(--steel); }
.article-prose blockquote {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--steel);
  border-left: 3px solid var(--accent-yellow);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 2rem 0;
  text-transform: uppercase;
}
.article-prose ul { margin: 1rem 0 1.5rem 1.25rem; }
.article-prose li { margin-bottom: 0.4rem; }
.article-prose dl {
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 0.55rem 1.75rem;
  margin: 1.5rem 0 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.article-prose dt {
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.article-prose dd {
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--steel);
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.article-prose details {
  border-top: 1px solid var(--rule);
  padding: 1.25rem 0;
}
.article-prose details:last-of-type { border-bottom: 1px solid var(--rule); }
.article-prose summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 700;
  color: var(--steel);
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.article-prose summary::after {
  content: '+';
  font-size: 1.5rem;
  font-family: var(--display);
  color: var(--accent-yellow);
  line-height: 1;
  transition: transform 0.18s;
}
.article-prose details[open] summary::after { content: '−'; }
.article-prose details > p { margin-top: 0.85rem; }

/* ============================ DETAIL LAYOUT (service detail with sticky sidebar) ============================ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 4rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  align-items: start;
}
.detail-sidebar {
  position: sticky;
  top: 6.5rem;
  padding: 1.75rem;
  border: 1px solid var(--rule);
  background: #fff;
  box-shadow: 0 4px 16px var(--shadow);
}
.detail-sidebar h3 {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-iron);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.detail-sidebar .sidebar-phone {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.95rem;
  color: var(--steel);
  text-decoration: none;
  margin-bottom: 1.25rem;
  letter-spacing: -0.005em;
}
.detail-sidebar .sidebar-phone:hover { color: var(--steel-dark); }
.detail-sidebar .btn { width: 100%; justify-content: center; }
.detail-sidebar .sidebar-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.detail-sidebar .sidebar-pull {
  margin-top: 1.25rem;
  padding: 0.85rem 0.9rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent-yellow);
  font-size: 0.875rem;
  color: var(--ink);
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .detail-layout { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .detail-sidebar { position: static; }
}

/* ============================ SVC BLOCK (services index — alternating L/R) ============================ */
.svc-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 0 auto 5rem;
  max-width: 72rem;
  padding: 0 1.5rem;
}
.svc-block:nth-of-type(even) > :first-child { order: 2; }
.svc-block-img {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
}
.svc-block-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.svc-block h2 {
  font-family: var(--ui);
  margin-bottom: 1rem;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
}
.svc-block p { font-size: 1.0625rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 1rem; }
.svc-block-more {
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--steel);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.5rem;
}
.svc-block-more:hover { color: var(--steel-dark); text-decoration: underline; text-decoration-color: var(--accent-yellow); }
@media (max-width: 900px) {
  .svc-block { grid-template-columns: 1fr; gap: 1.75rem; margin-bottom: 3.5rem; }
  .svc-block:nth-of-type(even) > :first-child { order: 0; }
}

/* ============================ CROSS-LINK CARDS ============================ */
.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.crosslink {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 1.25rem;
  text-decoration: none;
  color: var(--steel);
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.18s, transform 0.18s;
}
.crosslink:hover { border-color: var(--steel); transform: translateY(-2px); }
.crosslink span {
  display: block;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-iron);
  margin-bottom: 0.4rem;
}
@media (max-width: 800px) { .crosslink-grid { grid-template-columns: 1fr 1fr; } }

/* ============================ STAFF GRID (about) ============================ */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
  max-width: 60rem;
  margin: 2rem auto 0;
}
.staff-card { display: flex; flex-direction: column; }
.staff-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  margin-bottom: 1.25rem;
}
.staff-name {
  font-family: var(--ui);
  font-weight: 700;
  color: var(--steel);
  font-size: 1.25rem;
  margin-bottom: 0.2rem;
}
.staff-role {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-iron);
  font-weight: 600;
  margin-bottom: 0.85rem;
}
.staff-bio { font-size: 1rem; line-height: 1.65; color: var(--ink); }
.staff-bio p { margin-bottom: 0.75rem; }
@media (max-width: 700px) { .staff-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.archival-img {
  aspect-ratio: 4/5;
  max-width: 22rem;
  margin: 2rem auto;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-soft);
  filter: sepia(0.15) saturate(0.85);
}

/* ============================ CONTACT PAGE ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.contact-form-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid var(--rule);
}
.contact-form-card h2 {
  font-family: var(--ui);
  margin-bottom: 1.5rem;
  font-size: 1.65rem;
}
.contact-info {
  padding: 2.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
}
.contact-info .big-phone {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--steel);
  text-decoration: none;
  line-height: 1;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: -0.01em;
}
.contact-info .label {
  font-family: var(--ui);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-iron);
  font-weight: 700;
  margin: 1.5rem 0 0.4rem;
  display: block;
}
.contact-info .label:first-of-type { margin-top: 0; }
.contact-info p { font-size: 1rem; line-height: 1.6; color: var(--ink); }
.contact-info a { color: var(--steel); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; text-decoration-color: var(--accent-yellow); }
.contact-info .license-id {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 0.3rem 0.55rem;
  color: var(--ink);
  margin-top: 0.4rem;
}

.contact-map-frame {
  width: 100%;
  aspect-ratio: 21/9;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .contact-map-frame { aspect-ratio: 4/3; }
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.info-grid h3 { font-family: var(--ui); font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--steel); }
.info-grid p { font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); }
@media (max-width: 800px) { .info-grid { grid-template-columns: 1fr; } }

/* ============================ FORMS ============================ */
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-iron);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--rule);
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  border-radius: 2px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.25);
}
.form-row textarea { min-height: 140px; }
.form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row-grid { grid-template-columns: 1fr; } }
.form-submit {
  background: var(--accent-yellow);
  color: var(--steel);
  border: 1.5px solid var(--accent-yellow);
  padding: 1rem 2rem;
  font-family: var(--ui);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.18s, transform 0.06s;
}
.form-submit:hover { background: #FFC417; }
.form-submit:active { transform: translateY(1px); }

/* ============================ PRICING CARD (maintenance plans) ============================ */
.price-card {
  background: #fff;
  border: 2px solid var(--steel);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 28rem;
  margin: 2rem auto;
  box-shadow: 0 12px 30px -16px var(--shadow-strong);
}
.price-card-tier {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-iron);
  font-weight: 700;
  margin-bottom: 0.65rem;
}
.price-card-amount {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  color: var(--steel);
  letter-spacing: -0.02em;
}
.price-card-per {
  font-family: var(--ui);
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 1rem;
}
.price-card-alt {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--ui);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-soft);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
}

/* ============================ NEIGHBORHOODS LIST ============================ */
.hood-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.5rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent-yellow);
}
.hood-list li { font-size: 1rem; color: var(--ink); font-weight: 500; }
@media (max-width: 600px) { .hood-list { grid-template-columns: 1fr; } }

/* ============================ FOOTER ============================ */
.footer {
  background: var(--steel-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 5fr 3fr 3fr 4fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h3 {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-brand .wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.65rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 0.85rem;
}
.footer-lineage {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  max-width: 32ch;
}
.footer-badges {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.footer-badge {
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.35rem 0.6rem;
  border-radius: 3px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--accent-yellow); }
.footer-nap { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.85); }
.footer-nap p { margin-bottom: 0.6rem; }
.footer-nap a { color: #fff; text-decoration: none; }
.footer-nap a:hover { color: var(--accent-yellow); }
.footer-nap .big-phone {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  display: inline-block;
  letter-spacing: 0;
  margin: 0.25rem 0;
  color: #fff;
}
.footer-license {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.5rem;
  display: inline-block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom em {
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-family: var(--ui);
  font-weight: 400;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================ STICKY MOBILE CTA BAR ============================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--steel);
  height: 64px;
  box-shadow: 0 -2px 12px var(--shadow-strong);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  height: 100%;
}
.mobile-cta-bar a.call {
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.mobile-cta-bar a.request {
  background: var(--accent-yellow);
  color: var(--steel);
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ============================ MISC HELPERS ============================ */
.thesis {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  padding: 5rem 1.5rem;
}
.thesis p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.thesis p:last-child { margin-bottom: 0; }

.rule {
  height: 1px;
  background: var(--rule);
  border: 0;
  margin: 3rem 0;
}
.rule--accent { background: var(--accent-yellow); width: 3rem; height: 3px; margin: 0 0 1.5rem; }

/* full-bleed map */
.full-map {
  width: 100%;
  aspect-ratio: 16/6;
  border: 0;
  display: block;
}
@media (max-width: 700px) { .full-map { aspect-ratio: 4/3; } }

/* Page-level inner section card */
.callout {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent-yellow);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 4px 4px 0;
}
.callout p { margin-bottom: 0.5rem; font-size: 1rem; }
.callout p:last-child { margin-bottom: 0; }

/* Phone-icon SVG inline helper */
.phone-icon-svg { width: 18px; height: 18px; flex-shrink: 0; }
