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

/* ─── Tokens ─────────────────────────────────────────────────── */
:root {
  --primary:        #AF7A42;
  --primary-dark:   #8E6030;
  --primary-light:  #C9955E;
  --accent:         #E0BF95;
  --accent-soft:    #EDD9B8;
  --canvas:         #FAF6EE;
  --canvas-warm:    #F5EFE3;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3A3530;
  --muted:          #6B6660;
  --muted-light:    #9A958F;
  --border:         rgba(26,24,20,0.1);
  --border-brand:   rgba(175,122,66,0.35);
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ─── Global reset ───────────────────────────────────────────── */
*, *::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 { background: var(--canvas); color: var(--ink); font-family: 'Inter Tight', system-ui, sans-serif; font-weight: 450; line-height: 1.65; -webkit-font-smoothing: antialiased; }

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

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

/* ─── Anchor in headings ─────────────────────────────────────── */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

/* ─── Containers ─────────────────────────────────────────────── */
.container       { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.wide-container  { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section-inner   { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.bleed           { width: 100vw; margin-inline: calc(-1 * clamp(20px, 4vw, 48px)); }

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

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(48px, 7vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); line-height: 1.1; }
p  { line-height: 1.65; }

.eyebrow, .section-eyebrow, .page-eyebrow, .hero-eyebrow,
.service-eyebrow, .page-header-eyebrow, .cta-banner-eyebrow,
.gallery-section-header p.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow::before, .section-eyebrow::before, .page-eyebrow::before,
.hero-eyebrow::before, .service-eyebrow::before, .page-header-eyebrow::before,
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 150ms, transform 150ms, box-shadow 150ms;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--surface);
}
.btn-primary:hover { filter: brightness(0.9); color: var(--surface); text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(175,122,66,0.55); }

.btn-outline {
  background: transparent;
  color: var(--surface);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: var(--surface); text-decoration: none; border-color: rgba(255,255,255,0.85); }

/* ─── Animation utilities ────────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in, .stagger > * {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.96); }

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

.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }
.stagger.visible > * { opacity: 1; transform: none; }

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

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

.nav-logo { flex: 0 0 auto; text-decoration: none; }
.nav-logo:hover { text-decoration: none; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.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); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: var(--surface);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--surface); text-decoration: none; }

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

@media (max-width: 900px) {
  .top-nav { height: 60px; padding-inline: 16px; gap: 16px; }
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 8px 0; }
  .nav-cta span { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
}
.hero-overlay {
  background: linear-gradient(
    to top,
    rgba(16,13,10,0.88) 0%,
    rgba(16,13,10,0.55) 40%,
    rgba(16,13,10,0.15) 75%,
    transparent 100%
  );
}
.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-bottom: clamp(56px, 8vh, 96px);
  padding-top: clamp(120px, 16vh, 200px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow { color: var(--accent); margin-bottom: 12px; }
.hero-eyebrow::before { background: var(--primary); }

.hero-accent-line {
  width: 64px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 20px;
  margin-top: 4px;
}

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

.hero-sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: 32px;
  font-weight: 450;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.trust-chip {
  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);
  padding: 6px 14px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  white-space: nowrap;
}

/* ─── Trust strip ────────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.trust-strip-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 6px 14px;
  border: 1px solid var(--border-brand);
  border-radius: 999px;
  background: transparent;
  white-space: nowrap;
}
.trust-pill .star { color: var(--primary); font-size: 14px; }
.stars-inline svg { color: var(--primary); width: 14px; height: 14px; }
.rating-stars svg { color: var(--primary); width: 16px; height: 16px; }

/* ─── Section padding ────────────────────────────────────────── */
.services, .gallery-preview, .gallery-section,
.about-section, .faq, .contact, .contact-section,
.values-section { padding-block: clamp(96px, 12vh, 160px); }

/* ─── Section divider ────────────────────────────────────────── */
.section-divider { height: 1px; background: var(--border); max-width: 1280px; margin-inline: auto; margin-block: 0; }

/* ─── Services ───────────────────────────────────────────────── */
.services { background: var(--canvas); }

.services-header {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 24px;
}
.services-header h2 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.02em; }
.services-headline { font-size: clamp(36px, 5vw, 72px); }

.services-link-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.services-link-all svg { width: 16px; height: 16px; }
.services-link-all:hover { text-decoration: underline; text-underline-offset: 4px; }

.services-bento {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  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); text-decoration: none; color: var(--ink); }
.service-card:hover .service-card-cta { color: var(--primary); }

.service-card-flagship {
  grid-column: 1 / 3;
}

.service-card > img,
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.service-card-flagship > img { height: 300px; }

.service-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.service-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 4px;
  flex: 1;
}
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  transition: color 150ms;
}
.service-card-cta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card-flagship { grid-column: 1 / 3; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-card-flagship { grid-column: 1; }
  .services-header { flex-direction: column; align-items: flex-start; }
}

/* ─── Photo break ────────────────────────────────────────────── */
.photo-break {
  position: relative;
  height: clamp(300px, 45vw, 580px);
  overflow: hidden;
}
.photo-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  max-height: none;
}
.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(16,13,10,0.72) 0%, rgba(16,13,10,0.28) 60%, transparent 100%);
  z-index: 1;
}
.photo-break-quote {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 80px);
  max-width: 640px;
}
.photo-break-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--surface);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-style: italic;
}
.photo-break-quote cite {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  font-style: normal;
}

/* Full-bleed break (gallery page) */
.full-bleed-break {
  position: relative;
  height: clamp(280px, 40vw, 520px);
  overflow: hidden;
}
.full-bleed-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
}
.full-bleed-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16,13,10,0.55);
  z-index: 1;
}
.full-bleed-break-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.full-bleed-break-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 700;
  color: var(--surface);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-style: italic;
  max-width: 800px;
}
.full-bleed-break-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 14px;
}

/* ─── Gallery preview (index) ────────────────────────────────── */
.gallery-preview { background: var(--canvas-warm); }

.gallery-preview-header {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.gallery-preview-headline { font-size: clamp(36px, 5vw, 72px); }

.gallery-grid-single {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-grid-single > img {
  width: 100%;
  height: clamp(260px, 40vw, 520px);
  object-fit: cover;
  border-radius: 8px;
  max-height: none;
}
.gallery-grid-overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(to top, rgba(16,13,10,0.5) 0%, transparent 50%);
}
.gallery-grid-cta-row {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Gallery page */
.gallery-section { background: var(--canvas); }
.gallery-section-header {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 40px;
}
.gallery-section-header h2 { font-size: clamp(36px, 5vw, 72px); }
.gallery-section-sub {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 50ch;
}

.filter-bar {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: all 150ms;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(175,122,66,0.06);
}

.project-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18); text-decoration: none; }
.project-card-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.project-card-img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}
.project-card:hover .project-card-img-wrap > img { transform: scale(1.04); }
.project-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(16,13,10,0.65);
  padding: 4px 10px;
  border-radius: 4px;
}
.project-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.project-card h3 {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.project-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.project-card-location svg { width: 13px; height: 13px; }
.project-card-desc { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.project-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 10px;
}
.project-card-cta svg { width: 13px; height: 13px; }

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

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--surface); }
.faq-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.faq-inner > div { margin-bottom: clamp(32px, 4vw, 56px); }
.faq-headline { font-size: clamp(36px, 5vw, 72px); }

details.faq, .faq-inner details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
details.faq > summary, .faq-inner details > summary {
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
details.faq > summary::-webkit-details-marker,
.faq-inner details > summary::-webkit-details-marker { display: none; }

.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--muted); transition: transform 220ms, color 150ms; }
details[open] .faq-chevron { transform: rotate(180deg); color: var(--primary); }

details.faq > summary::after, .faq-inner details > summary::after { display: none; }

.faq-answer {
  margin-top: 14px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 68ch;
}

/* ─── Contact ────────────────────────────────────────────────── */
.contact, .contact-section { background: var(--canvas); }
.contact-header, .contact .fade-up:first-child {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: 48px;
}
.contact-header h2, .contact .fade-up:first-child h2 { font-size: clamp(36px, 5vw, 72px); }
.contact-headline { font-size: clamp(36px, 5vw, 72px); }

.contact-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── Forms ──────────────────────────────────────────────────── */
.form-field, .form-group {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  margin-bottom: 20px;
}
.form-field:last-of-type, .form-group:last-of-type { margin-bottom: 0; }

label, .form-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 150ms;
}
.form-input, input.form-input, .form-field input, .form-group input,
.form-field textarea, .form-group textarea,
.form-field select, .form-group select, .form-select {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 150ms;
  -webkit-appearance: none;
}
.form-field input:focus, .form-group input:focus,
.form-field textarea:focus, .form-group textarea:focus,
.form-field select:focus, .form-group select:focus { border-color: var(--primary); }
.form-field input:focus + label, .form-group input:focus + label { color: var(--primary); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-field textarea, .form-group textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-submit, .contact-form button[type="submit"] {
  width: 100%;
  background: var(--primary);
  color: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  transition: filter 150ms, transform 150ms;
}
.form-submit:hover, .contact-form button[type="submit"]:hover { filter: brightness(0.9); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

.contact-form, .contact-form-col form { display: flex; flex-direction: column; }

/* ─── Contact info ───────────────────────────────────────────── */
.contact-info, .contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-info > div, .contact-info-col > div { display: flex; flex-direction: column; gap: 4px; }

.info-block-label, .info-card-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-block-sub, .info-block-value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
.info-block-sub a, .info-block-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.info-block-sub a:hover, .info-block-value a:hover { color: var(--primary); text-decoration: none; }

.info-card {
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}
.info-card-accent { height: 4px; background: var(--primary); }
.info-card-body { padding: 28px 32px; }
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 16px;
  color: var(--ink);
}
.info-icon { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.info-divider { height: 1px; background: var(--border); margin-block: 8px; }
.info-text-label { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); }
.info-text-value { font-size: 15px; color: var(--ink-mid); }
.rating-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; }
.rating-row svg { color: var(--primary); width: 16px; height: 16px; }

/* ─── Page header (sub-pages) ────────────────────────────────── */
.page-header { min-height: clamp(260px, 40vw, 480px); display: flex; align-items: flex-end; }
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,13,10,0.75) 0%, rgba(16,13,10,0.35) 60%, transparent 100%);
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-bottom: clamp(36px, 5vh, 64px);
}
.page-header h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 700;
  color: var(--surface);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 12px;
}
.page-header-eyebrow { color: var(--accent); margin-bottom: 8px; }
.page-header-eyebrow::before { background: var(--primary); }
.page-header-title { font-size: clamp(48px, 7vw, 104px); }
.page-header-sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(14px, 1.3vw, 18px);
  margin-top: 12px;
  font-weight: 450;
}

/* ─── Services index strip ───────────────────────────────────── */
.services-index-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
  overflow-x: auto;
}
.services-index-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  gap: 0;
}
.service-index-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 18px 22px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 150ms, border-color 150ms;
}
.service-index-link:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }

/* ─── Service feature (services.html) ───────────────────────── */
.service-feature {
  padding-block: clamp(64px, 8vh, 120px);
  background: var(--canvas);
}
.service-feature:nth-child(even) { background: var(--surface); }
.service-feature-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-feature.photo-right .service-feature-inner {
  direction: rtl;
}
.service-feature.photo-right .service-feature-inner > * {
  direction: ltr;
}

.service-feature-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.service-feature-photo > img {
  width: 100%;
  height: clamp(300px, 40vw, 520px);
  object-fit: cover;
  border-radius: 8px;
  max-height: none;
  display: block;
}
.service-feature-photo-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(16,13,10,0.6);
  padding: 5px 10px;
  border-radius: 4px;
}
.service-feature-body { display: flex; flex-direction: column; gap: 16px; }
.service-feature-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.service-feature-body p { font-size: 16px; color: var(--muted); line-height: 1.65; }
.service-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0;
}
.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 6px;
}
.service-divider {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  height: 1px;
  background: var(--border);
}

@media (max-width: 900px) {
  .service-feature-inner { grid-template-columns: 1fr; }
  .service-feature.photo-right .service-feature-inner { direction: ltr; }
  .service-feature-photo > img { height: clamp(220px, 55vw, 400px); }
}

/* ─── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(80px, 10vh, 140px);
}
.cta-banner-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.cta-banner-eyebrow { color: var(--accent); }
.cta-banner-eyebrow::before { background: var(--primary); }
.cta-banner-title, .cta-banner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  color: var(--surface);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-block: 16px;
}
.cta-banner-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 52ch;
}
.cta-banner-sub a { color: var(--accent); }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.cta-banner-phone {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.cta-banner-text p, .cta-banner-left p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.6; }

.cta-form {
  background: var(--surface);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
}
.cta-form-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}
.cta-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.cta-form .form-field, .cta-form .form-group { margin-bottom: 16px; }
.cta-form button[type="submit"] {
  width: 100%;
  background: var(--primary);
  color: var(--surface);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 8px;
  transition: filter 150ms;
}
.cta-form button[type="submit"]:hover { filter: brightness(0.9); }

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

/* ─── About ──────────────────────────────────────────────────── */
.about-section { background: var(--canvas); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}
.about-portrait-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-portrait-wrap > img, .about-portrait {
  width: 100%;
  border-radius: 8px;
  height: auto;
  object-fit: cover;
}
.about-portrait-caption {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-body { display: flex; flex-direction: column; gap: 18px; }
.about-display-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.0;
}
.about-display-headline em { font-style: italic; }
.about-body p { font-size: 17px; color: var(--muted); line-height: 1.7; }
.about-hairline { height: 1px; border: none; background: var(--primary); opacity: 0.35; margin-block: 8px; }
.about-quote { padding: 20px 24px; border-left: 3px solid var(--primary); background: rgba(175,122,66,0.05); border-radius: 0 6px 6px 0; }
.about-quote-text { font-family: 'Fraunces', Georgia, serif; font-size: clamp(18px, 2vw, 24px); font-style: italic; color: var(--ink); line-height: 1.4; }
.about-quote-attribution { font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.about-body > div:last-child { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

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

/* ─── Values ─────────────────────────────────────────────────── */
.values-section { background: var(--canvas-warm); }
.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(--surface);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }
.value-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.value-card-index {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}
.value-card-body { font-size: 15px; color: var(--muted); line-height: 1.6; }

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

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding-top: clamp(64px, 8vh, 100px);
}
.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand, .footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img, .footer-brand-col img { filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-name, .footer-brand p:first-of-type {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: -0.01em;
}
.footer-tagline, .footer-brand-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.55; }
.footer-brand-meta { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-brand-meta a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-brand-meta a:hover { color: var(--accent); text-decoration: none; }

.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-label, .footer-col-title {
  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.45);
}
.footer-col ul, .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover, .footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-contact-item { display: flex; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.footer-contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-contact-value { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-value a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-value a:hover { color: var(--accent); }
.footer-rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.6); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Mobile sticky CTA ──────────────────────────────────────── */
.mobile-sticky-cta, .mobile-cta, .mobile-cta-sticky {
  display: none;
}
@media (max-width: 900px) {
  .mobile-sticky-cta, .mobile-cta, .mobile-cta-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    background: var(--primary);
    color: var(--surface);
    padding: 14px 22px;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
    gap: 8px;
  }
  .mobile-sticky-cta svg, .mobile-cta svg, .mobile-cta-sticky svg { width: 20px; height: 20px; }
  .mobile-sticky-cta:hover, .mobile-cta:hover, .mobile-cta-sticky:hover { text-decoration: none; filter: brightness(0.92); }
  .mobile-cta > a { display: flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
  .mobile-cta-sticky > a { display: flex; align-items: center; gap: 8px; color: inherit; text-decoration: none; }
}

/* ─── Contact page ───────────────────────────────────────────── */
.contact-section {
  padding-block: clamp(64px, 8vh, 120px);
}
.contact-header { margin-bottom: 48px; }
.contact-form-col { display: flex; flex-direction: column; }
.contact-info-col { display: flex; flex-direction: column; gap: 0; }

/* ─── Service area pills ─────────────────────────────────────── */
.service-area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.area-pill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* ─── Review cards ───────────────────────────────────────────── */
.review-card { padding: 28px; border-radius: 12px; background: var(--surface); }
.review-card .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 ────────────────────────────────────────────────── */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

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

/* ─── Misc helpers ───────────────────────────────────────────── */
.star { color: var(--primary); }
svg { overflow: visible; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.about-body { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.form-group { 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; }
