@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,800&family=Inter+Tight:ital,wght@0,400;0,500;0,600;1,400;1,600&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2A345C;
  --accent:         #5F3C3A;
  --canvas:         #FAF6EE;
  --surface:        #F0EDE5;
  --ink:            #1A1814;
  --muted:          #6B6057;
  --neutral-dark:   #1A1814;
  --neutral-light:  #FAF6EE;

  --primary-dark:   #1e2744;
  --accent-dark:    #4a2d2b;
  --surface-2:      #E8E4DA;
  --border:         rgba(42, 52, 92, 0.15);
  --border-light:   rgba(255, 255, 255, 0.25);

  --header-height:  72px;

  --radius:         4px;
  --radius-pill:    999px;

  --section-py:     clamp(72px, 9vh, 120px);
  --content-max:    1280px;

  --spine-color:    #5F3C3A;
  --spine-width:    4px;
  --spine-left:     56px;
  --spine-offset:   72px; /* eyebrow/h2 left margin to sit 16px right of spine */
}

@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  font-size: 16px;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

/* Hero background image */
.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* Split hero */
.hero-split { display: grid; grid-template-columns: 60% 40%; min-height: 88vh; gap: 0; }
.hero-split-text {
  background: var(--canvas);
  padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center; z-index: 2;
}
.hero-split-photo { position: relative; overflow: hidden; background: transparent; }
.hero-split-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

/* Heading anchor reset */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 40px); }

p { line-height: 1.68; }

a { color: var(--primary); text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

strong { font-weight: 700; }

.display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.eyebrow, .section-eyebrow, .eyebrow-light {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--neutral-light); }

.label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section-inner, .inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.wide-container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.bleed { width: 100%; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-accent, .btn-ghost-light,
.btn-cta-fill, .btn-cta-accent, .btn-cta-white, .btn-cta-phone-link,
.btn-estimate, .btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, filter 150ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.btn:hover, .btn-primary:hover, .btn-cta-fill:hover, .btn-estimate:hover {
  filter: brightness(0.90);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary, .btn-cta-fill, .btn-estimate {
  background: var(--primary);
  color: var(--neutral-light);
  border-color: var(--primary);
}

.btn-outline, .btn-cta-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover, .btn-cta-accent:hover {
  background: var(--accent);
  color: var(--neutral-light);
  text-decoration: none;
}

.btn-ghost-light, .btn-cta-white {
  background: transparent;
  color: var(--neutral-light);
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-light:hover, .btn-cta-white:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: var(--neutral-light);
  border-color: var(--accent);
}
.btn-accent:hover { filter: brightness(0.88); text-decoration: none; }

.btn-phone, .btn-cta-phone-link {
  background: var(--primary);
  color: var(--neutral-light);
  border-color: var(--primary);
}
.btn-phone svg, .btn-cta-phone-link svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   PERSISTENT SPINE RULE
   ============================================================ */
.spine-rule {
  position: fixed;
  top: 0; bottom: 0;
  left: var(--spine-left);
  width: var(--spine-width);
  background: var(--spine-color);
  z-index: 50;
  pointer-events: none;
}

@media (max-width: 900px) {
  .spine-rule { display: none; }
}

/* Section headers use the spine offset */
.section-header {
  padding-left: var(--spine-offset);
  border-left: none;
  position: relative;
  margin-bottom: 48px;
}

.section-header .eyebrow,
.section-header .section-eyebrow {
  padding-left: 0;
}

@media (max-width: 900px) {
  .section-header {
    padding-left: 0;
    border-left: var(--spine-width) solid var(--accent);
    padding-left: 16px;
  }
}

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--canvas);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
}

#navLinks.nav-pages {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  flex: 1;
  justify-content: center;
  padding: 0; margin: 0;
}

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--neutral-light);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none; color: var(--neutral-light); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  #navLinks.nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 899;
    justify-content: flex-start;
  }
  #navLinks.nav-pages.open { display: flex; }

  .nav-pages a { font-size: 17px; padding: 10px 0; }

  .nav-cta .nav-cta-label { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,52,92,0.82) 0%, rgba(42,52,92,0.45) 55%, transparent 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-bottom: 18%;
  padding-top: 80px;
  padding-left: calc(var(--spine-offset) + clamp(20px, 2vw, 0px));
}

@media (min-width: 900px) {
  .hero-inner { padding-left: var(--spine-offset); }
}

.hero-urgency-band {
  display: inline-block;
  background: var(--accent);
  color: var(--neutral-light);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.85);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--neutral-light);
  max-width: 18ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: rgba(250,246,238,0.90);
  margin-bottom: 32px;
  max-width: 48ch;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-light);
  border: 1px solid rgba(255,255,255,0.40);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(42,52,92,0.35);
  backdrop-filter: blur(6px);
}

/* About page hero */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.about-hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.about-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-bottom: 72px;
  padding-top: 120px;
}
.about-hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.80);
  margin-bottom: 12px;
}
.about-hero-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--neutral-light);
  max-width: 18ch;
  margin-bottom: 18px;
}
h1.about-hero-title { font-size: clamp(40px, 6vw, 88px); }
.about-hero-sub {
  font-size: 18px;
  color: rgba(250,246,238,0.85);
  margin-bottom: 28px;
  max-width: 44ch;
}
.about-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Services page hero */
.services-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
}
.services-page-hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.services-page-hero .hero-inner {
  padding-bottom: 64px;
  padding-top: 100px;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--primary);
  padding: 0;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.trust-chips-row {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.trust-chips-row::-webkit-scrollbar { display: none; }

.trust-pill {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-light);
  border: 1px solid rgba(255,255,255,0.30);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-strip-phone {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-light);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-strip-phone:hover { color: rgba(250,246,238,0.80); text-decoration: none; }

@media (max-width: 640px) {
  .trust-strip-phone { font-size: 15px; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  max-height: 64px;
  position: relative;
  z-index: 1;
  background: var(--canvas);
}

.marquee { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--muted);
}

.marquee-sep {
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
  align-self: center;
}

/* ============================================================
   SERVICES (TABBED PANEL)
   ============================================================ */
.services {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.services .section-inner,
.services .inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.services-h2, .services .section-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  margin-bottom: 0;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding-left: var(--spine-offset);
}

@media (max-width: 900px) {
  .services-tabs { padding-left: 0; }
}

.service-tab {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.services-panels {
  padding-left: var(--spine-offset);
}
@media (max-width: 900px) {
  .services-panels { padding-left: 0; }
}

.service-panel {
  display: none;
  min-height: 480px;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  grid-template-columns: 45% 55%;
}
.service-panel.active {
  display: grid;
}

.service-panel > img:first-of-type,
.service-panel-img img,
.service-panel-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius) 0 0 var(--radius);
}

.service-panel-img {
  overflow: hidden;
  position: relative;
}

.service-panel-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.service-panel-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-panel-body h3 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 4px;
}

.service-panel-body p {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
}

.service-panel-body a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
}
.service-panel-body a:hover { text-decoration: underline; }

.service-panel-no-img {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-no-img-label, .service-panel-no-img-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--muted);
  text-align: center;
  padding: 32px;
  line-height: 1.1;
}

.discount-chip {
  display: inline-block;
  background: var(--accent);
  color: var(--neutral-light);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .service-panel.active {
    display: flex;
    flex-direction: column;
  }
  .service-panel > img:first-of-type,
  .service-panel-img {
    min-height: 220px;
    max-height: 280px;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .service-panel-img img { position: static; width: 100%; height: 240px; }
}

/* Seasonal band */
.seasonal-band {
  background: var(--accent);
  color: var(--neutral-light);
  text-align: center;
  padding: 10px 20px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--neutral-dark);
  padding-block: var(--section-py);
}

.gallery .section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.gallery-heading, .gallery .section-inner > h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--neutral-light);
  margin-bottom: 40px;
  padding-left: var(--spine-offset);
}

@media (max-width: 900px) {
  .gallery-heading, .gallery .section-inner > h2 { padding-left: 0; }
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 16px;
  margin-bottom: 24px;
}

.gallery-main-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 480px;
}
.gallery-main-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.gallery-caption-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, transparent 100%);
  padding: 32px 24px 20px;
  opacity: 0;
  transition: opacity 250ms;
}
.gallery-main-img:hover .gallery-caption-overlay { opacity: 1; }

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-side-block {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  align-items: center;
}
.gallery-side-block.gallery-side-block-dark {
  background: var(--accent);
}

.gallery-side-stat {
  text-align: center;
  width: 100%;
}
.gallery-side-stat strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--primary);
  line-height: 1.0;
}
.gallery-side-stat span {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}

.gallery-side-block-text {
  color: var(--neutral-light);
  font-size: 16px;
  line-height: 1.55;
}

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.gallery-note {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}

@media (max-width: 900px) {
  .gallery-showcase { grid-template-columns: 1fr; }
  .gallery-main-img { min-height: 300px; }
  .gallery-side { flex-direction: row; }
  .gallery-side-block { flex: 1; }
}

@media (max-width: 640px) {
  .gallery-side { flex-direction: column; }
}

/* ============================================================
   OUR STORY (About page)
   ============================================================ */
.our-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.our-story-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.our-story-text {
  border-left: var(--spine-width) solid var(--accent);
  padding-left: 24px;
}

.our-story-text .section-eyebrow {
  color: var(--primary);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.0;
}

.our-story-body {
  font-size: 16px;
  line-height: 1.68;
  color: var(--ink);
  margin-bottom: 16px;
}

.our-story-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
}
.our-story-chips li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.our-story-photo {
  overflow: hidden;
  border-radius: var(--radius);
}
.our-story-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  max-height: 520px;
  border-radius: var(--radius);
  display: block;
}

@media (max-width: 900px) {
  .our-story-inner {
    grid-template-columns: 1fr;
  }
  .our-story-photo { order: -1; }
  .our-story-photo img { height: 320px; }
  .our-story-text { border-left: var(--spine-width) solid var(--accent); }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.credentials-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.credentials-header {
  border-left: var(--spine-width) solid var(--accent);
  padding-left: 24px;
  margin-bottom: 48px;
  padding-left: var(--spine-offset);
  border-left: none;
}

@media (max-width: 900px) {
  .credentials-header {
    padding-left: 16px;
    border-left: var(--spine-width) solid var(--accent);
  }
}

.credentials-header h2 { font-size: clamp(32px, 4vw, 56px); color: var(--ink); }

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.credential-block {
  border-top: 2px solid var(--primary);
  padding-top: 28px;
}

.credential-block h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.credential-block p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.credential-icon {
  margin-bottom: 16px;
}
.credential-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.credentials-footer-rule {
  border: none;
  border-top: 1px solid var(--primary);
  margin-bottom: 20px;
  opacity: 0.25;
}

.credentials-footer-caption {
  text-align: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-methods {
  background: var(--surface);
  padding-block: 40px;
  border-top: 1px solid var(--border);
}

.payment-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.payment-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.payment-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}
.payment-chips li {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--canvas);
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--surface);
  padding-block: var(--section-py);
}

.service-areas .section-inner,
.service-areas-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.service-areas-header {
  border-left: var(--spine-width) solid var(--accent);
  padding-left: 24px;
  margin-bottom: 48px;
}

.service-areas-header .section-eyebrow { color: var(--primary); }
.service-areas-header h2,
.service-areas-header .section-h2 {
  font-size: clamp(32px, 4vw, 56px);
  color: var(--ink);
}

.service-areas-split,
.service-areas-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-areas-tags, .area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.area-tag,
.area-tags li a,
.area-tags li {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--neutral-light);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: filter 150ms;
}
.area-tag:hover,
.area-tags li a:hover { filter: brightness(0.88); text-decoration: none; color: var(--neutral-light); }

.service-areas-map {
  border-radius: var(--radius);
  overflow: hidden;
}
.service-areas-map iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: var(--radius);
  display: block;
}

.service-areas-note, .area-territory-note {
  font-size: 15px;
  color: var(--muted);
  margin-top: 32px;
  font-style: italic;
}
.area-territory-note a { color: var(--primary); }

.section-header .eyebrow + h2 { font-size: clamp(32px, 4vw, 56px); }

@media (max-width: 768px) {
  .service-areas-split,
  .service-areas-body { grid-template-columns: 1fr; }
  .service-areas-map { order: -1; }
  .service-areas-map iframe { height: 240px; }
}

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--primary);
  padding-block: clamp(48px, 7vh, 80px);
}

.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-text .eyebrow { color: rgba(250,246,238,0.70); }

.team-cta-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: var(--neutral-light);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
.contact-cta {
  background: var(--primary);
  padding-block: clamp(56px, 8vh, 96px);
}

.contact-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.contact-cta-left h2,
.contact-cta-left .contact-cta-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  color: var(--neutral-light);
  line-height: 1.0;
}
.contact-cta-left p { color: rgba(250,246,238,0.80); margin-top: 12px; font-size: 16px; }

.contact-cta-right { display: flex; align-items: center; }

.contact-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-cta-phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--neutral-light);
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
}
.contact-cta-phone:hover { color: rgba(250,246,238,0.85); text-decoration: none; }

@media (max-width: 768px) {
  .contact-cta-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.contact .section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.contact-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  margin-top: 48px;
}

.contact-intro {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.contact-intro a { color: var(--primary); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,52,92,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.contact-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-phone {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  line-height: 1.0;
}
.contact-phone:hover { color: var(--primary-dark); text-decoration: none; }

.contact-detail {
  margin-bottom: 28px;
}
.contact-detail p { font-size: 16px; color: var(--ink); line-height: 1.6; }
.contact-detail a { color: var(--primary); font-size: 16px; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.hours-table td {
  padding: 5px 0;
  vertical-align: top;
  color: var(--ink);
}
.hours-table td:first-child { color: var(--muted); width: 110px; font-weight: 500; }

.hours-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
}

.address-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.emergency-callout {
  margin-top: 48px;
  background: var(--accent);
  color: var(--neutral-light);
  padding: 18px 28px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.emergency-callout a { color: var(--neutral-light); text-decoration: underline; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding-block: var(--section-py);
}

.faq .section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  margin-top: 48px;
}

.faq-col { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  padding: 20px 0;
  min-height: 64px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 200ms, color 200ms;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-body {
  padding-bottom: 20px;
}
.faq-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--neutral-dark);
  border-top: var(--spine-width) solid var(--accent);
  color: var(--neutral-light);
}

.footer-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
  padding-block: clamp(48px, 7vh, 80px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
}

.footer-col { display: flex; flex-direction: column; gap: 16px; }

.footer-col-1 { display: flex; flex-direction: column; gap: 12px; }
.footer-col-2 { display: flex; flex-direction: column; gap: 12px; }
.footer-col-3 { display: flex; flex-direction: column; gap: 8px; }

.footer-logo a { display: inline-block; }

.footer-tagline {
  font-family: 'Inter Tight', sans-serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(250,246,238,0.75);
  line-height: 1.55;
  max-width: 28ch;
}

.footer-trust, .footer-bbb, .footer-trust-line {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.50);
}

.footer-col-label {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.40);
  margin-bottom: 4px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.footer-nav li a, .footer-nav a {
  font-size: 14px;
  color: rgba(250,246,238,0.75);
  text-decoration: none;
  transition: color 150ms;
}
.footer-nav li a:hover, .footer-nav a:hover {
  color: var(--neutral-light);
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.footer-contact-item .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.40);
}
.footer-contact-item a,
.footer-contact-item p,
.footer-contact { color: rgba(250,246,238,0.75); font-size: 14px; }
.footer-contact-item a:hover { color: var(--neutral-light); text-decoration: none; }

.footer-phone, .footer-phone-large {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--neutral-light);
  text-decoration: none;
}
.footer-phone:hover, .footer-phone-large:hover { text-decoration: none; opacity: 0.85; }

.footer-hours { font-size: 14px; color: rgba(250,246,238,0.65); }

.footer-bar, .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar .inner, .footer-bottom .inner {
  max-width: var(--content-max);
  margin-inline: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy, .footer-bar p, .footer-bottom p {
  font-size: 12px;
  color: var(--muted);
}
.footer-license {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar, .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--neutral-light);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: transform 200ms, filter 150ms;
}
.mobile-call-pill svg { width: 18px; height: 18px; }
.mobile-call-pill:hover { filter: brightness(0.90); transform: translateY(-2px); text-decoration: none; color: var(--neutral-light); }

@media (min-width: 900px) { .mobile-call-pill { display: none; } }

/* ============================================================
   STATS (if used)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--primary);
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   REVIEW CARDS (generic, in case used)
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--surface);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ============================================================
   PROCESS STRIP (generic)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ============================================================
   SERVICE CARD HOVER
   ============================================================ */
.service-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

/* ============================================================
   MISCELLANEOUS HELPERS
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* Noise grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .gallery-showcase { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  .hero { min-height: 90vh; }
  .hero-inner { padding-bottom: 14%; }
  .hero-title { max-width: 22ch; }
  .services-tabs { padding-left: 0; }
  .services-panels { padding-left: 0; }
  .team-cta-inner { flex-direction: column; text-align: center; }
  .contact-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .contact-cta-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .about-hero-ctas { flex-direction: column; }
  .about-hero-ctas a { width: 100%; justify-content: center; }
  .footer-bar { flex-direction: column; text-align: center; }
  .trust-strip-inner { gap: 12px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-main-img { grid-column: 1 / -1; }
.gallery-side { grid-column: 1 / -1; }
.service-areas-tags { grid-column: 1 / -1; }
.service-areas-map { grid-column: 1 / -1; }
.faq-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-nav { grid-column: 1 / -1; }
.footer-contact { grid-column: 1 / -1; }
.footer-col-1 { grid-column: 1 / -1; }
.footer-col-2 { grid-column: 1 / -1; }
.footer-col-3 { grid-column: 1 / -1; }
