:root {
  --orange: #e85f2a;
  --orange-dark: #c14d20;
  --orange-soft: #fbe9e0;
  --ink: #173a23;
  --ink-2: #0e2517;
  --ink-3: #20452c;
  --gold: #f0a830;
  --gold-deep: #d98a1f;
  --cream: #faf6f1;
  --cream-2: #f4ecdf;
  --sand: #efe3d1;
  --text: #241f1c;
  --muted: #6f655b;
  --line: #e7dccd;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 12px rgba(23,30,20,0.06);
  --shadow: 0 18px 44px -18px rgba(23,30,20,0.26);
  --shadow-lg: 0 36px 70px -26px rgba(23,30,20,0.42);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-optical-sizing: auto;
}
a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { max-width: 1500px; margin: 0 auto; padding: 0 32px; }

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.14s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.21s; }
[data-reveal][data-reveal-delay="4"] { transition-delay: 0.28s; }
[data-reveal][data-reveal-delay="5"] { transition-delay: 0.35s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .hero::before { animation: none !important; }
  .hero-aurora span { animation: none !important; }
}

/* ===== Header ===== */
header {
  background: rgba(250,246,241,0.80);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
header.scrolled {
  box-shadow: 0 8px 28px -14px rgba(23,30,20,0.28);
  background: rgba(250,246,241,0.94);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1540px;
  margin: 0 auto;
  gap: 20px;
  flex-wrap: nowrap;
  transition: padding 0.3s var(--ease);
}
header.scrolled .nav { padding: 9px 40px; }
.nav-right { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; }
.nav-social { display: inline-flex; align-items: center; gap: 10px; }
.nav-social a {
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0.78; transition: transform 0.18s var(--ease), opacity 0.18s var(--ease);
}
.nav-social a:hover { transform: translateY(-2px); opacity: 1; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; color: var(--orange) !important;
  font-size: 1.22rem; text-decoration: none; white-space: nowrap;
}
.nav-phone:hover { color: var(--orange-dark) !important; text-decoration: none; }
.nav-phone-icon {
  width: 38px; height: 38px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: #fff; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: 0 6px 14px -5px rgba(232,95,42,0.7);
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 90px; height: 90px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: width 0.3s var(--ease), height 0.3s var(--ease);
}
header.scrolled .logo-mark { width: 66px; height: 66px; }
.logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; border-radius: 16px; }
.logo-word {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-word small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-top: 5px;
}
nav ul { display: flex; list-style: none; gap: 26px; flex-wrap: nowrap; align-items: center; }
nav a { color: var(--text); font-weight: 600; font-size: 1.0rem; position: relative; font-family: var(--sans); }
nav ul li a:not(.cta-btn)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
nav ul li a:not(.cta-btn):hover { text-decoration: none; }
nav ul li a:not(.cta-btn):hover::after { transform: scaleX(1); }
.cta-btn {
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 700; font-family: var(--sans); border: none; cursor: pointer;
  font-size: 1.0rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
  display: inline-block; box-shadow: 0 10px 22px -10px rgba(232,95,42,0.85);
}
.cta-btn:hover {
  text-decoration: none; transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(232,95,42,0.95); filter: brightness(1.04);
}
.cta-btn:active { transform: translateY(0); }
.cta-btn svg, .nav-phone-icon svg {
  width: 1.15em; height: 1.15em; stroke: currentColor; fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.18em; margin-right: 8px;
}
.nav-phone-icon svg { width: 58%; height: 58%; margin-right: 0; vertical-align: 0; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.8rem; cursor: pointer; color: var(--ink); }

/* ===== Services dropdown ===== */
.has-dropdown { position: relative; }
.dropdown-toggle {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--text); font-weight: 600; font-size: 1.0rem; font-family: var(--sans);
  display: inline-flex; align-items: center; gap: 5px; position: relative;
}
.dropdown-toggle .caret { font-size: 0.78em; transition: transform 0.25s var(--ease); }
.has-dropdown.open > .dropdown-toggle .caret,
.has-dropdown:hover > .dropdown-toggle .caret { transform: rotate(180deg); }
.dropdown-toggle::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.has-dropdown:hover > .dropdown-toggle::after,
.dropdown-toggle:focus-visible::after,
.has-dropdown.open > .dropdown-toggle::after { transform: scaleX(1); }
.dropdown-menu {
  display: block; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 10px; list-style: none; gap: 0; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 60;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.has-dropdown:hover > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu li { width: 100%; }
.dropdown-menu li a {
  display: block; padding: 11px 14px; border-radius: 9px; font-weight: 600; font-size: 0.98rem;
  color: var(--text); white-space: nowrap; transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
  background: var(--orange-soft); color: var(--orange-dark); text-decoration: none;
}

/* ===== Hero ===== */
.hero {
  background:
    linear-gradient(98deg, rgba(14,37,23,0.78) 0%, rgba(14,37,23,0.68) 38%, rgba(14,37,23,0.80) 72%, rgba(14,37,23,0.92) 100%),
    url('hero-banner.jpg') center/cover no-repeat;
  background-color: var(--ink);
  color: #fff;
  padding: 96px 0 128px;
  position: relative;
  overflow: hidden;
}
.hero.page-hero { padding: 72px 0 110px; }
.hero::before {
  content: ''; position: absolute; top: -28%; right: -8%;
  width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, rgba(240,168,48,0.24) 0%, transparent 62%);
  pointer-events: none; animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0,0) scale(1); opacity: 0.65; }
  to   { transform: translate(-34px, 26px) scale(1.1); opacity: 1; }
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 76px;
  background: var(--cream); clip-path: polygon(0 100%, 100% 100%, 100% 36%, 0 86%); z-index: 3;
}
.hero-aurora { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-aurora span { position: absolute; display: block; border-radius: 50%; filter: blur(64px); mix-blend-mode: screen; will-change: transform; }
.hero-aurora .a1 { width: 42vw; max-width: 540px; height: 42vw; max-height: 540px; left: -6%; top: 4%; background: radial-gradient(circle, rgba(240,168,48,0.50), transparent 66%); animation: auroraDrift1 17s ease-in-out infinite alternate; }
.hero-aurora .a2 { width: 36vw; max-width: 460px; height: 36vw; max-height: 460px; right: 2%; top: 26%; background: radial-gradient(circle, rgba(232,95,42,0.42), transparent 66%); animation: auroraDrift2 21s ease-in-out infinite alternate; }
.hero-aurora .a3 { width: 32vw; max-width: 400px; height: 32vw; max-height: 400px; left: 28%; bottom: -14%; background: radial-gradient(circle, rgba(126,164,205,0.30), transparent 66%); animation: auroraDrift3 25s ease-in-out infinite alternate; }
@keyframes auroraDrift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(58px,42px) scale(1.14); } }
@keyframes auroraDrift2 { from { transform: translate(0,0) scale(1.06); } to { transform: translate(-52px,30px) scale(1); } }
@keyframes auroraDrift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(44px,-48px) scale(1.18); } }
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr 1fr; gap: 56px; align-items: center;
}
.hero-content.single { grid-template-columns: 1fr; max-width: 920px; }
.hero-copy { text-align: left; }
.hero h1, .hero-lede, .hero-promises { text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.crumbs { font-family: var(--sans); font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.78); margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.crumbs a { color: var(--gold); }
.crumbs span { margin: 0 8px; opacity: 0.6; }
.hero-preheader {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; background: rgba(240,168,48,0.16);
  border: 1px solid rgba(240,168,48,0.45);
  padding: 7px 16px; border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 22px; text-shadow: none; backdrop-filter: blur(4px);
}
.hero-preheader::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(240,168,48,0.25);
}
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.0;
  letter-spacing: -0.025em;
}
.hero h1 .accent { font-style: italic; font-weight: 500; color: var(--gold); }
.hero-lede { font-size: 1.2rem; margin-bottom: 26px; opacity: 0.95; max-width: 46ch; }
.hero-content.single .hero-lede { max-width: 64ch; }
.hero-promises { list-style: none; margin: 0 0 30px; padding: 0; font-size: 1.02rem; font-weight: 600; font-family: var(--sans); }
.hero-promises li { padding: 7px 0; display: flex; align-items: center; gap: 12px; }
.hero-promises li::before {
  content: '✓'; background: var(--gold); color: var(--ink-2);
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0;
  box-shadow: 0 4px 10px -3px rgba(240,168,48,0.8);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-btn.large { font-size: 1.05rem; padding: 15px 30px; }
.cta-btn.outline {
  background: rgba(255,255,255,0.08); color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.55); box-shadow: none; backdrop-filter: blur(4px);
}
.cta-btn.outline:hover { background: rgba(255,255,255,0.18); box-shadow: none; }

/* Hero form card */
.hero-form-card {
  background: #fff; color: var(--text);
  border-radius: var(--radius); padding: 28px 26px 26px;
  box-shadow: var(--shadow-lg); border-top: 5px solid var(--orange); position: relative;
}
.hero-form-card::before {
  content: 'Fast response'; position: absolute; top: -13px; right: 22px;
  background: var(--ink); color: #fff; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.hero-form-card .quote-h { color: var(--ink); font-size: 1.5rem; margin: 0 0 4px; font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; }
.hero-form-card .form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; font-family: var(--sans); }
.hero-form-card label { font-size: 0.8rem; margin-bottom: 4px; color: var(--ink); }
.hero-form-card input, .hero-form-card select { padding: 10px 12px; font-size: 0.95rem; margin-bottom: 10px; }
.hero-form-card .form-submit { padding: 13px; font-size: 1rem; margin-top: 4px; }
.hero-form-card .form-tiny { text-align: center; color: var(--muted); font-size: 0.76rem; margin-top: 11px; line-height: 1.4; }

/* ===== Marquee ===== */
.marquee {
  background: var(--ink); color: #fff; overflow: hidden;
  padding: 16px 0; position: relative; z-index: 3;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--display); font-style: italic; font-size: 1.3rem; font-weight: 500;
  padding: 0 26px; color: rgba(255,255,255,0.9);
}
.marquee-track span::after {
  content: '✦'; font-style: normal; color: var(--gold);
  margin-left: 52px; font-size: 0.8rem; vertical-align: middle;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Sections ===== */
section { padding: 96px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.left { text-align: left; margin-left: 0; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange); font-family: var(--sans);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: attr(data-num); font-family: var(--display); font-style: italic;
  font-size: 1.1rem; color: var(--gold); letter-spacing: 0; text-transform: none;
}
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); color: var(--ink); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.13rem; max-width: 660px; margin: 0 auto; }
.section-head.left p { margin-left: 0; }

/* ===== Prose (service-page body) ===== */
.prose-section { background: var(--cream); }
.prose { max-width: 880px; }
.prose .section-eyebrow { margin-bottom: 14px; }
.prose h2 { color: var(--ink); font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 22px; line-height: 1.08; }
.prose h3 { color: var(--ink); font-size: clamp(1.4rem, 2.4vw, 1.8rem); margin: 42px 0 14px; }
.prose p { color: var(--text); font-size: 1.08rem; line-height: 1.75; margin-bottom: 16px; }
.prose ul.checks { list-style: none; margin: 6px 0 18px; padding: 0; }
.prose ul.checks li {
  position: relative; padding: 10px 0 10px 38px; color: var(--text);
  font-size: 1.06rem; line-height: 1.6; border-bottom: 1px solid var(--line);
}
.prose ul.checks li:last-child { border-bottom: none; }
.prose ul.checks li::before {
  content: '✓'; position: absolute; left: 0; top: 11px;
  background: var(--gold); color: var(--ink-2);
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem;
  box-shadow: 0 4px 10px -3px rgba(240,168,48,0.7);
}
.prose ol { margin: 6px 0 18px 22px; }
.prose ol li { margin-bottom: 12px; font-size: 1.06rem; line-height: 1.6; padding-left: 6px; }
.prose a { color: #b03d0c; font-weight: 700; }

/* CTA band inside prose */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--ink), var(--ink-2)); color: #fff;
  border-radius: var(--radius-lg); padding: 36px 38px; margin: 44px 0 10px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(240,168,48,0.20), transparent 55%); pointer-events: none; }
.cta-band h3 { color: #fff; font-size: 1.55rem; margin: 0 0 6px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.82); margin: 0; font-size: 1.0rem; position: relative; max-width: 52ch; }
.cta-band .cta-btn { position: relative; flex-shrink: 0; }

/* Related cards */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 16px; }
@media (max-width: 760px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: flex; flex-direction: column; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--orange);
  border-radius: var(--radius); padding: 22px 22px 20px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); text-decoration: none; }
.related-card strong { color: var(--ink); font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
.related-card span { color: var(--muted); font-size: 0.96rem; line-height: 1.5; }

/* ===== Area (service-area page) ===== */
.area { background: #fff; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.area-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  padding: 9px 16px; border-radius: 999px; transition: all 0.2s var(--ease);
}
.area-tag::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.area-tag:hover { background: var(--orange-soft); border-color: rgba(232,95,42,0.4); transform: translateY(-2px); }
.town-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
@media (max-width: 900px) { .town-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .town-grid { grid-template-columns: 1fr; } }
.town-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.town-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.town-card h3 { color: var(--ink); font-size: 1.4rem; margin-bottom: 8px; }
.town-card p { color: var(--muted); font-size: 1.0rem; line-height: 1.55; }

/* ===== Quote ===== */
.quote { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: #fff; position: relative; overflow: hidden; }
.quote::before {
  content: ''; position: absolute; top: -20%; left: -10%;
  width: 50vw; height: 50vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(240,168,48,0.16), transparent 60%); pointer-events: none;
}
.quote .container { position: relative; z-index: 1; }
.quote .section-head h2 { color: #fff; }
.quote .section-head p { color: rgba(255,255,255,0.85); }
.quote .section-eyebrow { color: var(--gold); }
.quote-form { max-width: 660px; margin: 0 auto; background: #fff; padding: 42px; border-radius: var(--radius-lg); color: var(--text); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-family: var(--sans); font-weight: 600; margin-bottom: 6px; color: var(--ink); font-size: 0.9rem; }
input, select, textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: var(--sans); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(232,95,42,0.12); }
textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: linear-gradient(145deg, var(--orange), var(--orange-dark)); color: #fff;
  padding: 15px; font-size: 1.05rem; font-weight: 700; font-family: var(--sans); border: none; border-radius: 999px; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s; box-shadow: 0 12px 24px -10px rgba(232,95,42,0.85);
}
.form-submit:hover { transform: translateY(-2px); filter: brightness(1.04); box-shadow: 0 18px 32px -12px rgba(232,95,42,0.95); }
.form-note { text-align: center; margin-top: 14px; color: var(--muted); font-size: 0.88rem; }
.form-success {
  display: none; text-align: center; padding: 40px; background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); font-weight: 600; max-width: 660px; margin: 0 auto; box-shadow: var(--shadow-lg);
}
.form-success h3 { color: var(--ink); font-size: 1.6rem; margin-bottom: 10px; }

/* ===== FAQ ===== */
.faq { background: var(--cream-2); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 4px 24px; margin-bottom: 12px;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(232,95,42,0.4); }
.faq-item summary {
  cursor: pointer; font-family: var(--display); font-weight: 600; color: var(--ink);
  font-size: 1.2rem; list-style: none; position: relative; padding: 18px 38px 18px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 4px; top: 50%; width: 24px; height: 24px; margin-top: -12px;
  border-radius: 50%; background: var(--orange-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e85f2a' stroke-width='3' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p { margin: 0 0 16px; color: var(--text); line-height: 1.65; font-size: 1.02rem; }

/* ===== Footer ===== */
footer { background: var(--ink-2); color: #c5cabb; padding: 66px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
footer h3 { color: #fff; font-family: var(--display); margin-bottom: 16px; font-size: 1.1rem; font-weight: 600; }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo img { width: 60px; height: 60px; display: block; flex-shrink: 0; object-fit: contain; border-radius: 14px; background: #fff; padding: 4px; }
.footer-logo h3 { margin: 0; font-size: 1.35rem; line-height: 1.2; }
footer p { font-family: var(--sans); }
footer ul { list-style: none; }
footer ul li { padding: 5px 0; font-family: var(--sans); }
footer a { color: #aeb3a4; transition: color 0.18s; }
footer a:hover { color: var(--orange); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 22px; text-align: center; font-size: 0.86rem; color: #87897d; font-family: var(--sans); }
.footer-bottom em { font-family: var(--display); font-style: italic; color: #a7a99c; }

/* Floating mobile call button */
.mobile-call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,246,241,0.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -10px rgba(23,30,20,0.3);
}
.mobile-call-bar a {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 14px;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark)); color: #fff !important;
  font-family: var(--sans); font-weight: 800; font-size: 1.1rem; border-radius: 999px; text-decoration: none;
}
.mobile-call-bar svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ===== Mobile ===== */
@media (max-width: 980px) {
  nav ul { gap: 18px; }
}
@media (max-width: 768px) {
  body { font-size: 17px; }
  .container { padding: 0 18px; }
  nav > ul { display: none; }
  .menu-toggle { display: block; }
  nav.open > ul {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px; gap: 16px; box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    align-items: stretch;
  }
  /* Mobile: Services becomes a tap accordion */
  .has-dropdown { width: 100%; }
  .dropdown-toggle { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 4px 0; }
  .dropdown-toggle::after { display: none; }
  .dropdown-menu {
    position: static; transform: none; min-width: 0; width: 100%;
    box-shadow: none; border: none; border-radius: 0; padding: 0;
    margin: 0; opacity: 1; visibility: hidden; pointer-events: none;
    max-height: 0; overflow: hidden;
    transition: max-height 0.28s var(--ease), opacity 0.2s var(--ease), margin 0.2s var(--ease);
  }
  .dropdown-menu::before { display: none; }
  .has-dropdown.open > .dropdown-menu {
    visibility: visible; pointer-events: auto; max-height: 420px; opacity: 1;
    margin: 8px 0 6px; transform: none; padding-left: 10px; border-left: 2px solid var(--line);
  }
  .has-dropdown:hover > .dropdown-menu { transform: none; }
  .dropdown-menu li a { padding: 10px 8px; }
  .nav { padding: 11px 18px; gap: 12px; }
  header.scrolled .nav { padding: 9px 18px; }
  .nav-right { gap: 12px; }
  .nav-social { display: none; }
  .logo-word { font-size: 1.15rem; }
  .logo-mark { width: 54px; height: 54px; }
  header.scrolled .logo-mark { width: 48px; height: 48px; }
  .logo-word small { font-size: 0.6rem; }
  .nav-phone { font-size: 1rem; gap: 6px; }
  .nav-phone-icon { width: 34px; height: 34px; }
  .cta-btn { padding: 10px 18px; font-size: 0.95rem; }
  .hero { padding: 56px 0 84px; }
  .hero.page-hero { padding: 44px 0 76px; }
  .hero-content { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { text-align: center; }
  .crumbs { text-align: center; }
  .hero-lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-promises li { justify-content: center; text-align: left; }
  .hero-cta { justify-content: center; }
  .hero-cta .cta-btn.large { font-size: 0.95rem; padding: 13px 20px; }
  .nav-phone span:last-child { display: none; }
  section { padding: 60px 0; }
  .section-head { margin-bottom: 42px; }
  .marquee-track span { font-size: 1.1rem; }
  .cta-band { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-call-bar { display: block; }
  footer { padding-bottom: 96px; }
}
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .nav { padding: 10px 14px; }
  .logo-mark { width: 48px; height: 48px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-lede { font-size: 1.02rem; }
  .quote-form { padding: 28px 20px; }
}
