@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,700&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #046915;
  --primary-dark:   #034f10;
  --primary-light:  #e6f2e8;
  --accent:         #643B2F;
  --accent-light:   #f5ede9;
  --canvas:         #FAF6EE;
  --canvas-dark:    #f0ead9;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3530;
  --muted:          #6B6660;
  --muted-light:    #9e9892;
  --border:         rgba(26,24,20,0.10);
  --border-strong:  rgba(26,24,20,0.20);
  --header-height:  72px;
  --radius:         8px;
  --radius-sm:      4px;
  --radius-pill:    999px;
}

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

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

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── UNIVERSAL IMAGE CAP ─────────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }

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

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 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;
}

/* ─── GLOBAL 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, 3vw, 32px); line-height: 1.15; }

p { line-height: 1.65; }

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

ul { list-style: none; }

/* ─── SCROLL BAR ──────────────────────────────────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9999; background: transparent;
}
.scroll-progress {
  height: 100%; width: 0%; background: var(--primary); transition: width 80ms linear;
}
#scrollBar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
  background: var(--primary-light);
}

/* ─── LAYOUT CONTAINERS ───────────────────────────────────────────────────── */
.container { max-width: 1280px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 60px); }
.wide-container { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 60px); }
.bleed { width: 100%; max-width: none; }

/* ─── EYEBROW LABELS (the unique move) ───────────────────────────────────── */
.eyebrow,
.eyebrow-light,
.section-eyebrow,
.page-eyebrow,
.cta-banner-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow-light {
  color: rgba(255,255,255,0.7);
}
.eyebrow-bullet,
.eyebrow::before,
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
}
.eyebrow-bullet { width: 8px; height: 8px; background: var(--primary); border-radius: 1px; display: inline-block; flex-shrink: 0; }
.eyebrow-light::before { background: rgba(255,255,255,0.6); }

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

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

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

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

.nav-cta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(0.92); text-decoration: none !important; color: var(--canvas) !important; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta-label { }
.nav-cta-text { }
.nav-cta-icon { width: 16px; height: 16px; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-pages {
    display: none;
    position: absolute; top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px clamp(16px, 5vw, 40px);
    gap: 4px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { padding: 10px 0; font-size: 17px; }
  .nav-cta .nav-cta-label,
  .nav-cta span:not(.nav-cta-icon) { display: none; }
  .nav-cta { padding: 10px 12px; }
}

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(10,14,10,0.88) 0%,
    rgba(10,14,10,0.55) 42%,
    rgba(10,14,10,0.15) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 60px);
  padding-bottom: clamp(64px, 10vh, 112px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(10px, 1.2vw, 12px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 1px;
}

.hero-hairline {
  border: none;
  border-top: 2px solid var(--primary);
  width: 48px;
  margin: 0 0 28px;
}

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

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 450;
  color: rgba(255,255,255,0.8);
  max-width: 48ch;
  line-height: 1.55;
  margin-bottom: 36px;
}

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

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0; margin: 0;
}
.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.88);
  padding: 6px 14px;
  border: 1px solid rgba(4,105,21,0.6);
  border-radius: var(--radius-pill);
  background: rgba(4,105,21,0.08);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-inner { padding-bottom: 56px; }
  .hero-title, .hero h1, .hero-inner h1 { font-size: clamp(52px, 13vw, 80px); max-width: 12ch; }
}

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: filter 200ms ease, transform 150ms ease, background 200ms, color 200ms, border-color 200ms;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none !important; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary); color: #FAF6EE;
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.92); color: #FAF6EE !important; }

.btn-primary-light {
  background: var(--primary-light); color: var(--primary);
  border-color: var(--primary-light);
}
.btn-primary-light:hover { filter: brightness(0.94); }

.btn-ghost {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.85); color: #fff !important; }

.btn-outline {
  background: transparent; color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary) !important; }

.btn-outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover { border-color: #fff; color: #fff !important; }

.btn-dark {
  background: var(--ink); color: var(--canvas);
  border-color: var(--ink);
}
.btn-dark:hover { filter: brightness(1.15); color: var(--canvas) !important; }

.btn-white {
  background: #fff; color: var(--ink);
  border-color: #fff;
}
.btn-white:hover { filter: brightness(0.96); }

.btn-call {
  background: var(--primary); color: #FAF6EE !important;
  border-color: var(--primary);
  padding: 14px 24px;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; text-decoration: none !important;
}
.btn-call:hover { filter: brightness(0.92); }
.btn-call svg { width: 18px; height: 18px; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas) !important;
  border: none; padding: 16px 32px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer;
  transition: filter 200ms, transform 150ms;
  text-decoration: none !important;
}
.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

/* ─── TRUST STRIP ─────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}
.tpill {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink-mid);
  padding: 6px 14px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  background: var(--surface);
}

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

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

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

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

.mitem {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.2;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

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

/* ─── SECTION WRAPPER ─────────────────────────────────────────────────────── */
.swrap {
  padding-block: clamp(96px, 12vh, 160px);
  background: var(--canvas);
}

.sinner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.shd {
  margin-bottom: clamp(48px, 6vh, 72px);
  max-width: 64ch;
}

.stitle {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.ssub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 54ch;
  margin-top: 12px;
}

/* ─── SERVICES BENTO ──────────────────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sc {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  text-decoration: none !important;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  overflow: hidden;
}
.sc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  z-index: 2;
  text-decoration: none !important;
}

.sc-feat {
  grid-column: span 2;
  flex-direction: row;
}
.sc-feat .sc-iw { width: 55%; }
.sc-feat .sc-body { flex: 1; }

.sc-iw {
  overflow: hidden;
  background: var(--canvas-dark);
  flex-shrink: 0;
}
.sc-iw img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
  max-height: none !important;
  min-height: 220px;
}
.sc:hover .sc-iw img { transform: scale(1.04); }

.sc-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

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

.sc-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
}

.sc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.sc-link {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sc-link::after { content: '\2192'; font-size: 14px; }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .sc-feat { grid-column: 1 / -1; flex-direction: column; }
  .sc-feat .sc-iw { width: 100%; min-height: 260px; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .sc-feat { grid-column: 1; }
}

/* ─── PHOTO BREAK ─────────────────────────────────────────────────────────── */
.photo-break {
  position: relative;
  overflow: hidden;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-break > img,
.photo-break-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 50%;
  z-index: 0;
  max-height: none !important;
}

.pb-scrim,
.photo-break-scrim,
.photo-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,10,0.72) 0%, rgba(10,14,10,0.45) 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px);
}

.pb-quote,
.photo-break-content,
.photo-break-text {
  position: relative; z-index: 2;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 28ch;
  text-align: center;
}
.photo-break-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.photo-break-content p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 44px);
  color: #fff;
  line-height: 1.1;
  max-width: 28ch;
}
.photo-break-text p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: clamp(22px, 3.5vw, 44px);
  color: #fff;
  line-height: 1.1;
}
.pb-quote a, .photo-break-content a, .photo-break-text a {
  color: inherit; text-decoration: none;
}

/* ─── GALLERY ─────────────────────────────────────────────────────────────── */
.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--canvas-dark);
  max-height: 560px;
}
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 560px;
  display: block;
}
.gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,14,10,0.8) 0%, transparent 100%);
  padding: 32px 28px 24px;
}
.gallery-cta-line {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em;
}
.gallery-cta-line a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ─── GALLERY PAGE ────────────────────────────────────────────────────────── */
.gallery-section {
  padding-block: clamp(60px, 8vh, 100px);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.gallery-section-header {
  margin-bottom: 48px;
}
.gallery-section-header h2,
.gallery-section-header p:first-child {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

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

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  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.15);
}

.project-card-featured {
  grid-column: span 2;
}
@media (max-width: 640px) {
  .project-card-featured { grid-column: span 1; }
}

.project-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--canvas-dark);
}
.project-card-featured .project-card-img { aspect-ratio: 16 / 9; }

.project-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
  max-height: none !important;
}
.project-card:hover .project-card-img img { transform: scale(1.04); }

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

.project-card-body {
  padding: 20px 20px 16px;
}
.project-card-body h3 {
  font-size: 17px; margin-bottom: 6px;
}
.project-location {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
.project-location svg { width: 12px; height: 12px; }

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-top: 8px;
}
.project-card-link svg { width: 14px; height: 14px; }

/* ─── REVIEWS ─────────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

.rcard {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: box-shadow 250ms;
}
.rcard:hover { box-shadow: 0 12px 32px -12px rgba(0,0,0,0.10); }

.rstars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.rstars svg {
  width: 16px; height: 16px;
  color: #F59E0B;
  fill: #F59E0B;
}

.rmark {
  display: inline-block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  line-height: 0.7;
  color: var(--primary);
  opacity: 0.25;
  margin-bottom: 4px;
}

.rquote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.rattrib {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.rname { font-weight: 600; color: var(--ink-mid); }
.rverified {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-col,
.faq-list {
  max-width: 72ch;
}

details {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
details:first-child { border-top: 1px solid var(--border); }

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

.fchev,
.faq-chevron {
  width: 20px !important; height: 20px !important;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}
details[open] .fchev,
details[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

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

.faq-header { margin-bottom: 40px; }
.faq-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 60px);
  letter-spacing: -0.02em;
}

.faq {
  padding-block: clamp(96px, 12vh, 160px);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

/* ─── TEAM CTA ────────────────────────────────────────────────────────────── */
.team-cta {
  padding: clamp(40px, 5vh, 64px) 0;
  background: var(--primary);
}
.team-cta-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.team-cta-copy {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(20px, 2.8vw, 32px);
  color: #fff;
  line-height: 1.15;
  text-align: center;
}
.team-cta-inner a {
  background: var(--canvas);
  color: var(--primary) !important;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter 200ms;
}
.team-cta-inner a:hover { filter: brightness(0.96); }

/* ─── CONTACT (index page) ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

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

.cform label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 6px;
}

.cform input,
.cform textarea {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 200ms;
}
.cform input:focus,
.cform textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,105,21,0.12);
}
.cform textarea { min-height: 120px; resize: vertical; }

.cinfo {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 15px;
}
.cinfo .ilabel {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-bottom: 2px;
}
.cinfo .ivalue {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.cinfo .ivalue-sm {
  font-size: 14px;
  color: var(--ink-mid);
}
.cinfo .inote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.cinfo .iareas-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.cinfo .iareas-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.cinfo a { color: var(--primary); font-weight: 600; }

/* ─── CONTACT SPLIT PAGE ─────────────────────────────────────────────────── */
.contact-split {
  padding-block: clamp(80px, 10vh, 140px);
  background: var(--canvas);
}
.contact-split-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1100px) {
  .contact-split-grid { grid-template-columns: 1fr; gap: 48px; }
}

.contact-form-side h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-form-lead {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.55;
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color 200ms, box-shadow 200ms;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,105,21,0.12);
}
.form-field textarea { min-height: 120px; resize: vertical; }

.form-disclaimer {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 8px;
}
.form-disclaimer a { color: var(--primary); }

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.info-card-eyebrow svg { width: 16px; height: 16px; }
.info-card-phone-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.info-divider {
  border-top: 1px solid var(--border);
  margin: 8px 0;
}
.info-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.info-item-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}
.info-item-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.45;
}
.info-item-value a { color: var(--primary); font-weight: 600; }
.info-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.info-tag {
  font-size: 12px;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.info-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  gap: 12px;
}
.info-cta-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.contact-info-card > a {
  color: var(--primary);
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ─── SERVICE AREAS ───────────────────────────────────────────────────────── */
.service-areas {
  padding-block: clamp(80px, 10vh, 120px);
  background: var(--canvas-dark);
}
.service-areas-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.service-areas-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.service-areas-desc {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 52ch;
  line-height: 1.55;
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}
.area-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(64px, 9vh, 112px);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(4,105,21,0.08);
  pointer-events: none;
}

.cta-banner-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
}

.cta-banner-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.cta-banner-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 1px;
}

.cta-banner-inner h2,
.cta-banner-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 60px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cta-banner-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4.5vw, 60px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cta-banner-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
  line-height: 1.55;
}

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

.cta-phone-label {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

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

.cta-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-left h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cta-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 12px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-form input,
.cta-form textarea {
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: #fff;
  outline: none;
  transition: border-color 200ms;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--primary);
}
.cta-form textarea { min-height: 100px; resize: vertical; }

/* ─── PAGE HEADER (sub-pages) ─────────────────────────────────────────────── */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(300px, 45vh, 500px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
}

.page-header > img,
.page-header-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  z-index: 0;
  max-height: none !important;
}

.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,14,10,0.80) 0%, rgba(10,14,10,0.35) 55%, rgba(10,14,10,0.12) 100%);
  z-index: 1;
}

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

.page-header-inner h1,
.page-header-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 12px;
}

.page-header-sub {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  line-height: 1.5;
}

/* ─── SERVICES PAGE (feature blocks) ─────────────────────────────────────── */
.services-intro {
  padding-block: clamp(48px, 6vh, 80px);
  background: var(--canvas);
}
.services-intro-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.services-intro-body {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 68ch;
  margin-top: 12px;
}

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

.service-block {
  padding-block: clamp(64px, 8vh, 100px);
  border-top: 1px solid var(--border);
}
.service-block:first-child { border-top: none; }

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

.service-block-reverse .service-block-inner {
  direction: ltr;
}
.service-block-reverse .service-block-inner > :first-child {
  order: 2;
}
.service-block-reverse .service-block-inner > :last-child {
  order: 1;
}

.service-block-photo {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  background: var(--canvas-dark);
}
.service-block-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  max-height: none !important;
}

.service-block-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.service-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-block-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 24px;
  padding: 0;
}
.service-bullets li {
  font-size: 14px;
  color: var(--ink-mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 1px;
}

.service-block-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-block-reverse .service-block-inner > :first-child { order: 0; }
  .service-block-reverse .service-block-inner > :last-child { order: 0; }
}

/* ─── ABOUT PAGE ──────────────────────────────────────────────────────────── */
.about-story {
  padding-block: clamp(80px, 10vh, 128px);
  background: var(--canvas);
}
.about-story-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 1000px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-portrait-col {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  background: var(--canvas-dark);
  flex-shrink: 0;
}
.about-portrait-img,
.about-portrait-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  max-height: none !important;
  filter: grayscale(20%);
  transition: filter 500ms;
}
.about-portrait-col:hover .about-portrait-img,
.about-portrait-col:hover img { filter: grayscale(0%); }

.about-copy-col { padding-top: 8px; }
.about-copy-col h2,
.about-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-copy-col p,
.about-story-inner p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.about-hairline {
  border: none;
  border-top: 2px solid var(--primary);
  width: 48px;
  margin: 32px 0 0;
}

/* ─── VALUES ──────────────────────────────────────────────────────────────── */
.values-section {
  padding-block: clamp(80px, 10vh, 128px);
  background: var(--canvas-dark);
}
.values-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.values-header {
  margin-bottom: 48px;
}
.values-title,
.values-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.02em;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  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-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
  opacity: 0.25;
}
.value-card-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  margin-bottom: 10px;
}
.value-card-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ─── TIMELINE ────────────────────────────────────────────────────────────── */
.timeline-section {
  padding-block: clamp(80px, 10vh, 128px);
  background: var(--canvas);
}
.timeline-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.timeline-header {
  margin-bottom: 56px;
}
.timeline-title,
.timeline-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.02em;
}

.timeline-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .timeline-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline-steps { grid-template-columns: 1fr; } }

.timeline-rail {
  position: absolute;
  top: 20px; left: 0; right: 0;
  height: 2px;
  background: var(--border-strong);
  z-index: 0;
  grid-column: 1 / -1;
  pointer-events: none;
}

.timeline-step {
  position: relative;
  z-index: 1;
  padding-top: 48px;
}
.timeline-step h3 {
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 6px;
}

.timeline-dot {
  position: absolute;
  top: 12px; left: 0;
  width: 20px; height: 20px;
  background: var(--canvas);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-dot-pip {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.timeline-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-step-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 6px;
}

.timeline-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  letter-spacing: -0.01em;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
footer,
.site-footer {
  background: var(--ink);
  color: rgba(250,246,238,0.7);
  padding-top: clamp(56px, 7vh, 96px);
}

.fgrid,
.footer-grid,
.footer-inner .footer-grid {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
@media (max-width: 900px) {
  .fgrid,
  .footer-grid,
  .footer-inner .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .fgrid,
  .footer-grid,
  .footer-inner .footer-grid { grid-template-columns: 1fr; }
}

.footer-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.fbrand,
.footer-brand,
.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fbrand img,
.footer-brand img,
.footer-brand-col img {
  max-height: 40px !important;
  max-width: 180px !important;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.ftagline,
.footer-tagline,
.footer-brand-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,246,238,0.5);
  max-width: 28ch;
}

.footer-brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(250,246,238,0.9);
  letter-spacing: -0.01em;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.footer-contact-quick a {
  font-size: 14px;
  color: rgba(250,246,238,0.6);
  font-weight: 500;
}
.footer-contact-quick a:hover { color: var(--primary); }

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

.fcol-links,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.fcol-links a,
.footer-links a,
.footer-col a {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  font-weight: 400;
  text-decoration: none;
  transition: color 150ms;
}
.fcol-links a:hover,
.footer-links a:hover,
.footer-col a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-areas-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-areas-list li {
  font-size: 13px;
  color: rgba(250,246,238,0.5);
  line-height: 1.4;
}

.footer-contact-line {
  font-size: 14px;
  color: rgba(250,246,238,0.6);
  line-height: 1.65;
  display: block;
}
.footer-contact-line a {
  color: rgba(250,246,238,0.65);
  font-weight: 400;
}
.footer-contact-line a:hover { color: var(--primary); }

.fbot,
.footer-bottom {
  max-width: 1280px;
  margin-inline: auto;
  padding: 24px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(250,246,238,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.fcopy,
.footer-copy,
.footer-legal {
  font-size: 12px;
  color: rgba(250,246,238,0.35);
  line-height: 1.5;
}

.fbadges {
  font-size: 12px;
  color: rgba(250,246,238,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(250,246,238,0.4);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ─── MOBILE STICKY CALL ──────────────────────────────────────────────────── */
.mob-call,
.mobile-sticky-call,
.mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #FAF6EE !important;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: filter 200ms, transform 150ms;
}
.mob-call:hover,
.mobile-sticky-call:hover,
.mobile-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none !important;
  color: #FAF6EE !important;
}
.mob-call svg,
.mobile-sticky-call svg,
.mobile-sticky-call a svg,
.mobile-cta svg,
.mobile-cta a svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

.mobile-sticky-call a,
.mobile-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FAF6EE !important;
  text-decoration: none !important;
}

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

/* ─── ANIMATION UTILITIES ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

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

.delay-1 { transition-delay: 100ms !important; }
.delay-2 { transition-delay: 220ms !important; }
.d1 { transition-delay: 80ms !important; }
.d2 { transition-delay: 160ms !important; }

/* ─── 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);
  font-family: 'Fraunces', Georgia, serif;
}
.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
}

/* ─── MISC UTILITY ────────────────────────────────────────────────────────── */
.active { /* used for tabs/filters — let the element's own styles handle visuals */ }

/* Avoid orphaned inline SVG in flex/grid inflating to huge sizes */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ─── RESPONSIVE FINE-TUNE ────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .about-story-grid { grid-template-columns: 360px 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .contact-split-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 36px; }
  .trust-strip-inner { justify-content: flex-start; }
  .timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline-rail { display: none; }
  .timeline-step { padding-top: 0; }
  .timeline-dot { position: static; width: 16px; height: 16px; margin-bottom: 8px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr; }
  .fgrid, .footer-grid { grid-template-columns: 1fr; }
  .service-block-inner { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .sc-feat { flex-direction: column; }
  .sc-feat .sc-iw { width: 100%; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.d1 { grid-column: 1 / -1; }
.d2 { grid-column: 1 / -1; }
.cform { grid-column: 1 / -1; }
.cinfo { grid-column: 1 / -1; }
.fbrand { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.delay-2 { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-btns { grid-column: 1 / -1; }
.footer-brand-col { grid-column: 1 / -1; }
.form-field { 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; }
