/* ==========================================================================
   base.css — layout, typography, and components
   Theme colors/fonts are in theme.css (generated per client)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & box model
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: var(--color-primary);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: .75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-align: center;
}

.btn--lg { padding: .85rem 2rem; font-size: 1.05rem; }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--primary:hover { filter: brightness(1.12); }

.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn--accent:hover { filter: brightness(1.1); }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}
.btn--outline-dark {
  background: transparent;
  color: #111;
  border-color: #111;
}
.btn--outline-dark:hover {
  background: #111;
  color: #fff;
}
.btn--outline-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn--outline-primary:hover {
  filter: brightness(0.9);
}
.hero .btn--outline {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.hero .btn--outline:hover {
  filter: brightness(0.9);
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  padding: 1.5rem 0;
}

.section--alt {
  background: #eaecf0;
}

.section--primary {
  background: var(--color-primary);
  color: #fff;
}
.section--primary .section__title { color: #fff; }

.section--why_choose {
  padding-top: 2.5rem;
}

.testimonials-placeholder,
.map-placeholder {
  padding: 0;
}

.map-embed iframe {
  display: block;
  border-radius: 8px;
}

/* Map + Contact side-by-side */
.map-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.map-contact__map {
  display: flex;
}

.map-contact__map iframe {
  display: block;
  border-radius: 8px;
  width: 100%;
  min-height: 400px;
  flex: 1;
}

@media (max-width: 768px) {
  .map-contact__layout {
    grid-template-columns: 1fr;
  }
}

.section__title {
  margin-bottom: 1.5rem;
  text-align: center;
}
h2 > a[href]::after { content: " \2192"; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

/* Transparent-until-scroll nav (fullscreen hero home pages) */
.nav--transparent {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  transition: background .3s, border-color .3s;
}
.nav--transparent .nav__link { color: rgba(255,255,255,.9); }
.nav--transparent .nav__link:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav--transparent .nav__link--active { color: #fff; }
.nav--transparent .nav__logo-text { color: #fff; }
.nav--transparent .nav__logo img { filter: var(--logo-filter); }
.nav.nav--transparent .nav__mobile-toggle span { background: #fff; }
.nav--hamburger.nav--transparent .nav__mobile-toggle,
.nav--hamburger-flat.nav--transparent .nav__mobile-toggle { border-color: rgba(255,255,255,.6); }
.nav--transparent.nav--scrolled {
  background: #fff;
  border-bottom-color: #e5e7eb;
}
.nav--transparent.nav--scrolled .nav__link { color: #374151; }
.nav--transparent.nav--scrolled .nav__link:hover { color: var(--color-primary); background: #f3f4f6; }
.nav--transparent.nav--scrolled .nav__link--active { color: var(--color-primary); }
.nav--transparent.nav--scrolled .nav__logo-text { color: var(--color-primary); }
.nav--transparent.nav--scrolled .nav__logo img { filter: none; }
.nav.nav--transparent.nav--scrolled .nav__mobile-toggle span { background: var(--color-primary); }

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
}

.nav__logo { text-decoration: none; min-width: 0; max-width: min(360px, 40%); }
.nav__logo img { display: block; width: auto; max-width: 100%; height: auto; max-height: 44px; }
.nav__logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
}

/* Hamburger variants: hide inline links */
.nav--hamburger .nav__links,
.nav--hamburger-flat .nav__links { display: none; }

.nav__link {
  padding: .4rem .75rem;
  border-radius: 4px;
  font-size: .9rem;
  white-space: nowrap;
  font-weight: 500;
  text-decoration: none;
  color: #374151;
  transition: color .15s, background .15s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav__link::after {
  content: attr(data-text);
  font-weight: 600;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.nav__link:hover { color: var(--color-primary); background: #f3f4f6; }
.nav__link--active { color: var(--color-primary); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; }
.nav__actions .btn { font-weight: 700; }

/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; }

/* Mobile toggle — hidden by default (full nav style) */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav__mobile-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  transition: transform .2s, opacity .2s, background .2s;
}

/* Hamburger styled: matches phone/CTA button */
.nav--hamburger .nav__inner { gap: .5rem; }
.nav--hamburger .nav__mobile-toggle {
  display: flex;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  padding: .91rem;
  transition: background .2s, border-color .2s;
}
.nav--hamburger .nav__mobile-toggle span { width: 20px; background: var(--color-primary); }
.nav--hamburger .nav__mobile-toggle:hover { background: var(--color-primary); }
.nav--hamburger .nav__mobile-toggle:hover span { background: #fff; }

/* Hamburger flat: minimal icon, no border */
.nav--hamburger-flat .nav__mobile-toggle {
  display: flex;
  width: 24px;
  height: 18px;
  justify-content: space-between;
  gap: 0;
}
.nav--hamburger-flat .nav__mobile-toggle span { background: var(--color-primary); }

/* Full-primary — transparent until scroll, fills to primary color */
.nav--full-primary {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  transition: background .3s, border-color .3s;
}
.nav--full-primary .nav__link { color: rgba(255,255,255,.9); }
.nav--full-primary .nav__link:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav--full-primary .nav__link--active { color: #fff; font-weight: 600; }
.nav--full-primary .nav__logo-text { color: #fff; }
.nav--full-primary .nav__logo img { filter: var(--logo-filter); }
.nav--full-primary .nav__mobile-toggle span { background: #fff; }
.nav--full-primary .nav__phone {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.nav--full-primary .nav__phone:hover {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.88);
}
.nav--full-primary.nav--scrolled {
  background: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.nav--full-primary.nav--scrolled .nav__phone {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.nav--full-primary.nav--scrolled .nav__phone:hover {
  background: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.88);
}
.nav--full-primary.nav--scrolled .nav__link { color: rgba(255,255,255,.9); }
.nav--full-primary.nav--scrolled .nav__link:hover { color: #fff; background: rgba(255,255,255,.15); }
.nav--full-primary.nav--scrolled .nav__link--active { color: #fff; }

/* full-primary is always fixed — compensate on non-fullscreen-hero pages */
.nav--full-primary + main:not(:has(> .hero--fullscreen, > .hero--hero-form, > .hero--hero-form-color)) {
  padding-top: var(--nav-height);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--color-primary);
  color: #fff;
  padding: 5rem 0;
}

.hero h1, .hero .hero__h1 { color: #fff; margin-bottom: 1rem; }
.hero__intro { font-size: 1.15rem; max-width: 600px; margin-bottom: 2rem; opacity: .9; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero with image — two-column layout */
.hero--with-image .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__image { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.hero__image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
  .hero--with-image .container { display: block; }
  .hero__image { display: none; }
}

/* Fullbleed hero — background image with dark overlay */
.hero--fullbleed {
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--fullbleed::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero--fullbleed .container { position: relative; z-index: 1; }
.hero--short.hero--fullbleed { background-image: none; }
.hero--short.hero--fullbleed::before { display: none; }

/* Fullscreen hero — 100vh, nav overlays via fixed positioning */
.hero--fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero--fullscreen .container { position: relative; z-index: 1; }

/* Hero-form — fullscreen + two-column with inline contact form */
.hero--hero-form {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--hero-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero--hero-form .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero__form-panel {
  background: #fff;
  border-radius: 7px;
  padding: 2rem;
}
.hero__form-heading {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 1.25rem;
  text-align: center;
}
.hero__form-logo {
  display: block;
  max-width: 160px;
  max-height: 60px;
  width: auto;
  height: auto;
  margin: 0 auto 1.25rem;
  filter: var(--hero-logo-filter);
}
@media (max-width: 767px) {
  .hero__form-logo { max-width: 120px; max-height: 45px; margin-bottom: 1rem; }
}
@media (max-width: 767px) {
  .hero--hero-form { min-height: auto; padding: 2rem 0; }
  .hero--hero-form .container { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nav--full-primary + main .hero--hero-form {
    padding-top: calc(2rem + var(--nav-height));
  }
}

/* Hero-form-color — same as hero-form with accent-colored form panel */
.hero--hero-form-color {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero--hero-form-color::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 0;
}
.hero--hero-form-color .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}
.hero--hero-form-color .hero__form-panel {
  background: var(--color-accent);
  border-radius: 7px;
  padding: 2rem;
}
.hero--hero-form-color .hero__form-heading {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 5vw, 1.8rem);
}
.hero--hero-form-color .contact-form label { color: rgba(255,255,255,.9); }
.hero--hero-form-color .contact-form input,
.hero--hero-form-color .contact-form textarea {
  background: #fff;
  border-color: transparent;
}
.hero--hero-form-color .contact-form__submit {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
@media (max-width: 767px) {
  .hero--hero-form-color { min-height: auto; padding: 2rem 0; }
  .hero--hero-form-color .container { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .nav--full-primary + main .hero--hero-form-color {
    padding-top: calc(2rem + var(--nav-height));
  }
}

/* Sticky nav (full, hamburger) sits in flow — subtract its height from fullscreen heroes */
:root { --nav-height: 65px; }
.nav:not(.nav--transparent):not(.nav--full-primary) + main .hero--fullscreen,
.nav:not(.nav--transparent):not(.nav--full-primary) + main .hero--hero-form,
.nav:not(.nav--transparent):not(.nav--full-primary) + main .hero--hero-form-color {
  min-height: calc(100vh - var(--nav-height));
}

/* --------------------------------------------------------------------------
   CTA Band
   -------------------------------------------------------------------------- */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 2rem;
}
.cta-band__inner .btn {
  justify-self: end;
}

.cta-band__headline { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; }
.cta-band__body { opacity: .9; margin: 0; }
.cta-band--bottom { background: #111827; }

/* --------------------------------------------------------------------------
   Core Services
   -------------------------------------------------------------------------- */
.core-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.core-services__card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: box-shadow .2s;
  text-decoration: none;
}
.core-services__card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

.core-services__card-img { aspect-ratio: 16/9; overflow: hidden; }
.core-services__card-img img { width: 100%; height: 100%; object-fit: cover; }

.core-services__card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex: 1;
}
.core-services__card-title { font-size: 1rem; color: var(--color-primary); margin-bottom: 0; }
.core-services__card-body { gap: .25rem; }
.core-services__card-body p { font-size: .875rem; color: #4b5563; line-height: 1.5; margin-top: .25rem; margin-bottom: .5rem; flex: 1; }

/* --------------------------------------------------------------------------
   Areas list
   -------------------------------------------------------------------------- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin-top: 1rem;
}
.areas-list__item {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .875rem;
  color: #374151;
}
a.areas-list__item { text-decoration: none; }
a.areas-list__item:hover { color: var(--color-primary); border-color: var(--color-primary); }

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */
.gallery { padding-bottom: 3rem; }
.section--map-contact { padding-top: 3rem; }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid .gallery__item:nth-child(9) { display: none; }
}
@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
}
.gallery__item { border-radius: 6px; overflow: hidden; aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   REVIEWS WIDGET
   -------------------------------------------------------------------------- */
.reviews__summary {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-primary);
  font-weight: 600;
}
.reviews__stars { color: #f5a623; letter-spacing: 2px; }

.reviews__carousel {
  position: relative;
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s ease;
}
.reviews__track:hover { /* pause auto-scroll handled in JS */ }
.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
@media (max-width: 1023px) {
  .review-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 599px) {
  .review-card { flex: 0 0 100%; }
}
.reviews__arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.reviews__arrow {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  color: #fff;
  transition: background .2s, border-color .2s;
}
.reviews__arrow:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.review-card { display: flex; flex-direction: column; }
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.review-card__rating { display: flex; align-items: center; gap: .35rem; }
.review-card__rating-num { font-size: 1.25rem; font-weight: 700; color: #f5a623; }
.review-card__stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.review-card__date { font-size: .8rem; color: #888; }
.review-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
}
.review-card__author-info { display: flex; align-items: center; gap: .5rem; }
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #c4c4c4; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.review-card__author { font-weight: 400; font-size: .85rem; color: #555; }
.review-card__google { flex-shrink: 0; }
.review-card__text {
  font-size: .9rem; line-height: 1.6; color: #444; margin: 0;
}
.review-card__text--truncated { overflow: hidden; }
.review-card__toggle {
  background: none; border: none; color: #4285F4; font-size: .9rem;
  cursor: pointer; padding: 0; margin-left: .25rem;
  font-weight: 400; display: none; white-space: nowrap;
}
.review-card__toggle--visible { display: inline; }
.review-card__toggle:hover { color: #3367D6; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq__list { max-width: 780px; margin: 0 auto; }

.faq__item {
  border-bottom: 1px solid #e5e7eb;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  color: #111827;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
}
details[open] .faq__question::after { content: "−"; }

.faq__answer {
  padding: 0 0 1.1rem;
  color: #4b5563;
  font-size: .95rem;
}

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  line-height: 1;
  padding: .25rem .5rem;
}
.modal__close:hover { color: #111827; }

.modal__title { margin-bottom: 1.25rem; font-size: 1.35rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 3.5rem 0 2rem;
  font-size: .9rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__business-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.footer__loc-address { margin: .5rem 0 0; color: #9ca3af; }
.footer__appointment { margin: .4rem 0 0; font-size: .8rem; font-weight: 600; color: var(--color-accent); text-transform: uppercase; letter-spacing: .04em; }
.footer__brand p { margin: .25rem 0 0; }
.footer__brand a { color: var(--color-accent); text-decoration: none; }
.footer__brand a:hover { text-decoration: underline; }

.footer__locations { display: flex; flex-wrap: wrap; gap: 2rem; }
.footer__location strong { color: #fff; }
.footer__location p { margin: .25rem 0 0; }
.footer__location a { color: var(--color-accent); text-decoration: none; }
.footer__location a:hover { text-decoration: underline; }

.footer__hours { margin-top: .4rem; }
.footer__hours li { color: #9ca3af; font-size: .85rem; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
}
.footer__nav-link { color: #9ca3af; text-decoration: none; }
.footer__nav-link:hover { color: #fff; }

.footer__social { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #9ca3af;
  border: 1px solid #374151;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
}
.footer__social-link svg { width: 1.1rem; height: 1.1rem; display: block; }
.footer__social-link:hover { color: #fff; border-color: #6b7280; background: #1f2937; }

.footer__legal {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  color: #6b7280;
  font-size: .8rem;
}
.footer__legal p { margin: .25rem 0; }
.footer__legal a { color: #9ca3af; }
.footer__legal a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Responsive — 768px breakpoint
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 1023px) {
  .nav--full .nav__links,
  .nav--full-primary .nav__links { display: none; }
  .nav--full .nav__mobile-toggle,
  .nav--full-primary .nav__mobile-toggle { display: flex; width: 24px; height: 18px; justify-content: space-between; gap: 0; }
  .nav--full .nav__mobile-toggle span { width: 100%; background: var(--color-primary); }
  .nav--full-primary .nav__mobile-toggle span { width: 100%; background: #fff; }
  .nav__actions { display: none; }

  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    padding: .75rem 1rem;
    gap: .75rem;
  }
  .mobile-cta-bar--with-widget { padding-right: 76px; }

  .mobile-cta-bar .btn {
    flex: 1;
    min-width: 0;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: .78rem;
    white-space: nowrap;
  }
  .mobile-cta-bar--with-widget .btn { font-size: .72rem; padding-left: .4rem; padding-right: .4rem; overflow: hidden; }
}

.nav .nav__links--open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  padding: 2rem;
  gap: 1rem;
  z-index: 98;
}
.nav .nav__links--open .nav__link {
  font-size: 1.5rem;
  padding: 0.75rem 1rem;
}
.nav__mobile-toggle span { transition: transform .2s, opacity .2s; }
.nav__mobile-toggle--open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__mobile-toggle--open span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle--open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav--full-primary .nav__links--open .nav__link { color: #1a1a1a; }
.nav--full-primary .nav__links--open .nav__link:hover { color: var(--color-primary); background: rgba(0,0,0,.05); }
.nav--full-primary .nav__links--open .nav__link--active { color: var(--color-primary); }

@media (max-width: 767px) {
  .cta-band__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-band__inner .btn { justify-self: center; width: 100%; white-space: normal; }
  .hero__cta { flex-direction: column; align-items: stretch; width: fit-content; margin-left: auto; margin-right: auto; }
  .hero__cta .btn { padding-left: 1rem; padding-right: 1rem; }
}

/* --------------------------------------------------------------------------
   Hero variant — short (no full-height treatment)
   -------------------------------------------------------------------------- */
.hero--short { padding: 3rem 0; }

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumbs__list { display: flex; flex-wrap: wrap; list-style: none; gap: 0.25rem; }
.breadcrumbs__item + .breadcrumbs__item::before { content: "›"; margin-right: 0.25rem; }

.breadcrumbs--standard { padding: 0.75rem 0; font-size: 0.8125rem; color: #6b7280; background: #f9fafb; border-bottom: 1px solid #e5e7eb; position: relative; z-index: 1; }
.breadcrumbs--standard .breadcrumbs__item a { color: var(--color-primary); text-decoration: none; }
.breadcrumbs--standard .breadcrumbs__item a:hover { text-decoration: underline; }

.hero__breadcrumb { font-size: .85rem; margin-bottom: .75rem; opacity: .8; }
.hero__breadcrumb a { color: #fff; text-decoration: underline; }

/* --------------------------------------------------------------------------
   Related Services (service_location)
   -------------------------------------------------------------------------- */
.related-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.related-services__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.related-services__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.related-services__arrow { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   Service list (category_hub)
   -------------------------------------------------------------------------- */
.service-list__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.service-list__grid--cols-1 { grid-template-columns: 1fr; }
.service-list__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.service-list__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.service-list__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
/* Lone card at start of last row expands full width — body-copy grids only */
.service-list__grid--cols-3 > *:last-child:nth-child(3n + 1) { grid-column: 1 / -1; }
@media (max-width: 767px) {
  .service-list__grid--cols-2,
  .service-list__grid--cols-3,
  .service-list__grid--cols-4 { grid-template-columns: 1fr; }
}

.service-list__card {
  display: block;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.service-list__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.service-list__card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-list__card-title { font-size: 1rem; color: var(--color-primary); }
.service-list__card-arrow { color: var(--color-primary); }
.service-list__card-copy { font-size: .875rem; color: #4b5563; margin-top: .25rem; margin-bottom: .5rem; line-height: 1.5; }
.service-list__card h2,
.service-list__card h3 { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Area listing — services (no links)
   -------------------------------------------------------------------------- */
.area-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.area-services__cat-name { font-size: 1rem; margin-bottom: .5rem; }
.area-services__list li {
  padding: .2rem 0;
  font-size: .9rem;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
}

/* --------------------------------------------------------------------------
   Nearest location callout
   -------------------------------------------------------------------------- */
.nearest-location__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.nearest-location__inner a:not(.btn) { color: var(--color-primary); }

/* --------------------------------------------------------------------------
   Branding home — locations grid
   -------------------------------------------------------------------------- */
.locations-grid__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.locations-grid__grid--cols-1 { grid-template-columns: 1fr; }
.locations-grid__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.locations-grid__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.locations-grid__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) {
  .locations-grid__grid--cols-2,
  .locations-grid__grid--cols-3,
  .locations-grid__grid--cols-4 { grid-template-columns: 1fr; }
}

.locations-grid__card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.locations-grid__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.locations-grid__name { font-size: 1.1rem; color: var(--color-primary); font-weight: 600; }
.locations-grid__link { font-size: .85rem; color: #6b7280; }
#locations,
#reviews { scroll-margin-top: calc(var(--nav-height) + 1rem); }

.footer__brand .footer__all-locations {
  display: inline-block;
  margin-top: .75rem;
  padding: .3rem .75rem;
  font-size: .8rem;
  color: #9ca3af;
  border: 1px solid #374151;
  border-radius: 6px;
  text-decoration: none;
  transition: color .15s, border-color .15s, background .15s;
}
.footer__brand .footer__all-locations:hover { color: #fff; border-color: #6b7280; background: #1f2937; }

/* --------------------------------------------------------------------------
   Services overview (branding_home / services_listing)
   -------------------------------------------------------------------------- */
.services-overview__grid,
.services-listing > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .services-overview__grid,
  .services-listing > .container { gap: 1rem; }
}
.services-overview__category h3,
.services-listing__cat-name { font-size: 1rem; margin-bottom: .5rem; }
.services-overview__category ul li,
.services-listing__item {
  padding: .25rem 0;
  font-size: .9rem;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
}

/* --------------------------------------------------------------------------
   Areas hub (service_areas_hub)
   -------------------------------------------------------------------------- */
.areas-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.areas-hub__card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  text-decoration: none;
  color: #111827;
  background: #fff;
  transition: border-color .15s;
}
.areas-hub__card:hover { border-color: var(--color-primary); }
.areas-hub__card--core { border-color: var(--color-primary); background: #f0f5ff; }
.areas-hub__name { font-weight: 500; font-size: .95rem; }
.areas-hub__badge { font-size: .75rem; color: var(--color-primary); font-weight: 600; }
.areas-hub__arrow { color: #9ca3af; }

/* --------------------------------------------------------------------------
   Gallery grid column variants
   -------------------------------------------------------------------------- */
.gallery__grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery__grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery__grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 767px) {
  .gallery__grid--cols-2,
  .gallery__grid--cols-3,
  .gallery__grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery__grid--cols-2,
  .gallery__grid--cols-3,
  .gallery__grid--cols-4 { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Pricing page
   -------------------------------------------------------------------------- */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.pricing__card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  background: #fff;
  text-align: center;
}
.pricing__name { font-size: 1rem; color: var(--color-primary); margin-bottom: .25rem; }
.pricing__description { font-size: .875rem; color: #6b7280; margin: .25rem 0 .75rem; line-height: 1.5; }
.pricing__price { font-size: 1.5rem; font-weight: 700; color: #1a1a1a; margin: 0; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-page__inner { grid-template-columns: 1fr 1fr; }
}

.contact-entries { display: flex; flex-direction: column; gap: 2rem; }
.contact-entry h2, .contact-entry h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.contact-entry p { margin: .25rem 0; }
.contact-entry__phone { font-size: 1.1rem; font-weight: 600; }
.contact-entry__phone a { color: var(--color-primary); text-decoration: none; }
.contact-entry__hours { margin-top: .5rem; }
.contact-entry__hours li { font-size: .875rem; color: #4b5563; }

.contact-form-wrap h2 { margin-bottom: .5rem; }
.contact-form-wrap > p { color: #4b5563; margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-form__group { display: flex; flex-direction: column; gap: .375rem; }
.contact-form__group label { font-size: .875rem; font-weight: 600; color: #374151; }
.contact-form__group input,
.contact-form__group textarea {
  padding: .625rem .875rem;
  border: 1.5px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #111827;
  background: #fff;
  transition: border-color .15s;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.contact-form__group textarea { resize: vertical; min-height: 120px; }

.contact-form__consent label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: #374151;
  cursor: pointer;
}
.contact-form__consent input[type=checkbox] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}
.contact-form__consent a {
  color: var(--color-primary);
  text-decoration: underline;
}
.hero--hero-form-color .contact-form__consent label { color: rgba(255,255,255,0.9); }
.hero--hero-form-color .contact-form__consent a { color: #fff; }

.contact-form__submit { margin-top: .25rem; align-self: flex-start; }

.contact-form__status {
  font-size: .9rem;
  padding: .625rem .875rem;
  border-radius: 6px;
  display: none;
}
.contact-form__status:not(:empty) { display: block; }
.contact-form__status--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.contact-form__status--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* --------------------------------------------------------------------------
   intl-tel-input overrides — force readable colors regardless of parent section
   -------------------------------------------------------------------------- */
.iti__country-list {
  background: #fff;
  color: #1a1a1a;
}
.iti__country.iti__highlight,
.iti__country:hover { background: #f3f4f6; }
.iti__country-name,
.iti__dial-code    { color: #1a1a1a; }
.iti__search-input {
  background: #fff;
  color: #1a1a1a;
  border-color: #d1d5db;
}
.iti__selected-dial-code { color: #1a1a1a; }

/* --------------------------------------------------------------------------
   Legal page
   -------------------------------------------------------------------------- */
.legal-page__last-updated { font-size: .875rem; color: #6b7280; margin-top: .25rem; }
.legal-page__body { max-width: 720px; }
.legal-page__meta { color: #6b7280; font-size: .875rem; margin-bottom: 2rem; }
.legal-page__section { margin-bottom: 2rem; }
.legal-page__section h2 { font-size: 1.15rem; margin-bottom: .5rem; }
.legal-page__section h3 { font-size: 1rem; font-weight: 600; margin: 1.25rem 0 .25rem; }
.legal-page__body ul { margin: .5rem 0 .5rem 1.5rem; list-style: disc; }
.legal-page__body ul li { margin-bottom: .25rem; }
.legal-page__body p { margin-bottom: .75rem; }
