/* ============================================================
   Sanders Septic Services - stylesheet
   Brand: black & brown, local/community septic company
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap");

:root {
  --brown-dark: #3E2A1E;
  --brown: #6B4A2F;
  --black: #1A1A1A;
  --tan: #E8DFD3;
  --cream: #FAF6F0;
  --accent: #C8551B;
  --white: #FFFFFF;
  --gray: #5c5c5c;
  --shadow: 0 4px 14px rgba(0,0,0,.10);
  --shadow-hover: 0 10px 28px rgba(0,0,0,.14);
  --radius: 10px;
  --maxw: 1140px;
  --sticky-h: 64px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================
   PAGE-LOAD BURGLAR INTRO
   Appears, looks left → right → left, then runs off left.
   ============================================================ */
.burglar-intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
  display: none;
}
.burglar-intro.is-playing { display: block; }
.burglar-mover {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 160px;
  height: 160px;
}
.burglar-intro.is-playing .burglar-mover {
  animation: burglar-move 5.3s cubic-bezier(.4,.0,.2,1) 0.35s both;
}
.burglar-sprite {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center bottom;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.25));
}
.burglar-intro.is-playing .burglar-sprite {
  animation: burglar-look 5.3s ease-in-out 0.35s both;
}
@keyframes burglar-move {
  /* enter from left, stop mid-right-ish */
  0%   { transform: translateX(-40vw); opacity: 0; }
  8%   { opacity: 1; }
  22%  { transform: translateX(42vw); }
  /* hold while looking around */
  62%  { transform: translateX(42vw); }
  /* run off to the left */
  100% { transform: translateX(-50vw); opacity: 1; }
}
@keyframes burglar-look {
  /* face right while arriving (art faces right) */
  0%, 22% { transform: scaleX(1); }
  /* look left */
  30% { transform: scaleX(-1); }
  /* look right */
  42% { transform: scaleX(1); }
  /* look left again, then keep facing left to run off */
  54%, 100% { transform: scaleX(-1); }
}
@media (prefers-reduced-motion: reduce) {
  .burglar-intro { display: none; }
}
@media (max-width: 600px) {
  .burglar-mover { width: 120px; height: 120px; bottom: 110px; }
}

/* ============================================================
   MAIN STICKY CALL BUTTON (bottom-right FAB) + robber
   Desktop: robber tucked; peeks on hover.
   Touch / narrow screens: always peeked (no hover).
   ============================================================ */
.fab-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  bottom: max(22px, env(safe-area-inset-bottom));
  right: max(22px, env(safe-area-inset-right));
  z-index: 70;
  padding-top: 64px;
}
.fab-call {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: #fff;
  padding: 20px 32px; border-radius: 50px;
  font-weight: 800; font-size: 1.28rem; text-decoration: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  transition: transform .15s ease, background .15s ease;
}
.fab-call:hover,
.fab-wrap:hover .fab-call { background: #b0490f; transform: translateY(-2px); }
.fab-call:active { transform: translateY(0); }
.fab-icon { font-size: 1.45rem; }
/* tucked behind button by default; rises on hover so eyes + hands show */
.fab-robber {
  position: absolute;
  left: 50%;
  bottom: 48px;
  width: 84px;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(48px);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.3));
  transition: transform .35s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .fab-wrap:hover .fab-robber {
    transform: translateX(-50%) translateY(4px);
  }
}
/* Touch: slight peek only — not fully popped out */
@media (hover: none), (pointer: coarse) {
  .fab-robber {
    width: 64px;
    bottom: 44px;
    transform: translateX(-50%) translateY(34px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fab-robber { transition: none; }
}
@media (max-width: 500px) {
  .fab-wrap {
    right: 12px;
    bottom: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    right: max(12px, env(safe-area-inset-right));
    padding-top: 44px;
  }
  .fab-call { padding: 14px 18px; font-size: 1.02rem; gap: 8px; }
  .fab-robber {
    width: 52px;
    bottom: 38px;
    transform: translateX(-50%) translateY(30px);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* footer legal links */
.footer-bottom a { color: #b9a897; text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

h1, h2, h3 {
  font-family: "Oswald", "Segoe UI", sans-serif;
  line-height: 1.15;
  color: var(--brown-dark);
  margin: 0 0 .5em;
  letter-spacing: .4px;
  font-weight: 600;
}
h1 { font-size: clamp(1.95rem, 5vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.28rem; }

p { margin: 0 0 1em; }
a { color: var(--brown); }
a:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.page-hero-links a:focus-visible,
.fab-call:focus-visible,
.header-call:focus-visible {
  outline: 3px solid rgba(200, 85, 27, .45);
  outline-offset: 3px;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

section { padding: 64px 0; }
.section-tan { background: var(--tan); }
.section-brown { background: var(--brown-dark); color: var(--cream); }
.section-brown h2, .section-brown h3 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius);
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  cursor: pointer; border: 2px solid transparent;
  transition: transform .12s var(--ease), background .18s ease, box-shadow .18s ease, color .18s ease, border-color .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn-call { background: var(--accent); color: var(--white); box-shadow: var(--shadow); }
.btn-call:hover { background: #b0490f; box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--brown-dark); border-color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-outline-on-dark { color: #fff; border-color: rgba(255,255,255,.85); }
.btn-outline-on-dark:hover { background: #fff; color: var(--brown-dark); border-color: #fff; }
.section-brown .btn-outline { color: var(--white); border-color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.header-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 20px; max-width: var(--maxw); margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img {
  width: 220px;
  height: auto;
  display: block;
  background: #fff;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  position: relative;
  padding-bottom: 2px;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.header-call {
  background: var(--accent); color: #fff; padding: 10px 16px;
  border-radius: var(--radius); text-decoration: none; font-weight: 700; white-space: nowrap;
  transition: background .15s ease, transform .12s var(--ease);
}
.header-call:hover { background: #b0490f; }
.nav-toggle {
  display: none; background: var(--black); color: #fff; border: none;
  font-size: 1.4rem; padding: 6px 12px; border-radius: 8px; cursor: pointer;
}

/* ---------- Hero ---------- */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background:
    radial-gradient(ellipse 55% 55% at 8% -5%, rgba(255, 255, 255, .06), transparent 52%),
    radial-gradient(ellipse 50% 45% at 95% 100%, rgba(107, 74, 47, .28), transparent 50%),
    linear-gradient(155deg, #0c0c0c 0%, var(--black) 42%, #1c1410 100%);
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -52deg,
      transparent 0 18px,
      rgba(255, 255, 255, .03) 18px 19px
    );
  pointer-events: none;
  z-index: 0;
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: min(62vw, 560px);
  height: 175%;
  top: -38%;
  right: -10%;
  background: linear-gradient(165deg, rgba(255, 255, 255, .1), transparent 58%);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  animation: hero-sheen 11s var(--ease) infinite alternate;
}
.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
  animation: hero-rise .75s var(--ease) both;
}

.hero {
  text-align: center;
  padding: 110px 0 104px;
}
.hero h1 {
  color: #fff;
  max-width: 900px;
  margin-inline: auto;
  text-wrap: balance;
}
.hero p {
  font-size: 1.2rem;
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.88);
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-emergency {
  max-width: 520px;
  margin: 8px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-emergency-label {
  margin: 0 0 6px !important;
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .3px;
  color: #fff !important;
}
.hero-emergency-text {
  margin: 0 auto 18px !important;
  font-size: 1rem !important;
  max-width: 42ch !important;
  color: rgba(255,255,255,.78) !important;
}
.hero .btn-call {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
}

/* ---------- Page heroes (About / Services / Contact) ---------- */
.page-hero {
  padding: 84px 0 76px;
}
.page-hero-about {
  background:
    radial-gradient(ellipse 55% 55% at 12% 0%, rgba(255, 255, 255, .06), transparent 52%),
    radial-gradient(ellipse 55% 55% at 95% 100%, rgba(107, 74, 47, .28), transparent 50%),
    linear-gradient(155deg, #0c0c0c 0%, var(--black) 42%, #1c1410 100%);
}
.page-hero-services {
  background:
    radial-gradient(ellipse 50% 45% at 50% -10%, rgba(255, 255, 255, .05), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 80%, rgba(107, 74, 47, .26), transparent 50%),
    linear-gradient(155deg, #0c0c0c 0%, var(--black) 42%, #1c1410 100%);
}
.page-hero-contact {
  background:
    radial-gradient(ellipse 55% 55% at 90% 10%, rgba(255, 255, 255, .06), transparent 52%),
    radial-gradient(ellipse 50% 50% at 5% 100%, rgba(107, 74, 47, .28), transparent 50%),
    linear-gradient(155deg, #0c0c0c 0%, var(--black) 42%, #1c1410 100%);
}
.page-hero-eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(232, 223, 211, .45);
  font-family: "Oswald", sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #f0c9a8;
}
.page-hero h1 {
  color: #fff;
  max-width: 900px;
  margin-bottom: 14px;
  text-wrap: balance;
}
.page-hero p {
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.88);
}
.page-hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.page-hero-links a {
  display: inline-block;
  padding: 11px 20px;
  border: 2px solid rgba(255,255,255,.55);
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
  transition: background .15s ease, border-color .15s ease, transform .12s var(--ease);
}
.page-hero-links a:hover {
  background: rgba(255,255,255,.14);
  border-color: #fff;
  transform: translateY(-2px);
}
@keyframes hero-sheen {
  from { transform: rotate(18deg) translateX(0); opacity: .8; }
  to { transform: rotate(18deg) translateX(-32px); opacity: 1; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after,
  .page-hero::after { animation: none; }
  .hero .container,
  .page-hero .container { animation: none; }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--tan);
}
.trust .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.trust .badge {
  font-weight: 700;
  color: var(--brown-dark);
  flex: 1 1 160px;
  text-align: center;
  padding: 6px 10px;
}
.trust .badge span { color: var(--accent); margin-right: 4px; }

/* ---------- Grids / cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 26px;
  border-top: 4px solid var(--accent);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
  }
}
.card h3 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }
.card .card-cta {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color .15s ease, letter-spacing .15s ease;
}
.card .card-cta:hover { color: #b0490f; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 40px; }
.section-head p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ---------- Media ---------- */
.media img,
.media .map-frame {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  overflow: hidden;
  background: #d6cfc4;
}
.media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
}
.map-frame iframe,
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.caption a { font-weight: 700; }
.caption { font-size: .9rem; color: var(--gray); margin-top: 8px; text-align: center; }
.caption-spaced { margin-top: 10px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ---------- Reviews ---------- */
.reviews-grid { grid-template-columns: repeat(2, 1fr); }
.review-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.stars { color: var(--accent); font-size: 1.2rem; letter-spacing: 2px; }
.review-quote { font-style: italic; color: #333; margin: 10px 0; }
.review-author { font-weight: 700; color: var(--brown-dark); }

/* ---------- Service detail ---------- */
.service-block {
  padding: 80px 0;
  border-bottom: 1px solid rgba(107, 74, 47, .12);
}
.service-chapter {
  max-width: 980px;
}
.service-kicker {
  margin: 0 0 22px;
  font-family: "Oswald", sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}
.service-diagram {
  margin: 0 0 36px;
  max-width: none;
}
.service-diagram img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--brown-dark);
  border: 1px solid rgba(62, 42, 30, .08);
}
.service-intro {
  max-width: 640px;
  margin: 0 0 36px;
}
.service-intro h2 {
  margin: 0 0 .45em;
  text-wrap: balance;
}
.service-intro > p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #333;
}
.service-meta {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, .75fr);
  gap: 36px 48px;
  align-items: start;
  padding-top: 28px;
  border-top: 1px solid rgba(107, 74, 47, .14);
}
.section-tan .service-meta {
  border-top-color: rgba(62, 42, 30, .16);
}
.service-signs h3,
.service-cadence h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  letter-spacing: .2px;
}
.service-signs-lead {
  margin: 0 0 14px;
  max-width: 56ch;
  color: #333;
}
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plain-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}
.plain-list li {
  position: relative;
  padding: 8px 0 8px 18px;
  color: #333;
  font-size: 1.02rem;
  line-height: 1.4;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
}
.service-cadence {
  padding: 22px 22px 22px 20px;
  background: rgba(62, 42, 30, .04);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.section-tan .service-cadence {
  background: rgba(250, 246, 240, .7);
}
.service-cadence p {
  margin: 0;
  color: #333;
  line-height: 1.55;
}
.service-cadence-cta .btn {
  margin-top: 16px;
}
.photo-band {
  padding: 0;
  border-bottom: 1px solid rgba(107, 74, 47, .12);
}
.photo-band .photo-band-inner {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.photo-band img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 28%;
  background: #d6cfc4;
  margin-inline: auto;
}
.photo-band-copy {
  max-width: 32rem;
}
.photo-band-copy h2 {
  margin-top: 0;
  margin-bottom: .45em;
}
.photo-band-copy p {
  font-size: 1.08rem;
  color: #3a3a3a;
  margin-bottom: 1.25em;
  max-width: 36ch;
}
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.photo-strip img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #d6cfc4;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.service-row-reverse .media { order: 2; }
.service-row-reverse .service-copy { order: 1; }
.service-copy h2 { margin-top: 0; }
.service-copy h3 { margin-top: 28px; margin-bottom: 8px; }
.service-row > .media { position: sticky; top: 90px; }
.steps { list-style: none; counter-reset: step; padding: 0; margin: 16px 0; }
.steps li { counter-increment: step; position: relative; padding: 10px 0 10px 48px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 8px;
  width: 30px; height: 30px; background: var(--accent); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-family: "Oswald", sans-serif;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 8px;
}
.check-list li {
  position: relative;
  padding: 7px 0 7px 28px;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--accent);
  font-weight: 700;
}
.check-list-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 20px;
}
.service-callout {
  background: var(--tan);
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  margin: 20px 0 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #333;
  line-height: 1.55;
}
.section-tan .service-callout {
  background: var(--cream);
}
.service-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
  margin-bottom: 28px;
}
.service-panel {
  background: var(--white);
  padding: 24px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(62, 42, 30, .06);
}
.section-tan .service-panel {
  background: var(--cream);
  border-color: rgba(62, 42, 30, .05);
}
.service-panel h3 { margin-top: 0; }
.panel-note {
  font-size: .92rem;
  color: var(--gray);
  margin: 10px 0 0;
}
.process-title { margin-top: 28px; margin-bottom: 8px; }
.process-title:first-child { margin-top: 8px; }
.steps-wide { max-width: 820px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
  max-width: 920px;
  margin: 0 auto;
}
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(62, 42, 30, .1);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.65) inset, var(--shadow);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s ease;
}
@media (hover: hover) and (pointer: fine) {
  .value-item:hover {
    transform: translateY(-3px);
    border-color: rgba(200, 85, 27, .28);
    box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, var(--shadow-hover);
  }
  .value-item:hover .value-icon {
    background: rgba(200, 85, 27, .12);
    color: var(--accent);
  }
}
.value-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--brown-dark);
  background: rgba(62, 42, 30, .07);
  transition: background .2s ease, color .2s ease;
}
.value-icon svg {
  width: 28px;
  height: 28px;
}
.value-copy h3 {
  margin: 2px 0 8px;
  font-size: 1.28rem;
  letter-spacing: .2px;
}
.value-copy p {
  margin: 0;
  color: #333;
  line-height: 1.55;
  max-width: 36ch;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  text-align: center;
  padding: 96px 0;
  border-top: 4px solid var(--brown-dark);
  background:
    radial-gradient(ellipse 90% 80% at 0% 100%, rgba(200, 85, 27, .55), transparent 55%),
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(250, 246, 240, .14), transparent 50%),
    linear-gradient(128deg, var(--brown-dark) 0%, #5a3d28 36%, #a84516 70%, var(--accent) 100%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -52deg,
      transparent 0 16px,
      rgba(255, 255, 255, .035) 16px 17px
    );
  pointer-events: none;
  z-index: 0;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: min(58vw, 520px);
  height: 180%;
  top: -40%;
  right: -8%;
  background: linear-gradient(165deg, rgba(255, 255, 255, .14), transparent 58%);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
  animation: cta-sheen 10s var(--ease) infinite alternate;
}
.cta-band .container {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.cta-band h2 {
  color: #fff;
  margin: 0 auto .4em;
  max-width: none;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  text-wrap: balance;
}
.cta-band p {
  color: rgba(255, 255, 255, .92);
  margin: 0 auto 1.5em;
  max-width: 40ch;
  font-size: 1.15rem;
}
.cta-band .btn-call {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
  border-color: #fff;
  min-width: 240px;
  padding: 16px 28px;
  font-size: 1.1rem;
  justify-content: center;
}
.cta-band .btn-call:hover {
  background: var(--cream);
  color: #b0490f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}
.cta-band-phone {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}
.cta-band-phone:hover { color: #fff; text-decoration: underline; }
@keyframes cta-sheen {
  from { transform: rotate(18deg) translateX(0); opacity: .85; }
  to { transform: rotate(18deg) translateX(-28px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .cta-band::after { animation: none; }
}

/* ---------- Contact form ---------- */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; }
.form-card { background: var(--white); padding: 32px 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid rgba(62, 42, 30, .06); }
.form-intro { color: var(--gray); margin-top: -4px; margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #cfc5ba; border-radius: 8px; font: inherit; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:not([type="radio"]):not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,85,27,.22);
}
.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.radio-row label {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  white-space: nowrap;
}
.radio-row input[type="radio"] {
  width: 1.1em;
  height: 1.1em;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.error { color: #b00020; font-size: .88rem; margin-top: 4px; display: none; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid select { border-color: #b00020; }
.form-success {
  display: none; background: #e6f4ea; border: 1px solid #34a853; color: #1e5631;
  padding: 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 600;
}
.form-error {
  background: #fdecea; border: 1px solid #d93025; color: #8a1f15;
  padding: 16px; border-radius: 8px; margin-bottom: 16px; font-weight: 600;
}
.form-error a { color: #8a1f15; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 28px; }
.legal-content ul { margin: 10px 0 16px; padding-left: 1.25rem; }
.legal-content li { margin-bottom: 6px; }
.contact-side { background: var(--tan); padding: 26px; border-radius: var(--radius); }
.contact-side a { color: var(--brown-dark); font-weight: 700; }
.contact-side-lead { margin-bottom: 18px; }
.contact-side h3 { margin-top: 8px; }
.contact-side h3:first-child { margin-top: 0; }
.contact-side .media { margin-bottom: 14px; }
.contact-side .media img { box-shadow: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #cbb9a9; padding: 48px 0 96px; }
.site-footer a { color: #f0e6da; text-decoration: none; transition: color .15s ease; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.site-footer h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: .65em;
}
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 32px;
  padding-top: 18px;
  font-size: .85rem;
  text-align: center;
  color: #a89888;
}

/* ---------- FAQ (native accordion) ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  padding: 4px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  color: var(--brown-dark);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.5rem; font-weight: 700; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 0 0 16px; color: #333; }

/* ---------- Map placeholder ---------- */
.map-embed {
  position: relative;
  background: #d6cfc4;
  border: 2px solid var(--brown);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  aspect-ratio: 4 / 3;
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2, .reviews-grid, .values-grid { grid-template-columns: 1fr; }
  .split, .contact-layout, .service-row, .service-panels, .check-list-cols,
  .photo-band .photo-band-inner, .photo-strip,
  .service-meta, .plain-list-cols { grid-template-columns: 1fr; }
  .service-meta { gap: 28px; }
  /* Mobile: always text/copy first, media second */
  .split {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .split > :not(.media) { order: 1; }
  .split > .media { order: 2; width: 100%; }
  .photo-band .photo-band-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .photo-band .photo-band-inner > .photo-band-copy { order: 1; }
  .photo-band .photo-band-inner > img { order: 2; }
  .service-row > .media { position: static; }
  .service-row-reverse .media,
  .service-row-reverse .service-copy { order: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { padding: 56px 0 48px; }
  .hero { padding: 64px 0 56px; }
  .hero p,
  .page-hero p { font-size: 1.05rem; }
  .hero-emergency {
    max-width: 100%;
    padding-top: 18px;
  }
  .hero-emergency-label {
    font-size: 1.2rem !important;
  }
  .hero-emergency .btn-call {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
  .trust .container {
    justify-content: flex-start;
    gap: 12px 20px;
  }
  .page-hero-links { gap: 8px; }
  .page-hero-links a { padding: 8px 12px; font-size: .9rem; }
  .steps li { padding-right: 4px; }
  .service-callout { font-size: .95rem; }
  .value-item {
    padding: 22px 18px;
    gap: 14px;
  }
  .value-copy p { max-width: none; }
}
@media (max-width: 760px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0; border-bottom: 3px solid var(--black);
    box-shadow: 0 8px 16px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-top: 1px solid var(--tan); }
  .nav-links a { display: block; padding: 14px 20px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .header-call { display: none; }
  .logo img { width: 170px; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 44px 0; }
  .service-block { padding: 56px 0; }
  .service-diagram { margin-bottom: 28px; }
  .service-intro { margin-bottom: 28px; }
  .service-meta { padding-top: 24px; }
  .cta-band { padding: 80px 0; }
  .photo-band .photo-band-inner {
    gap: 24px;
    text-align: center;
    padding: 48px 0;
  }
  .photo-band img {
    max-width: 100%;
  }
  .photo-band-copy {
    max-width: 36rem;
    margin-inline: auto;
  }
  .photo-band-copy p {
    max-width: none;
    margin-inline: auto;
  }
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; width: 100%; }
  .radio-row { flex-direction: column; gap: 10px; }
  .check-list-cols { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 120px; }
  .form-card,
  .contact-side { padding: 20px; }
  .btn { padding: 12px 18px; font-size: 1rem; }
  .cta-band .btn { width: 100%; max-width: 400px; justify-content: center; }
  .card:hover,
  .value-item:hover { transform: none; }
  /* Prevent iOS zoom on form focus */
  input,
  select,
  textarea { font-size: 16px; }
  .service-diagram { margin-bottom: 24px; }
  .service-intro { margin-bottom: 28px; max-width: none; }
  .map-frame,
  .map-embed { aspect-ratio: 4 / 3; min-height: 220px; }
}
@media (max-width: 420px) {
  .logo img { width: 148px; }
  .fab-call { padding: 12px 16px; font-size: .98rem; }
  .fab-icon { font-size: 1.2rem; }
  .trust .badge { font-size: .92rem; }
}
