/* ============================================================
   Stillwater Plumbing — Hometown demo
   Get Found Guy / plumber-hometown
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* GFG base tokens (locked - shared across all 36 demos) */
  --gfg-cream: #faf7f2;
  --gfg-cream2: #f3ede3;
  --gfg-white: #ffffff;
  --gfg-navy: #1a2744;
  --gfg-orange: #f4622a;

  /* Hometown demo palette - warm cream, terracotta, sage */
  --cream: #fcf8f1;
  --cream2: #f5ede0;
  --cream3: #ebe1ce;
  --paper: #ffffff;
  --line: #e5dccb;
  --line2: #d4c7ae;
  --ink: #2d2418;
  --ink2: #4a3e2a;
  --body: #6b5e48;
  --muted: #9c8e74;
  --terracotta: #c0532e;
  --terracotta2: #a8431f;
  --terracotta-light: #fbeee6;
  --sage: #5a7a5e;
  --sage-light: #e8efe5;
  --warm-gold: #d4a64a;

  /* Per-demo aliases */
  --primary: var(--terracotta);
  --secondary: var(--sage);
  --bg-page: var(--cream);
  --text: var(--ink);

  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'Nunito', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ============================================================
   DEMO BAR (consistent across all 36 GFG demos)
   Orange bg, white text + white pill, white CTA. ~46px tall.
   ============================================================ */
.demo-bar {
  background: var(--gfg-orange);
  color: var(--gfg-white);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 2px 12px rgba(244,98,42,0.30);
  font-family: var(--sans);
}
.demo-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.demo-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.demo-bar-pill {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--gfg-white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.demo-bar-text {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--gfg-white);
  min-width: 0;
}
.demo-bar-cta {
  background: var(--gfg-white);
  color: var(--gfg-orange);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.demo-bar-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.20); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 22px 24px;
  position: sticky;
  top: 46px;
  z-index: 1000;
}
.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-logo-mark {
  width: 48px; height: 48px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.55rem;
  box-shadow: 0 4px 14px rgba(192,83,46,0.30);
}
.site-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo-name {
  font-family: var(--display);
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.site-logo-sub {
  font-size: 0.72rem;
  color: var(--terracotta);
  font-weight: 700;
  font-style: italic;
  margin-top: 3px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  color: var(--ink2);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav a:hover { color: var(--terracotta); }
.site-nav a.active { color: var(--terracotta); }
.site-nav-cta {
  background: var(--terracotta);
  color: var(--paper) !important;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(192,83,46,0.30);
}
.site-nav-cta:hover { background: var(--terracotta2); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.84rem;
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 72px 24px 110px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,83,46,0.08), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,122,94,0.08), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta-light);
  border: 1px solid var(--cream3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero h1 em { color: var(--terracotta); font-style: italic; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--ink); font-weight: 800; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.btn-warm {
  background: var(--terracotta);
  color: var(--paper);
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(192,83,46,0.30);
  font-family: var(--sans);
  border: none;
  cursor: pointer;
}
.btn-warm:hover { background: var(--terracotta2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(192,83,46,0.40); }
.btn-warm-ghost {
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s, transform 0.15s;
  border: 2px solid var(--line);
}
.btn-warm-ghost:hover { border-color: var(--terracotta); transform: translateY(-2px); }

.hero-mini-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-trust-stars { display: flex; align-items: center; gap: 10px; }
.hero-trust-stars-icons { color: var(--warm-gold); font-size: 1.05rem; letter-spacing: 0.06em; }
.hero-trust-stars-text { font-size: 0.84rem; color: var(--body); font-weight: 600; }
.hero-trust-stars-text strong { color: var(--ink); font-weight: 800; }
.hero-trust-divider { width: 1px; height: 24px; background: var(--line); }
.hero-trust-pill { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--body); font-weight: 600; }

/* hero photo */
.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,36,24,0.15);
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(192,83,46,0.10), transparent 50%);
}
.hero-photo-label {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(45,36,24,0.10);
  z-index: 2;
}
.hero-photo-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  text-align: center;
}
.hero-photo-icon { font-size: 4rem; opacity: 0.40; }
.hero-photo-text {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink2);
  font-style: italic;
  max-width: 240px;
  line-height: 1.3;
  opacity: 0.80;
}
.hero-photo-text small {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.hero-card {
  position: absolute;
  bottom: -32px; left: -32px;
  background: var(--paper);
  padding: 22px 24px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(45,36,24,0.18);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-card-text h4 {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.hero-card-text p { font-size: 0.78rem; color: var(--body); line-height: 1.45; }

/* ============================================================
   COMMON SECTION + CONTAINER
   ============================================================ */
section.block, section.page-head {
  padding: 96px 24px;
  position: relative;
}
.container { max-width: 1120px; margin: 0 auto; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-style: italic;
}
.eyebrow::before { content: '✦'; font-size: 0.95rem; }
h2.section-h {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
}
h2.section-h em { color: var(--terracotta); font-style: italic; }
.section-lead {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 620px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-block {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--terracotta);
  box-shadow: 0 16px 40px rgba(192,83,46,0.12);
  transform: translateY(-4px);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: var(--terracotta-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 1.6rem;
}
.service-card h3 {
  font-family: var(--display);
  font-size: 1.32rem;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}
.service-card-arrow {
  font-size: 0.86rem;
  color: var(--terracotta);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   STORY (homepage owner intro)
   ============================================================ */
.story-block { background: var(--cream); }
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.story-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,36,24,0.15);
}
.story-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,255,255,0.65), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(90,122,94,0.12), transparent 50%);
}
.story-photo-label {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(45,36,24,0.10);
  z-index: 2;
}
.story-photo-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  text-align: center;
}
.story-photo-icon { font-size: 3.5rem; opacity: 0.45; }
.story-photo-text {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--ink2);
  font-style: italic;
  max-width: 220px;
  line-height: 1.3;
  opacity: 0.75;
}
.story-photo-text small {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-style: normal;
  color: var(--muted);
  display: block;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.story-text p {
  font-size: 1.04rem;
  color: var(--body);
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-text p strong { color: var(--ink); font-weight: 800; }
.story-quote {
  background: var(--paper);
  border-left: 4px solid var(--terracotta);
  padding: 22px 26px;
  border-radius: 0 12px 12px 0;
  margin-top: 28px;
}
.story-quote p {
  font-family: var(--display);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 400;
}
.story-quote-attr {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 800;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-block {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 32px;
}
.reviews-rating-box {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.reviews-rating-num {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.reviews-rating-stars {
  color: var(--warm-gold);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.reviews-rating-meta {
  font-size: 0.78rem;
  color: var(--body);
  font-weight: 700;
  line-height: 1.3;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.review-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.review-stars {
  color: var(--warm-gold);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.review-text {
  font-family: var(--display);
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
  font-weight: 400;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--terracotta-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  color: var(--terracotta);
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid var(--paper);
  box-shadow: 0 2px 8px rgba(192,83,46,0.15);
}
.review-author-info { display: flex; flex-direction: column; line-height: 1.25; }
.review-author-name { font-size: 0.92rem; font-weight: 800; color: var(--ink); }
.review-author-meta { font-size: 0.74rem; color: var(--muted); margin-top: 3px; font-weight: 600; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-block { background: var(--cream); }
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.area-pill {
  padding: 18px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.area-pill:hover {
  border-color: var(--terracotta);
  background: var(--terracotta-light);
  transform: translateY(-2px);
}
.area-pill::after {
  content: '→';
  color: var(--terracotta);
  font-weight: 800;
  opacity: 0;
  transition: opacity 0.2s;
}
.area-pill:hover::after { opacity: 1; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--ink);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(192,83,46,0.18), transparent 60%);
  pointer-events: none;
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -300px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,166,74,0.10), transparent 60%);
  pointer-events: none;
}
.cta-strip-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 22px;
  font-weight: 400;
}
.cta-strip h2 em { color: var(--warm-gold); font-style: italic; }
.cta-strip p {
  font-size: 1.1rem;
  color: rgba(252,248,241,0.72);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-strip-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cream {
  background: var(--cream);
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(0,0,0,0.30);
}
.btn-cream:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.40); }
.btn-cream-outline {
  background: transparent;
  border: 2px solid rgba(252,248,241,0.25);
  color: var(--cream);
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.btn-cream-outline:hover { border-color: var(--cream); background: rgba(252,248,241,0.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream2);
  color: var(--body);
  padding: 64px 24px 32px;
  border-top: 1px solid var(--line);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--display);
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: var(--body);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* ============================================================
   DEMO CONVERSION CTA  (homepage only - sells the prospect on
   Get Found Guy after they've scrolled the demo)
   Uses GFG brand cream/navy/orange so it visually breaks from
   the demo and reads as Get Found Guy.
   ============================================================ */
.demo-cta-section {
  background: var(--gfg-cream);
  color: var(--gfg-navy);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
  font-family: var(--sans);
  border-top: 1px solid #e8e0d3;
}
.demo-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(244,98,42,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
}
.demo-cta-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.demo-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid rgba(244,98,42,0.30);
  color: var(--gfg-orange);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(244,98,42,0.08);
}
.demo-cta-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gfg-orange);
  box-shadow: 0 0 0 3px rgba(244,98,42,0.20);
}
.demo-cta-section h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--gfg-navy);
  margin-bottom: 24px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.demo-cta-section h2 em {
  color: var(--gfg-orange);
  font-style: italic;
}
.demo-cta-section .demo-cta-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a5468;
  max-width: 720px;
  margin: 0 auto 56px;
  font-weight: 500;
}
.demo-cta-section .demo-cta-lead strong { color: var(--gfg-navy); font-weight: 800; }

.demo-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
  text-align: left;
}
.demo-cta-card {
  background: var(--paper);
  border: 1px solid #e8e0d3;
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: 0 2px 14px rgba(26,39,68,0.04);
}
.demo-cta-card-num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 3rem;
  line-height: 1;
  color: var(--gfg-navy);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.demo-cta-card-num .unit {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: #8a93a5;
  letter-spacing: 0;
}
.demo-cta-card-lbl {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gfg-orange);
  margin-top: 12px;
  margin-bottom: 18px;
}
.demo-cta-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4a5468;
  font-weight: 500;
}

.demo-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gfg-orange);
  color: var(--gfg-white);
  padding: 20px 36px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 28px rgba(244,98,42,0.30);
  font-family: var(--sans);
}
.demo-cta-button:hover {
  background: #d9501e;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(244,98,42,0.40);
}
.demo-cta-learnmore {
  display: block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #8a93a5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}
.demo-cta-learnmore:hover { color: var(--gfg-orange); }
.demo-cta-learnmore u { text-decoration: none; border-bottom: 1px solid currentColor; }

@media (max-width: 880px) {
  .demo-cta-section { padding: 72px 20px; }
  .demo-cta-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .demo-cta-card { padding: 26px 24px; }
  .demo-cta-card-num { font-size: 2.4rem; }
  .demo-cta-button { padding: 18px 28px; font-size: 0.98rem; width: 100%; justify-content: center; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-head {
  background: var(--cream);
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-head::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,83,46,0.08), transparent 65%);
  pointer-events: none;
}
.page-head-inner { max-width: 1120px; margin: 0 auto; position: relative; z-index: 1; }
.crumbs {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--terracotta); }
.crumbs span { color: var(--terracotta); padding: 0 6px; }
.page-head h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  max-width: 900px;
  font-weight: 400;
}
.page-head h1 em { color: var(--terracotta); font-style: italic; }
.page-head .lead {
  font-size: 1.12rem;
  color: var(--body);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   PROSE / content blocks
   ============================================================ */
.prose-block { background: var(--paper); padding: 88px 24px; border-top: 1px solid var(--line); }
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.prose {
  max-width: 720px;
  font-size: 1.04rem;
  color: var(--body);
  line-height: 1.85;
}
.prose h2 {
  font-family: var(--display);
  font-size: 1.95rem;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 44px 0 16px;
  line-height: 1.15;
  font-weight: 400;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
  margin: 32px 0 12px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.prose p { margin-bottom: 18px; }
.prose strong { color: var(--ink); font-weight: 800; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 22px; }
.prose ul li, .prose ol li { margin-bottom: 10px; }
.prose ul li::marker { color: var(--terracotta); }

/* sidebar info card */
.info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
  position: sticky;
  top: 130px;
}
.info-card h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.info-card-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.info-card-row .lbl {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.info-card-row .val { color: var(--ink); font-weight: 700; }
.info-card .btn-warm { width: 100%; justify-content: center; margin-top: 8px; }

/* photo placeholder for prose pages */
.photo-ph {
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  border: 1px solid var(--line);
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(192,83,46,0.10), transparent 50%);
}
.photo-ph-label {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.photo-ph-content {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink2);
  opacity: 0.7;
  max-width: 220px;
  line-height: 1.3;
}

/* ============================================================
   SERVICES OVERVIEW (services.html)
   ============================================================ */
.services-list-block {
  background: var(--paper);
  padding: 88px 24px;
  border-top: 1px solid var(--line);
}
.services-list { display: flex; flex-direction: column; gap: 18px; }
.service-row {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 32px;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-row:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(192,83,46,0.10);
}
.service-row-icon {
  width: 64px; height: 64px;
  background: var(--terracotta-light);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.service-row-text h3 {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}
.service-row-text p { color: var(--body); font-size: 0.95rem; line-height: 1.65; }
.service-row-arrow { font-size: 1.4rem; color: var(--muted); }
.service-row:hover .service-row-arrow { color: var(--terracotta); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-block { background: var(--paper); padding: 88px 24px; border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 34px;
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.contact-form .form-sub {
  color: var(--body);
  font-size: 0.96rem;
  margin-bottom: 26px;
  line-height: 1.6;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--ink2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-warm { width: 100%; justify-content: center; margin-top: 8px; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-tile {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
}
.info-tile h4 {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 400;
}
.info-tile p, .info-tile a {
  color: var(--body);
  font-size: 0.94rem;
  line-height: 1.6;
  text-decoration: none;
}
.info-tile a:hover { color: var(--terracotta); }
.info-tile .big-phone {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--terracotta);
  display: block;
  margin-top: 6px;
  letter-spacing: -0.01em;
}

.map-ph {
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  border: 1px solid var(--line);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
}
.map-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,83,46,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,83,46,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-ph-content {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink2);
  opacity: 0.7;
  text-align: center;
  padding: 20px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-block {
  background: var(--cream);
  padding: 88px 24px;
  border-top: 1px solid var(--line);
}
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 44px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 30px;
}
.faq-item h4 {
  font-family: var(--display);
  font-size: 1.22rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
}
.faq-item p { color: var(--body); font-size: 0.98rem; line-height: 1.75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(45,36,24,0.10);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: none; margin-top: 6px; }
  .menu-toggle { display: inline-flex; }
  .site-header { padding: 16px 20px; }
  .hero { padding: 56px 20px 88px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { left: 16px; bottom: -24px; max-width: 240px; }
  section.block, section.page-head, .prose-block, .services-list-block, .contact-block, .faq-block { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-layout { grid-template-columns: 1fr; gap: 32px; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 64px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prose-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 60px 1fr; gap: 22px; padding: 26px 24px; }
  .service-row-arrow { display: none; }
  .service-row-icon { width: 56px; height: 56px; font-size: 1.5rem; }
}
@media (max-width: 600px) {
  .demo-bar-text { display: none; }
  .demo-bar-divider { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-warm, .btn-warm-ghost { justify-content: center; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .site-logo-sub { display: none; }
}

/* ============================================================
   TRUST BADGES ROW (between hero and services)
   ============================================================ */
.trust-row {
  background: var(--cream2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 24px;
}
.trust-row-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  min-width: 180px;
}
.trust-badge-icon {
  width: 46px; height: 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.trust-badge-text { display: flex; flex-direction: column; line-height: 1.25; }
.trust-badge-text strong {
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 800;
}
.trust-badge-text span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================================
   SERVICE CARD UPGRADES (ribbon + tag)
   ============================================================ */
.service-card-featured {
  border-color: var(--terracotta);
  position: relative;
  box-shadow: 0 12px 32px rgba(192,83,46,0.10);
}
.service-card-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.service-card-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  background: var(--terracotta-light);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  align-self: flex-start;
}

/* ============================================================
   HOW A VISIT GOES (4-step strip)
   ============================================================ */
.visit-block {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.visit-head { max-width: 720px; margin-bottom: 56px; }
.visit-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.visit-step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 26px 30px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.visit-step:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(192,83,46,0.10);
}
.visit-step-num {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--cream3);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 14px;
}
.visit-step-icon {
  width: 52px; height: 52px;
  background: var(--terracotta-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.visit-step h4 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}
.visit-step p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
}

/* ============================================================
   RECENT JOBS (mini-gallery)
   ============================================================ */
.jobs-block { background: var(--paper); border-top: 1px solid var(--line); }
.jobs-head { max-width: 720px; margin-bottom: 56px; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.job-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.job-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(192,83,46,0.12);
}
.job-photo {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.job-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,83,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,83,46,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.job-photo-icon {
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.job-photo-caption {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink2);
  text-align: center;
  padding: 0 22px;
  opacity: 0.8;
}
.job-photo-caption small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
  opacity: 0.7;
}
.job-card-body { padding: 24px 26px 26px; }
.job-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.job-card-pill {
  background: var(--terracotta);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 11px;
  border-radius: 999px;
}
.job-card-when {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
}
.job-card h4 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.job-card p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 14px;
}
.job-card-loc {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 800;
}

/* ============================================================
   REVIEW JOB TAGS
   ============================================================ */
.review-job-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  background: var(--sage-light);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--ink);
  padding: 56px 24px;
  color: var(--cream);
}
.stat-strip-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-item {
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-num .stat-unit {
  font-size: 0.5em;
  color: var(--cream2);
  margin-left: 4px;
}
.stat-lbl {
  font-size: 0.84rem;
  color: var(--cream2);
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.85;
}

/* ============================================================
   PRICING / WHAT IT COSTS
   ============================================================ */
.pricing-block {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.pricing-head { max-width: 720px; margin-bottom: 48px; }
.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-row {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 24px;
  align-items: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-row:hover {
  border-color: var(--terracotta);
  transform: translateX(4px);
}
.pricing-row-icon {
  width: 56px; height: 56px;
  background: var(--terracotta-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.pricing-row-main h4 {
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.pricing-row-main p {
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.55;
}
.pricing-row-price {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--terracotta);
  text-align: right;
  line-height: 1.1;
  white-space: nowrap;
}
.pricing-row-price .dash {
  color: var(--muted);
  font-size: 0.85em;
  margin: 0 2px;
}
.pricing-row-price span {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}
.pricing-foot {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.7;
  font-style: italic;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FAQ HOME BLOCK (different background from /faq-block on contact)
   ============================================================ */
.faq-home-block {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq-home-block .faq-head { max-width: 720px; margin-bottom: 44px; }
.faq-home-block .faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-home-block .faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 32px;
  transition: border-color 0.2s;
}
.faq-home-block .faq-item:hover { border-color: var(--terracotta); }
.faq-home-block .faq-item h4 {
  font-family: var(--display);
  font-size: 1.24rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.25;
}
.faq-home-block .faq-item p {
  color: var(--body);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE FOR ALL NEW SECTIONS
   ============================================================ */
@media (max-width: 980px) {
  .trust-row { padding: 24px 20px; }
  .trust-row-inner { gap: 18px; }
  .trust-badge { flex: 1 1 calc(50% - 9px); min-width: 0; }
  .visit-steps { grid-template-columns: 1fr 1fr; gap: 18px; }
  .jobs-grid { grid-template-columns: 1fr; }
  .stat-strip { padding: 44px 20px; }
  .stat-strip-inner { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .pricing-row { grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 24px; }
  .pricing-row-price { grid-column: 1 / -1; text-align: left; padding-left: 74px; }
  .pricing-row-icon { width: 52px; height: 52px; font-size: 1.4rem; }
}
@media (max-width: 600px) {
  .trust-badge { flex: 1 1 100%; }
  .visit-steps { grid-template-columns: 1fr; }
  .stat-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 28px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .pricing-row { padding: 20px; }
  .pricing-row-price { padding-left: 0; }
  .service-card-ribbon { top: 14px; right: 14px; font-size: 0.62rem; padding: 5px 10px; }
  .faq-home-block .faq-item { padding: 24px 22px; }
}

/* ============================================================
   MEET THE CREW (about page)
   ============================================================ */
.crew-block {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.crew-head { max-width: 720px; margin-bottom: 56px; }
.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.crew-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.crew-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(192,83,46,0.12);
}
.crew-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream2), var(--cream3));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.crew-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,83,46,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,83,46,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.crew-photo-icon {
  font-size: 3.4rem;
  position: relative;
  z-index: 1;
  opacity: 0.7;
}
.crew-photo-caption {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--ink2);
  text-align: center;
  padding: 0 22px;
  opacity: 0.8;
}
.crew-photo-caption small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 6px;
  opacity: 0.7;
}
.crew-card-body { padding: 28px 28px 30px; }
.crew-card h4 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 6px;
}
.crew-role {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.crew-card p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 18px;
}
.crew-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.crew-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 700;
}

/* ============================================================
   BRAND / EQUIPMENT ROW (service pages)
   ============================================================ */
.brand-block {
  background: var(--cream);
  padding: 88px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brand-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.brand-head .eyebrow { display: inline-flex; }
.brand-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.brand-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.brand-pill:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(192,83,46,0.10);
}
.brand-pill-icon {
  width: 56px; height: 56px;
  background: var(--terracotta-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.brand-pill-text { display: flex; flex-direction: column; line-height: 1.3; }
.brand-pill-text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
}
.brand-pill-text span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
}

/* ============================================================
   TOWN KNOWLEDGE (service-area page)
   ============================================================ */
.town-block {
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.town-head { max-width: 720px; margin-bottom: 56px; }
.town-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.town-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 34px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.town-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(192,83,46,0.10);
}
.town-card-pin {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 1.6rem;
  opacity: 0.5;
}
.town-card h4 {
  font-family: var(--display);
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
  padding-right: 40px;
}
.town-card-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  background: var(--sage-light);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.town-card p {
  font-size: 0.94rem;
  color: var(--body);
  line-height: 1.7;
}

/* ============================================================
   3-COL VARIANT OF VISIT STEPS (contact page)
   ============================================================ */
.visit-steps.visit-steps-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================================
   RESPONSIVE FOR ROUND 2
   ============================================================ */
@media (max-width: 980px) {
  .crew-grid { grid-template-columns: 1fr; gap: 22px; }
  .crew-photo { aspect-ratio: 16 / 10; }
  .brand-block { padding: 64px 20px; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .brand-pill { padding: 20px 16px; }
  .town-grid { grid-template-columns: 1fr; }
  .visit-steps.visit-steps-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .town-card { padding: 26px 24px; }
  .crew-card-body { padding: 24px; }
}
