/* ========== HONEYPOT (spam protection) ========== */
.honeypot { position: absolute; left: -9999px; height: 0; overflow: hidden; }

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

a, button, input, select, textarea, summary {
  touch-action: manipulation;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
  --brown-primary: #000000;
  --brown-dark: #000000;
  --brown-medium: #1a1a1a;
  --brown-light: #4a4a4a;
  /* Brand blue — sampled from Hunter's shirt in the hero photo */
  --blue: #1D53BE;          /* primary accent */
  --blue-hover: #163D92;    /* darker — shirt shadow tone */
  --blue-light: #E4EBF8;    /* pale tint (FAQ bg, card header gradient) */
  --blue-bright: #5A9BF5;   /* light blue — for use ON the dark map only */
  --gold: #D4A017;          /* retained for review stars only */
  /* legacy aliases — the accent is blue now */
  --amber: var(--blue);
  --amber-hover: var(--blue-hover);
  --amber-light: var(--blue-light);
  --cream: #FDF8F0;
  --cream-dark: #F5EDE0;
  --text-dark: #1a1a1a;
  --text-body: #333333;
  --white: #FFFFFF;
  --success: #2E7D32;
  --shadow-sm: 0 2px 8px rgba(62,39,35,0.08);
  --shadow-md: 0 4px 20px rgba(62,39,35,0.12);
  --shadow-lg: 0 8px 40px rgba(62,39,35,0.18);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.3s ease;
  --container: 1200px;
}

/* ========== UTILITY CLASSES ========== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--accent {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  box-shadow: 0 4px 16px rgba(29,83,190,0.3);
}
.btn--accent:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(29,83,190,0.4);
}
.btn--accent:active {
  transform: scale(0.98);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--brown-primary);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  min-height: 56px;
}

.btn--full {
  width: 100%;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--amber);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-header__title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--amber);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-header__subtitle {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.section-header--light .section-header__title {
  color: var(--white);
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--amber);
  transition: transform 0.3s, opacity 0.3s;
}
.top-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  position: absolute;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  font-size: 0.95rem;
}
.top-bar__link svg {
  stroke: var(--amber);
}
.top-bar__link:first-child {
  background: rgba(29,83,190,0.15);
  border: 1px solid rgba(29,83,190,0.3);
  padding: 5px 14px;
  border-radius: 50px;
}
.top-bar__link:hover {
  color: var(--amber);
}
.top-bar__right {
  color: rgba(255,255,255,0.7);
}

/* ========== HEADER / NAV ========== */
.header {
  background: var(--brown-primary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  border-bottom: 2px solid var(--amber);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}
.header__logo-img {
  height: 56px;
  width: auto;
  border-radius: 4px;
  filter: brightness(0) invert(1);
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header__logo-name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.header__logo-tagline {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header__phone,
.header__text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.header__phone:hover,
.header__text:hover {
  color: var(--amber);
}
.header__cta {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
  font-weight: 700;
}
.header__cta:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO - FULL-BLEED IMAGE ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-primary);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(44,26,18,0.3) 100%);
  z-index: 1;
}
/* Hero Slideshow */
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: heroSlide 24s infinite;
}
.hero__slide--1 {
  background-image: url('images/gallery/image 2.jpg');
  animation-delay: 0s;
}
.hero__slide--2 {
  background-image: url('images/gallery/image 5.jpg');
  animation-delay: 6s;
}
.hero__slide--3 {
  background-image: url('images/gallery/image 8.jpg');
  animation-delay: 12s;
}
.hero__slide--4 {
  background-image: url('images/gallery/image 13.jpg');
  animation-delay: 18s;
}
@keyframes heroSlide {
  0% { opacity: 0; }
  4% { opacity: 1; }
  25% { opacity: 1; }
  29% { opacity: 0; }
  100% { opacity: 0; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44,26,18,0.7) 0%, rgba(62,39,35,0.6) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--amber);
}
.hero__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.hero__phone-big:hover {
  color: var(--amber-hover);
  transform: scale(1.03);
}
.btn--xl {
  padding: 20px 48px;
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 60px;
  letter-spacing: 0.5px;
}
.hero__rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}
.hero__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
  background: var(--cream-dark);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(141,110,99,0.15);
  border-left: 3px solid var(--amber);
}
.service-card:hover {
  transform: translateX(4px);
  border-left-width: 5px;
  box-shadow: var(--shadow-md);
}
.service-card__img {
  height: 80px;
  background: linear-gradient(135deg, var(--amber-light), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.service-card__img::after {
  content: attr(data-label);
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-size: 0.75rem;
  color: var(--brown-medium);
  opacity: 0.5;
  font-weight: 500;
}
.service-card__title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 20px 20px 8px;
}
.service-card__desc {
  font-size: 0.92rem;
  padding: 0 20px;
  color: var(--text-body);
  line-height: 1.6;
}
.service-card__link {
  display: inline-block;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
}
.service-card__link:hover {
  color: var(--amber-hover);
}
.service-card__btn {
  display: block;
  margin: 0 16px 16px;
  padding: 12px 20px;
  background: var(--amber);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(29,83,190,0.2);
}
.service-card__btn:hover {
  background: var(--amber-hover);
  box-shadow: 0 4px 16px rgba(29,83,190,0.35);
  transform: translateY(-1px);
}
.services__note {
  text-align: center;
  margin-top: 32px;
  font-size: 1rem;
  color: var(--text-body);
}
.services__note a {
  color: var(--amber);
  font-weight: 600;
}
.services__note a:hover {
  color: var(--amber-hover);
}

/* ========== WHY CHOOSE US ========== */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-us__item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(141,110,99,0.15);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-us__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-us__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-hover));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.why-us__icon svg {
  stroke: white !important;
}
.why-us__item h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-us__item p {
  font-size: 0.9rem;
  color: var(--text-body);
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery__photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(141,110,99,0.1);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(62,39,35,0.65);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery__item:hover::after {
  opacity: 1;
}
.gallery__item:hover {
  transform: none;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery__item:hover img {
  transform: scale(1.05);
}
.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  margin: 0 12px 12px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1;
}
.gallery__item:hover .gallery__label {
  transform: translateY(0);
}

/* Before/After Slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.ba-slider__img {
  position: absolute;
  inset: 0;
}
.ba-slider__img--before {
  background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
  z-index: 1;
}
.ba-slider__img--before::after {
  content: 'BEFORE';
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.ba-slider__img--after {
  background: linear-gradient(135deg, var(--brown-primary), var(--brown-light));
  z-index: 2;
  clip-path: inset(0 0 0 var(--pos, 50%));
}
.ba-slider__img--after::after {
  content: 'AFTER';
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.ba-slider__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  margin: 0;
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 4px;
  background: white;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-slider__handle svg {
  background: var(--amber);
  border-radius: 50%;
  padding: 6px;
  width: 36px;
  height: 36px;
  box-shadow: var(--shadow-md);
}
.ba-slider__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
  text-align: center;
}
.gallery__cta {
  text-align: center;
  margin-top: 48px;
}
.gallery__cta p {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ========== LIGHTBOX ========== */
body.lightbox-open {
  overflow: hidden;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}
.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  padding: 4px 12px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10;
}
.lightbox__nav:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
}
.lightbox__nav--prev {
  left: 16px;
}
.lightbox__nav--next {
  right: 16px;
}
.lightbox__label {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  border-radius: 6px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .lightbox__img {
    max-width: 95vw;
    max-height: 70vh;
  }
  .lightbox__nav {
    padding: 10px 14px;
    font-size: 1.5rem;
  }
  .lightbox__nav--prev {
    left: 8px;
  }
  .lightbox__nav--next {
    right: 8px;
  }
  .lightbox__close {
    top: 10px;
    right: 12px;
    font-size: 2rem;
  }
  .lightbox__label {
    font-size: 0.95rem;
    bottom: 16px;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0 60px;
  background: var(--brown-primary);
  overflow: hidden;
}

/* Google Link */
.testimonials__google-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-top: 12px;
  transition: color var(--transition);
}
.testimonials__google-link:hover {
  color: var(--white);
}

/* Carousel */
.testimonials__carousel {
  padding: 32px 0;
  overflow: hidden;
  cursor: grab;
}
.testimonials__carousel:active {
  cursor: grabbing;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - var(--container)) / 2 + 20px));
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 32px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  border-left: 4px solid var(--amber);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 4rem;
  color: rgba(29,83,190,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__quote {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
  font-weight: 450;
}
.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(141,110,99,0.2);
  padding-top: 16px;
}
.testimonial-card__author strong {
  color: var(--brown-primary);
  font-size: 1.05rem;
}
.testimonial-card__author span {
  color: var(--text-body);
  font-size: 0.8rem;
  opacity: 0.7;
}

/* Carousel Navigation */
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 20px;
}
.testimonials__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.testimonials__arrow:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
}
.testimonials__dots {
  display: flex;
  gap: 8px;
}
.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.testimonials__dot.active {
  background: var(--amber);
  width: 28px;
  border-radius: 5px;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
  background: var(--cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about__text h2 {
  margin-bottom: 20px;
}
.about__text h2::after {
  margin: 12px 0 0;
}
.about__text p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.about__credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__credentials li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.about__credentials li svg {
  fill: var(--blue);
}

.about__photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
}

/* ========== SERVICE AREA ========== */
.service-area {
  padding: 100px 0;
  background: var(--cream-dark);
}
.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-area__tag {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--amber);
  color: var(--amber);
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}
.service-area__tag:hover {
  background: var(--amber);
  color: var(--white);
}

/* ===== Service Area Map =====
   Dark inline SVG. Palette sampled pixel-by-pixel from the reference
   screenshot of Google Maps in dark mode, so the hues match exactly. */
.service-map {
  --map-land:        #1D404A;  /* base land        29.7% of reference */
  --map-region:      #1C4854;  /* service area     17.4%              */
  --map-deep:        #173840;  /* outer states      5.1%              */
  --map-water:       #272C3C;  /* off-area navy     3.0%              */
  --map-line:        #345465;  /* borders & roads   1.3%              */
  --map-label:       #F0F2F5;  /* city labels       1.5%              */
  --map-label-dim:   #BABEC1;  /* state names       0.4%              */

  width: 100%;
  /* Matches the 400x300 viewBox, so the slice crop stays minimal at every
     width. A fixed height cropped badly around 600-768px, where the column
     is wide but the height was pinned. */
  aspect-ratio: 4 / 3;
  max-height: 380px;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: var(--map-land);
}
.service-map__land {
  fill: var(--map-water);
}
.service-map__state {
  fill: var(--map-land);
  stroke: none;
}
.service-map__state--off {
  fill: var(--map-deep);
}
.service-map__region {
  fill: var(--map-region);
}
.service-map__road path {
  fill: none;
  stroke: var(--map-line);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}
.service-map__border path {
  fill: none;
  stroke: var(--map-line);
  stroke-width: 1.1;
  stroke-linejoin: round;
  opacity: 0.9;
}
.service-map__state-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  fill: var(--map-label-dim);
  opacity: 0.7;
}
.service-map__city circle {
  fill: var(--map-label);
}
.service-map__city text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: var(--map-label);
  /* dark halo keeps labels legible over the lighter region fill */
  stroke: var(--map-land);
  stroke-width: 2.5px;
  stroke-linejoin: round;
  paint-order: stroke fill;
}
.service-map__pin {
  fill: var(--blue-bright);
  stroke: #10262C;
  stroke-width: 1.25;
  stroke-linejoin: round;
}
.service-map__pin-dot {
  fill: #10262C;
}
.service-map__pulse {
  fill: var(--blue-bright);
  opacity: 0.28;
  /* fill-box is required: the SVG default (view-box) would scale the ring
     around the viewBox centre instead of around the pin. */
  transform-box: fill-box;
  transform-origin: center;
  animation: service-map-pulse 2.8s ease-out infinite;
}
@keyframes service-map-pulse {
  0%   { transform: scale(0.55); opacity: 0.4; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.service-map__home {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  fill: var(--blue-bright);
  stroke: #10262C;
  stroke-width: 3px;
  stroke-linejoin: round;
  paint-order: stroke fill;
}

/* ========== FAQ ========== */
.faq {
  padding: 100px 0;
  background: var(--cream-dark);
}
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(141,110,99,0.15);
  border-left: 3px solid transparent;
}
.faq__item[open] {
  border-left-color: var(--amber);
}
.faq__question {
  padding: 20px 24px;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: color var(--transition);
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--amber);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__item[open] .faq__question {
  color: var(--amber);
}
.faq__answer {
  padding: 0 24px 20px;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--amber-light);
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
  background: var(--cream);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact__info {
  background: var(--brown-primary);
  color: var(--white);
  padding: 48px 40px;
}
.contact__info h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.contact__info > p {
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact__detail svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__detail:hover {
  color: var(--amber);
}
.contact__form-wrap {
  padding: 48px 40px;
  background: var(--white);
}

/* Form */
.form-group {
  margin-bottom: 20px;
  flex: 1;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group label {
  font-weight: 700;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid rgba(141,110,99,0.2);
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(29,83,190,0.15);
}
.form-group input.error,
.form-group select.error {
  border-color: #e53935;
}
.form-group .error-msg {
  color: #e53935;
  font-size: 0.8rem;
  margin-top: 4px;
}
.form-row {
  display: flex;
  gap: 16px;
}
.contact__privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.7;
  margin-top: 12px;
}

/* Submit Button */
.contact__form-wrap .btn--accent {
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
}

/* Form Success */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 16px;
  min-height: 400px;
}
.contact__success h3 {
  font-size: 1.5rem;
  color: var(--success);
}
.contact__success p {
  color: var(--text-body);
  max-width: 300px;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--brown-dark);
  padding: 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child {
  border-right: none;
}
.stat strong {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* ========== PRE-FOOTER CTA ========== */
.prefooter-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-hover));
  padding: 60px 0;
  text-align: center;
}
.prefooter-cta h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.prefooter-cta p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.prefooter-cta__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn--white {
  background: var(--white);
  color: var(--amber-hover);
  border: 2px solid var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}
.prefooter-cta .btn--outline {
  border-color: var(--white);
  color: var(--white);
}
.prefooter-cta .btn--outline:hover {
  background: var(--white);
  color: var(--blue);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
  border-top: 3px solid var(--amber);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 56px;
  width: auto;
  border-radius: 4px;
  filter: brightness(0) invert(1);
}
.footer__brand > p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
}
.footer__social a:hover {
  background: var(--amber);
  color: var(--white);
}
.footer__links h4,
.footer__contact h4 {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--amber);
}
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.footer__contact a {
  color: rgba(255,255,255,0.7);
}
.footer__contact a:hover {
  color: var(--amber);
}
.footer__bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ========== FLOATING ELEMENTS ========== */
.float-phone {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--amber);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0% { box-shadow: 0 0 0 0 rgba(29,83,190,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(29,83,190,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,83,190,0); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--brown-primary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--amber);
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered animation for grid items */
.services__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.5s; }
.services__grid .reveal:nth-child(7) { transition-delay: 0.6s; }

.why-us__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-us__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-us__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.gallery__grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.gallery__grid .reveal:nth-child(3) { transition-delay: 0.3s; }

/* ========== STICKY MOBILE CALL/TEXT BAR ========== */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 0;
}
.sticky-call-bar__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-align: center;
  min-height: 56px;
}
.sticky-call-bar__link--call {
  background: var(--amber);
  color: var(--white);
}
.sticky-call-bar__link--call:hover,
.sticky-call-bar__link--call:active {
  background: var(--amber-hover);
  color: var(--white);
}
.sticky-call-bar__link--text {
  background: var(--brown-primary);
  color: var(--white);
  border-left: 1px solid rgba(255,255,255,0.15);
}
.sticky-call-bar__link--text:hover,
.sticky-call-bar__link--text:active {
  background: var(--brown-medium);
  color: var(--white);
}

/* ========== MEDIA QUERIES ========== */

/* Tablet Landscape */
@media (max-width: 992px) {
  .services, .why-us, .gallery, .about, .service-area, .faq, .contact {
    padding: 80px 0;
  }
  .testimonials {
    padding: 80px 0 50px;
  }
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .testimonial-card {
    flex: 0 0 340px;
  }
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }
  .contact__inner {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: span 2;
  }
  .header__phone,
  .header__text {
    display: none;
  }
  .hero__title {
    font-size: 2.5rem;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }
  .services, .why-us, .gallery, .about, .service-area, .faq, .contact {
    padding: 60px 0;
  }
  .testimonials {
    padding: 60px 0 40px;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header__title {
    font-size: 1.8rem;
  }

  .top-bar__right {
    display: none;
  }
  .top-bar__left a:last-child {
    display: none;
  }

  /* Mobile Nav */
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--brown-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 1000;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .nav__link {
    font-size: 1.3rem;
    padding: 14px 32px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .header__cta {
    display: none;
  }

  /* Hero */
  .hero {
    min-height: 90vh;
    min-height: 90svh;
  }
  .hero__phone-big {
    font-size: 1.5rem;
  }
  .btn--xl {
    padding: 18px 36px;
    font-size: 1.1rem;
    min-height: 56px;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Mobile sticky call/text bar */
  .sticky-call-bar {
    display: flex;
  }
  .back-to-top {
    bottom: 72px;
  }

  /* Stats bar mobile */
  .stats-bar__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    padding: 24px 12px;
  }
  .stat strong {
    font-size: 1.8rem;
  }
  .stat span {
    font-size: 0.75rem;
  }

  /* Pre-footer CTA mobile */
  .prefooter-cta {
    padding: 48px 0;
  }
  .prefooter-cta h2 {
    font-size: 1.6rem;
  }
  .prefooter-cta__actions {
    flex-direction: column;
    align-items: center;
  }
  .prefooter-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Add bottom padding to body for sticky bar */
  body {
    padding-bottom: 56px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gallery__photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery__label {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
  .testimonial-card {
    flex: 0 0 calc(100vw - 48px);
    padding: 24px;
  }
  .service-area__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .contact__info,
  .contact__form-wrap {
    padding: 32px 24px;
  }
  .contact__success {
    min-height: auto;
    padding: 40px 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: auto;
  }
  .footer__contact a {
    word-break: break-all;
  }

  /* Touch-friendly FAQ */
  .faq__question {
    padding: 18px 20px;
    min-height: 52px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services, .why-us, .gallery, .about, .service-area, .faq, .contact {
    padding: 48px 0;
  }
  .testimonials {
    padding: 48px 0 32px;
  }
  .container {
    padding: 0 16px;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__phone-big {
    font-size: 1.3rem;
  }
  /* Services: one card per row on phones */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Hide the faded label that collided with the icon */
  .service-card__img::after {
    display: none;
  }
  .service-card__img {
    height: 70px;
  }
  .service-card__img svg {
    width: 36px;
    height: 36px;
  }
  .service-card__title {
    font-size: 1.05rem;
    padding: 16px 16px 6px;
  }
  .service-card__desc {
    font-size: 0.9rem;
    padding: 0 16px;
  }
  .service-card__btn {
    margin: 12px 16px 16px;
    padding: 13px 16px;
    font-size: 0.9rem;
    min-height: 44px;
  }
  .btn--xl {
    padding: 16px 28px;
    font-size: 1rem;
  }
  .hero__subtitle {
    font-size: 1rem;
  }
  .hero__content {
    padding: 100px 16px 60px;
  }
  .hero__trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn--lg {
    padding: 16px 28px;
    font-size: 1rem;
    min-height: 52px;
  }
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .hero__rating-badge {
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    padding: 8px 18px;
  }
  .testimonial-card {
    flex: 0 0 calc(100vw - 40px);
  }
  .contact__info h2 {
    font-size: 1.4rem;
  }
  .section-header__title {
    font-size: 1.6rem;
  }
  .footer__links ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* Very Small Phones */
@media (max-width: 360px) {
  .hero__title {
    font-size: 1.7rem;
  }
  .section-header__title {
    font-size: 1.4rem;
  }
  .hero__badge {
    font-size: 0.8rem;
  }
  .testimonial-card {
    flex: 0 0 calc(100vw - 32px);
    padding: 20px;
  }
  .testimonial-card__quote {
    font-size: 0.9rem;
  }
  .service-card__title {
    font-size: 1rem;
  }
  .contact__info,
  .contact__form-wrap {
    padding: 24px 16px;
  }
}

/* Touch devices — disable hover jank */
@media (hover: none) {
  .service-card:hover,
  .why-us__item:hover,
  .testimonial-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .service-card:hover {
    border-left-width: 3px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover,
  .why-us__item:hover,
  .testimonial-card:hover {
    transform: none;
  }
  .float-phone {
    animation: none;
  }
  .service-map__pulse {
    animation: none;
    opacity: 0.18;
  }
  * {
    transition-duration: 0.01ms !important;
  }
}

/* ========== REVIEW PAGE ========== */
.review-page {
  padding: 80px 0 100px;
  background: var(--cream);
  min-height: 70vh;
}
.review-page__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.review-page h1 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.review-page__lead {
  color: var(--text-body);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.stars__btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #d9d2c4;
  transition: color var(--transition), transform var(--transition);
  border-radius: var(--radius);
}
.stars__btn:hover,
.stars__btn.is-hover,
.stars__btn.is-active {
  color: var(--gold);
  transform: scale(1.08);
}
.stars__btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.review-card {
  margin-top: 8px;
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--amber);
}
.review-card[hidden] {
  display: none;
}
.review-card h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.75rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.review-card p {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.review-card__note {
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 0.8;
  margin-top: 14px;
  margin-bottom: 0;
}

.review-card--negative {
  text-align: left;
  border-top-color: var(--brown-medium);
}
.review-card--negative h2,
.review-card--negative > p {
  text-align: center;
}

.review-field {
  display: block;
  margin-bottom: 18px;
}
.review-field span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}
.review-field input,
.review-field textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d2c4;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.review-field input:focus,
.review-field textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(29,83,190,0.18);
}
.review-field textarea {
  resize: vertical;
  min-height: 130px;
}
.review-card--negative button[type="submit"] {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 600px) {
  .review-page {
    padding: 56px 0 72px;
  }
  .review-page h1 {
    font-size: 2rem;
  }
  .stars__btn svg {
    width: 44px;
    height: 44px;
  }
  .review-card {
    padding: 28px 22px;
  }
}

