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

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --primary:        #F44D24;
  --primary-dark:   #d93c14;
  --accent:         #F6BC53;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3d3830;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --border-brand:   rgba(244,77,36,0.35);
  --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 24px 64px rgba(26,24,20,0.16);
  --radius:         8px;
  --radius-lg:      16px;
  --section-py:     clamp(96px, 12vh, 160px);
  --content-max:    1280px;
  --header-height:  72px;
}

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

/* ─── RESET & UNIVERSAL IMAGE CAP ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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: 64px !important;
  max-width: 220px !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; object-position: center 45%; 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; object-position: center 45%; 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 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;
}

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

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { line-height: 1.7; }
a { transition: color 150ms; text-decoration: none; color: var(--ink); }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
ul { list-style: none; }
svg { display: block; }

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

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

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
.progress-bar, .scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; background: var(--primary); z-index: 9999;
  transition: width 100ms linear;
}

/* ─── 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;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 160px !important;
}

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.01em;
}
.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;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  font-family: 'Inter Tight', sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }

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

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

  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 800;
    justify-content: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }

  .nav-cta .nav-cta-text { display: none; }
  .nav-cta { padding: 10px 12px; }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: filter 200ms, transform 200ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary, .btn-primary-lg {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-primary-lg:hover {
  filter: brightness(0.92);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(244,77,36,0.35);
}

.btn-primary-lg { font-size: 16px; padding: 18px 36px; }

.btn-outline, .btn-ghost-lg {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,24,20,0.25);
}
.btn-outline:hover, .btn-ghost-lg:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}

.btn-ghost-lg { font-size: 16px; padding: 17px 34px; }

.btn-phone {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(26,24,20,0.2);
}
.btn-phone:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: filter 200ms, transform 200ms;
}
.btn-service:hover { filter: brightness(0.92); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-service svg { width: 16px; height: 16px; }

/* ─── EYEBROW LABELS ─────────────────────────────────────────── */
.eyebrow, .section-eyebrow, .page-eyebrow, .page-header-eyebrow, .info-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.eyebrow-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.eyebrow-light {
  color: rgba(255,255,255,0.7);
}
.eyebrow-light .eyebrow-bullet {
  background: var(--accent);
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.82) 0%,
    rgba(10,8,6,0.55) 45%,
    rgba(10,8,6,0.18) 100%
  );
}

.hero-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 64px);
  padding-top: 0;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 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;
  margin-bottom: 24px;
}

.hero-accent-line { display: block; }

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 450;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-ctas .btn-primary-lg {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
}

.hero-ctas .btn-ghost-lg {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero-ctas .btn-ghost-lg:hover { border-color: #fff; color: #fff; }

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(244,77,36,0.5);
  border-radius: 999px;
  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.88);
  background: rgba(244,77,36,0.12);
  backdrop-filter: blur(4px);
}

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  padding: 20px 0;
  overflow: hidden;
}

.trust-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(244,77,36,0.4);
  border-radius: 999px;
  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.85);
}

.trust-pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 999px;
  flex-shrink: 0;
}

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

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

.services-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 40px;
  max-width: 18ch;
}

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

.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 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;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  min-height: 460px;
}

.service-panel.active { display: grid; }

.service-panel > img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
}

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

.service-panel-body h3 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

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

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

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

/* ─── PHOTO BREAK ────────────────────────────────────────────── */
.photo-break {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 45vw, 600px);
  margin: 0;
}

.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  max-height: none;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,6,0.65) 0%, rgba(10,8,6,0.2) 60%, transparent 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 8vw, 100px);
}

.photo-break-quote {
  position: relative;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.2;
  color: #fff;
  max-width: 36ch;
}

.photo-break-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 clamp(20px, 8vw, 100px);
}

.photo-break-caption p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3.5vw, 42px);
  line-height: 1.2;
  color: #fff;
  max-width: 36ch;
}

.photo-break-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(20px, 8vw, 100px);
}

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

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.gallery-inner > h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--border);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease-out;
}

.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile-tall {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-tile-tall img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-tall { grid-row: span 1; aspect-ratio: 4 / 3; }
}

/* ─── GALLERY FULL (gallery.html) ────────────────────────────── */
.gallery-full {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.gallery-full-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.gallery-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.gallery-header-row h2 { font-size: clamp(36px, 5vw, 64px); }

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

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
}

.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.gallery-full .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.gallery-card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}

.gallery-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease-out;
}

.gallery-card:hover .gallery-card-photo img { transform: scale(1.04); }

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

.gallery-card-tag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(26,24,20,0.65);
  color: #fff;
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.gallery-card-body { padding: 20px 22px 24px; }

.gallery-card-body h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.gallery-card-location svg { width: 12px; height: 12px; }

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gallery-meta-item {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  opacity: 0.7;
  margin-bottom: 2px;
}

.gallery-meta-val { font-size: 13px; font-weight: 600; }

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

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

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

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

.service-areas-sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 40px;
}

.areas-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-chip, .area-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border-brand);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: transparent;
  transition: background 200ms, color 200ms;
}

.area-chip:hover, .area-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── MAP STRIP ──────────────────────────────────────────────── */
.map-strip {
  background: var(--canvas);
  padding-block: clamp(64px, 8vh, 100px);
}

.map-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.map-content h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 12px;
}

.map-content p { color: var(--muted); margin-bottom: 24px; }

.map-area-list { display: flex; flex-wrap: wrap; gap: 8px; }

.map-area-chip {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.map-visual-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.map-radius-num {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

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

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

@media (max-width: 640px) {
  .map-strip-inner { grid-template-columns: 1fr; }
  .map-visual { margin-top: 24px; }
}

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

.faq-inner {
  max-width: 820px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.faq-inner > h2 { font-size: clamp(36px, 5vw, 64px); margin-bottom: 48px; }

.faq-list { border-top: 1px solid var(--border); }

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

details.faq-item > summary.faq-question {
  cursor: pointer;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  line-height: 1.4;
}

details.faq-item > summary.faq-question::-webkit-details-marker { display: none; }

details.faq-item > summary.faq-question::after {
  content: "+";
  font-weight: 300;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 200ms;
}

details.faq-item[open] > summary.faq-question::after {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer { padding-top: 12px; }
.faq-answer p { font-size: 16px; color: var(--ink-mid); line-height: 1.68; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

.contact-form-col h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 32px;
}

.contact-info-col {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

/* Contact section (contact.html) */
.contact-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.contact-section .contact-inner {
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
}

.contact-header-text {
  grid-column: 1 / -1;
  margin-bottom: 48px;
}

.contact-header-text h2 { font-size: clamp(36px, 5vw, 64px); }

.contact-header-text p {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
}

.contact-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-section .contact-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-header-text { grid-column: 1; }
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.contact-info-value, .contact-info-block a {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}

.contact-phone {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.contact-phone:hover { text-decoration: underline; }

.contact-info-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-block { display: flex; flex-direction: column; gap: 4px; }
.info-block a { font-size: 17px; font-weight: 500; color: var(--ink); }
.info-block a:hover { color: var(--primary); }

.hours-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: var(--ink-mid);
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
}

.service-areas-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.payment-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }

.payment-chip {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

/* ─── FORM ───────────────────────────────────────────────────── */
.contact-form, form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

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;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244,77,36,0.12);
}

textarea { min-height: 120px; resize: vertical; }

input::placeholder, textarea::placeholder { color: var(--muted); opacity: 0.6; }

.form-submit, button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px 32px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
  align-self: flex-start;
}

.form-submit:hover, button[type="submit"]:hover {
  filter: brightness(0.92);
  transform: translateY(-1px);
}

.form-submit svg, button[type="submit"] svg { width: 18px; height: 18px; }

/* ─── TRUST CALLOUTS ─────────────────────────────────────────── */
.trust-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.trust-callout:last-child { border-bottom: none; }

.trust-callout-icon {
  width: 40px;
  height: 40px;
  background: rgba(244,77,36,0.10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.trust-callout-icon svg { width: 20px; height: 20px; }

.trust-callout-text strong {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.trust-callout-text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244,77,36,0.15) 0%, transparent 60%);
  pointer-events: none;
}

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

.cta-banner-left { display: flex; flex-direction: column; gap: 20px; }

.cta-banner-headline {
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  line-height: 1.0;
}

.cta-banner-headline em { font-style: italic; color: rgba(255,255,255,0.7); }

.cta-banner-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.cta-banner-text { display: flex; flex-direction: column; gap: 16px; }
.cta-banner-text h2, .cta-banner-text .cta-banner-headline { color: #fff; }

.cta-phone-block { display: flex; flex-direction: column; gap: 4px; }

.cta-phone-label {
  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.5);
}

.cta-phone-display, .cta-phone-link {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.cta-phone-link:hover { color: var(--accent); text-decoration: none; }

.cta-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.cta-email-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
}

.cta-form-title {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 24px;
}

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

.cta-banner-actions .btn-primary-lg,
.cta-banner-actions .btn-primary {
  background: var(--primary);
  color: #fff;
}

.cta-banner-actions .btn-outline,
.cta-banner-actions .btn-ghost-lg {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.cta-banner-actions .btn-outline:hover,
.cta-banner-actions .btn-ghost-lg:hover {
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

.cta-banner-phone {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}
.cta-banner-phone:hover { color: #fff; text-decoration: none; }

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

/* ─── PAGE HEADER (sub-pages) ────────────────────────────────── */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.72) 0%, rgba(10,8,6,0.3) 60%, transparent 100%);
  z-index: 1;
}

.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(36px, 5vw, 64px) clamp(20px, 5vw, 64px);
  width: 100%;
}

.page-header-inner h1 {
  font-size: clamp(48px, 7vw, 96px);
  color: #fff;
  max-width: 18ch;
}

.page-header-eyebrow, .page-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}

.page-header-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.6;
}

/* ─── SERVICES DETAIL (services.html) ───────────────────────── */
.services-intro {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(48px, 7vh, 80px) clamp(20px, 5vw, 64px) clamp(32px, 4vh, 48px);
}

.services-intro .eyebrow { margin-bottom: 12px; }

.services-intro h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}

.services-intro-body {
  font-size: 18px;
  color: var(--muted);
  max-width: 68ch;
  line-height: 1.65;
}

.services-detail { background: var(--canvas); }

.service-block {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(64px, 8vh, 100px) clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block.block-reverse .service-block-visual { order: 2; }
.service-block.block-reverse .service-block-body { order: 1; }

.service-block-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}

.service-block-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}

.service-block-body { display: flex; flex-direction: column; gap: 16px; }

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

.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
}

.service-block-numeral {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  color: rgba(244,77,36,0.12);
  line-height: 1;
  user-select: none;
}

.service-block-divider {
  width: 40px;
  height: 2px;
  background: var(--primary);
}

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

.service-block-copy p + p { margin-top: 12px; }

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
}

.service-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block.block-reverse .service-block-visual { order: -1; }
  .service-block.block-reverse .service-block-body { order: 0; }
}

/* ─── ABOUT / FOUNDER STORY ──────────────────────────────────── */
.founder-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

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

.founder-portrait-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--border);
  max-height: 600px;
}

.founder-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
}

.founder-portrait-cap {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.founder-story-col { padding-top: 8px; }

.founder-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-story-body p { font-size: 17px; color: var(--ink-mid); }

.founder-pull-quote blockquote {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.35;
  color: var(--ink);
}

.founder-story-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 24px;
}

.founder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--primary);
}

.founder-chip {
  padding: 6px 16px;
  border: 1px solid var(--border-brand);
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

@media (max-width: 900px) {
  .founder-story-inner { grid-template-columns: 1fr; }
  .founder-portrait-wrap { aspect-ratio: 16 / 9; max-height: 320px; }
}

/* ─── VALUES SECTION ─────────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.values-header {
  margin-bottom: 48px;
}

.values-header h2, .values-headline {
  font-size: clamp(36px, 5vw, 64px);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--canvas);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(244,77,36,0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-title { font-size: 20px; font-weight: 700; }

.value-body { font-size: 15px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* ─── TIMELINE ───────────────────────────────────────────────── */
.timeline-section {
  background: var(--canvas);
  padding-block: var(--section-py);
}

.timeline-header {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: 64px;
}

.timeline-header h2, .timeline-headline {
  font-size: clamp(36px, 5vw, 64px);
}

.timeline-title { font-size: clamp(36px, 5vw, 64px); }

.timeline-track {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: clamp(20px, 5vw, 64px);
  right: clamp(20px, 5vw, 64px);
  height: 1px;
  background: var(--border);
}

.timeline-step { position: relative; padding-top: 48px; }

.timeline-dot {
  position: absolute;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
}

.timeline-year {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-step h3 { font-size: 18px; margin-bottom: 8px; }
.timeline-headline { font-size: clamp(36px, 5vw, 64px); }
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .timeline-track { grid-template-columns: 1fr 1fr; }
  .timeline-track::before { display: none; }
}
@media (max-width: 640px) {
  .timeline-track { grid-template-columns: 1fr; }
}

/* ─── CREW STRIP ─────────────────────────────────────────────── */
.crew-strip {
  background: var(--surface);
  padding-block: var(--section-py);
}

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

.crew-strip-header { grid-column: 1; }
.crew-strip-header h2, .crew-strip-headline { font-size: clamp(28px, 3.5vw, 44px); }

.crew-photo-wrap {
  grid-column: 2;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.crew-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
}

.crew-caption { grid-column: 3; padding-top: 16px; }

.crew-caption-line {
  width: 32px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 16px;
}

.crew-caption-text { font-size: 16px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .crew-strip-inner { grid-template-columns: 1fr; }
  .crew-strip-header, .crew-photo-wrap, .crew-caption { grid-column: 1; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer, footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-top: clamp(64px, 8vh, 96px);
}

.footer-inner, .footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(48px, 6vh, 72px);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-brand-logo { display: flex; }

.footer-logo { display: flex; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  max-width: 28ch;
}

.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.footer-contact-item, .footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.footer-contact-item a, .footer-contact-row a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer-contact-item a:hover, .footer-contact-row a:hover { color: var(--accent); text-decoration: none; }

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

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

.footer-links, .footer-link-list { display: flex; flex-direction: column; gap: 8px; list-style: none; }

.footer-links li a, .footer-link-list li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer-links li a:hover, .footer-link-list li a:hover { color: var(--accent); text-decoration: none; }

.footer-links li span, .footer-link-list li span,
.footer-links li, .footer-link-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-hours-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

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

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

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

.footer-bottom .footer-license { font-size: 12px; }

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

/* ─── MOBILE CTA PILL ────────────────────────────────────────── */
.mobile-cta-pill, .mobile-call-pill, .mobile-cta, .mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
}

.mobile-cta-pill:hover, .mobile-call-pill:hover, .mobile-cta:hover, .mobile-sticky-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.mobile-cta-pill svg, .mobile-call-pill svg, .mobile-cta svg, .mobile-sticky-cta svg,
.mobile-cta a svg { width: 20px; height: 20px; flex-shrink: 0; }

.mobile-cta > a, .mobile-sticky-cta > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-left, .fade-right, .scale-in, .stagger > * {
    opacity: 1; transform: none; transition: none;
  }
}

/* ─── SERVICE CARD HOVER ─────────────────────────────────────── */
.service-card, .value-card, .gallery-card {
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

/* ─── SECTION TITLES ─────────────────────────────────────────── */
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

/* ─── REVIEW CARDS ───────────────────────────────────────────── */
.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 ──────────────────────────────────────────── */
.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;
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  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;
}

/* ─── 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; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; animation: marquee 35s linear infinite; }
.marquee-item { font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: clamp(13px, 1.4vw, 18px); line-height: 1.2; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SVG CAPS ───────────────────────────────────────────────── */
.nav-pages li a svg { width: 16px; height: 16px; }
.btn svg, button svg { width: 18px; height: 18px; }
.trust-callout-icon svg { width: 20px; height: 20px; }
.gallery-card-location svg { width: 12px; height: 12px; }
nav svg { width: 24px; height: 24px; }

/* ─── MISC UTILITY ───────────────────────────────────────────── */
.bleed { width: 100vw; margin-left: calc(-50vw + 50%); }

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-col { grid-column: 1 / -1; }
.service-block-visual { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.cta-phone-display { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.founder-story-col { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.map-content { grid-column: 1 / -1; }
.map-visual { 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); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
