/* =========================================================
   GOOD GUYS TREE SERVICE OF UTAH, site styles
   Palette: Forest #1E4D2B · Orange #E8732C · Cream #F5EFE0
   Type: Roboto Slab (display) · Inter (body)
   ========================================================= */

:root {
  --forest:        #1E4D2B;
  --forest-dark:   #163820;
  --forest-deep:   #0f2818;
  --orange:        #E8732C;
  --orange-dark:   #cf5f1c;
  --orange-pale:   rgba(232, 115, 44, 0.08);
  --bark:          #6B4423;
  --bark-soft:     rgba(107, 68, 35, 0.18);
  --sky:           #4A6B8A;
  --cream:         #F5EFE0;
  --cream-2:       #ece4d0;
  --cream-3:       #e0d6bc;
  --charcoal:      #1F2A24;
  --charcoal-2:    rgba(31, 42, 36, 0.72);
  --charcoal-3:    rgba(31, 42, 36, 0.52);
  --rule:          rgba(31, 42, 36, 0.12);
  --rule-soft:     rgba(31, 42, 36, 0.06);

  --slab: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 64px);
  --radius: 8px;
  --radius-sm: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 15px;
}

img { max-width: 100%; display: block; }
a { color: var(--forest); text-underline-offset: 3px; }
button { font-family: inherit; cursor: pointer; }

/* ----------- type ----------- */
h1, h2, h3, h4 { font-family: var(--slab); color: var(--charcoal); letter-spacing: -0.3px; margin: 0; line-height: 1.15; }
h1 { font-weight: 800; font-size: clamp(34px, 5.2vw, 56px); line-height: 1.04; letter-spacing: -0.6px; }
h2 { font-weight: 700; font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-weight: 700; font-size: 20px; }
h4 { font-weight: 600; font-size: 17px; font-family: var(--sans); }
p { margin: 0 0 14px; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 14px;
}
.eyebrow.chip {
  background: var(--orange);
  color: #fff;
  padding: 7px 11px;
  border-radius: 3px;
  letter-spacing: 1.4px;
}
.eyebrow.on-dark { color: rgba(245,239,224,0.7); }

.lede { font-size: 17px; color: var(--charcoal-2); line-height: 1.6; }

/* ----------- buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease, transform 140ms ease;
  white-space: nowrap;
  letter-spacing: 0.1px;
}
.btn .arr {
  display: inline-block;
  transition: transform 180ms ease;
  font-size: 16px;
  line-height: 1;
  margin-top: -1px;
}
.btn:hover .arr { transform: translateX(3px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--forest); color: var(--cream); }
.btn-secondary:hover { background: var(--forest-dark); }
.btn-tertiary { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-tertiary:hover { background: rgba(30,77,43,0.06); }
.btn-tertiary.on-dark { color: var(--cream); border-color: var(--cream); }
.btn-tertiary.on-dark:hover { background: rgba(245,239,224,0.08); }
.btn-lg { padding: 16px 28px; font-size: 15.5px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* ----------- container + sections ----------- */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ----------- header / nav ----------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(8px);
}
.site-header .bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; text-decoration: none; gap: 0; }
.brand-logo {
  display: block;
  width: auto;
  height: 56px;
}
.brand-name, .brand-sub { display: none; }
.nav { display: flex; gap: 4px; align-items: center; justify-content: center; }
.nav a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  position: relative;
  transition: background 120ms, color 120ms;
}
.nav a:hover { color: var(--forest); background: rgba(30,77,43,0.06); }
.nav a.active { color: var(--forest); font-weight: 600; }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 15px;
  color: var(--forest);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone svg { width: 16px; height: 16px; }
@media (max-width: 940px) {
  .nav, .header-phone { display: none; }
  .site-header .bar { grid-template-columns: 1fr auto; }
}

/* ----------- hero ----------- */
.hero {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; padding-top: clamp(64px, 10vw, 120px); padding-bottom: clamp(72px, 10vw, 120px); }
.hero .bg-tree {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 520px; height: 520px;
  opacity: 0.10;
  pointer-events: none;
}
.hero .bg-mtn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  pointer-events: none;
  opacity: 0.18;
}
.hero h1 { color: var(--cream); max-width: 18ch; margin-bottom: 18px; }
.hero p.sub { font-size: 18px; line-height: 1.55; max-width: 56ch; color: rgba(245,239,224,0.85); margin-bottom: 28px; }
.hero .cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .or-call {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(245,239,224,0.78);
}
.hero .or-call a {
  color: var(--cream);
  font-family: var(--slab);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(245,239,224,0.3);
  padding-bottom: 1px;
}
.hero .or-call a:hover { border-color: var(--cream); }

.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--forest);
  z-index: 0;
}
.hero-photo .photo {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: var(--hero-img-pos, center);
  filter: contrast(1.05) saturate(0.82) sepia(0.05);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,40,24,0.96) 0%, rgba(15,40,24,0.90) 35%, rgba(15,40,24,0.74) 65%, rgba(15,40,24,0.52) 100%);
}
.hero-photo .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 22px, rgba(245,239,224,0.04) 22px 23px),
    radial-gradient(ellipse at 70% 30%, rgba(74,107,138,0.25) 0%, transparent 60%),
    linear-gradient(180deg, #1c3d24 0%, #15301b 100%);
}

/* ----------- trust bar ----------- */
.trust-bar {
  background: var(--cream-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trust-bar .row {
  display: flex;
  gap: 14px 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 22px 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
  letter-spacing: 0.2px;
}
.trust-item .icn { color: var(--orange); font-size: 14px; line-height: 1; }
.trust-item.firefighter { background: var(--orange); color: #fff; padding: 7px 14px; border-radius: 4px; }
.trust-item.firefighter .icn { color: #fff; }

/* ----------- generic card grid ----------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 940px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .card-grid { grid-template-columns: 1fr; } }

/* ----- Service catalog card (home page) -----
   Solid forest-green panel · big slab number as hero element ·
   bottom hairline row with mono tag + orange "Learn more" */
.svc-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 6px;
  padding: 30px 28px 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease;
  min-height: 320px;
  isolation: isolate;
}
.svc-card::before {
  /* faint tree watermark, top-right */
  content: "";
  position: absolute;
  top: -22px;
  right: -32px;
  width: 150px;
  height: 150px;
  background:
    radial-gradient(circle at 50% 38%, var(--cream) 0 38%, transparent 39%),
    linear-gradient(var(--cream), var(--cream));
  background-size: 100% 100%, 12px 36px;
  background-position: 0 0, center 78%;
  background-repeat: no-repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.svc-card > * { position: relative; z-index: 1; }
.svc-card:hover { transform: translateY(-4px); }
.svc-card.featured { background: var(--orange); }
.svc-card.featured::before { opacity: 0.1; }

.svc-card .svc-icon {
  display: block;
  width: 64px;
  height: 64px;
  color: var(--cream);
  margin: 0 0 22px;
}
.svc-card .svc-icon svg { width: 100%; height: 100%; display: block; }

.svc-card h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 23px;
  color: var(--cream);
  line-height: 1.12;
  margin: 0 0 10px;
  letter-spacing: -0.2px;
}
.svc-card p {
  font-size: 14px;
  color: rgba(245,239,224,0.78);
  line-height: 1.55;
  margin: 0 0 24px;
  flex: 1;
}
.svc-card.featured p { color: rgba(255,255,255,0.92); }

.svc-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(245,239,224,0.22);
}
.svc-card.featured .meta-row { border-top-color: rgba(255,255,255,0.28); }

.svc-card .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(245,239,224,0.7);
}
.svc-card.featured .tag { color: rgba(255,255,255,0.85); }

.svc-card .link {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.svc-card.featured .link { color: var(--cream); }
.svc-card .link .arr { transition: transform 200ms; }
.svc-card:hover .link .arr { transform: translateX(4px); }

/* ----------- pitch block ----------- */
.pitch {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) { .pitch { grid-template-columns: 1fr; gap: 28px; } }
.pitch h2 { margin-bottom: 18px; }
.pitch p { font-size: 16.5px; line-height: 1.65; color: var(--charcoal-2); max-width: 60ch; }
.pitch p:first-of-type { color: var(--charcoal); font-size: 18px; }

/* ----------- testimonials ----------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 940px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testi .stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi blockquote {
  margin: 0;
  font-family: var(--slab);
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--charcoal);
  flex: 1;
}
.testi cite {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-style: normal;
  font-size: 13px;
  color: var(--charcoal-2);
}
.testi cite strong { color: var(--charcoal); font-weight: 600; }
.testi cite .src { color: var(--bark); font-family: var(--mono); font-size: 11px; }

/* ----------- final CTA ----------- */
.cta-section {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section .bg-tree {
  position: absolute;
  left: -60px;
  bottom: -80px;
  width: 360px; height: 360px;
  opacity: 0.08;
  pointer-events: none;
}
.cta-section h2 { color: var(--cream); max-width: 18ch; }
.cta-section p { color: rgba(245,239,224,0.85); font-size: 17px; max-width: 54ch; }
.cta-section .cta-row { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-top: 28px; }

/* ----------- service-area preview ----------- */
.areas-preview {
  background: var(--cream-2);
}
.areas-preview .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 820px) { .areas-preview .grid { grid-template-columns: 1fr; gap: 24px; } }
.cities-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.city-pill {
  background: var(--cream);
  border: 1px solid var(--rule);
  color: var(--charcoal);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 140ms, color 140ms, border-color 140ms;
}
.city-pill:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

/* ----------- footer ----------- */
.site-footer {
  background: var(--forest-dark);
  color: rgba(245,239,224,0.85);
  padding-top: 56px;
  padding-bottom: 0;
}
.site-footer .container { padding-left: var(--pad-x); padding-right: var(--pad-x); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(245,239,224,0.55);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer-brand .brand-name { color: var(--cream); font-size: 18px; }
.footer-brand .brand-sub { color: rgba(245,239,224,0.6); margin-top: 6px; }
.footer-brand p { font-size: 13px; color: rgba(245,239,224,0.65); margin-top: 12px; line-height: 1.6; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a {
  color: rgba(245,239,224,0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color 120ms;
}
.footer-grid a:hover { color: var(--orange); }
.footer-grid .contact-line {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
  text-decoration: none;
  display: block;
}
.footer-grid .contact-sub { font-size: 12.5px; color: rgba(245,239,224,0.55); margin-bottom: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(245,239,224,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245,239,224,0.55);
}
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,224,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,224,0.7);
  text-decoration: none;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.social-row a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* SMS disclosure */
.sms-disclosure {
  background: var(--forest-deep);
  color: rgba(245,239,224,0.55);
  font-size: 11.5px;
  line-height: 1.55;
  padding: 18px 0;
}
.sms-disclosure .container { max-width: var(--container); }

/* ----------- mobile call bar ----------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-family: var(--slab);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 16px;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 -8px 24px -12px rgba(0,0,0,0.35);
}
.mobile-call-bar svg { vertical-align: -3px; margin-right: 8px; }
@media (max-width: 720px) { .mobile-call-bar { display: block; } body { padding-bottom: 56px; } }

/* ----------- page header (interior pages) ----------- */
.page-header {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--cream); max-width: 22ch; margin-bottom: 18px; }
.page-header p.sub { font-size: 17.5px; color: rgba(245,239,224,0.82); max-width: 60ch; }
.page-header .bg-tree {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 360px; height: 360px;
  opacity: 0.10;
  pointer-events: none;
}

/* ----- photo backdrop page header (universal interior pages) -----
   Set --header-img on the section to choose the photo.
   Optional --header-img-pos for background-position. */
.photo-header {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 9vw, 110px);
  color: var(--cream);
}
.photo-header .photo-bg {
  position: absolute;
  inset: 0;
  background-image: var(--header-img, none);
  background-size: cover;
  background-position: var(--header-img-pos, 65% center);
  filter: contrast(1.05) saturate(0.82) sepia(0.05);
  z-index: 1;
}
.photo-header .photo-grade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--forest) 0%,
    var(--forest) 32%,
    rgba(30, 77, 43, 0.94) 46%,
    rgba(30, 77, 43, 0.58) 68%,
    rgba(15, 40, 24, 0.25) 100%
  );
  z-index: 2;
}
.photo-header .photo-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,40,24,0.35) 0%, transparent 26%, transparent 72%, rgba(15,40,24,0.5) 100%);
  z-index: 3;
  pointer-events: none;
}
.photo-header .container { position: relative; z-index: 4; }
.photo-header h1 { color: var(--cream); max-width: 18ch; margin-bottom: 18px; }
.photo-header p.sub { font-size: 17.5px; color: rgba(245,239,224,0.88); max-width: 56ch; }
.photo-header .credit {
  position: absolute;
  bottom: 18px;
  right: clamp(20px, 5vw, 64px);
  z-index: 4;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(245,239,224,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.photo-header .credit::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
@media (max-width: 760px) {
  .photo-header .photo-bg { background-position: 80% center; }
  .photo-header .photo-grade {
    background: linear-gradient(
      100deg,
      var(--forest) 0%,
      rgba(30, 77, 43, 0.92) 50%,
      rgba(30, 77, 43, 0.7) 100%
    );
  }
}

/* ----------- services page (detail) ----------- */
.svc-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) { .svc-detail { grid-template-columns: 1fr; gap: 24px; } }
.svc-detail .num {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 64px;
  color: var(--bark);
  line-height: 0.9;
  border-top: 3px solid var(--forest);
  padding-top: 18px;
  opacity: 0.5;
}
.svc-detail .body h2 { margin-bottom: 14px; color: var(--forest); }
.svc-detail .body p { font-size: 16.5px; color: var(--charcoal); max-width: 64ch; line-height: 1.65; }
.svc-detail .lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 28px;
}
@media (max-width: 720px) { .svc-detail .lists { grid-template-columns: 1fr; gap: 18px; } }
.svc-detail .lists h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 12px;
}
.svc-detail .lists ul { list-style: none; padding: 0; margin: 0; }
.svc-detail .lists li {
  font-size: 14.5px;
  color: var(--charcoal);
  padding: 8px 0 8px 22px;
  position: relative;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-detail .lists li:last-child { border-bottom: none; }
.svc-detail .lists li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 4px; top: 16px;
}

/* alternating section bg */
.bg-cream-2 { background: var(--cream-2); }
.bg-cream { background: var(--cream); }

/* ----------- about ----------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 24px; } }
.about-grid p { font-size: 16.5px; color: var(--charcoal); line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 720px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--orange);
}
.value-card h3 { font-family: var(--slab); font-weight: 700; font-size: 19px; color: var(--forest); margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--charcoal-2); margin: 0; line-height: 1.6; }
.numbers-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 820px) { .numbers-row { grid-template-columns: repeat(2, 1fr); } }
.num-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(245,239,224,0.12);
  border-bottom: 1px solid rgba(245,239,224,0.12);
}
.num-cell:last-child { border-right: none; }
.num-cell .big {
  font-family: var(--slab);
  font-weight: 800;
  font-size: 36px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.num-cell .lbl {
  font-size: 12px;
  color: rgba(245,239,224,0.7);
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* origin-story callout */
.origin-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  border-left: 6px solid var(--orange);
  padding: 40px 44px;
  position: relative;
}
.origin-card .eyebrow { color: var(--orange); }
.origin-card h2 { color: var(--cream); margin-bottom: 14px; }
.origin-card p { color: rgba(245,239,224,0.88); font-size: 17px; line-height: 1.7; max-width: 64ch; }
@media (max-width: 620px) { .origin-card { padding: 28px 22px; } }

/* ----------- gallery ----------- */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
@media (max-width: 940px) { .gallery-grid { columns: 2; } }
@media (max-width: 540px) { .gallery-grid { columns: 1; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: block;
  background: var(--cream-3);
}
.gallery-item.featured { outline: 3px solid var(--orange); outline-offset: 2px; }
.gallery-item .imgwrap {
  aspect-ratio: var(--ar, 4/3);
  background:
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(107,68,35,0.08) 12px 13px),
    linear-gradient(135deg, var(--cream-2), var(--cream-3));
  position: relative;
  overflow: hidden;
}
.gallery-item .imgwrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item .caption {
  padding: 14px 16px 16px;
  background: var(--cream);
  border-top: 3px solid var(--forest);
}
.gallery-item.featured .caption { border-top-color: var(--orange); }
.gallery-item .caption .where {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--bark);
  margin-bottom: 4px;
}
.gallery-item .caption .what {
  font-family: var(--slab);
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
}
.gallery-item .featured-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  z-index: 2;
}

/* ----------- service areas page ----------- */
.areas-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 820px) { .areas-page-grid { grid-template-columns: 1fr; gap: 28px; } }
.cities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (max-width: 620px) { .cities-list { grid-template-columns: 1fr 1fr; } }
.cities-list a {
  padding: 14px 18px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  color: var(--charcoal);
  font-weight: 500;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 120ms, color 120ms;
}
.cities-list a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.cities-list a:hover { background: var(--forest); color: var(--cream); }
.cities-list a:hover::before { background: var(--cream); }

.map-visual {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--cream);
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}
.map-visual .map-svg { width: 100%; height: 100%; }
.map-visual .pin { transition: r 200ms; }
.map-visual .pin.is-hq { fill: var(--orange); }
.map-visual .label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(245,239,224,0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-visual .legend-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 6px; vertical-align: 0; }

/* ----------- quote form ----------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 940px) { .quote-grid { grid-template-columns: 1fr; gap: 32px; } }
.quote-form {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--rule);
  box-shadow: 0 12px 32px -20px rgba(0,0,0,0.18);
}
@media (max-width: 540px) { .quote-form { padding: 24px; } }
.quote-form label.field-label {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.quote-form label.field-label .opt { color: var(--bark); font-weight: 400; font-size: 12px; margin-left: 4px; }
.quote-form input[type="text"],
.quote-form input[type="tel"],
.quote-form input[type="email"],
.quote-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 14px;
  background: #fff;
  border: 1px solid var(--bark-soft);
  border-radius: 6px;
  color: var(--charcoal);
  margin-bottom: 18px;
  outline: none;
  transition: border-color 140ms, box-shadow 140ms;
}
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(30,77,43,0.18);
}
.quote-form textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.chip-btn {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--bark-soft);
  color: var(--charcoal);
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 120ms, color 120ms, border-color 120ms;
}
.chip-btn:hover { border-color: var(--forest); color: var(--forest); }
.chip-btn.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.radio-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.radio-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 140ms;
}
.radio-row label:has(input:checked) { border-color: var(--forest); background: rgba(30,77,43,0.05); }
.radio-row label.urgent:has(input:checked) { border-color: var(--orange); background: rgba(232,115,44,0.07); }
.radio-row input[type="radio"] { accent-color: var(--forest); }
.sms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--charcoal-2);
  margin: 8px 0 18px;
  line-height: 1.5;
}
.sms-check input { margin-top: 3px; accent-color: var(--forest); }
.submit-btn {
  width: 100%;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  transition: background 140ms;
  letter-spacing: 0.3px;
}
.submit-btn:hover { background: var(--orange-dark); }
.field-help { font-size: 12.5px; color: var(--charcoal-3); margin: -8px 0 14px; }

.quote-aside h3 { font-family: var(--slab); font-weight: 700; font-size: 22px; color: var(--forest); margin-bottom: 14px; }
.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--rule);
}
.step .num {
  font-family: var(--slab);
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
  line-height: 1;
}
.step .ti {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.step .de {
  font-size: 13.5px;
  color: var(--charcoal-2);
  line-height: 1.55;
}

.contact-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 { color: var(--cream); margin-bottom: 16px; font-size: 18px; }
.contact-card .phone-big {
  font-family: var(--slab);
  font-weight: 800;
  font-size: 28px;
  color: var(--cream);
  text-decoration: none;
  display: block;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-card .phone-alt { font-size: 13px; color: rgba(245,239,224,0.7); margin-bottom: 18px; }
.contact-card .hours {
  font-size: 13.5px;
  color: rgba(245,239,224,0.78);
  border-top: 1px solid rgba(245,239,224,0.15);
  padding-top: 16px;
  line-height: 1.7;
}
.contact-card .hours strong { color: var(--cream); font-weight: 600; font-family: var(--slab); }

/* ----------- contact page ----------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }
.info-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 18px;
}
.info-block h3 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--bark);
  font-weight: 500;
  margin-bottom: 14px;
}
.info-block .val {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.info-block .val a { color: var(--forest); text-decoration: none; }
.info-block .val a:hover { color: var(--orange); }
.info-block .sub { font-size: 14px; color: var(--charcoal-2); line-height: 1.55; }
.info-block ul { padding: 0; margin: 12px 0 0; list-style: none; }
.info-block li { padding: 7px 0; font-size: 14px; border-top: 1px solid var(--rule-soft); display: flex; gap: 12px; }
.info-block li:first-child { border-top: none; }
.info-block li strong {
  min-width: 92px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--bark);
  letter-spacing: 1px;
  font-weight: 500;
  padding-top: 2px;
}
.info-block.emergency {
  background: var(--orange);
  color: #fff;
  border: none;
}
.info-block.emergency h3 { color: rgba(255,255,255,0.85); }
.info-block.emergency .val { color: #fff; font-size: 26px; }
.info-block.emergency .val a { color: #fff; }
.info-block.emergency .sub { color: rgba(255,255,255,0.92); font-size: 14.5px; }

/* ----------- big quote CTA (orange callout) ----------- */
.orange-cta {
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.orange-cta h3 {
  font-family: var(--slab);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin: 0 0 4px;
}
.orange-cta p { color: rgba(255,255,255,0.92); margin: 0; font-size: 14.5px; }
.orange-cta .btn { background: #fff; color: var(--orange); }
.orange-cta .btn:hover { background: var(--cream); }

/* ----------- misc utility ----------- */
.text-center { text-align: center; }
.divider { height: 1px; background: var(--rule); margin: 48px 0; }

/* small reveal animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1, .hero p.sub, .hero .cta-row, .page-header h1, .page-header p.sub {
  animation: fadeUp 600ms ease both;
}
.hero p.sub { animation-delay: 80ms; }
.hero .cta-row { animation-delay: 160ms; }
.page-header p.sub { animation-delay: 80ms; }
