/* =========================================================
   Trees & Co. — main.css
   Brand: firefighter-owned, dark serif + olive green + safety accents
   ========================================================= */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: block; }

/* When a <picture> sits inside a sized media container, force it to fill so the
   <img>'s object-fit: cover actually crops to the container (instead of showing
   the parent's background color through letterbox/pillarbox bars). */
.gallery-grid figure picture,
.service-card__photo picture,
.firefighter-story__photo picture,
.commercial-callout__photo picture,
.info-grid__media picture,
.emergency-band__photo picture,
.page-hero__bg picture,
.hero__bg picture,
.final-cta__bg picture {
  width: 100%;
  height: 100%;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }

/* ---------- Palette ---------- */
:root {
  --forest-deep: #1A1F1A;     /* near-black with green undertone */
  --forest-2:    #2D362D;     /* deeper forest */
  --olive:       #4A5A3E;     /* F-450 olive green (darker, used for backgrounds/buttons) */
  --olive-dark:  #36422D;
  --brand-olive: #B5C73E;     /* chartreuse olive from the logo arc */
  --cream:       #F5F2EC;     /* warm off-white */
  --cream-2:     #ECE7DB;     /* soft section divider */
  --hi-vis:      #F5D72A;     /* safety yellow, toned */
  --fire:        #A82A1F;     /* deep fire red (firefighter accent) */
  --fire-dark:   #7A1E15;
  --ink:         #1F2420;     /* body text */
  --ink-soft:    #4E544E;
  --muted:       #7B7B6E;
  --border:      #D9D3C5;
  --shadow-sm:   0 1px 2px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 12px 32px rgba(0,0,0,.08);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--forest-deep);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2.0rem, 3.6vw, 3.0rem); }
h3 { font-size: clamp(1.4rem, 2.0vw, 1.7rem); }
h4 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1rem;
  display: inline-block;
}
/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(0px, 1vw, 8px) 0; }
/* When an inline-CTA tight band is immediately followed by a full section, tighten the gap further */
.section--tight + .section { padding-top: clamp(24px, 3vw, 44px); }
.section:has(+ .section--tight) { padding-bottom: clamp(24px, 3vw, 44px); }
.section--cream2 { background: var(--cream-2); }
.section--fire { background: var(--fire); color: var(--cream); }
.section--fire h2 { color: var(--cream); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
}
.btn--primary:hover { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn--phone {
  background: var(--fire);
  color: var(--cream);
  border-color: var(--fire);
}
.btn--phone:hover { background: var(--fire-dark); border-color: var(--fire-dark); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover { background: var(--cream); color: var(--forest-deep); }
.btn--ghost-dark {
  background: transparent;
  color: var(--forest-deep);
  border-color: var(--forest-deep);
}
.btn--ghost-dark:hover { background: var(--forest-deep); color: var(--cream); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 236, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
@media (max-width: 720px) {
  .site-header__inner { padding: 0; }
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__logo--desktop {
  display: block;
  height: 60px;
  width: auto;
}
.brand__logo--mobile { display: none; }
@media (max-width: 720px) {
  .brand__logo--desktop { display: none; }
  .brand__logo--mobile {
    display: block;
    height: 52px;
    width: auto;
  }
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  font-size: 0.95rem;
  color: var(--forest-2);
  font-weight: 500;
  transition: color .12s ease;
  position: relative;
}
.primary-nav a:hover { color: var(--olive); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-cta .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-deep);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--forest-deep);
}
.menu-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .primary-nav { display: none; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    gap: 16px;
    align-items: flex-start;
    box-shadow: var(--shadow-md);
  }
  .menu-toggle { display: inline-flex; }
  .header-cta .phone-link span { display: none; }
  .header-cta .btn--primary { padding: 10px 16px; font-size: 0.9rem; }
  .brand__logo--desktop { height: 52px; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,26,.55) 0%, rgba(26,31,26,.45) 40%, rgba(26,31,26,.75) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 10vh, 96px) 0;
  max-width: 880px;
}
.hero .eyebrow { color: var(--hi-vis); }
.hero h1 {
  color: var(--cream);
  margin-bottom: 0.3em;
}
.hero__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: var(--hi-vis);
  margin: 0 0 1.2em;
  line-height: 1.2;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 1.6em;
  color: rgba(245, 242, 236, 0.92);
}
.hero .cta-row .btn { padding: 16px 30px; }

/* ---------- Stat strip (after hero) ---------- */
.stat-strip {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 32px 0;
  border-top: 4px solid var(--olive);
  border-bottom: 4px solid var(--olive);
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.stat-strip__item {
  text-align: center;
  padding: 12px 18px;
  border-left: 1px solid rgba(245, 242, 236, 0.16);
}
.stat-strip__item:first-child { border-left: 0; }
.stat-strip__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--hi-vis);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-strip__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.88);
}
@media (max-width: 720px) {
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 14px 0; }
  .stat-strip__item:nth-child(3) { border-left: 0; }
}

/* ---------- Process steps (How We Run a Job) ---------- */
.process-block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.process-block__intro {
  text-align: center;
  margin-bottom: 2rem;
}
.process-block__intro h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.4em;
}
.process-block__intro p {
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 800px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire);
  padding: 22px 22px 24px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: '0' counter(step);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fire);
  letter-spacing: 0.04em;
}
.process-step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 4px 0 8px;
  color: var(--forest-deep);
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Credentials banner (full-width thin strip, top of home) ---------- */
.credentials-banner {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 11px 0;
  border-bottom: 2px solid var(--brand-olive);
}
.credentials-banner__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.credentials-banner__list li {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}
.credentials-banner__list li:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand-olive);
}
@media (max-width: 920px) {
  .credentials-banner__list { font-size: 0.72rem; }
  .credentials-banner__list li { padding: 0 14px; }
}

/* Mobile: convert to 2-col pill grid (no more jumbled wrap with orphan dots) */
@media (max-width: 720px) {
  .credentials-banner { padding: 14px 0; }
  .credentials-banner__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
    font-size: 0.66rem;
  }
  .credentials-banner__list li {
    justify-content: center;
    padding: 7px 10px;
    background: rgba(245, 242, 236, 0.06);
    border: 1px solid rgba(181, 199, 62, 0.28);
    border-radius: 999px;
    line-height: 1.2;
  }
  .credentials-banner__list li:not(:last-child)::after { display: none; }
  .credentials-banner__list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 760px;
  margin-bottom: 3rem;
}
.section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* ---------- Firefighter Story (Section 2) ---------- */
.firefighter-story {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.firefighter-story__photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.firefighter-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.firefighter-story__photo::after {
  content: 'HECTOR MARTINEZ · PONTIAC FD (2003–2012) · WATERFORD REGIONAL FD';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(26,31,26,.85), rgba(26,31,26,0));
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.firefighter-story__body p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.firefighter-story__body p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  padding-right: 10px;
  padding-top: 4px;
  color: var(--olive);
}
@media (max-width: 800px) {
  .firefighter-story { grid-template-columns: 1fr; }
  .firefighter-story__photo img { aspect-ratio: 3 / 4; }
}

/* ---------- Services grid (Section 3) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--olive);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--forest-2);
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.service-card:hover .service-card__photo img { transform: scale(1.05); }
.service-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,26,0) 50%, rgba(26,31,26,.45) 100%);
}
.service-card__photo-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(74, 90, 62, 0.92);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 1;
}
.service-card__photo-badge--fire { background: rgba(168, 42, 31, 0.94); }
.service-card__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.service-card__body h3 { margin: 0; font-size: 1.3rem; }
.service-card__body p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
  flex: 1;
}
.service-card__link {
  margin-top: 10px;
  font-weight: 600;
  color: var(--olive);
  font-size: 0.92rem;
}
.service-card__link::after { content: ' →'; transition: margin-left .15s; }
.service-card:hover .service-card__link::after { margin-left: 4px; }

/* ---------- Emergency band (Section 4) ---------- */
.emergency-band {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
}
.emergency-band__photo {
  position: relative;
  min-height: 360px;
}
.emergency-band__photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.emergency-band__body {
  padding: clamp(40px, 6vw, 72px);
  background: var(--fire);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.emergency-band__body h2 { color: var(--cream); margin-bottom: 0.5em; }
.emergency-band__body p { font-size: 1.1rem; max-width: 520px; opacity: .94; }
.emergency-band__body .btn--phone {
  background: var(--cream);
  color: var(--fire);
  border-color: var(--cream);
  margin-top: 8px;
  align-self: flex-start;
}
.emergency-band__body .btn--phone:hover { background: var(--hi-vis); color: var(--forest-deep); border-color: var(--hi-vis); }
@media (max-width: 800px) {
  .emergency-band { grid-template-columns: 1fr; }
}

/* ---------- Service area grid (Section 5) ---------- */
.city-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) { .city-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px)  { .city-grid { grid-template-columns: repeat(2, 1fr); } }
.city-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest-deep);
  text-align: center;
  transition: border-color .12s, background .12s, color .12s, transform .12s;
}
.city-tile:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
  transform: translateY(-1px);
}
.city-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

/* ---------- Gallery (Section 6) ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--forest-2);
}
.gallery-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; margin-top: 2rem; }

/* ---------- Reviews (Section 7) ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card__stars {
  color: var(--hi-vis);
  letter-spacing: 2px;
  font-size: 1.15rem;
}
.review-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--forest-deep);
  margin: 0;
}
.review-card__author {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reviews-summary {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reviews-summary__count {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}
.reviews-summary__stars { color: var(--hi-vis); font-size: 1.4rem; letter-spacing: 3px; }
.reviews-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Review carousel (homepage) ---------- */
.review-carousel { position: relative; }
.review-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 16px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.review-carousel__track::-webkit-scrollbar { display: none; }
.review-carousel__track .review-card {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 900px) {
  .review-carousel__track .review-card { flex: 0 0 calc((100% - 18px) / 2); }
}
@media (max-width: 600px) {
  .review-carousel__track .review-card { flex: 0 0 100%; }
}
.review-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.review-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(26, 31, 26, 0.18);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.review-carousel__dot:hover { background: rgba(26, 31, 26, 0.35); }
.review-carousel__dot.is-active { background: var(--olive); transform: scale(1.25); }

/* ---------- Commercial callout (Section 8) ---------- */
.commercial-callout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.commercial-callout__photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.commercial-callout__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.commercial-callout__body h2 { margin-top: 0; }
.commercial-callout__body p { color: var(--ink-soft); font-size: 1.05rem; }
.commercial-callout__list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.commercial-callout__list li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  color: var(--forest-deep);
}
.commercial-callout__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 12px; height: 2px;
  background: var(--olive);
}
@media (max-width: 800px) {
  .commercial-callout { grid-template-columns: 1fr; }
  .commercial-callout__list { grid-template-columns: 1fr; }
}

/* ---------- Jobber embed wrapper ---------- */
.jobber-embed-wrap {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 24px;
  max-width: 720px;
  margin: 24px auto 0;
  text-align: left;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  min-height: 400px;
}
.jobber-embed-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.jobber-embed-fallback {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(245, 242, 236, 0.78);
}
.jobber-embed-fallback a {
  color: var(--hi-vis);
  text-decoration: underline;
  font-weight: 600;
}

/* ---------- Final CTA (Section 9) ---------- */
.final-cta {
  position: relative;
  color: var(--cream);
  overflow: hidden;
  text-align: center;
  padding: clamp(72px, 12vw, 140px) 0;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.final-cta__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,26,.75), rgba(26,31,26,.85));
}
.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 { color: var(--cream); }
.final-cta p { font-size: 1.15rem; opacity: .92; max-width: 580px; margin: 0 auto 2rem; }
.final-cta .cta-row { justify-content: center; }
.final-cta .btn { padding: 18px 36px; font-size: 1.05rem; }

/* =========================================================
   INNER PAGE TEMPLATES (service pages, city pages)
   ========================================================= */

/* ---------- Page hero (smaller than home hero) ---------- */
.page-hero {
  position: relative;
  min-height: clamp(360px, 56vh, 540px);
  display: grid;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,31,26,.55) 0%, rgba(26,31,26,.78) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 8vh, 96px) 0;
  max-width: 820px;
}
.page-hero .eyebrow { color: var(--hi-vis); }
.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.0rem, 4.4vw, 3.4rem);
  margin-bottom: 0.4em;
}
.page-hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  max-width: 640px;
  margin-bottom: 1.6em;
  color: rgba(245, 242, 236, 0.92);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 16px 0;
  background: var(--cream-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--olive); font-weight: 500; }
.breadcrumb a:hover { color: var(--olive-dark); }
.breadcrumb span { margin: 0 8px; color: var(--muted); }

/* ---------- Info grid (text + photo or text + text) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.info-grid--reverse { grid-template-columns: 1fr 1.2fr; }
.info-grid--reverse .info-grid__media { order: -1; }
/* Photo stretches to match text-column height for sections with long body content */
.info-grid--photo-stretch { align-items: stretch; }
.info-grid--photo-stretch .info-grid__media { align-self: stretch; display: flex; min-height: 100%; }
.info-grid--photo-stretch .info-grid__media picture { width: 100%; height: 100%; }
.info-grid--photo-stretch .info-grid__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  min-height: 100%;
}
.info-grid__body p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.info-grid__body p:first-of-type { font-size: 1.15rem; color: var(--ink); }
.info-grid__media {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.info-grid__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.info-grid__media--portrait img {
  aspect-ratio: 3 / 4;
}

/* Equal-column variant: photo and text get the same width + are vertically centered.
   Use when the photo needs to sit visually balanced with a long text block. */
.info-grid--equal {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.info-grid--equal.info-grid--reverse {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 800px) {
  .info-grid--equal,
  .info-grid--equal.info-grid--reverse {
    grid-template-columns: 1fr;
    align-items: start;
  }
}
@media (max-width: 800px) {
  .info-grid, .info-grid--reverse { grid-template-columns: 1fr; }
  .info-grid--reverse .info-grid__media { order: 0; }
}

/* ---------- Heritage paired photos (about page) ---------- */
.heritage-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.heritage-pair picture,
.heritage-pair figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.heritage-pair img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.heritage-pair figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(26,31,26,.85), rgba(26,31,26,0));
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Pull quote ---------- */
.pull-quote {
  border-left: 4px solid var(--fire);
  padding: 12px 0 12px 24px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--forest-deep);
}
.pull-quote__attr {
  display: block;
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
}

/* ---------- Checklist / signs list ---------- */
.signs-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.signs-list li {
  position: relative;
  padding-left: 28px;
  color: var(--forest-deep);
  font-weight: 500;
  font-size: 1.0rem;
  line-height: 1.45;
}
.signs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 16px; height: 2px;
  background: var(--fire);
}
@media (max-width: 640px) { .signs-list { grid-template-columns: 1fr; } }

/* ---------- Signs grid (diagnostic-style cards on service pages) ---------- */
.signs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 2.5rem;
}
@media (max-width: 1100px) { .signs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .signs-grid { grid-template-columns: 1fr; } }
.sign-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 20px 22px 22px;
  position: relative;
}
.sign-card::before {
  content: '';
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 3px;
  border-radius: 2px;
  background: var(--fire);
}
.sign-card--watch::before { background: var(--brand-olive); }
.sign-card--plan::before  { background: var(--olive); }
.sign-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fire);
  margin: 0 0 8px;
}
.sign-card--watch .sign-card__tag { color: var(--olive-dark); }
.sign-card--plan  .sign-card__tag { color: var(--muted); }
.sign-card__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-deep);
  margin: 0 0 8px;
  line-height: 1.2;
}
.sign-card__desc {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Equipment grid ---------- */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .equipment-grid { grid-template-columns: 1fr; } }
.equipment-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 18px;
}
.equipment-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 4px;
  color: var(--forest-deep);
}
.equipment-card p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Related services ---------- */
.related-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .related-services { grid-template-columns: 1fr; } }
.related-service {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--forest-deep);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.related-service:hover {
  border-color: var(--olive);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.related-service h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.related-service p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0;
}
.related-service__cue {
  margin-top: auto;
  padding-top: 6px;
  font-weight: 600;
  color: var(--olive);
  font-size: 0.85rem;
}
.related-service__cue::after { content: ' →'; }

/* ---------- Subsection title (used inside info-grid bodies) ---------- */
.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.4em;
  color: var(--forest-deep);
}
.subsection-title + .signs-list,
.subsection-title + p { margin-top: 0; }
.info-grid__body > .subsection-title:not(:first-child) {
  margin-top: 1.8em;
  padding-top: 1.6em;
  border-top: 1px solid var(--border);
}

/* ---------- Inline phone link helper ---------- */
.phone-inline {
  color: var(--olive);
  font-weight: 600;
}

/* ---------- Job cards (recent work, 3-col grid) ---------- */
.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 1.4rem 0;
}
@media (max-width: 1024px) { .job-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .job-grid { grid-template-columns: 1fr; } }
.job-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--olive);
  border-radius: 4px;
  padding: 16px 18px 18px;
}
.job-card__tag {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 6px;
}
.job-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.5;
}

/* ---------- Values grid (about page) ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--fire);
  padding: 24px 22px 26px;
}
.value-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 10px;
  color: var(--forest-deep);
}
.value-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ---------- Contact info grid (4 cards: phone/email/address/hours) ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .contact-info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-info-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 22px;
  text-align: center;
}
.contact-card__icon {
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 50%;
  color: var(--olive);
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact-card__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1.35;
}
.contact-card__value a {
  color: var(--forest-deep);
  transition: color .12s;
}
.contact-card__value a:hover { color: var(--olive); }

/* ---------- Inline CTA band (between sections) ---------- */
.inline-cta {
  background: #000;
  color: var(--cream);
  padding: 24px clamp(24px, 4vw, 40px);
  border-radius: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
}
.inline-cta h3 {
  color: var(--cream);
  font-size: 1.5rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 240px;
}
.inline-cta .cta-row { margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(245, 242, 236, 0.82);
  padding: 64px 0 28px;
  font-size: 0.94rem;
  line-height: 1.6;
}
.site-footer a { color: rgba(245, 242, 236, 0.82); transition: color .12s; }
.site-footer a:hover { color: var(--hi-vis); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
}
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--hi-vis);
  margin-bottom: 14px;
}
.footer-brand-logo {
  display: block;
  width: 170px;
  height: auto;
  margin-bottom: 14px;
}
.footer-tag {
  font-style: italic;
  color: var(--hi-vis);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-area-select {
  width: 100%;
  max-width: 240px;
  padding: 10px 32px 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--cream);
  background-color: rgba(245, 242, 236, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23F5F2EC' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  border: 1px solid rgba(245, 242, 236, 0.22);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .12s, background-color .12s;
}
.footer-area-select:hover,
.footer-area-select:focus {
  border-color: var(--hi-vis);
  background-color: rgba(245, 242, 236, 0.10);
  outline: none;
}
.footer-area-select option {
  background-color: var(--forest-deep);
  color: var(--cream);
}
.footer-contact p { margin: 0 0 6px; }
.footer-bottom {
  border-top: 1px solid rgba(245, 242, 236, 0.14);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245, 242, 236, 0.6);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Mobile sticky bottom bar ---------- */
.mobile-bar {
  display: none;
}
@media (max-width: 720px) {
  .mobile-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    border-top: 1px solid rgba(0,0,0,.1);
  }
  .mobile-bar a {
    padding: 14px 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
  }
  .mobile-bar .mb-phone { background: var(--fire); color: var(--cream); }
  .mobile-bar .mb-est { background: var(--olive); color: var(--cream); }
  body { padding-bottom: 56px; }  /* room for the bar */
}

/* =========================================================
   MOBILE POLISH — soften bordered-box stacking, modernize the
   sub-720px experience. Desktop styles above stay untouched.
   ========================================================= */
@media (max-width: 720px) {

  /* More breathing room between sections */
  .section { padding: 56px 0; }
  .section--tight { padding: 40px 0; }

  /* Modernize all cards: drop hard borders, add soft shadows + bigger radii */
  .service-card,
  .value-card,
  .equipment-card,
  .contact-card,
  .related-service,
  .review-card,
  .process-step,
  .city-tile {
    border: 0;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(26,31,26,.04), 0 6px 20px rgba(26,31,26,.06);
    background: var(--cream);
  }

  /* Process steps + value cards keep their fire-red accent — but as a pill, not a slab */
  .process-step,
  .value-card {
    border-left: 0;
    position: relative;
    padding-left: 28px;
  }
  .process-step::after,
  .value-card::after {
    content: '';
    position: absolute;
    left: 14px;
    top: 22px;
    bottom: 22px;
    width: 3px;
    border-radius: 2px;
    background: var(--fire);
  }

  /* Stat strip: lose the inter-item border lines on mobile */
  .stat-strip__item { border-left: 0; }
  .stat-strip__item:nth-child(3) { border-left: 0; }

  /* Bigger touch targets + softer buttons */
  .btn {
    border-radius: 999px;
    padding: 15px 28px;
    font-size: 1.02rem;
  }
  .btn--lg { padding: 18px 32px; font-size: 1.06rem; }

  /* Header tightens: smaller brand text on narrow screens */
  .brand { font-size: 1.35rem; gap: 10px; }
  .header-cta .btn--primary {
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 0.85rem;
  }

  /* Mobile bottom bar — friendlier shape + a touch of float */
  .mobile-bar {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-top: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.22), 0 2px 6px rgba(0,0,0,.16);
  }
  .mobile-bar a { padding: 13px 12px; }
  body { padding-bottom: 70px; }

  /* Service-card photo corner — match the rounder card */
  .service-card { overflow: hidden; }
  .service-card__photo { border-radius: 12px 12px 0 0; }

  /* Gallery grid — softer corners */
  .gallery-grid figure { border-radius: 10px; }

  /* City tiles — pill-ish, no border */
  .city-tile {
    padding: 14px 12px;
    font-size: 0.92rem;
    border-radius: 999px;
  }
  .city-tile:hover {
    background: var(--forest-deep);
    color: var(--cream);
  }

  /* Inline CTA on mobile: keep the bar look, stack content vertically, center it */
  .inline-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 22px 20px;
    border-radius: 0;
    gap: 14px;
  }
  .inline-cta h3 {
    font-size: 1.15rem;
    min-width: 0;
    text-align: center;
    line-height: 1.3;
  }
  .inline-cta .cta-row { justify-content: center; margin: 0; }

  /* Jobber wrap — match card system */
  .jobber-embed-wrap { border-radius: 14px; }

  /* Contact card icons — slightly smaller, less centered-text-on-mobile awkwardness */
  .contact-card { padding: 22px 18px; text-align: left; }
  .contact-card__icon {
    width: 40px; height: 40px;
    margin: 0 0 12px;
  }
  .contact-card__value { font-size: 1.1rem; }

  /* Hero: tighter on small screens */
  .hero { min-height: 88vh; }
  .page-hero { min-height: 380px; }

  /* Subsection title divider — drop the border-top on mobile, use breathing room instead */
  .info-grid__body > .subsection-title:not(:first-child) {
    border-top: 0;
    margin-top: 1.4em;
    padding-top: 0;
  }

  /* Breadcrumb — fits one line, tighter */
  .breadcrumb { font-size: 0.82rem; padding: 12px 0; }

  /* Footer — bigger touch targets for links */
  .footer-grid li { margin-bottom: 12px; }

  /* "Rooted in Success" centered on mobile — both hero tagline and footer signature */
  .hero__tagline { text-align: center; }
  .footer-brand-col { text-align: center; }
  .footer-brand-col .footer-brand-logo { margin-left: auto; margin-right: auto; }
}

/* ---------- Visually hidden (sr-only) ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
