@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,700;1,9..144,700&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #2D6A35;
  --primary-dark:   #1f4d26;
  --primary-light:  #3d8a47;
  --accent:         #8B5E3C;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-brand:   rgba(45,106,53,0.35);
  --hairline:       rgba(45,106,53,0.6);
  --shadow-sm:      0 2px 8px rgba(26,24,20,0.08);
  --shadow-md:      0 8px 32px rgba(26,24,20,0.12);
  --shadow-lg:      0 18px 48px rgba(26,24,20,0.18);
  --radius:         8px;
  --radius-pill:    999px;
  --header-height:  72px;
  --section-py:     clamp(96px, 12vh, 160px);
  --content-width:  1280px;
  --wide-width:     1400px;
}

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

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

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

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  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 { 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; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-feature > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a, [class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Heading anchors render as heading, not links */
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: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 100px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(16px, 2vw, 20px); }

p { line-height: 1.7; }

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

/* Eyebrow labels — mono-uppercase with brand square bullet */
.eyebrow, .section-eyebrow, .about-eyebrow, .hero-eyebrow,
.page-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow,
.service-areas-eyebrow, .services-detail-header > p.eyebrow,
.faq-head > p.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.eyebrow::before, .section-eyebrow::before, .about-eyebrow::before,
.page-eyebrow::before, .page-header-eyebrow::before, .cta-banner-eyebrow::before,
.service-areas-eyebrow::before,
.services-detail-header > p.eyebrow::before,
.faq-head > p.eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}
/* Hero eyebrow is on dark bg */
.hero-eyebrow {
  color: rgba(255,255,255,0.75);
}
.hero-eyebrow::before { background: var(--primary-light); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.wide-container {
  max-width: var(--wide-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.bleed { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-ghost, .btn-submit,
.btn-banner-primary, .btn-banner-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius);
  padding: 16px 28px;
  cursor: pointer;
  border: none;
  transition: transform 200ms ease-out, box-shadow 200ms ease-out, background 150ms, filter 150ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary, .btn-banner-primary, .btn-submit {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-banner-primary:hover, .btn-submit:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #fff;
  text-decoration: none;
}

.btn-outline, .btn-banner-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover, .btn-banner-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
}

.btn svg, .btn-primary svg, .btn-outline svg, .btn-ghost svg,
.btn-submit svg, .btn-banner-primary svg, .btn-banner-secondary svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress, #scrollProgress, #scrollBar, .scroll-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: transparent;
  z-index: 9999;
}
.scroll-progress, #scrollProgress { height: 3px; background: transparent; }
#scrollBar { height: 3px; }

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; }
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  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;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.9); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta .nav-cta-label { }

.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;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 12px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    border-bottom: 1px solid var(--border);
    padding: 16px 28px 24px;
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-pages li:last-child a { border-bottom: 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(15%) brightness(0.7);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(26,24,20,0.92) 0%,
    rgba(26,24,20,0.55) 40%,
    rgba(26,24,20,0.15) 80%,
    transparent 100%
  );
}

.hero-hairline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  z-index: 3;
}

.hero-ribbon {
  display: none;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(72px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 14ch;
}
h1.hero-title { font-size: clamp(72px, 9vw, 140px); }

.hero-eyebrow {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.8);
  max-width: 52ch;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 12px;
}

.hero-trust-chips .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(45,106,53,0.6);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-ctas { flex-direction: column; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip-inner, .trust-strip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  justify-content: center;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.trust-badge, .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-brand);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  background: var(--canvas);
}
.trust-badge svg, .trust-chip svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

.badge-star { color: var(--accent); font-size: 13px; }

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

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

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

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

.marquee-sep {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

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

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

.services-header {
  margin-bottom: 40px;
}
.services-header .section-title {
  max-width: 22ch;
  margin-top: 0;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.service-tab {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 200ms;
}
.service-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.service-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.services-panels {
  position: relative;
}

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

.service-panel > img, .service-panel-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  max-height: none;
}
.service-panel img:first-child {
  max-height: none;
  height: 100%;
}

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

.service-panel-body .eyebrow { margin-bottom: 0; }

.service-panel-body h3 {
  font-size: clamp(24px, 3vw, 38px);
  color: var(--ink);
}

.service-panel-body p { color: var(--muted); line-height: 1.7; }

.service-panel-body .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .service-panel, .service-panel.active {
    grid-template-columns: 1fr;
  }
  .service-panel > img { min-height: 260px; max-height: 300px; }
}

/* Services detail page */
.services-detail {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.services-detail-header {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(64px, 8vw, 96px);
}

.service-block {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(48px, 6vw, 80px);
}

.service-block-grid {
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.service-block-grid.reverse {
  grid-template-columns: 1fr 48%;
}
.service-block-grid.reverse .service-block-photo { order: 2; }
.service-block-grid.reverse .service-block-body { order: 1; }

.service-block-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.service-block-photo img {
  width: 100%; height: 100%;
  min-height: 380px;
  object-fit: cover;
  max-height: none;
}

.service-block-index {
  position: absolute;
  top: 16px; left: 16px;
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.service-block-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}
.service-block-body a { align-self: flex-start; }

.service-block-desc { color: var(--muted); line-height: 1.7; }

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.service-features li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-divider { padding-block: 0; }
.service-divider hr {
  border: 0;
  border-top: 1px solid var(--border);
  max-width: var(--content-width);
  margin-inline: auto;
  margin-left: clamp(20px, 4vw, 48px);
  margin-right: clamp(20px, 4vw, 48px);
}

@media (max-width: 900px) {
  .service-block-grid,
  .service-block-grid.reverse {
    grid-template-columns: 1fr;
  }
  .service-block-grid.reverse .service-block-photo,
  .service-block-grid.reverse .service-block-body {
    order: unset;
  }
  .service-block-photo img { min-height: 260px; }
}

/* ============================================================
   PHOTO BREAK (full-bleed between services + gallery)
   ============================================================ */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 45vw, 580px);
  width: 100%;
}

.photo-break > img, .photo-break-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  max-height: none;
  filter: grayscale(20%) brightness(0.75);
}

.photo-break-scrim, .photo-break-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(26,24,20,0.72) 0%,
    rgba(26,24,20,0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
}

.photo-break-inner {
  position: relative; z-index: 2;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.photo-break-quote, .photo-break-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 18ch;
}

.photo-break-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview {
  padding-block: var(--section-py);
  background: var(--surface);
}

.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-head > div { flex: 1; }
.gallery-head a {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-underline-offset: 4px;
}

.gallery-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: clamp(300px, 42vw, 560px);
}
.gallery-feature > img, .gallery-feature-img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.gallery-feature-floor {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,20,0.55) 0%, transparent 55%);
  z-index: 1;
}

.gallery-feature-cta {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}

/* Gallery page (gallery.html) */
.gallery-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.gallery-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 32px;
}
.gallery-header-row > div { flex: 1; }
.gallery-header-row p { color: var(--muted); margin-top: 12px; }

.section-eyebrow { margin-bottom: 10px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 40px;
}

.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.gallery-card.featured {
  grid-column: span 2;
}

.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card.featured .gallery-card-photo { aspect-ratio: 16 / 9; }

.gallery-card-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-photo > img { transform: scale(1.03); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.9);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.gallery-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gallery-card-body h3 {
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

.gallery-card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }

.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
  font-size: 16px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

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

.about-layout {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.about-portrait-col {
  position: relative;
}

.about-portrait-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.about-portrait-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
}

.about-portrait-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-portrait-badge strong {
  display: block;
  font-size: 28px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1;
}
.about-portrait-badge br { display: block; }

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: clamp(16px, 3vw, 40px);
}

.about-eyebrow { margin-bottom: 16px; }

.about-text-col h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 28px;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-body p { color: var(--muted); line-height: 1.72; }

.about-divider {
  height: 1px;
  background: var(--primary);
  width: 48px;
  margin: 28px 0;
  opacity: 0.5;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border-brand);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: var(--canvas);
}

.about-headline {
  font-size: clamp(28px, 3.5vw, 48px);
}

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
  .about-portrait-badge { right: 0; }
}

/* ============================================================
   VETERANS BANNER
   ============================================================ */
.veterans-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

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

.veterans-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.veterans-badge svg { width: 36px; height: 36px; color: var(--primary); flex-shrink: 0; }
.veterans-badge-text { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.10em; }

.veterans-text {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.veterans-text strong { color: var(--primary); }

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

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

.service-areas-headline, .areas-head h2, .service-areas > h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 12px;
}

.areas-head > p, .service-areas-inner > p.intro {
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 58ch;
}

.areas-cloud, .area-pills, .areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--canvas);
  transition: border-color 200ms, color 200ms;
}
.area-pill:hover { border-color: var(--primary); color: var(--primary); }

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

.service-area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

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

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

.faq-header, .faq-head {
  margin-bottom: 48px;
}
.faq-head h2 { max-width: 22ch; }

.faq-list, .faq-grid {
  border-top: 1px solid var(--border);
  max-width: 780px;
  display: flex;
  flex-direction: column;
}

details.faq, .faq-list details, .faq-grid details {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-list details summary, .faq-grid details summary,
details.faq > summary {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 20px;
  color: var(--ink);
}
.faq-list details summary::-webkit-details-marker,
.faq-grid details summary::-webkit-details-marker,
details.faq > summary::-webkit-details-marker { display: none; }

.faq-chevron, .faq-list details summary .faq-chevron svg,
.faq-grid details summary span svg {
  width: 20px; height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 250ms, color 250ms;
}

.faq-list details[open] summary .faq-chevron,
.faq-grid details[open] summary .faq-chevron,
details.faq[open] > summary .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

/* Fallback for custom chevron via ::after */
details.faq > summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
  flex-shrink: 0;
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
/* Hide ::after when there's a .faq-chevron child (avoid double indicator) */
details summary .faq-chevron ~ *::after { content: none; }

.faq-answer, .faq-list details p, .faq-grid details p {
  padding-bottom: 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

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

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

.contact-form-side > p.eyebrow { margin-bottom: 16px; }
.contact-form-side h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 32px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
  flex: 1;
}

.form-row {
  display: flex;
  gap: 16px;
}
.form-row .form-group { flex: 1; }

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

input, textarea, select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,106,53,0.12);
}
textarea { min-height: 120px; resize: vertical; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
}
.form-note a { color: var(--primary); }

.form-photo-note { font-size: 12px; color: var(--muted); margin-bottom: 16px; }

.btn-submit {
  align-self: flex-start;
  padding: 16px 32px;
}

/* Contact info side */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-side > p.eyebrow { margin-bottom: 16px; }
.contact-info-side h3 {
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 32px;
}

.info-block {
  margin-bottom: 24px;
}
.info-block-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.info-row svg, .info-icon { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-row > div { line-height: 1.5; }

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.info-item-icon svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-item-body { display: flex; flex-direction: column; gap: 2px; }
.info-item-body a { color: var(--ink); font-weight: 500; }
.info-item-body a:hover { color: var(--primary); }
.info-item-body span { font-size: 13px; color: var(--muted); }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.info-value { font-size: 15px; color: var(--ink); }
.info-divider { height: 1px; background: var(--border); margin: 20px 0; }
.info-card-header { margin-bottom: 16px; }
.info-card-header h3 { font-size: 22px; }

/* Contact page specific */
.contact-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 5vw, 64px);
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  align-items: start;
}

.contact-form-wrap {}
.contact-form-header { margin-bottom: 32px; }
.contact-form-header p.section-eyebrow { margin-bottom: 10px; }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.day { color: var(--ink); font-weight: 500; }
.time { color: var(--muted); }

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .form-row { flex-direction: column; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(72px, 10vh, 120px);
}

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

.cta-banner-eyebrow { color: rgba(255,255,255,0.55); }
.cta-banner-eyebrow::before { background: var(--primary-light); }

.cta-banner-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-banner-headline { color: #fff; }
.cta-banner-meta { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 24px; }
.cta-banner-phone {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner-right .contact-form {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
}
.cta-banner-right input,
.cta-banner-right textarea { background: var(--canvas); }

.cta-banner-left h2 { margin-bottom: 12px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(240px, 35vw, 420px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header > img, .page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.55) grayscale(15%);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(26,24,20,0.75) 0%, rgba(26,24,20,0.2) 60%, transparent 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
}

.page-header-eyebrow, .page-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.page-header-eyebrow::before, .page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--primary-light);
  border-radius: 1px;
  flex-shrink: 0;
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.page-header-sub {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  max-width: 52ch;
  line-height: 1.55;
}

/* ============================================================
   SCROLL BAR / PROGRESS
   ============================================================ */
.scroll-bar, #scrollBar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary) var(--progress, 0%), transparent var(--progress, 0%));
  z-index: 9999;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-block: clamp(60px, 8vw, 96px) 0;
}

.footer-inner, .site-footer > .container { max-width: var(--content-width); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: clamp(40px, 5vw, 64px);
}

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

.footer-brand img, .footer-brand-col img {
  max-height: 44px !important;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-col-title, .footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-contact-item, .footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #fff; text-decoration: none; }
.footer-contact-line a { color: rgba(255,255,255,0.65); }
.footer-contact-line a:hover { color: #fff; }

.footer-divider { border: 0; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-license { font-size: 13px; color: rgba(255,255,255,0.35); }

.footer-trust-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-trust-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.footer-social, .footer-social-row, .footer-socials { display: flex; gap: 12px; }
.footer-social-link, .footer-social a, .footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  transition: color 150ms, border-color 150ms;
  text-decoration: none;
}
.footer-social-link:hover, .footer-social a:hover, .footer-socials a:hover {
  color: #fff; border-color: rgba(255,255,255,0.4); text-decoration: none;
}
.footer-social-link svg, .footer-social a svg, .footer-socials a svg { width: 16px; height: 16px; }

.footer-logo { max-height: 40px; }
.footer-license { }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 2; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-brand-col { grid-column: span 1; }
}

/* ============================================================
   MOBILE STICKY CTA PILL
   ============================================================ */
.mobile-sticky-cta, .mobile-cta-pill, .mobile-cta, .mobile-call {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
}

.mobile-sticky-cta a, .mobile-cta-pill,
.mobile-cta a, .mobile-call a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 200ms;
}
.mobile-sticky-cta a:hover, .mobile-cta-pill:hover,
.mobile-cta a:hover, .mobile-call a:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.mobile-sticky-cta svg, .mobile-cta-pill svg,
.mobile-cta svg, .mobile-call svg { width: 20px; height: 20px; }

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

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

/* ============================================================
   PROCESS (fallback)
   ============================================================ */
.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: var(--radius); }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

/* ============================================================
   REVIEW CARDS (fallback)
   ============================================================ */
.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; }

/* ============================================================
   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); }

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

.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; }

/* ============================================================
   INTRO TEXT
   ============================================================ */
.intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 60ch;
}

/* ============================================================
   MISC UTILITY
   ============================================================ */
.featured { }

.section-title {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 8px;
  max-width: 20ch;
}

/* Nav link uniform styling */
#navLinks a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 14px;
}

/* Defensive SVG cap */
svg { overflow: visible; }
.info-icon, .faq-chevron { width: 20px; height: 20px; flex-shrink: 0; }
.badge-star svg { width: 14px; height: 14px; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
