/* ============================================
   SPRING HILL TREE REMOVAL — Design System
   Edit phone, colors, fonts ONE place: :root below
   ============================================ */

:root {
  /* ⬇⬇⬇ EDIT PHONE HERE — every page updates ⬇⬇⬇ */
  --phone-display: "(813) 856-1229";
  --phone-link: "+18138561229";
  --sms-link: "+18138561229";

  /* ⬇⬇⬇ EDIT BUSINESS INFO HERE ⬇⬇⬇ */
  --business-email: "hello@springhilltreeremoval.com";
  --business-address: "Spring Hill, FL 34608";

  /* ⬇⬇⬇ EDIT COLORS HERE ⬇⬇⬇ */
  --forest-deep: #0f2417;
  --forest-rich: #1a3a26;
  --forest-mid: #2d5a3d;
  --moss: #4a7c59;
  --bark: #3d2817;
  --bark-warm: #5c3d24;
  --cream: #f5efe1;
  --cream-warm: #ede4cf;
  --paper: #faf6ec;
  --gold: #c69749;
  --gold-bright: #d4a85a;
  --rust: #b8512d;
  --rust-bright: #d4602f;
  --ink: #0a0a0a;
  --stone: #8a8377;
  --line: rgba(15, 36, 23, 0.12);

  --display: 'Fraunces', Georgia, serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--forest-deep);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.display { font-family: var(--display); font-optical-sizing: auto; }
.mono { font-family: var(--mono); }
img { max-width: 100%; height: auto; display: block; }

/* Phone text replacement */
.phone-text::after { content: var(--phone-display); }

/* ============ UTILITY BAR ============ */
.utility-bar {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--forest-rich);
}
.utility-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.utility-left { display: flex; align-items: center; gap: 24px; }
.utility-left span { display: flex; align-items: center; gap: 8px; opacity: 0.85; }
.utility-left svg { width: 14px; height: 14px; }
.utility-right { display: flex; align-items: center; gap: 20px; }
.utility-right a { color: var(--gold-bright); text-decoration: none; font-weight: 500; }
.utility-right a:hover { color: var(--cream); }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2s infinite;
  display: inline-block; margin-right: 8px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ============ NAVIGATION ============ */
.nav {
  background: rgba(250, 246, 236, 0.95);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo picture { display: block; line-height: 0; }
.logo img { display: block; width: 240px; height: auto; max-height: 68px; object-fit: contain; }

/* Footer logo — image is dark green, so invert to a cream-friendly tone on the dark footer */
.footer-logo img {
  width: 220px; max-height: 64px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(8%) saturate(420%) hue-rotate(355deg) brightness(99%) contrast(94%);
}

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  color: var(--forest-deep); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  position: relative; padding: 8px 0;
  transition: color 0.2s;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--bark-warm); }

/* Dropdowns */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 6px;
}
.nav-dropdown-trigger .arrow {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s;
}
.nav-dropdown.open .nav-dropdown-trigger .arrow {
  transform: rotate(-135deg) translate(-1px, -1px);
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 20px 60px -10px rgba(15, 36, 23, 0.25);
  min-width: 280px; padding: 12px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 110;
}
.nav-dropdown-menu::before {
  content: ''; position: absolute;
  top: -8px; left: 0; right: 0; height: 8px;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: block; padding: 12px 14px;
  color: var(--forest-deep);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-radius: 2px;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-item:hover, .nav-dropdown-item.active {
  background: var(--forest-deep); color: var(--cream);
}
.nav-dropdown-item .sub {
  display: block; font-size: 11px; opacity: 0.6; font-weight: 400; margin-top: 2px;
}

.nav-cta {
  background: var(--rust); color: var(--cream) !important;
  padding: 12px 24px; border-radius: 2px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-cta:hover { background: var(--rust-bright); color: var(--cream) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  z-index: 110;
}
.nav-toggle svg { width: 28px; height: 28px; color: var(--forest-deep); }

/* ============ MOBILE NAV DRAWER ============ */
.mobile-nav {
  position: fixed; inset: 0;
  transform: translateX(100%);
  background: var(--forest-deep);
  color: var(--cream);
  padding: 88px 28px 28px;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 105;
}
.mobile-nav.open { transform: translateX(0); }
body.nav-open { overflow: hidden; }

.mobile-nav-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--cream);
}
.mobile-nav-close svg { width: 28px; height: 28px; }
.mobile-nav-list { list-style: none; }
.mobile-nav-list > li { border-bottom: 1px solid rgba(245, 239, 225, 0.1); }
.mobile-nav-list > li > a,
.mobile-nav-grouptrigger {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 18px 0;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 500;
  letter-spacing: -0.01em;
  background: none; border: none; cursor: pointer; text-align: left;
}
.mobile-nav-grouptrigger .plus {
  width: 20px; height: 20px; position: relative; flex-shrink: 0;
}
.mobile-nav-grouptrigger .plus::before,
.mobile-nav-grouptrigger .plus::after {
  content: ''; position: absolute; background: var(--gold-bright);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.mobile-nav-grouptrigger .plus::before { width: 14px; height: 2px; }
.mobile-nav-grouptrigger .plus::after { width: 2px; height: 14px; transition: transform 0.25s; }
.mobile-nav-group.open .mobile-nav-grouptrigger .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.mobile-nav-sublist {
  list-style: none;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-group.open .mobile-nav-sublist { max-height: 700px; }
.mobile-nav-sublist a {
  display: block;
  padding: 12px 16px 12px 16px;
  color: rgba(245, 239, 225, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  border-left: 2px solid var(--gold);
  margin-left: 4px;
  margin-bottom: 4px;
}
.mobile-nav-sublist a:hover { color: var(--cream); }
.mobile-nav-sublist li:last-child a { margin-bottom: 12px; }

.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  margin-top: 32px;
  background: var(--rust); color: var(--cream);
  padding: 18px;
  text-decoration: none;
  font-weight: 600; letter-spacing: 0.02em;
  border-radius: 2px;
}
.mobile-nav-phone {
  display: block; text-align: center;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 600;
  color: var(--gold-bright); text-decoration: none;
}

/* ============ STICKY MOBILE CALL BAR ============ */
.call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--rust); color: var(--cream);
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600; font-size: 16px;
  text-align: center;
  z-index: 99;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.call-bar svg { width: 18px; height: 18px; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.breadcrumbs-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bark-warm);
}
.breadcrumbs a { color: var(--bark-warm); text-decoration: none; }
.breadcrumbs a:hover { color: var(--forest-deep); }
.breadcrumbs .sep { margin: 0 10px; opacity: 0.5; }
.breadcrumbs .current { color: var(--forest-deep); font-weight: 600; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; text-decoration: none;
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  border-radius: 2px; border: none; cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  min-height: 48px;
}
.btn-primary {
  background: var(--rust); color: var(--cream);
  box-shadow: 0 8px 30px rgba(184, 81, 45, 0.35);
}
.btn-primary:hover {
  background: var(--rust-bright); transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 81, 45, 0.5);
  color: var(--cream);
}
.btn-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(245, 239, 225, 0.35);
}
.btn-secondary:hover {
  background: var(--cream); color: var(--forest-deep); border-color: var(--cream);
}
.btn-dark {
  background: var(--forest-deep); color: var(--cream);
}
.btn-dark:hover { background: var(--forest-rich); color: var(--cream); }
.btn svg { width: 18px; height: 18px; }

/* ============ COMMON SECTION STYLES ============ */
section { position: relative; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--bark-warm); font-weight: 600; margin-bottom: 24px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--bark-warm); }
.section-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--forest-deep); margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--bark-warm); }
.section-lead {
  font-size: 1.1rem; line-height: 1.6; color: var(--bark);
  max-width: 640px; font-weight: 300;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-rich) 55%, var(--bark) 100%);
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-photo {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(15,36,23,0.92) 0%, rgba(26,58,38,0.85) 50%, rgba(61,40,23,0.88) 100%),
    url('assets/photos/arborist-climbing-oak-spring-hill-fl.webp');
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-deco {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.18; z-index: 1;
}
.hero-deco svg { width: 100%; height: 100%; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.5;
}
.hero::after {
  content: ''; position: absolute;
  top: -20%; right: -10%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(212, 168, 90, 0.18) 0%, transparent 65%);
  pointer-events: none; z-index: 1;
}
.hero-inner {
  max-width: 1400px; margin: 0 auto; padding: 80px 32px;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  align-items: center; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 32px; font-weight: 500;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.98; letter-spacing: -0.025em;
  margin-bottom: 28px; color: var(--cream);
}
.hero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.hero h1 .underline-word { position: relative; display: inline-block; }
.hero h1 .underline-word::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.08em;
  height: 0.12em; background: var(--rust); z-index: -1;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55; color: rgba(245, 239, 225, 0.82);
  max-width: 580px; margin-bottom: 40px; font-weight: 300;
}
.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
}
.hero-trust {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(245, 239, 225, 0.15);
}
.trust-item { display: flex; flex-direction: column; }
.trust-item .num {
  font-family: var(--display); font-size: 2.5rem;
  font-weight: 500; color: var(--gold-bright); line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item .label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245, 239, 225, 0.6); margin-top: 6px;
}

/* Subpage hero variant */
.subhero {
  position: relative; padding: 100px 0;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-rich) 100%);
  color: var(--cream); overflow: hidden;
}
.subhero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.3;
}
.subhero-inner { position: relative; z-index: 2; max-width: 900px; }
.subhero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02; letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.subhero h1 em { font-style: italic; color: var(--gold-bright); font-weight: 400; }
.subhero p {
  font-size: 1.15rem; line-height: 1.55;
  color: rgba(245, 239, 225, 0.82); max-width: 700px;
  margin-bottom: 32px;
}
.subhero .hero-cta-row { margin-bottom: 0; }

/* ============ QUOTE CARD / FORM ============ */
.quote-card {
  background: var(--cream); color: var(--forest-deep);
  padding: 40px; border-radius: 4px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  position: relative;
  border: 1px solid rgba(15, 36, 23, 0.08);
}
.quote-card .badge-text {
  position: absolute; top: -16px; left: 40px;
  background: var(--rust); color: var(--cream);
  padding: 8px 16px; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}
.quote-card h3 {
  font-family: var(--display); font-size: 1.9rem;
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 8px; margin-top: 8px;
}
.quote-card .sub {
  font-size: 13px; color: var(--stone); margin-bottom: 24px;
}
.form-grid { display: grid; gap: 14px; }
.form-grid .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%; padding: 14px 16px;
  background: var(--paper); border: 1px solid var(--line);
  font-family: inherit; font-size: 14px; color: var(--forest-deep);
  border-radius: 2px; transition: all 0.2s;
  min-height: 48px;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none; border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.15);
}
.form-grid textarea { resize: vertical; min-height: 80px; }
/* Honeypot — hidden from real users */
.form-grid .honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-grid .submit-btn {
  background: var(--forest-deep); color: var(--cream);
  padding: 16px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px;
}
.form-grid .submit-btn:hover:not(:disabled) { background: var(--forest-rich); }
.form-grid .submit-btn:disabled { opacity: 0.6; cursor: wait; }
.form-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--stone); margin-top: 4px;
}
.form-note svg { width: 14px; height: 14px; color: var(--moss); flex-shrink: 0; }

.form-success {
  display: none; padding: 20px; text-align: center;
  background: var(--moss); color: var(--cream); border-radius: 4px;
}
.form-success.show { display: block; }
.form-success h4 {
  font-family: var(--display); font-size: 1.4rem; margin-bottom: 8px;
}

/* ============ TICKER ============ */
.ticker {
  background: var(--forest-deep); color: var(--cream);
  padding: 18px 0; overflow: hidden;
  border-bottom: 1px solid var(--forest-rich);
}
.ticker-track {
  display: flex; gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--display); font-size: 1.5rem; font-style: italic;
  color: var(--cream); font-weight: 400;
  display: inline-flex; align-items: center; gap: 60px;
}
.ticker-track span::after { content: '✦'; color: var(--gold); font-size: 1.1rem; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ EMERGENCY BANNER ============ */
.emergency {
  background: var(--rust); color: var(--cream);
  padding: 28px 0; position: relative; overflow: hidden;
}
.emergency::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0px, transparent 20px,
    rgba(0,0,0,0.06) 20px, rgba(0,0,0,0.06) 22px);
}
.emergency-inner {
  position: relative; max-width: 1400px; margin: 0 auto;
  padding: 0 32px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; flex-wrap: wrap;
}
.emergency-left { display: flex; align-items: center; gap: 24px; }
.emergency-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(0,0,0,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.emergency-icon svg { width: 28px; height: 28px; color: var(--cream); }
.emergency-text { line-height: 1.3; }
.emergency-text .top {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.85; margin-bottom: 4px;
}
.emergency-text .bottom {
  font-family: var(--display); font-size: 1.5rem; font-weight: 500;
}
.emergency a {
  background: var(--cream); color: var(--forest-deep);
  padding: 16px 28px; text-decoration: none;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
  border-radius: 2px; transition: transform 0.2s;
}
.emergency a:hover { transform: translateY(-2px); }

/* ============ SERVICES GRID ============ */
.services { padding: 140px 0; background: var(--paper); }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-bottom: 80px; align-items: end;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.service-card {
  background: var(--paper); padding: 0;
  position: relative; transition: all 0.4s ease;
  overflow: hidden; display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--forest-deep);
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}
.service-card > * { position: relative; z-index: 1; transition: color 0.4s ease 0.05s; }
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { color: var(--cream); }
.service-card:hover .service-num,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link { color: var(--cream); }
.service-card:hover .service-icon { background: var(--gold); color: var(--forest-deep); }
.service-card:hover .service-link::after { color: var(--gold); }
.service-card:hover .service-photo { filter: brightness(0.6) saturate(0.7); }
.service-photo {
  display: block; width: 100%; height: 220px;
  object-fit: cover; object-position: center;
  background-size: cover; background-position: center;
  background-color: var(--forest-mid);
  position: relative; transition: filter 0.4s; z-index: 1;
}
.service-body { padding: 36px; flex-grow: 1; display: flex; flex-direction: column; }
.service-num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em;
  color: var(--stone); margin-bottom: 24px;
  transition: color 0.4s;
}
.service-icon {
  width: 64px; height: 64px;
  background: var(--forest-deep); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; margin-bottom: 28px;
  transition: all 0.4s;
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 {
  font-family: var(--display); font-size: 1.6rem; font-weight: 600;
  letter-spacing: -0.015em; margin-bottom: 14px;
  color: var(--forest-deep);
}
.service-card p {
  color: var(--bark); font-size: 0.95rem;
  line-height: 1.6; margin-bottom: 28px;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--forest-deep); text-decoration: none;
  margin-top: auto;
}
.service-link::after { content: '→'; transition: transform 0.3s, color 0.4s; }
.service-card:hover .service-link::after { transform: translateX(6px); }

/* ============ WHY US ============ */
.why-us {
  padding: 140px 0; background: var(--forest-deep); color: var(--cream);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.25; pointer-events: none;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 100px; position: relative; z-index: 2;
}
.why-left .section-eyebrow { color: var(--gold-bright); }
.why-left .section-eyebrow::before { background: var(--gold); }
.why-left .section-title { color: var(--cream); }
.why-left .section-title em { color: var(--gold-bright); }
.why-left .section-lead { color: rgba(245, 239, 225, 0.75); }
.why-left-photo {
  margin-top: 48px; position: relative;
  border-radius: 4px; overflow: visible;
  border: 1px solid rgba(212, 168, 90, 0.2);
  display: inline-block; width: 100%;
}
.why-left-photo img {
  display: block; width: 100%; height: auto;
  border-radius: 4px; overflow: hidden;
}
.why-photo-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: var(--gold); color: var(--forest-deep);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  font-family: var(--display);
  border: 4px solid var(--forest-deep); z-index: 2;
}
.why-photo-badge .num { font-size: 2rem; font-weight: 700; line-height: 1; }
.why-photo-badge .lbl {
  font-size: 9px; letter-spacing: 0.15em;
  text-transform: uppercase; margin-top: 4px;
  font-family: var(--body); font-weight: 600;
}
.why-features { display: grid; gap: 8px; }
.why-feature {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 32px 0; align-items: start;
  border-bottom: 1px solid rgba(245, 239, 225, 0.12);
}
.why-feature:last-child { border-bottom: none; }
.why-feature-num {
  font-family: var(--display);
  font-size: 3rem; font-weight: 400; font-style: italic;
  color: var(--gold-bright); line-height: 1;
}
.why-feature h4 {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 10px; color: var(--cream);
  letter-spacing: -0.01em;
}
.why-feature p {
  color: rgba(245, 239, 225, 0.7);
  font-size: 0.95rem; line-height: 1.6;
}

/* ============ PROCESS ============ */
.process { padding: 140px 0; background: var(--cream-warm); }
.process-header {
  text-align: center; max-width: 720px; margin: 0 auto 100px;
}
.process-header .section-eyebrow { justify-content: center; }
.process-header .section-eyebrow::before { display: none; }
.process-header .section-lead { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 1px; background: repeating-linear-gradient(to right,
    var(--bark-warm) 0, var(--bark-warm) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}
.process-step {
  position: relative; z-index: 1;
  text-align: center; padding: 0 12px;
}
.process-step-dot {
  width: 72px; height: 72px;
  background: var(--paper);
  border: 2px solid var(--forest-deep);
  border-radius: 50%; margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.process-step-dot .num {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 500; color: var(--forest-deep);
}
.process-step-dot::before {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid var(--bark-warm);
  border-radius: 50%; opacity: 0.3;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 10px; color: var(--forest-deep);
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--bark); font-size: 0.92rem; line-height: 1.55;
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 140px 0; background: var(--paper); }
.testimonials-header {
  display: grid; grid-template-columns: 1fr auto;
  align-items: end; gap: 60px; margin-bottom: 80px;
}
.rating-badge {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.rating-stars { display: flex; gap: 2px; }
.rating-stars svg { width: 18px; height: 18px; fill: var(--gold); }
.rating-text { line-height: 1.2; }
.rating-text .num {
  font-family: var(--display); font-size: 1.5rem;
  font-weight: 600; color: var(--forest-deep);
}
.rating-text .label { font-size: 12px; color: var(--stone); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--cream); padding: 40px;
  border-radius: 4px; border: 1px solid var(--line);
  position: relative; display: flex; flex-direction: column;
}
.testimonial::before {
  content: '"';
  font-family: var(--display);
  font-size: 8rem; line-height: 0.8;
  color: var(--gold); opacity: 0.25;
  position: absolute; top: 24px; right: 32px;
  font-style: italic;
}
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 20px; }
.testimonial .stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial blockquote {
  font-family: var(--display);
  font-size: 1.15rem; line-height: 1.5;
  color: var(--forest-deep);
  margin-bottom: 28px; font-weight: 400;
  letter-spacing: -0.005em; flex-grow: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--forest-mid); color: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
}
.author-info .name {
  font-weight: 600; font-size: 14px; color: var(--forest-deep);
}
.author-info .loc {
  font-size: 12px; color: var(--stone); margin-top: 2px;
}

/* ============ BEFORE / AFTER GALLERY ============ */
.gallery { padding: 140px 0; background: var(--cream-warm); }
.gallery-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 64px;
}
.gallery-tabs {
  display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap;
}
.gallery-tab {
  padding: 10px 18px; background: transparent;
  border: 1px solid var(--forest-deep);
  color: var(--forest-deep);
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; cursor: pointer;
  border-radius: 2px; transition: all 0.2s;
}
.gallery-tab:hover, .gallery-tab.active {
  background: var(--forest-deep); color: var(--cream);
}
.ba-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.ba-card {
  background: var(--paper); border-radius: 4px;
  overflow: hidden; border: 1px solid var(--line);
}
.ba-slider {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  cursor: ew-resize; user-select: none;
  background: var(--forest-rich);
}
.ba-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-img-after { background-color: var(--moss); }
.ba-img-before { background-color: var(--bark-warm); clip-path: inset(0 50% 0 0); }
.ba-img-before::after, .ba-img-after::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ba-labels {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between;
  pointer-events: none; z-index: 3;
}
.ba-label {
  background: rgba(15, 36, 23, 0.85); color: var(--cream);
  padding: 6px 12px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em;
  border-radius: 2px;
}
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--gold-bright);
  transform: translateX(-50%);
  z-index: 4; pointer-events: none;
  box-shadow: 0 0 20px rgba(212, 168, 90, 0.5);
}
.ba-handle::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  background: var(--gold-bright);
  border: 3px solid var(--forest-deep);
  border-radius: 50%;
}
.ba-handle::after {
  content: '⇄'; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--forest-deep);
  font-size: 18px; font-weight: 700; z-index: 1;
}
.ba-info {
  padding: 24px 28px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.ba-info-left h4 {
  font-family: var(--display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.ba-info-left .meta {
  font-size: 12px; color: var(--stone);
  display: flex; gap: 12px;
}
.ba-tag {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--forest-deep); color: var(--gold-bright);
  border-radius: 2px;
}

/* ============ RECENT WORK GRID ============ */
.work-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 4px; aspect-ratio: 16/10;
  text-decoration: none; color: inherit;
  background: var(--forest-deep);
  border: 1px solid var(--line);
}
.work-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover img { transform: scale(1.05); }
.work-card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top,
    rgba(15, 36, 23, 0.88) 0%,
    rgba(15, 36, 23, 0.55) 45%,
    rgba(15, 36, 23, 0.1) 75%,
    rgba(15, 36, 23, 0) 100%);
  color: var(--cream);
}
.work-card-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 10px; margin-bottom: 12px;
  background: var(--gold); color: var(--forest-deep);
  border-radius: 2px;
  align-self: flex-start; font-weight: 600;
}
.work-card-overlay h4 {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.work-card-overlay .meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-size: 13px; opacity: 0.85;
}

/* ============ STATS STRIP ============ */
.stats-strip {
  padding: 100px 0; background: var(--forest-deep); color: var(--cream);
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; opacity: 0.15; pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 2;
}
.stat-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(245, 239, 225, 0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500; color: var(--gold-bright);
  line-height: 1; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, 0.7); font-weight: 500;
}

/* ============ SERVICE AREA ============ */
.service-area {
  padding: 140px 0; background: var(--forest-rich); color: var(--cream);
  position: relative; overflow: hidden;
}
.service-area-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative; z-index: 2;
}
.service-area-left .section-eyebrow { color: var(--gold-bright); }
.service-area-left .section-eyebrow::before { background: var(--gold); }
.service-area-left .section-title { color: var(--cream); }
.service-area-left .section-title em { color: var(--gold-bright); }
.service-area-left .section-lead { color: rgba(245, 239, 225, 0.75); }

.cities-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 40px;
  border-top: 1px solid rgba(245, 239, 225, 0.15);
}
.city-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 239, 225, 0.1);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.95rem;
  text-decoration: none; color: var(--cream);
  transition: padding 0.3s;
}
.city-row:hover { padding-left: 12px; }
.city-row:hover .city-name { color: var(--gold-bright); }
.city-row:nth-child(odd) { border-right: 1px solid rgba(245, 239, 225, 0.1); padding-right: 20px; }
.city-row:nth-child(even) { padding-left: 20px; }
.city-name {
  font-family: var(--display); font-size: 1.1rem; font-weight: 500;
  transition: color 0.3s;
}
.city-zip { font-family: var(--mono); font-size: 11px; color: var(--stone); }

.area-map-wrap {
  position: relative; background: var(--forest-deep);
  border-radius: 4px; padding: 40px;
  border: 1px solid rgba(212, 168, 90, 0.2);
}
.area-map { width: 100%; height: auto; }
.area-map-label {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold-bright); text-transform: uppercase;
}

/* ============ FAQ ============ */
.faq { padding: 140px 0; background: var(--paper); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px;
}
.faq-left { position: sticky; top: 140px; align-self: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 500;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
  background: none; border: none; cursor: pointer;
  width: 100%; padding: 0; text-align: left;
}
.faq-toggle {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--forest-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; position: relative;
}
.faq-toggle::before, .faq-toggle::after {
  content: ''; position: absolute;
  background: var(--forest-deep);
  transition: transform 0.3s, background 0.3s;
}
.faq-toggle::before { width: 14px; height: 1px; }
.faq-toggle::after { width: 1px; height: 14px; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-item.open .faq-toggle { background: var(--forest-deep); }
.faq-item.open .faq-toggle::before { background: var(--cream); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 500px; margin-top: 20px; }
.faq-answer p {
  color: var(--bark); font-size: 1rem; line-height: 1.65;
  max-width: 700px;
}
.faq-answer p + p { margin-top: 12px; }

/* ============ CONTENT (subpage prose) ============ */
.content-section { padding: 100px 0; background: var(--paper); }
.content-section.alt { background: var(--cream-warm); }
.content-inner {
  max-width: 900px; margin: 0 auto;
  padding: 0 32px;
}
.content-inner h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 28px; color: var(--forest-deep);
}
.content-inner h3 {
  font-family: var(--display);
  font-size: 1.6rem; font-weight: 600;
  letter-spacing: -0.015em;
  margin-top: 48px; margin-bottom: 16px; color: var(--forest-deep);
}
.content-inner h3:first-child { margin-top: 0; }
.content-inner p {
  color: var(--bark); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 20px;
}
.content-inner ul {
  margin-bottom: 24px; padding-left: 0; list-style: none;
}
.content-inner li {
  position: relative; padding-left: 32px;
  color: var(--bark); font-size: 1.05rem;
  line-height: 1.7; margin-bottom: 12px;
}
.content-inner li::before {
  content: '✦'; position: absolute; left: 0; top: 0;
  color: var(--gold);
}
.content-inner a {
  color: var(--bark-warm);
  border-bottom: 1px dashed var(--bark-warm);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.content-inner a:hover {
  color: var(--rust); border-bottom-color: var(--rust);
}
.content-inner strong { color: var(--forest-deep); font-weight: 600; }

/* ============ RELATED GRID ============ */
.related { padding: 100px 0; background: var(--cream-warm); }
.related h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 48px; color: var(--forest-deep);
  text-align: center;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.related-card {
  background: var(--paper);
  padding: 28px; border-radius: 4px;
  border: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: all 0.25s;
  display: flex; flex-direction: column;
}
.related-card:hover {
  background: var(--forest-deep);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 36, 23, 0.3);
}
.related-card:hover .related-card-eyebrow,
.related-card:hover h4,
.related-card:hover p,
.related-card:hover .related-card-link { color: var(--cream); }
.related-card:hover .related-card-link::after { color: var(--gold-bright); }
.related-card-eyebrow {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bark-warm); margin-bottom: 12px;
}
.related-card h4 {
  font-family: var(--display); font-size: 1.25rem;
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--forest-deep); margin-bottom: 8px;
}
.related-card p {
  color: var(--bark); font-size: 0.95rem;
  line-height: 1.5; margin-bottom: 20px; flex-grow: 1;
}
.related-card-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--forest-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.related-card-link::after { content: '→'; transition: transform 0.25s, color 0.25s; }
.related-card:hover .related-card-link::after { transform: translateX(4px); }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 140px 0; background: var(--bark); color: var(--cream);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right,
    rgba(212, 168, 90, 0.2) 0%, transparent 60%);
}
.final-cta-inner {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
  text-align: center; padding: 0 32px;
}
.final-cta h2 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05; letter-spacing: -0.025em;
  margin-bottom: 24px; color: var(--cream);
}
.final-cta h2 em { font-style: italic; color: var(--gold-bright); }
.final-cta p {
  font-size: 1.15rem; line-height: 1.6;
  color: rgba(245, 239, 225, 0.78);
  margin-bottom: 48px; max-width: 640px;
  margin-left: auto; margin-right: auto;
}
.final-cta-phone {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--gold-bright);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.final-cta-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink); color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 24px; }
.footer-brand p {
  color: rgba(245, 239, 225, 0.6);
  font-size: 14px; line-height: 1.6;
  max-width: 360px; margin-bottom: 24px;
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span {
  color: var(--cream); text-decoration: none;
  font-size: 14px;
  display: flex; align-items: center; gap: 12px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-bright); }
.footer-contact svg {
  width: 16px; height: 16px;
  color: var(--gold-bright); flex-shrink: 0;
}
.footer-col h5 {
  font-family: var(--display); font-size: 1.05rem;
  font-weight: 600; margin-bottom: 24px; color: var(--cream);
  letter-spacing: -0.005em;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(245, 239, 225, 0.6);
  text-decoration: none; font-size: 13.5px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 225, 0.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(245, 239, 225, 0.5); }
.footer-bottom .badges { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.footer-bottom .badges span {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245, 239, 225, 0.4); padding: 4px 12px;
  border: 1px solid rgba(245, 239, 225, 0.15); border-radius: 2px;
}

/* ============ FADE-IN ============ */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 60px; padding: 60px 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-header { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-left-photo { max-width: 100%; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-header { grid-template-columns: 1fr; }
  .gallery-header { grid-template-columns: 1fr; gap: 40px; }
  .ba-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card { aspect-ratio: 16/11; }
  .work-card-overlay { padding: 20px; }
  .work-card-overlay h4 { font-size: 1.15rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 60px; }
  .stat-item:nth-child(2) { border-right: none; }
  .service-area-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .call-bar { display: flex; }
  body { padding-bottom: 64px; }
}
@media (max-width: 640px) {
  .utility-left { gap: 14px; font-size: 12px; }
  .utility-left .hide-mobile { display: none; }
  .utility-right .hide-mobile { display: none; }
  .nav-inner { padding: 16px 20px; }
  .logo img { width: 160px; max-height: 44px; }
  .footer-logo img { width: 200px; }
  .container { padding: 0 20px; }
  .breadcrumbs-inner { padding: 0 20px; }
  .hero h1 { font-size: 2.6rem; }
  .hero-trust { gap: 24px; }
  .trust-item .num { font-size: 2rem; }
  .quote-card { padding: 32px 24px; }
  .form-grid .row-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 80px 0; }
  .service-body { padding: 28px; }
  .why-us { padding: 80px 0; }
  .why-feature { grid-template-columns: 56px 1fr; gap: 20px; }
  .why-feature-num { font-size: 2.2rem; }
  .why-photo-badge { width: 96px; height: 96px; bottom: -12px; right: -12px; }
  .why-photo-badge .num { font-size: 1.5rem; }
  .process { padding: 80px 0; }
  .process-steps { grid-template-columns: 1fr; }
  .testimonials { padding: 80px 0; }
  .gallery { padding: 80px 0; }
  .stats-strip { padding: 60px 0; }
  .stats-grid { grid-template-columns: 1fr; row-gap: 40px; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(245, 239, 225, 0.15);
    padding-bottom: 40px;
  }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .service-area { padding: 80px 0; }
  .cities-grid { grid-template-columns: 1fr; }
  .city-row:nth-child(odd) { border-right: none; padding-right: 0; }
  .city-row:nth-child(even) { padding-left: 0; }
  .faq { padding: 80px 0; }
  .related { padding: 80px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .emergency-inner { flex-direction: column; text-align: center; }
  .emergency-left { flex-direction: column; }
  .content-section { padding: 60px 0; }
  .content-inner { padding: 0 20px; }

  /* Mobile-specific hero adjustments */
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-inner { padding: 20px 24px 40px; gap: 40px; }
  .hero-cta-row { gap: 12px; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; min-width: 0; }
  .hero-eyebrow { font-size: 11px; margin-bottom: 20px; }

  /* Subpage hero: keep sized for mobile, shift bg to show subject not sky */
  .subhero { padding: 60px 0; background-position: center 35% !important; }
  .subhero h1 { font-size: 2.2rem; }

  /* Final-CTA phone is huge on desktop; tone down on mobile */
  .final-cta-phone { font-size: 2rem; }

  /* Tabs can overflow on small screens — let them scroll horizontally */
  .gallery-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .gallery-tab { flex-shrink: 0; }

  /* Touch target sizing for utility bar phone */
  .utility-right a { padding: 4px 0; }

  /* Form field tap targets — ensure min 48px on mobile */
  .form-grid input, .form-grid select, .form-grid textarea { font-size: 16px; }
  /* (16px prevents iOS Safari zoom-on-focus) */
}

/* ============ EXTRA SMALL DEVICES (≤480px — iPhone SE, smaller Android) ============ */
@media (max-width: 480px) {
  .utility-inner { padding: 0 16px; gap: 12px; }
  .utility-left { font-size: 11px; }
  .nav-inner { padding: 14px 16px; }
  .logo img { width: 140px; max-height: 40px; }
  .container { padding: 0 16px; }
  .breadcrumbs-inner { padding: 0 16px; font-size: 10px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; }
  .hero-trust { gap: 16px; }
  .trust-item .num { font-size: 1.7rem; }
  .trust-item .label { font-size: 10px; }
  .subhero h1 { font-size: 1.9rem; }
  .quote-card { padding: 28px 20px; }
  .quote-card .badge-text { left: 20px; font-size: 10px; padding: 6px 12px; }
  .section-title { font-size: 1.9rem; }
  .service-body { padding: 24px; }
  .service-card h3 { font-size: 1.35rem; }
  .why-feature { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px 0; }
  .why-feature-num { font-size: 1.8rem; }
  .why-feature h4 { font-size: 1.2rem; }
  .testimonial { padding: 28px 24px; }
  .testimonial blockquote { font-size: 1rem; }
  .ticker-track span { font-size: 1.2rem; }
  .emergency-text .bottom { font-size: 1.2rem; }
  .final-cta h2 { font-size: 2rem; }
  .final-cta-phone { font-size: 1.7rem; }
  .final-cta p { font-size: 1rem; }
  .footer-brand p { font-size: 13px; }
  .work-card-overlay { padding: 18px; }
  .work-card-overlay h4 { font-size: 1.05rem; }
  .work-card-overlay .meta { font-size: 12px; }
  .work-card-tag { font-size: 9px; padding: 5px 8px; margin-bottom: 10px; }
  /* Make sticky call-bar a bit smaller on tiny screens */
  .call-bar { padding: 12px 16px; font-size: 15px; }
}
