/* =========================================================
   Godley Septic — Stylesheet
   Brand: Warm earth-brown + clay + amber + field-green + cream
   Hyper-local Godley TX residential rural septic specialist
   Modernization techniques:
     - Pill-shaped floating glass navbar with real PNG logo
     - Full-bleed hero photo with warm overlay + animated mesh
     - Floating credentials card + rotated "35+ Years" heritage stamp
     - Scrolling city marquee at hero bottom edge
     - Hill / scallop SVG section dividers (Godley signature shape)
     - Animated color-pulse gradient text (clay → amber → field loop)
     - Testimonial carousel: arrows + dots + autoplay + touch swipe
     - Split Google-review CTA
     - Footer sitemap link row
     - Sticky amber mobile tap-to-call bar
   ========================================================= */

:root {
  /* === Color system === */
  --earth-brown: #6B4F35;
  --earth-brown-deep: #4D381F;
  --earth-brown-soft: #8B6B4D;
  --clay-warm: #C68642;
  --clay-deep: #A56B2E;
  --field-green: #5B7A3E;
  --field-green-deep: #44602C;
  --field-green-soft: #7A9A5C;

  --accent-amber: #D89A3F;
  --accent-amber-bright: #E8B257;
  --accent-amber-deep: #B57D26;

  --alert-red: #B23A2D;

  --charcoal: #2A2520;
  --slate-warm: #6B6258;
  --slate-soft: #998F84;
  --hairline: #E8DFCF;

  --cream: #F5EFE2;
  --cream-soft: #FBF7EE;
  --cream-deep: #EBE0C7;
  --bone: #FAF6EC;
  --white: #FFFFFF;

  --shadow-sm: 0 2px 8px rgba(74, 56, 31, 0.06);
  --shadow-md: 0 12px 32px rgba(74, 56, 31, 0.10);
  --shadow-lg: 0 24px 60px rgba(74, 56, 31, 0.16);
  --shadow-warm: 0 14px 40px rgba(216, 154, 63, 0.22);
  --shadow-nav: 0 8px 32px rgba(74, 56, 31, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container: 1280px;
  --container-narrow: 960px;

  --font-heading: "Fraunces", "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  --pad-section-mobile: 4rem;
  --pad-section-desktop: 7rem;
  --pad-hero-mobile: 6.5rem;
  --pad-hero-desktop: 10rem;

  --nav-h: 52px;
  --nav-inset: 10px;
  --mobile-call-h: 60px;
}
@media (min-width: 768px) {
  :root { --nav-h: 56px; --nav-inset: 14px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: var(--mobile-call-h);
}
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}
img, video, svg { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--earth-brown-deep);
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  font-weight: 600;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 80, "wght" 600;
}
h2 { font-size: clamp(1.7rem, 4.2vw, 2.95rem); font-weight: 600; }
h3 { font-size: clamp(1.18rem, 2.3vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.05em; color: var(--slate-warm); }
p.lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--charcoal);
  line-height: 1.6;
}
a { color: var(--clay-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--earth-brown-deep); }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.4em; color: var(--slate-warm); }

::selection { background: var(--accent-amber); color: var(--earth-brown-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container-narrow { padding: 0 2rem; } }

.section { padding: var(--pad-section-mobile) 0; position: relative; }
@media (min-width: 900px) { .section { padding: var(--pad-section-desktop) 0; } }

.section-header { text-align: center; max-width: 740px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.4em; }
.section-header p { font-size: 1.08rem; }

.bg-cream { background: var(--cream); }
.bg-cream-soft { background: var(--cream-soft); }
.bg-bone { background: var(--bone); }
.bg-earth { background: var(--earth-brown); color: var(--cream); }
.bg-earth h2, .bg-earth h3, .bg-earth h4 { color: var(--cream-soft); }
.bg-earth p, .bg-earth li { color: rgba(245, 239, 226, 0.85); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}
.eyebrow-amber { color: var(--accent-amber-deep); }
.eyebrow-cream { color: var(--accent-amber-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.005em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  background: var(--earth-brown);
  color: var(--cream-soft);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover {
  background: var(--earth-brown-deep);
  color: var(--cream-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-call {
  background: var(--accent-amber);
  color: var(--earth-brown-deep);
  font-weight: 700;
}
.btn-call:hover {
  background: var(--accent-amber-deep);
  color: var(--cream-soft);
  box-shadow: var(--shadow-warm);
}
.btn-alert {
  background: var(--alert-red);
  color: var(--cream-soft);
}
.btn-alert:hover { background: #91291f; color: var(--cream-soft); }
.btn-ghost {
  background: transparent;
  color: var(--earth-brown);
  border-color: var(--earth-brown);
}
.btn-ghost:hover { background: var(--earth-brown); color: var(--cream-soft); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream-soft);
  border-color: rgba(245, 239, 226, 0.45);
}
.btn-ghost-light:hover { background: var(--cream-soft); color: var(--earth-brown-deep); border-color: var(--cream-soft); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn svg { transition: transform var(--transition); }

/* ---------- Pill Floating Glassmorphism Navbar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--nav-inset);
  transition: padding var(--transition);
  pointer-events: none;
}
.site-header.scrolled { padding-top: 6px; padding-bottom: 6px; }
.nav-shell {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 0.4rem 0 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(251, 247, 238, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(216, 154, 63, 0.22);
  border-radius: 999px;
  box-shadow: var(--shadow-nav);
  transition: all var(--transition);
}
@media (min-width: 768px) {
  .nav-shell { padding: 0 0.5rem 0 0.9rem; gap: 1rem; }
}
.site-header.scrolled .nav-shell {
  background: rgba(77, 56, 31, 0.96);
  border-color: rgba(216, 154, 63, 0.4);
}
.site-header.scrolled .nav-menu a { color: rgba(245, 239, 226, 0.92); }
.site-header.scrolled .nav-menu a:hover { color: var(--accent-amber-bright); }
.site-header.scrolled .nav-toggle span { background: var(--cream-soft); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
  padding: 0.15rem 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}
@media (min-width: 768px) {
  .nav-logo-img { height: 42px; }
}
/* Two-variant logo: light wordmark on dark scrolled nav, dark wordmark on glass nav */
.nav-logo .nav-logo-img-dark { display: none; }
.site-header.scrolled .nav-logo-img-light { display: none; }
.site-header.scrolled .nav-logo-img-dark { display: block; }

.nav-menu {
  display: none;
  list-style: none;
  gap: 1.85rem;
  padding: 0;
  margin: 0;
}
@media (min-width: 1024px) {
  .nav-menu { display: flex; align-items: center; }
}
.nav-menu li { margin: 0; position: relative; }
.nav-menu a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--earth-brown-deep);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--clay-deep); }
.nav-menu a.active { color: var(--clay-deep); }

.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 6px;
  transition: transform var(--transition);
}
.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 260px;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--earth-brown-deep) !important;
}
.dropdown a:hover { background: var(--cream); color: var(--clay-deep) !important; }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-amber);
  color: var(--earth-brown-deep);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-call:hover {
  background: var(--accent-amber-deep);
  color: var(--cream-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-warm);
}
.nav-call .phone-icon { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 600px) {
  .nav-call span.call-text { display: none; }
  .nav-call { padding: 0.65rem 0.75rem; }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  background: transparent;
  border: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--earth-brown-deep);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  height: 100vh;
  background: var(--earth-brown-deep);
  z-index: 99;
  padding: calc(var(--nav-h) + var(--nav-inset) + 1.5rem) 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}
.mobile-drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(216, 154, 63, 0.28), transparent 60%);
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0 0 2rem; position: relative; }
.mobile-drawer ul li { border-bottom: 1px solid rgba(245, 239, 226, 0.08); }
.mobile-drawer ul a {
  display: block;
  padding: 1.1rem 0;
  color: var(--cream-soft);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.2rem;
  text-decoration: none;
}
.mobile-drawer ul a:hover { color: var(--accent-amber-bright); }
.mobile-drawer .sub { padding-left: 1.25rem; font-size: 1rem; opacity: 0.85; }
.mobile-drawer .drawer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--accent-amber);
  color: var(--earth-brown-deep);
  padding: 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  position: relative;
}
body.drawer-open { overflow: hidden; }

/* ---------- HERO with full-bleed photo ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  padding: var(--pad-hero-mobile) 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--earth-brown-deep);
  color: var(--cream-soft);
  isolation: isolate;
}
@media (min-width: 900px) {
  .hero { padding: var(--pad-hero-desktop) 0 5rem; min-height: 90svh; }
}
.hero-sm {
  min-height: 56svh;
  padding: calc(var(--pad-hero-mobile) + 0.5rem) 0 3rem;
}
@media (min-width: 900px) {
  .hero-sm { min-height: 52svh; padding: calc(var(--pad-hero-desktop) - 1rem) 0 3.5rem; }
}

/* Hero background photo with subtle ken-burns zoom */
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: 0;
  transform: scale(1.02);
  animation: heroZoom 24s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1.1); } }

/* Warm gradient overlay for legibility — earth tones, not cool blue */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(77, 56, 31, 0.88) 0%, rgba(77, 56, 31, 0.50) 45%, rgba(38, 26, 15, 0.65) 100%),
    linear-gradient(180deg, rgba(38, 26, 15, 0) 50%, rgba(38, 26, 15, 0.78) 100%);
}

/* Animated amber + field-green mesh accents over the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(50% 60% at 12% 18%, rgba(216, 154, 63, 0.32), transparent 60%),
    radial-gradient(45% 60% at 92% 80%, rgba(91, 122, 62, 0.26), transparent 65%);
  animation: meshDrift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshDrift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-2%, 2%) scale(1.08); }
}
.hero .container { position: relative; z-index: 3; }

/* Hero scrolling marquee — service area names */
.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0.7rem 0;
  background: linear-gradient(90deg, rgba(216, 154, 63, 0.95), rgba(198, 134, 66, 0.85));
  border-top: 1px solid rgba(245, 239, 226, 0.18);
  overflow: hidden;
}
.hero-strip-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: stripScroll 36s linear infinite;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--earth-brown-deep);
}
.hero-strip-track span { display: inline-flex; align-items: center; gap: 1.5rem; }
.hero-strip-track span::after {
  content: "●";
  font-size: 0.55rem;
  opacity: 0.6;
}
@keyframes stripScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-strip-track { animation: none; }
  .hero-photo { animation: none; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245, 239, 226, 0.1);
  border: 1px solid rgba(216, 154, 63, 0.32);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: clamp(0.58rem, 1.55vw, 0.74rem);
  font-weight: 600;
  letter-spacing: clamp(0.04em, 0.4vw, 0.14em);
  text-transform: uppercase;
  color: var(--cream-soft);
  margin-bottom: 1.4rem;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .hero-eyebrow { white-space: normal; line-height: 1.4; padding: 0.4rem 0.8rem; }
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber-bright);
  box-shadow: 0 0 0 4px rgba(232, 178, 87, 0.28);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 178, 87, 0.28); }
  50% { box-shadow: 0 0 0 7px rgba(232, 178, 87, 0.05); }
}

.hero h1 {
  color: var(--cream-soft);
  max-width: 19ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.4rem, 6.5vw, 4.7rem);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 90, "wght" 500;
}
.hero p.lead {
  color: rgba(245, 239, 226, 0.9);
  max-width: 56ch;
  margin-bottom: 2.2rem;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
  font-size: 0.85rem;
  color: rgba(245, 239, 226, 0.78);
  align-items: center;
}
.hero-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  letter-spacing: 0.03em;
}
.hero-trust .trust-item svg { width: 16px; height: 16px; fill: var(--accent-amber-bright); }

/* ---------- Floating credentials card (desktop only) + heritage stamp ---------- */
.hero-creds { display: none; }
@media (min-width: 1100px) {
  .hero-creds {
    display: block;
    position: absolute;
    z-index: 4;
    right: max(2.5rem, calc((100% - 1280px) / 2 + 2rem));
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    padding: 1.55rem 1.4rem 1.65rem;
    background: rgba(245, 239, 226, 0.10);
    border: 1px solid rgba(216, 154, 63, 0.30);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(38, 26, 15, 0.48), inset 0 1px 0 rgba(245,239,226,0.18);
    color: var(--cream-soft);
  }
}
@media (min-width: 1280px) {
  .hero-creds { width: 340px; right: max(3rem, calc((100% - 1280px) / 2 + 1rem)); }
}
.hero-creds-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.95rem;
  margin-bottom: 0.95rem;
  border-bottom: 1px dashed rgba(245, 239, 226, 0.25);
}
.hc-eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--accent-amber-bright);
}
.hc-since {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.72);
}
.hero-creds-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.hero-creds-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(245, 239, 226, 0.92);
}
.hc-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 178, 87, 0.18);
  border: 1px solid rgba(232, 178, 87, 0.50);
  margin-top: 1px;
}
.hc-icon svg { width: 13px; height: 13px; fill: var(--accent-amber-bright); }
.hc-label { display: flex; flex-direction: column; gap: 1px; }
.hc-label strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 226, 0.68);
}
/* Heritage stamp postmark — sized to fit the Fraunces wordmark + Inter label */
.hero-creds-stamp {
  position: absolute;
  top: -30px;
  right: -22px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background: var(--accent-amber);
  border: 3px solid var(--cream-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--earth-brown-deep);
  box-shadow: 0 12px 30px rgba(216, 154, 63, 0.55);
  transform: rotate(-8deg);
  font-family: var(--font-heading);
  padding: 4px 6px;
}
.hcs-num {
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
}
.hcs-num i {
  font-style: normal;
  font-size: 1rem;
  margin-top: 2px;
  margin-left: 1px;
}
.hcs-label {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.15;
}

/* Color-pulse animated gradient text — warm Godley palette */
.gradient-text {
  background: linear-gradient(110deg,
    var(--clay-warm) 0%,
    var(--accent-amber-bright) 20%,
    var(--field-green-soft) 42%,
    var(--accent-amber-bright) 62%,
    var(--clay-warm) 84%,
    var(--accent-amber-bright) 100%);
  background-size: 280% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientPulse 8s ease-in-out infinite;
  display: inline-block;
  font-style: italic;
}
@keyframes gradientPulse {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero entrance */
.hero .anim-up { opacity: 0; transform: translateY(28px); animation: heroUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero .anim-up.d1 { animation-delay: 0.1s; }
.hero .anim-up.d2 { animation-delay: 0.28s; }
.hero .anim-up.d3 { animation-delay: 0.46s; }
.hero .anim-up.d4 { animation-delay: 0.64s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- Hill / scallop divider (Godley signature) ---------- */
.hill-divider {
  display: block;
  width: 100%;
  height: 70px;
  margin-top: -1px;
  margin-bottom: -1px;
}
@media (min-width: 768px) { .hill-divider { height: 100px; } }
.hill-divider svg { display: block; width: 100%; height: 100%; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--cream-soft);
  padding: 2.75rem 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-bar .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-bar .grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-bar .num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  color: var(--earth-brown-deep);
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
  letter-spacing: -0.02em;
  font-style: italic;
}
.trust-bar .num .plus { color: var(--clay-deep); }
.trust-bar .label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-warm);
}

/* ---------- "Why Godley owners" pill grid ---------- */
.why-godley-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .why-godley-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-godley-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.why-godley-card {
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.why-godley-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay-warm);
}
.why-godley-card .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(216, 154, 63, 0.18), rgba(91, 122, 62, 0.15));
  display: flex; align-items: center; justify-content: center;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}
.why-godley-card .ic svg { width: 22px; height: 22px; fill: currentColor; }
.why-godley-card h3 {
  font-size: 1.12rem; margin-bottom: 0.5rem;
  font-weight: 600; letter-spacing: -0.005em;
}
.why-godley-card p {
  font-size: 0.92rem; margin: 0; line-height: 1.6;
  color: var(--slate-warm);
}

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.service-card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clay-warm);
}
.service-card .sc-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-brown) 0%, var(--clay-warm) 100%);
}
.service-card .sc-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .sc-media img { transform: scale(1.06); }
.service-card .sc-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(77, 56, 31, 0.4) 100%);
}
.service-card .sc-icon {
  position: absolute;
  top: 1rem; left: 1rem;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(251, 247, 238, 0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--earth-brown-deep);
  z-index: 2;
}
.service-card .sc-icon svg { width: 22px; height: 22px; }
.service-card .sc-body { padding: 1.65rem 1.6rem 1.7rem; }
.service-card .sc-body h3 {
  color: var(--earth-brown-deep);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.service-card .sc-body p {
  color: var(--slate-warm);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.service-card .sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--clay-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.service-card .sc-link::after {
  content: "→";
  transition: transform var(--transition);
}
.service-card:hover .sc-link::after { transform: translateX(4px); }

/* ---------- About / Dwain band ---------- */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .split-2.weight-r > :first-child { order: 2; }
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--earth-brown), var(--clay-warm));
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.8s ease;
}
.about-media:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.about-badge .b-num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 2.1rem;
  color: var(--clay-deep);
  line-height: 1;
}
.about-badge .b-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--slate-warm);
  line-height: 1.3;
  font-weight: 500;
}

.about-content .eyebrow { color: var(--clay-deep); }
.about-content h2 { margin-bottom: 1rem; }
.about-content .signature {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  color: var(--earth-brown-deep);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}
.about-content .signature span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--slate-warm);
  margin-top: 0.2rem;
  letter-spacing: 0.04em;
}

/* ---------- Godley Local section ---------- */
.godley-local {
  background: var(--earth-brown);
  color: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.godley-local::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 70% at 12% 22%, rgba(216, 154, 63, 0.3), transparent 65%),
    radial-gradient(50% 80% at 88% 78%, rgba(91, 122, 62, 0.28), transparent 65%);
  pointer-events: none;
}
.godley-local > .container { position: relative; z-index: 1; }
.godley-local h2 { color: var(--cream-soft); }
.godley-local p { color: rgba(245, 239, 226, 0.85); }
.godley-local-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .godley-local-grid { grid-template-columns: 1.05fr 1fr; gap: 4rem; }
}
.godley-local-text .lead {
  color: rgba(245, 239, 226, 0.95);
  font-size: 1.18rem;
}
.godley-local-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.godley-local-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.9rem;
  color: rgba(245, 239, 226, 0.92);
  font-size: 1rem;
  line-height: 1.55;
}
.godley-local-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 0 4px rgba(216, 154, 63, 0.22);
}
.godley-stat-stack { display: grid; gap: 1rem; }
.godley-stat-card {
  background: rgba(251, 247, 238, 0.08);
  border: 1px solid rgba(216, 154, 63, 0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.5rem;
  backdrop-filter: blur(4px);
}
.godley-stat-card .stat-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--accent-amber-bright);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.godley-stat-card .stat-label {
  font-family: var(--font-body);
  color: rgba(245, 239, 226, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.45rem;
  position: relative;
}
.process-step .num {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 2rem;
  color: var(--clay-warm);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; margin: 0; line-height: 1.55; color: var(--slate-warm); }

/* ---------- Service area band ---------- */
.area-band {
  background: var(--earth-brown);
  color: var(--cream-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.area-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 70% at 15% 30%, rgba(216, 154, 63, 0.22), transparent 60%),
    radial-gradient(50% 70% at 85% 70%, rgba(91, 122, 62, 0.32), transparent 60%);
}
.area-band .container { position: relative; }
.area-band h2 { color: var(--cream-soft); }
.area-band p { color: rgba(245, 239, 226, 0.82); max-width: 620px; margin: 0 auto 1.5rem; }
.area-cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.5rem auto 2rem;
  max-width: 920px;
}
@media (min-width: 640px) {
  .area-cities { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.65rem; }
}
.area-cities .chip {
  background: rgba(245, 239, 226, 0.08);
  border: 1px solid rgba(245, 239, 226, 0.16);
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream-soft);
  text-align: center;
  transition: all var(--transition);
}
@media (min-width: 768px) {
  .area-cities .chip { font-size: 0.88rem; padding: 0.6rem 0.85rem; }
}
.area-cities .chip:hover {
  background: rgba(216, 154, 63, 0.22);
  border-color: rgba(216, 154, 63, 0.55);
}
.area-cities .chip-primary {
  background: var(--accent-amber);
  color: var(--earth-brown-deep);
  border-color: var(--accent-amber);
  font-weight: 700;
}

/* ---------- Testimonial slider ---------- */
.testimonial-slider {
  position: relative;
  max-width: 1080px;
  margin: 0 auto 2rem;
  padding: 0 0 2.5rem;
}
.ts-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.ts-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.ts-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 2.4rem 1.75rem 2rem;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .ts-card { padding: 2.8rem 3rem 2.4rem; }
}
.ts-stars {
  color: var(--accent-amber);
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}
.ts-quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
  line-height: 1.55;
  color: var(--earth-brown-deep);
  margin: 0;
  position: relative;
  padding-left: 1.4rem;
}
.ts-quote::before {
  content: "\201C";
  position: absolute;
  left: -0.4rem; top: -0.6rem;
  font-size: 3.5rem;
  color: var(--clay-warm);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.6;
}
.ts-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 0.4rem;
}
.ts-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--earth-brown), var(--clay-warm));
  color: var(--cream-soft);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ts-meta { line-height: 1.3; }
.ts-meta strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.ts-meta span {
  font-size: 0.82rem;
  color: var(--slate-warm);
}
.ts-arrow {
  position: absolute;
  top: calc(50% - 2.5rem);
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--earth-brown-deep);
  transition: all var(--transition);
  z-index: 4;
}
.ts-arrow:hover {
  background: var(--accent-amber);
  border-color: var(--accent-amber);
  color: var(--earth-brown-deep);
}
.ts-arrow svg { width: 22px; height: 22px; fill: currentColor; }
.ts-prev { left: -22px; }
.ts-next { right: -22px; }
@media (min-width: 900px) { .ts-arrow { display: inline-flex; } }
.ts-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.ts-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(77, 56, 31, 0.20);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all var(--transition);
}
.ts-dot.is-active {
  background: var(--accent-amber);
  width: 28px;
  border-radius: 999px;
}

/* Google review CTA below slider */
.review-cta {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .review-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 2rem 1.5rem 2.25rem;
  }
}
.rc-stars { color: var(--accent-amber); letter-spacing: 0.14em; font-size: 1.05rem; margin-bottom: 0.35rem; }
.rc-text h3 { font-size: 1.2rem; margin-bottom: 0.25rem; color: var(--earth-brown-deep); }
.rc-text p { margin: 0; font-size: 0.92rem; color: var(--slate-warm); line-height: 1.5; }
.review-cta .btn { flex-shrink: 0; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0;
}
.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--earth-brown-deep);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--clay-deep);
  line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary { background: var(--cream); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate-warm);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-brown-deep) 0%, var(--earth-brown) 100%);
  color: var(--cream-soft);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 80% at 0% 0%, rgba(216, 154, 63, 0.42), transparent 60%),
    radial-gradient(55% 90% at 100% 100%, rgba(198, 134, 66, 0.32), transparent 60%),
    radial-gradient(75% 60% at 50% 50%, rgba(91, 122, 62, 0.22), transparent 70%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .eyebrow { color: var(--accent-amber-bright); }
.cta-band h2 {
  color: var(--cream-soft);
  margin-bottom: 1.25rem;
  font-size: clamp(1.95rem, 4.5vw, 3.4rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p { color: rgba(245, 239, 226, 0.86); max-width: 560px; margin: 0 auto 2rem; font-size: 1.08rem; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2C2014;
  color: rgba(245, 239, 226, 0.72);
  padding: 4rem 0 1.5rem;
  font-size: 0.92rem;
}
.site-footer h4 {
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 239, 226, 0.08);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; }
}
.footer-brand .footer-logo {
  width: auto;
  height: 78px;
  display: block;
  margin-bottom: 1rem;
  background: rgba(245, 239, 226, 0.96);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.85rem;
}
.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--cream-soft);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; color: rgba(245, 239, 226, 0.7); }
.footer-brand .licenses {
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.55);
  line-height: 1.6;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 239, 226, 0.08);
}
.footer-brand .licenses strong { color: rgba(245, 239, 226, 0.82); display: block; margin-bottom: 4px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  color: rgba(245, 239, 226, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent-amber-bright); }

.footer-contact .big-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-soft);
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 1.45rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.footer-contact .big-phone:hover { color: var(--accent-amber-bright); }
.footer-contact .hours { color: rgba(245, 239, 226, 0.65); font-size: 0.85rem; }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245, 239, 226, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-soft);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent-amber); color: var(--earth-brown-deep); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-sitemap {
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
  border-bottom: 1px solid rgba(245, 239, 226, 0.06);
}
.footer-sitemap a {
  color: rgba(245, 239, 226, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-sitemap a:hover { color: var(--accent-amber-bright); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.5);
}

/* ---------- Sticky mobile call bar (amber) ---------- */
.mobile-call-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  height: var(--mobile-call-h);
  background: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 95;
  box-shadow: 0 -6px 22px rgba(77, 56, 31, 0.22);
}
.mobile-call-bar a {
  color: var(--earth-brown-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.01em;
}
.mobile-call-bar svg { width: 20px; height: 20px; fill: currentColor; }
@media (min-width: 900px) { .mobile-call-bar { display: none; } }

/* ---------- Generic content blocks ---------- */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.bullet-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--charcoal);
  font-size: 1rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45rem;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(216, 154, 63, 0.18);
  border: 1.5px solid var(--clay-warm);
}
.bullet-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 0.7rem;
  width: 8px; height: 5px;
  border-left: 2px solid var(--clay-deep);
  border-bottom: 2px solid var(--clay-deep);
  transform: rotate(-45deg);
}

.service-content { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .service-content { grid-template-columns: 2fr 1fr; gap: 4rem; } }
.service-content h2 { margin-top: 2rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content h3 { margin-top: 1.5rem; font-size: 1.25rem; }
.service-content p { color: var(--charcoal); }

.sidebar-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  position: sticky;
  top: calc(var(--nav-h) + var(--nav-inset) + 1rem);
}
.sidebar-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.sidebar-card .phone-big {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  font-size: 1.75rem;
  color: var(--earth-brown-deep);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.sidebar-card .phone-big:hover { color: var(--clay-deep); }
.sidebar-card .meta { font-size: 0.85rem; color: var(--slate-warm); margin-bottom: 1.25rem; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-card .licenses {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.78rem;
  color: var(--slate-warm);
  line-height: 1.7;
}

/* Pumping schedule table */
.schedule-table-wrap {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.schedule-table thead {
  background: var(--earth-brown);
  color: var(--cream-soft);
}
.schedule-table th {
  padding: 1rem 1.1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.schedule-table th:not(:first-child) { text-align: center; }
.schedule-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--hairline);
  color: var(--charcoal);
}
.schedule-table td:not(:first-child) { text-align: center; color: var(--slate-warm); }
.schedule-table td:first-child {
  font-weight: 600;
  color: var(--earth-brown-deep);
  background: var(--cream);
}
.schedule-table tr:last-child td { border-bottom: 0; }
@media (max-width: 600px) {
  .schedule-table { font-size: 0.85rem; }
  .schedule-table th, .schedule-table td { padding: 0.7rem 0.55rem; }
}

/* Related card cross-links */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1rem 1.15rem;
  text-decoration: none;
  color: var(--charcoal);
  transition: all var(--transition);
}
.related-card:hover {
  border-color: var(--clay-warm);
  transform: translateY(-3px);
  color: var(--earth-brown-deep);
}
.related-card .ic {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(216, 154, 63, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--clay-deep);
  flex-shrink: 0;
}
.related-card .ic svg { width: 18px; height: 18px; fill: currentColor; }
.related-card .text { line-height: 1.3; }
.related-card .text strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--earth-brown-deep);
}
.related-card .text span { font-size: 0.78rem; color: var(--slate-warm); }

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1.2fr 1fr; gap: 3.5rem; } }

.contact-info-card {
  background: var(--earth-brown);
  color: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 100% at 100% 0%, rgba(216, 154, 63, 0.35), transparent 60%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h2 { color: var(--cream-soft); }
.contact-info-card p { color: rgba(245, 239, 226, 0.82); }
.contact-info-card .contact-row {
  display: flex;
  gap: 0.9rem;
  margin: 1.5rem 0;
  align-items: flex-start;
}
.contact-info-card .contact-row .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(245, 239, 226, 0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .contact-row .ic svg { width: 18px; height: 18px; fill: var(--accent-amber-bright); }
.contact-info-card .contact-row .text strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--cream-soft);
  margin-bottom: 0.15rem;
  font-size: 0.92rem;
}
.contact-info-card .contact-row .text a,
.contact-info-card .contact-row .text span {
  color: rgba(245, 239, 226, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
}
.contact-info-card .contact-row .text a:hover { color: var(--accent-amber-bright); }
.contact-info-card .licenses {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 239, 226, 0.12);
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.65);
  line-height: 1.7;
}

.contact-form {
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.85rem;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 1.1rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-row label,
.form-grid-2 label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--earth-brown-deep);
  margin-bottom: 0.4rem;
}
.form-row input,
.form-row select,
.form-row textarea,
.form-grid-2 input,
.form-grid-2 select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--bone);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.form-grid-2 input:focus,
.form-grid-2 select:focus {
  outline: none;
  border-color: var(--clay-warm);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(198, 134, 66, 0.16);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 1.05rem 1.5rem; }
.form-msg { margin-top: 1rem; font-size: 0.88rem; min-height: 1.5em; }
.form-msg.success { color: var(--field-green-deep); }
.form-msg.error { color: var(--alert-red); }

/* ---------- GHL form embed wrapper ---------- */
.ghl-form-wrap {
  background: var(--cream-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.ghl-form-wrap iframe {
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
  background: var(--cream-soft);
  border-radius: var(--radius-md);
}

/* ---------- Map ---------- */
.map-card {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2.5rem;
}
.map-card iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .gradient-text { animation: none; background-position: 0 50%; }
}

/* ---------- Utility ---------- */
.mt-1 { margin-top: 0.6rem; } .mt-2 { margin-top: 1.2rem; } .mt-3 { margin-top: 2rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
