/* ==========================================================================
   AAA Ember Sewing Machines Inc. — Site Stylesheet
   Style direction: Clean & Corporate
   ========================================================================== */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.booking-page-section { padding: 40px 0 72px; }
.booking-page-section .booking-embed-wrap { max-width: 1000px; margin: 0 auto; }

:root {
  /* Brand tokens derived from #c7090e (primary) and #0a090a (ink/secondary) */
  --color-primary: #c7090e;
  --color-primary-dark: #970508;
  --color-primary-tint: #fbe9e9;
  --color-primary-tint-2: #f6d5d6;
  --color-ink: #0a090a;
  --color-text: #201f1f;
  --color-text-secondary: #4d5056;
  --color-bg: #f8f7f6;
  --color-surface: #ffffff;
  --color-border: #e8e6e4;
  --color-success: #1a7f4b;
  --shadow-sm: 0 2px 8px rgba(10, 9, 10, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 9, 10, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 9, 10, 0.16);
  --radius-card: 16px;
  --radius-btn: 10px;
  --radius-pill: 999px;
  --font-heading: 'Poppins', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; }
a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

/* Nav, buttons and cards read as controls, not inline text links, so they stay un-underlined */
.main-nav a, .mobile-nav a, .dropdown a, .btn, .card a, .icon-strip-item, .footer-social a,
.header-phone, .logo-link, .filter-btn, .pill-badge, .breadcrumbs a, .footer-grid a, .footer-bottom a {
  text-decoration: none;
}
.main-nav a:hover, .mobile-nav a:hover, .footer-grid a:hover, .footer-bottom a:hover, .breadcrumbs a:hover {
  text-decoration: underline;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--color-primary-tint);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.section-dark { background: var(--color-ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-primary-tint { background: var(--color-primary-tint); }

.text-center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 48px; }
.section-head.text-left { margin: 0 0 40px; }
.muted { color: var(--color-text-secondary); }

/* Buttons — sized generously; this site gets used by people who don't click small things twice */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 16px 30px;
  min-height: 54px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-dark { background: var(--color-ink); color: #fff; }
.btn-dark:hover { background: #000; text-decoration: none; }
.btn-outline { background: transparent; border-color: currentColor; color: var(--color-ink); }
.btn-outline:hover { background: var(--color-ink); color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--color-ink); text-decoration: none; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img { height: 104px; width: auto; display: block; }

/* No hover dropdowns anywhere in the nav — every top-level link goes straight to a real page.
   Nothing on this site requires hovering to discover it. */
.main-nav { display: flex; flex: 1; justify-content: center; min-width: 0; }
.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.main-nav li { display: flex; align-items: center; }
.main-nav a {
  color: var(--color-ink);
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  padding: 8px 2px;
}
.main-nav a:hover { color: var(--color-primary); }

.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.2rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-btn);
  padding: 10px 18px;
  white-space: nowrap;
}
.header-phone:hover { background: var(--color-primary-tint); }
.header-phone svg { flex-shrink: 0; }

.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-ink);
}
.hamburger .hamburger-lines { display: flex; flex-direction: column; gap: 4px; }
.hamburger span { width: 22px; height: 3px; background: var(--color-ink); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
}
.mobile-nav a { display: block; padding: 16px 0; font-weight: 600; font-size: 1.1rem; color: var(--color-ink); border-bottom: 1px solid var(--color-border); }
.mobile-nav a.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  border-bottom: none;
}
.mobile-nav a.btn-primary:hover { text-decoration: none; }
.mobile-nav.open { display: flex; }

body.nav-open .mobile-nav { display: flex; }

@media (max-width: 1240px) {
  .main-nav, .header-actions .btn { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 620px) {
  .header-phone { font-size: 0; padding: 12px; gap: 0; }
  .header-phone svg { width: 24px; height: 24px; }
}

/* ===================== FLOATING MOBILE CTA ===================== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 600;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-ink);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}
.mobile-cta-bar.show { display: flex; }
.mobile-cta-bar a { flex: 1; text-align: center; }

@media (min-width: 961px) {
  .mobile-cta-bar { display: none !important; }
}

/* The fixed mobile CTA bar sits on top of the very bottom of the page.
   Without this, the copyright/Terms/Privacy line in the footer gets hidden behind it. */
@media (max-width: 960px) {
  body { padding-bottom: 82px; }
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(180deg, var(--color-primary-tint) 0%, var(--color-bg) 100%);
  padding: 64px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-trust-list {
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.hero-trust-list li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.hero-trust-list svg { flex-shrink: 0; color: var(--color-primary); }
.hero-media img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-rating .stars { color: #f5a623; letter-spacing: 2px; }

/* Hero photo with a floating stat card, used instead of cramming a live widget into the hero */
.hero-photo-wrap { position: relative; }
.hero-photo-wrap img {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.hero-stat-card {
  position: absolute;
  left: -20px;
  bottom: -24px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 88%;
}
.hero-stat-card .stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 2.1rem; color: var(--color-primary); line-height: 1; }
.hero-stat-card .stat-label { font-weight: 700; font-size: 0.92rem; color: var(--color-ink); line-height: 1.25; }
.hero-stat-card .divider { width: 1px; align-self: stretch; background: var(--color-border); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; margin-bottom: 20px; }
  .hero-stat-card { left: 12px; bottom: -20px; padding: 14px 18px; gap: 12px; }
  .hero-stat-card .stat-num { font-size: 1.6rem; }
}

/* Big full-bleed photo hero with a dark overlay and white text on top */
.hero-photo-full {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero-photo-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,17,0.62) 0%, rgba(20,18,17,0.68) 100%);
}
.hero-photo-full .container { position: relative; z-index: 2; text-align: center; }
.hero-photo-full .eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.hero-photo-full h1 { color: #fff; max-width: 900px; margin: 0 auto 22px; }
.hero-photo-full .btn-row { justify-content: center; margin-top: 8px; }
@media (max-width: 700px) {
  .hero-photo-full { min-height: 460px; }
}

/* ===================== PAGE HERO (interior pages) ===================== */
.page-hero {
  background: var(--color-ink);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .muted { color: #cfcfcf; }
.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: #cfcfcf;
  justify-content: center;
}
.breadcrumbs a { color: #f2c2c3; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: #8a8a8a; }

/* ===================== QUOTE FORM ===================== */
.quote-form-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  padding: 32px;
  border: 1px solid var(--color-border);
}
.quote-form-card h3 { margin-bottom: 6px; }
.form-grid { display: grid; gap: 14px; margin-top: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-weight: 700; font-size: 1rem; display: block; margin-bottom: 7px; }
input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 1.05rem;
  background: #fff;
  min-height: 52px;
}
input:focus, select:focus, textarea:focus { outline: 3px solid var(--color-primary); border-color: var(--color-primary); }
textarea { resize: vertical; min-height: 110px; }
@media (max-width: 560px) { .form-row-2 { grid-template-columns: 1fr; } }

/* ===================== SERVICE ICON STRIP ===================== */
.icon-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icon-strip-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.icon-strip-item .icon-badge { margin: 0 auto 14px; }
.icon-strip-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
@media (max-width: 720px) { .icon-strip { grid-template-columns: 1fr; } }

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--color-primary-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

/* ===================== WELCOME / INTRO ===================== */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.intro-grid img { border-radius: var(--radius-card); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4/3;}
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; } }

/* Contact page photo column — nudged down on desktop to line up with the cards beside it,
   but that offset (and left-aligned hours text) only makes sense in the 2-column layout */
.contact-photo-col { margin-top: 140px; }
@media (max-width: 900px) {
  .contact-photo-col { margin-top: 0; }
}

/* ===================== CARDS GRID (services/areas/gallery) ===================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .card-grid, .card-grid.cols-2, .card-grid.cols-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid, .card-grid.cols-2, .card-grid.cols-6 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-link { color: inherit; text-decoration: none; }
.card-link:hover { text-decoration: none; }
.card-link:hover .btn-outline { background: var(--color-ink); color: #fff; }
/* Mobile: whole card is tappable (bigger, more forgiving touch target).
   Desktop: precise mouse pointer, so require the actual Learn More click. */
@media (min-width: 901px) {
  .card-link { pointer-events: none; }
  .card-link .btn { pointer-events: auto; }
}
.card-media { aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media-icon {
  aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-ink) 0%, #302e2e 100%);
  color: #fff;
}
.card-media-icon.alt-band { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }
.card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { display: flex; align-items: center; gap: 10px; }
.card-body p { flex: 1; }
.card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--color-primary-tint); color: var(--color-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
/* Cards get narrow in the 2-column tablet/mobile band — let the button wrap instead of overflowing */
@media (max-width: 900px) {
  .card-body .btn { white-space: normal; text-align: center; line-height: 1.3; }
}
@media (max-width: 900px) {
  /* Unlike the card buttons above, this one sits in a plain block column with no
     flex-stretch, so it stayed a small left-hugging pill. Make it full-width to match. */
  .intro-grid .btn { white-space: normal; text-align: center; line-height: 1.3; width: 100%; }
}

/* ===================== CHECKLIST ===================== */
.checklist { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; }
.checklist svg { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust-grid img { border-radius: var(--radius-card); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } }

.guarantee-band {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-card);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.guarantee-band .badge-circle {
  width: 84px; height: 84px; border-radius: 50%;
  background: #fff; color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: var(--shadow-md);
}
.guarantee-band h3 { color: #fff; margin-bottom: 6px; }
.guarantee-band p { color: #fdeaea; margin: 0; }

/* ===================== COMPARISON TABLE ===================== */
.compare-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--color-border); }
.compare-table th { background: var(--color-ink); color: #fff; font-family: var(--font-heading); }
.compare-table td.yes { color: var(--color-success); font-weight: 700; }
.compare-table td.no { color: var(--color-text-secondary); }
.compare-table tr:last-child td { border-bottom: none; }
@media (max-width: 700px) { .compare-table { font-size: 0.85rem; } .compare-table th, .compare-table td { padding: 10px 12px; } }

/* ===================== PROCESS STEPS ===================== */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.process-step { text-align: center; position: relative; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--color-ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  margin: 0 auto 18px;
}
@media (max-width: 800px) { .process-grid { grid-template-columns: 1fr; } }

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial-name { font-weight: 700; margin-top: 14px; }
.testimonial-meta { color: var(--color-text-secondary); font-size: 0.85rem; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  /* Horizontal swipe row instead of cramped, heavily-wrapped stacked cards */
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-grid .testimonial-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
}

.rating-summary {
  display: flex; align-items: center; gap: 20px; justify-content: center;
  background: var(--color-surface); border-radius: var(--radius-card);
  padding: 24px 32px; box-shadow: var(--shadow-sm); max-width: 520px; margin: 0 auto 40px;
  flex-wrap: wrap;
}
.rating-summary .big-num { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; }
.rating-summary .stars { color: #f5a623; font-size: 1.3rem; letter-spacing: 2px; }

/* ===================== GALLERY ===================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  background: var(--color-surface); border: 2px solid var(--color-border);
  border-radius: var(--radius-pill); padding: 12px 24px; font-weight: 700; cursor: pointer; font-size: 1rem;
  min-height: 48px;
}
.filter-btn.active, .filter-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--color-surface); border: 1px solid var(--color-border); }
.gallery-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.gallery-caption { padding: 14px 16px; font-weight: 600; font-size: 0.92rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ===================== FAQ ACCORDION ===================== */
.faq-group { margin-bottom: 36px; }
.faq-group h3 { color: var(--color-primary); margin-bottom: 16px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 60px;
}
.faq-question .chev { transition: transform 0.2s ease; flex-shrink: 0; color: var(--color-primary); }
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 22px 20px; }
.faq-answer p { margin: 0; color: var(--color-text-secondary); }

/* ===================== STATS ===================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--color-primary); }
.stat-label { font-weight: 600; color: var(--color-text-secondary); font-size: 0.92rem; }
@media (max-width: 800px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===================== MAP ===================== */
.map-wrap { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ===================== FINAL CTA BAND ===================== */
.final-cta {
  background: linear-gradient(135deg, var(--color-primary) 0%, #970508 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #fbdcdc; max-width: 560px; margin: 0 auto 28px; }
.final-cta .btn-row { justify-content: center; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--color-ink); color: #d8d6d5; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.85fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2b2a2a;
}
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: #b9b7b6; }
.footer-grid a:hover { color: #fff; }
.footer-logo { text-align: left; grid-column: 1; grid-row: 1 / 3; }
.footer-logo img { height: 96px; margin-bottom: 14px; }
.footer-logo a { display: inline-block; }
/* Desktop: Services and Service Areas share the middle column, stacked; Company gets its own column.
   Explicit rows on every item -- relying on grid auto-placement order caused Company to get
   dragged down to row 2 along with Service Areas instead of staying next to Services. */
.footer-services { grid-column: 2; grid-row: 1; }
.footer-areas { grid-column: 2; grid-row: 2; margin-top: 28px; }
.footer-company { grid-column: 3; grid-row: 1; }
@media (max-width: 900px) {
  /* On tablet/mobile the logo column is nearly as wide as the logo itself, so
     "centered" barely reads. Give it the full row so the centering is obvious. */
  .footer-logo { grid-column: 1 / -1; grid-row: 1; margin-bottom: 20px; }
  .footer-logo img { height: 80px; }
  /* Service Areas was cramped into the same narrow half-column as Services, leaving
     lopsided empty space next to it. Give it its own full-width row instead. */
  .footer-services { grid-column: 1; grid-row: 2; }
  .footer-company { grid-column: 2; grid-row: 2; }
  .footer-areas { grid-column: 1 / -1; grid-row: 3; margin-top: 28px; }
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: #201f1f; display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 22px 0; font-size: 0.85rem; color: #8a8886;
}
.footer-bottom a { color: #8a8886; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal-links { order: -1; }
}
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== BOOKING / GHL EMBED ===================== */
.booking-embed-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-height: 720px;
}
.booking-embed-wrap iframe { width: 100%; min-height: 700px; border: none; }

/* ===================== CONTACT METHODS ===================== */
.contact-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-method-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); padding: 26px; text-align: center; box-shadow: var(--shadow-sm);
}
.contact-method-card .icon-badge { margin: 0 auto 14px; }
@media (max-width: 800px) { .contact-methods { grid-template-columns: 1fr; } }

/* ===================== 404 ===================== */
.error-page { text-align: center; padding: 100px 0; }
.error-page .error-code { font-family: var(--font-heading); font-size: 6rem; font-weight: 700; color: var(--color-primary-tint-2); line-height: 1; margin-bottom: 8px; }

/* ===================== LEGAL ===================== */
.legal-content h2 { margin-top: 40px; }
.legal-content { max-width: 820px; margin: 0 auto; }

/* Utility */
.mt-0 { margin-top: 0; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;}
.pill-badge { background: var(--color-primary-tint); color: var(--color-primary); font-weight: 700; font-size: 0.95rem; padding: 9px 18px; border-radius: var(--radius-pill); display: inline-block; }
