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

h1, h2, h3, h4, h5, h6, p { margin: 0; }

body {
  margin: 0;
  background: var(--color-linen);
  font-family: var(--font-body);
  color: var(--color-ink-black);
}

img { max-width: 100%; display: block; }

a { color: var(--color-tiger-orange); }
a:hover { color: var(--color-dark-teal); }

.container {
  max-width: var(--maxw-container);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.container-wide {
  max-width: var(--maxw-container-wide);
  margin: 0 auto;
}

/* ---- Keyframes ---- */
@keyframes oasisFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ctaPulseWarm {
  0% { box-shadow: 0 0 0 0 var(--orange-60), 0 0 0 0 var(--ember-0); }
  60% { box-shadow: 0 0 0 6px var(--orange-0), 0 0 0 11px var(--ember-30); }
  100% { box-shadow: 0 0 0 6px var(--orange-0), 0 0 0 11px var(--ember-0); }
}

@keyframes ctaPulseWarmSoft {
  0% { box-shadow: 0 0 0 0 var(--orange-25), 0 0 0 0 var(--ember-0); }
  60% { box-shadow: 0 0 0 6px var(--orange-0), 0 0 0 11px var(--ember-10); }
  100% { box-shadow: 0 0 0 6px var(--orange-0), 0 0 0 11px var(--ember-0); }
}

@keyframes navPulseBlue {
  0% { box-shadow: 0 0 0 0 var(--ink-80), 0 0 0 0 var(--ink-0); }
  60% { box-shadow: 0 0 0 8px var(--ink-0), 0 0 0 14px var(--ink-30); }
  100% { box-shadow: 0 0 0 8px var(--ink-0), 0 0 0 14px var(--ink-0); }
}

@keyframes heroBannerPulse {
  0%, 100% { box-shadow: var(--shadow-hero-banner), 0 0 16px 2px var(--orange-35); }
  50% { box-shadow: var(--shadow-hero-banner), 0 0 36px 10px var(--orange-55); }
}

/* ---- Nav ---- */
.nav-link {
  color: var(--color-linen);
  font-size: var(--fs-nav-link);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: var(--duration-fast);
  text-transform: uppercase;
  padding: var(--space-8) var(--space-14);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  letter-spacing: var(--ls-nav);
}
.nav-link:hover {
  background: var(--color-ink-black);
  color: var(--color-tiger-orange);
  animation: navPulseBlue var(--duration-pulse) var(--ease-out) infinite;
}

/* ---- CTA buttons ----
   Base sizing matches the primary hero CTA ("Get a Free Quote") so any
   standalone .cta-btn (e.g. the About section's "About Us" button) is
   consistent by default. Contexts that need a different size (the compact
   hero quick-form Submit, the full-width contact form Submit) override
   padding/font-size below. */
.cta-btn {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  transition: var(--duration-base);
  box-shadow: var(--shadow-cta-rest);
  text-decoration: none;
  display: inline-block;
  font-size: var(--fs-cta);
  border-radius: var(--radius-md);
  padding: 17px 30px;
}
.cta-btn.cta-fill {
  background-image: linear-gradient(to right, var(--color-tiger-orange) 0%, var(--color-ember) 51%, var(--color-tiger-orange) 100%);
  background-size: 200% auto;
  background-position: left center;
  color: var(--color-white);
}
.cta-btn:hover {
  animation: ctaPulseWarm var(--duration-pulse) var(--ease-out) infinite;
  background-position: right center !important;
  transform: translateY(-2px);
}
.cta-outline {
  border: 1.5px solid var(--color-linen);
  background: transparent;
  color: var(--color-linen);
  padding: 16px 29px;
}
.cta-outline:hover {
  background-image: linear-gradient(to right, var(--white-18) 0%, var(--teal-25) 51%, var(--white-18) 100%) !important;
  background-size: 200% auto !important;
  border-color: var(--color-linen) !important;
  color: var(--color-linen) !important;
}

/* ---- Service cards ---- */
.svc-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--linen-10);
  min-height: 220px;
  text-decoration: none;
  cursor: pointer;
}
.svc-img-wrap {
  position: absolute;
  inset: 0;
  transition: transform .5s ease;
}
.svc-card:hover .svc-img-wrap { transform: scale(1.08); }
.svc-card:hover { animation: ctaPulseWarmSoft var(--duration-pulse-soft) var(--ease-out) infinite; }
.svc-card:hover .svc-learn { background: var(--color-tiger-orange); color: var(--color-ink-black) !important; }
.svc-card:hover .svc-title { color: var(--color-tiger-orange); }
.svc-title { transition: color var(--duration-fast); }
.svc-learn { transition: var(--duration-fast); }

/* ---- Hero quick-form ---- */
.hero-form-field {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--linen-30);
  border-radius: var(--radius-md);
  transition: border-color .2s;
  padding: 0 var(--space-10);
}
.hero-form-field:has(.hero-form-input:not(:placeholder-shown)) {
  border-color: var(--color-tiger-orange) !important;
}
.hero-form-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: var(--space-8) var(--space-10);
  font-size: var(--fs-body);
  font-family: inherit;
  background: transparent;
  color: var(--color-linen);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-form-input::placeholder { color: var(--linen-85); }
.hero-form-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: var(--color-linen) !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* ---- Section eyebrow / heading pattern (reused across About, Services, Reviews, Service Area, Contact) ---- */
.eyebrow {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-tiger-orange);
  text-transform: uppercase;
  margin-bottom: var(--space-14);
}
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
}

/* ---- Site header / nav ---- */
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-24) var(--section-px);
  gap: var(--space-20);
}
.logo-lockup {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  flex: none;
  text-decoration: none;
}
.logo-mark { border-radius: 50%; object-fit: cover; width: 48px; height: 42px; }
.logo-text { display: flex; flex-direction: column; line-height: var(--lh-tight); }
.logo-word {
  font-family: var(--font-heading);
  font-size: var(--fs-logo);
  letter-spacing: var(--ls-logo);
  color: var(--color-tiger-orange);
  line-height: 29px;
  font-weight: var(--fw-bold);
}
.logo-tagline {
  font-size: var(--fs-tagline);
  letter-spacing: var(--ls-tagline);
  color: var(--linen-70);
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: var(--space-20); flex: 1; justify-content: center; min-width: 0; }

/* ---- Services mega menu ---- */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-mega-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--color-linen);
  padding: var(--space-8);
  margin-left: -8px;
  cursor: pointer;
}
.nav-mega-toggle svg { transition: transform var(--duration-fast); }
.nav-item-has-mega:hover .nav-mega-toggle svg,
.nav-item-has-mega.is-open .nav-mega-toggle svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  max-width: 90vw;
  background: var(--color-ink-black);
  border: 1px solid var(--linen-15);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px var(--ink-40);
  padding: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.2,.8,.2,1), visibility 0.3s;
  z-index: 30;
}
.nav-item-has-mega:hover .mega-menu,
.nav-item-has-mega:focus-within .mega-menu,
.nav-item-has-mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* mega-menu-item pairs with .nav-link for identical type/color/hover treatment;
   this just adds the icon layout and full-width stacking the dropdown needs. */
.mega-menu-list { display: flex; flex-direction: column; gap: var(--space-8); }
.mega-menu-item { display: flex; align-items: center; gap: var(--space-12); width: 100%; justify-content: flex-start; }
.mega-menu-icon { flex: none; }
.site-header-phone { display: flex; align-items: center; gap: var(--space-18); flex: none; }
.site-header-phone a {
  color: var(--color-tiger-orange);
  font-size: var(--fs-hero-phone);
  font-weight: var(--fw-bold);
  text-decoration: none;
  white-space: nowrap;
}

/* Solid header for interior pages (services/towns) that have no hero photo behind it */
.site-header { background: var(--color-ink-black); }

/* On the homepage the header sits transparently over the hero photo instead */
.home .site-header {
  position: relative;
  z-index: 3;
  background: transparent;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink-75) 0%, var(--ink-50) 45%, var(--ink-85) 100%);
}
.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(180deg, var(--ink-85) 0%, var(--ink-0) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--section-px);
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: var(--fs-hero-headline);
  line-height: var(--lh-tight);
  color: var(--color-linen);
  max-width: var(--maxw-hero-headline);
  margin-bottom: var(--space-22);
  text-transform: uppercase;
}
.hero-subhead {
  font-size: var(--fs-subhead);
  line-height: var(--lh-relaxed);
  color: var(--linen-85);
  max-width: var(--maxw-hero-subhead);
  margin-bottom: var(--space-34);
}
.hero-ctas { display: flex; gap: var(--space-14); margin-bottom: var(--space-36); }

/* ---- Hero bottom banner (schedule-service + quick form) ---- */
.hero-banner {
  position: relative;
  flex: none;
  background: var(--color-hero-banner-bg);
  box-shadow: var(--shadow-hero-banner);
  animation: heroBannerPulse var(--duration-banner-pulse) ease-in-out infinite;
}
.hero-banner-inner {
  padding: var(--space-22) var(--section-px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-28);
}
.hero-banner-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h3-banner);
  font-weight: var(--fw-bold);
  color: var(--color-linen);
  margin: 0;
  line-height: var(--lh-heading);
  text-transform: uppercase;
}
.hero-banner-divider { width: 1px; height: 36px; flex: none; background-color: var(--color-hero-divider); }
.hero-rating { display: flex; align-items: center; gap: var(--space-10); margin-bottom: var(--space-10); }
.hero-rating .stars { display: flex; gap: 2px; color: var(--color-tiger-orange); }
.hero-rating-text { font-weight: var(--fw-bold); color: var(--color-linen); font-size: var(--fs-body-lg); white-space: nowrap; }
.hero-form-row { display: flex; align-items: center; gap: var(--space-12); flex: none; flex-wrap: wrap; justify-content: flex-start; }
.hero-form-field { flex: 1; min-width: 160px; max-width: var(--maxw-form-field-sm); }
.hero-form-field.hero-form-field-msg { max-width: var(--maxw-form-field-msg); }
.hero-form-field svg { flex: none; opacity: .7; }
.hero-form-row .cta-btn { flex: none; width: auto; padding: 10px 23px; font-size: var(--fs-cta); border-radius: var(--radius-md); }

/* ---- About ---- */
.about-section { background: var(--color-linen); padding: var(--section-py) var(--section-px); }
.about-inner { max-width: var(--maxw-container); margin: 0 auto; display: flex; flex-wrap: wrap; gap: var(--space-56); align-items: center; }
.about-photo { width: 611px; height: 451px; flex: none; border-radius: var(--radius-2xl); object-fit: cover; }
.about-copy { flex: 1 1 420px; min-width: 420px; }
.about-heading { font-family: var(--font-heading); font-size: var(--fs-h2); line-height: var(--lh-snug); color: var(--color-dark-teal); margin-bottom: var(--space-20); }
.about-body { font-size: var(--fs-body-lg); line-height: var(--lh-loose); color: var(--color-text-body); margin-bottom: var(--space-24); }
.badge-list { display: flex; flex-wrap: wrap; gap: var(--space-12); margin-bottom: var(--space-28); }
.badge {
  display: flex; align-items: center; gap: var(--space-8);
  padding: 10px var(--space-16);
  background: var(--color-white);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-card);
}
.badge span { font-size: var(--fs-small); font-weight: var(--fw-semibold); color: var(--color-dark-teal); }

/* ---- Services ---- */
.services-section { background: var(--color-ink-black); padding: var(--section-py) var(--section-px); }
.services-inner { max-width: var(--maxw-container); margin: 0 auto; }
.services-header { text-align: center; margin-bottom: var(--space-48); }
.services-header .section-heading { color: var(--color-linen); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-22); }
.svc-card-media { position: relative; padding: var(--card-padding); display: flex; flex-direction: column; justify-content: flex-end; min-height: 220px; }
.svc-card-overlay { position: absolute; inset: 0; background: linear-gradient(45deg, var(--ink-95) 0%, var(--ink-80) 35%, var(--ink-15) 75%); }
.svc-icon { margin-bottom: var(--space-14); }
.svc-title { font-family: var(--font-heading); font-size: var(--fs-card-title); color: var(--color-linen); margin-bottom: var(--space-10); text-transform: uppercase; position: relative; }
.svc-desc { font-size: var(--fs-body); line-height: var(--lh-relaxed); color: var(--linen-85); margin-bottom: var(--space-16); position: relative; }
.svc-learn { display: block; color: var(--color-tiger-orange); font-size: var(--fs-body); font-weight: var(--fw-bold); padding: 12px var(--space-24); margin: 0 -24px -24px; text-align: left; position: relative; }

/* ---- Reviews ---- */
.reviews-section { background: var(--color-linen); padding: var(--section-py) var(--section-px); }
.reviews-inner { max-width: var(--maxw-container); margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: var(--space-16); }
.reviews-header .section-heading { color: var(--color-dark-teal); margin-bottom: var(--space-14); }
.reviews-rating-row { display: flex; align-items: center; justify-content: center; gap: var(--space-10); }
.reviews-rating-row .stars { display: flex; gap: 2px; color: var(--color-tiger-orange); }
.reviews-rating-text { font-size: var(--fs-nav-phone); font-weight: var(--fw-bold); color: var(--color-dark-teal); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-22); max-width: var(--maxw-content); margin: 40px auto 0; }
.review-card { background: var(--color-white); border-radius: var(--radius-lg); padding: var(--card-padding); border: 1px solid var(--color-border-card); }
.review-card .stars { display: flex; gap: 2px; color: var(--color-tiger-orange); margin-bottom: var(--space-12); }
.review-quote { font-size: var(--fs-19); line-height: var(--lh-relaxed); color: var(--color-text-body); margin-bottom: var(--space-16); }
.review-quote--clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.review-read-more {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  margin: -8px 0 var(--space-16);
  color: var(--color-tiger-orange);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  font-family: inherit;
  cursor: pointer;
}
.review-read-more:hover { color: var(--color-dark-teal); text-decoration: underline; }
.review-name { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--color-dark-teal); }

/* ---- Review "read more" modal ---- */
.review-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.review-modal.is-open { opacity: 1; visibility: visible; }
.review-modal-backdrop { position: absolute; inset: 0; background: var(--ink-85); }
.review-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--card-padding-lg);
  max-width: 680px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.review-modal.is-open .review-modal-panel { transform: translateY(0); }
.review-modal-close {
  position: absolute;
  top: var(--space-16);
  right: var(--space-16);
  background: none;
  border: none;
  color: var(--color-text-muted);
  padding: var(--space-8);
  cursor: pointer;
  line-height: 0;
}
.review-modal-close:hover { color: var(--color-ink-black); }
.review-modal-panel .stars { display: flex; gap: 2px; color: var(--color-tiger-orange); margin-bottom: var(--space-16); }
.review-modal-quote { font-size: var(--fs-19); line-height: var(--lh-loose); color: var(--color-text-body); margin-bottom: var(--space-24); }
.review-modal-name { font-size: var(--fs-card-title); font-weight: var(--fw-bold); color: var(--color-dark-teal); }

/* ---- Service Area ---- */
.service-area-section { background: var(--color-ink-black); padding: var(--section-py) var(--section-px); }
.service-area-inner { max-width: var(--maxw-container); margin: 0 auto; }
.service-area-header { text-align: center; margin-bottom: var(--space-16); }
.service-area-icon { color: var(--color-tiger-orange); margin: 0 auto var(--space-18); display: block; }
.service-area-header .section-heading { color: var(--color-linen); margin-bottom: 12px; }
.service-area-copy { font-size: var(--fs-body-lg); color: var(--linen-75); max-width: var(--maxw-service-area-copy); margin: 0 auto; }
.service-area-map { width: 100%; max-width: var(--maxw-content); height: 340px; display: block; margin: 0 auto var(--space-32); border-radius: var(--radius-2xl); object-fit: cover; }
.town-pills { display: flex; flex-wrap: wrap; gap: var(--space-10); justify-content: center; max-width: var(--maxw-town-pills); margin: 0 auto; }
.town-pill {
  padding: 9px var(--space-16);
  border-radius: var(--radius-pill);
  border: 1px solid var(--linen-25);
  color: var(--color-linen);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-medium);
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}
.town-pill:hover {
  color: var(--color-tiger-orange);
  border-color: var(--color-tiger-orange);
}

/* ---- Contact ---- */
.contact-section { background: var(--color-linen); padding: var(--section-py) var(--section-px); }
.contact-inner { max-width: var(--maxw-container); margin: 0 auto; display: flex; gap: var(--space-64); }
.contact-copy { flex: 1; }
.contact-copy .section-heading { color: var(--color-dark-teal); margin-bottom: var(--space-20); }
.contact-body { font-size: var(--fs-body-lg); line-height: var(--lh-loose); color: var(--color-text-body); margin-bottom: var(--space-24); }
.contact-phone { font-size: var(--fs-phone-lg); font-weight: var(--fw-bold); color: var(--color-dark-teal); margin-bottom: var(--space-8); }
.contact-phone a { color: var(--color-dark-teal); text-decoration: none; }
.contact-note { font-size: var(--fs-nav-phone); color: var(--color-text-muted); }
.contact-form { flex: 1; background: var(--color-white); border-radius: var(--radius-xl); padding: var(--card-padding-lg); border: 1px solid var(--color-border-card); }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-14); margin-bottom: var(--space-14); }
.contact-form-grid input,
.contact-form-grid select,
.contact-form-grid textarea {
  padding: var(--space-12) var(--space-14);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-border-input);
  font-size: var(--fs-nav-phone);
  font-family: inherit;
}
.contact-form-grid select { color: var(--color-text-muted); }
.contact-form-grid textarea { resize: vertical; }
.span-2 { grid-column: span 2; }
.contact-form .cta-btn { width: 100%; padding: 15px; border-radius: var(--radius-md); font-size: var(--fs-body-lg); }

/* ---- FAQ ---- */
.faq-section { background: var(--color-ink-black); padding: var(--section-py) var(--section-px); }
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: var(--space-48); }
.faq-header .section-heading { color: var(--color-linen); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-12); }
.faq-item {
  background: var(--linen-10);
  border: 1px solid var(--linen-15);
  border-radius: var(--radius-lg);
  padding: var(--space-20) var(--card-padding);
}
.faq-item[open] { background: var(--linen-15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  font-family: var(--font-heading);
  font-size: var(--fs-card-title);
  color: var(--color-linen);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-chevron { flex: none; color: var(--color-tiger-orange); transition: transform var(--duration-fast); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { font-size: var(--fs-body-lg); line-height: var(--lh-relaxed); color: var(--linen-85); margin-top: var(--space-16); }

/* ---- Footer ---- */
.site-footer { background: var(--color-ink-black); padding: var(--space-56) var(--section-px) var(--space-32); }
.footer-columns { display: flex; justify-content: space-between; gap: var(--space-48); margin-bottom: var(--space-36); flex-wrap: wrap; }
.footer-brand { max-width: var(--maxw-footer-col); }
.footer-logo-row { display: flex; align-items: center; gap: var(--space-10); margin-bottom: var(--space-14); }
.footer-sun { color: var(--color-tiger-orange); }
.footer-logo-text { font-family: var(--font-heading); font-size: 19px; color: var(--color-linen); }
.footer-tagline { font-size: var(--fs-small); color: var(--linen-60); line-height: var(--lh-relaxed); margin: 0; }
.footer-heading { font-size: var(--fs-small); font-weight: var(--fw-bold); color: var(--color-tiger-orange); text-transform: uppercase; letter-spacing: var(--ls-footer-heading); margin-bottom: var(--space-14); }
.footer-links { display: flex; flex-direction: column; gap: var(--space-10); }
.footer-links a { color: var(--linen-75); font-size: var(--fs-20); text-decoration: none; }
.footer-links a:hover { color: var(--color-white); }
.footer-contact-line { font-size: var(--fs-20); color: var(--linen-75); margin-bottom: var(--space-8); }
.footer-contact-line a:hover { color: var(--color-white); }
.footer-contact-line a { color: var(--linen-75); text-decoration: none; }
.footer-social { display: flex; gap: var(--space-12); color: var(--linen-75); margin-top: var(--space-14); }
.footer-bottom { border-top: 1px solid var(--linen-15); padding-top: var(--space-24); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-12); font-size: var(--fs-small); color: var(--linen-50); }

/* ---- Service pages (not part of the original single-page export — Phase 3 collection, built to match its visual language) ---- */
.service-hero { position: relative; min-height: 320px; display: flex; align-items: center; overflow: hidden; }
.service-hero-bg { position: absolute; inset: 0; }
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.service-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--ink-75) 0%, var(--ink-50) 45%, var(--ink-85) 100%); }
.service-hero-content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  padding: var(--space-56) var(--section-px);
  max-width: var(--maxw-hero-headline);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-hero-title { font-family: var(--font-heading); font-size: var(--fs-service-h1); line-height: var(--lh-snug); color: var(--color-linen); text-transform: uppercase; margin: 0 0 var(--space-20); }
.service-hero-lede { font-size: var(--fs-subhead); line-height: var(--lh-relaxed); color: var(--linen-85); margin-bottom: var(--space-34); }
.service-hero .hero-ctas { margin-bottom: 0; }

.service-body-section { background: var(--color-linen); padding: var(--space-56) var(--section-px); }
.service-body-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.service-body-heading { color: var(--color-dark-teal); margin-bottom: var(--space-24); }
.service-body-inner p { font-size: var(--fs-body-lg); line-height: var(--lh-loose); color: var(--color-text-body); margin-bottom: var(--space-24); text-align: left; }
.service-body-inner .badge-list { justify-content: center; }

.related-services-section { background: var(--color-ink-black); padding: var(--space-56) var(--section-px); }
.related-services-section .services-header { margin-bottom: var(--space-32); }
.related-services-section .section-heading { color: var(--color-linen); }

/* ---- Responsive (not specified in the handoff — authored to preserve the visual language on smaller screens) ---- */
@media (max-width: 960px) {
  .site-header-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .site-nav { order: 3; flex-basis: 100%; justify-content: center; flex-wrap: wrap; gap: var(--space-8); }
  .hero-headline { font-size: 44px; }
  .about-inner, .contact-inner { flex-direction: column; }
  .about-photo { width: 100%; height: auto; aspect-ratio: 611 / 451; }
  .about-copy, .contact-copy, .contact-form { min-width: 0; width: 100%; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .contact-form-grid input:not(.span-2), .contact-form-grid select { grid-column: span 2; }
  .footer-columns { flex-direction: column; gap: var(--space-32); }
  .service-hero-title { font-size: 32px; }
  .mega-menu { width: min(92vw, 260px); }
  .hero-banner-inner { flex-direction: column; text-align: center; gap: var(--space-14); }
  .hero-banner-divider { display: none; }
  .hero-rating { justify-content: center; margin-bottom: var(--space-8); }
  .hero-form-row { justify-content: center; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 32px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-banner-inner { flex-direction: column; align-items: stretch; }
  .hero-form-row { flex-direction: column; align-items: stretch; }
  .hero-form-field, .hero-form-field.hero-form-field-msg { max-width: none; }
}
