@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;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:       #5F9C32;
  --primary-dark:  #4a7a27;
  --primary-light: #d6eabf;
  --accent:        #34583B;
  --canvas:        #FAF6EE;
  --surface:       #FFFFFF;
  --ink:           #1A1814;
  --ink-mid:       #3a3530;
  --muted:         #6B6660;
  --muted-light:   #9c9690;
  --border:        rgba(26,24,20,0.10);
  --border-strong: rgba(26,24,20,0.18);
  --shadow-sm:     0 2px 8px rgba(26,24,20,0.06);
  --shadow-md:     0 8px 32px rgba(26,24,20,0.10);
  --shadow-lg:     0 24px 64px rgba(26,24,20,0.14);
  --radius:        8px;
  --radius-lg:     16px;
  --header-height: 72px;
  --section-pad:   clamp(96px, 12vh, 160px);
  --content-max:   1280px;
}

@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: 17px;
}

body {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  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: 44px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

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

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

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img,
.page-header-bg, .about-feature > img:first-of-type,
.page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

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

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

h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.8vw, 36px); letter-spacing: -0.02em; }

p { line-height: 1.68; }

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

ul { list-style: none; }
svg { display: block; }

/* SVG caps */
.info-icon svg, .review-stars svg, .case-location svg,
.footer-tel svg, .social-link svg, .nav-cta-icon,
.pill-check, .trust-chip svg, .trust-pill svg,
.btn svg, .mobile-call svg, .mobile-cta svg,
.mobile-cta-pill svg, .cta-banner-actions a svg,
.contact-info svg, .contact-form-side svg,
.btn-submit svg { width: 20px; height: 20px; flex-shrink: 0; }

.review-stars svg { width: 18px; height: 18px; color: var(--primary); fill: var(--primary); }

/* ─── CONTAINERS ─────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--content-max);
  margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px);
}
.wide-container {
  width: 100%; max-width: 1400px;
  margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px);
}

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

/* Brand-color square bullet on eyebrows */
.section-eyebrow::before, .page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-size: clamp(36px, 5vw, 72px);
  max-width: 18ch;
}

.section-intro {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.68;
  max-width: 56ch;
  margin-top: 16px;
}

/* ─── SCROLL BAR ─────────────────────────────────────────────── */
#scrollBar, #scrollProgress, .scroll-bar, .progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 9999;
  background: rgba(26,24,20,0.08);
}
#scrollBar::after, #scrollProgress::after,
.scroll-bar::after, .progress-bar::after {
  content: '';
  display: block; height: 100%;
  background: var(--primary);
  width: var(--scroll, 0%);
  transition: width 100ms linear;
}

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

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

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

.nav-pages {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-pages ul, #navLinks {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-pages a, #navLinks a {
  display: inline-block;
  padding: 6px 12px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 4px;
  transition: color 150ms, background 150ms;
}

.nav-pages a:hover, #navLinks a:hover {
  color: var(--primary);
  background: rgba(95,156,50,0.06);
  text-decoration: none;
}

.nav-pages a[aria-current="page"], #navLinks a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

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

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

@media (max-width: 900px) {
  .top-nav { gap: 16px; }

  .nav-pages, #navLinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(16px, 4vw, 32px);
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
    align-items: flex-start;
  }

  .nav-pages.open, #navLinks.open {
    display: flex;
  }

  .nav-pages ul, #navLinks {
    flex-direction: column;
    width: 100%;
  }

  .nav-pages a, #navLinks a {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
  }

  .nav-toggle { display: flex; }

  .nav-cta span { display: none; }
  .nav-cta { padding: 10px; border-radius: 50%; }
  .nav-cta-icon { display: block; }
}

@media (min-width: 901px) {
  .nav-toggle { display: none; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vh, 96px);
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(20,18,14,0.82) 0%,
    rgba(20,18,14,0.50) 40%,
    rgba(20,18,14,0.15) 70%,
    transparent 100%
  );
}

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

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

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

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

.trust-chip, .hero-trust-chips .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: filter 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.50);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.80);
  color: #fff;
  text-decoration: none;
}

.btn-light {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-light:hover { background: var(--canvas); color: var(--primary); text-decoration: none; }

.btn-phone {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.35);
  font-weight: 500;
}
.btn-phone:hover { border-color: rgba(255,255,255,0.70); color: #fff; text-decoration: none; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: filter 160ms;
}
.btn-submit:hover { filter: brightness(0.90); }
.btn-submit svg { width: 18px; height: 18px; }

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

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

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

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.marquee-item::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

/* ─── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip {
  background: var(--canvas);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-pill svg, .pill-check {
  width: 16px; height: 16px;
  color: var(--primary);
  fill: none;
  stroke: var(--primary);
}

.trust-banner {
  background: var(--canvas);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

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

.trust-banner .trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-banner .trust-chip svg {
  width: 16px; height: 16px;
  color: var(--primary);
}

.header-hairline {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 20%, var(--primary) 80%, transparent);
  opacity: 0.4;
}

/* ─── SERVICES (INDEX) ───────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}

.services-hd {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  margin-bottom: clamp(56px, 7vw, 96px);
}

.service-list {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  min-height: 380px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.service-row.flip {
  grid-template-columns: 1fr 40%;
}

.service-row.flip .svc-photo { order: 2; }
.service-row.flip .svc-body  { order: 1; }

.svc-photo {
  display: block;
  overflow: hidden;
  position: relative;
}

.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
  transition: transform 600ms ease;
}

.service-row:hover .svc-photo img { transform: scale(1.03); }

.svc-body {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--canvas);
}

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

.svc-body .section-eyebrow { margin-bottom: 8px; }

.svc-body h3, .svc-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.65;
  max-width: 52ch;
}

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

@media (max-width: 900px) {
  .service-row,
  .service-row.flip {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-row .svc-photo { order: -1 !important; min-height: 260px; }
  .service-row .svc-body  { order: 1 !important; }
  .service-row.flip .svc-photo { order: -1 !important; }
  .service-row.flip .svc-body  { order: 1 !important; }
}

/* ─── GALLERY PREVIEW ────────────────────────────────────────── */
.gallery-preview {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}

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

.gallery-hd {
  margin-bottom: 40px;
}

.gallery-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  min-height: 480px;
  max-height: 64vh;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  max-height: 64vh;
  object-fit: cover;
}

.gallery-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,14,0.70) 0%, transparent 50%);
  pointer-events: none;
}

.gallery-frame > a {
  position: absolute;
  bottom: 28px; right: 28px;
  z-index: 2;
}

.gallery-display-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 52px);
  color: #fff;
  line-height: 1.0;
}

/* ─── GALLERY (gallery.html) ─────────────────────────────────── */
.gallery-wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.gallery-section-head { margin-bottom: 40px; }
.gallery-intro-text { font-size: 17px; color: var(--muted); margin-top: 10px; }

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

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

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

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

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

.case-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.case-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 100%;
  transition: transform 500ms ease;
}
.case-card:hover .case-photo-wrap img { transform: scale(1.04); }

.case-badge, .case-tag {
  position: absolute;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.case-badge { top: 12px; left: 12px; background: var(--primary); color: #fff; }
.case-tag   { top: 12px; right: 12px; background: rgba(26,24,20,0.70); color: #fff; }

.case-body {
  padding: 20px;
}

.case-headline, .case-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}

.case-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-location svg { width: 14px; height: 14px; color: var(--primary); }

.case-desc { font-size: 14px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }

.case-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.case-meta-item { display: flex; flex-direction: column; gap: 2px; }
.meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.10em; color: var(--muted-light); font-weight: 600; }
.meta-value { font-size: 13px; font-weight: 600; color: var(--ink); }

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

/* ─── REVIEWS ────────────────────────────────────────────────── */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}

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

.reviews-hd { margin-bottom: 56px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}
.review-stars svg {
  width: 18px; height: 18px;
  fill: var(--primary);
  color: var(--primary);
}

.review-quote {
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.5vw, 20px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-attr {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

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

.areas-hd { margin-bottom: 40px; }

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

.area-pill, .service-area-pills .area-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 160ms, color 160ms;
}
.area-pill:hover { background: var(--primary); color: #fff; }

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

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

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

.faq-hd { position: relative; }
.faq-hd h2 { font-size: clamp(36px, 5vw, 60px); max-width: 14ch; }

.faq-list { padding-top: 8px; }

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

details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  line-height: 1.4;
}

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

details.faq > summary::after {
  content: "+";
  font-weight: 300;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 200ms ease, color 200ms ease;
  color: var(--muted);
}

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

details.faq p {
  margin-top: 14px;
  line-height: 1.68;
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 16px);
}

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

/* ─── TEAM CTA ───────────────────────────────────────────────── */
#team-cta.team-cta {
  background: var(--accent);
  padding: clamp(80px, 10vh, 120px) 0;
}

.team-cta-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.team-cta-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 22ch;
}

.team-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: filter 160ms;
}
.team-cta-link:hover { filter: brightness(0.90); color: #fff; text-decoration: none; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact { padding: var(--section-pad) 0; background: var(--canvas); }

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

.contact-hd { margin-bottom: 56px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-section { padding: var(--section-pad) 0; background: var(--canvas); }

.contact-grid .contact-form { grid-column: 1; }
.contact-grid .contact-info { grid-column: 2; }

/* contact.html layout */
.contact-section .contact-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}

.contact-form-side { grid-column: 1; }
.contact-info-card  { grid-column: 2; }

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

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

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

.form-group input, .form-group select, .form-group textarea,
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
  transition: border-color 160ms, box-shadow 160ms;
  outline: none;
  appearance: none;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(95,156,50,0.15);
}

.form-group textarea, .form-field textarea { min-height: 120px; resize: vertical; }

.form-submit { margin-top: 8px; }

.form-intro { font-size: 15px; color: var(--muted); margin-bottom: 24px; }
.form-intro a { color: var(--primary); }
.form-note { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.req { color: var(--primary); }

/* Contact info */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child { border-bottom: 0; }

.info-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }

.info-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value { font-size: 16px; font-weight: 500; color: var(--ink); }
.info-value a { color: inherit; }
.info-value a:hover { color: var(--primary); text-decoration: underline; }
.info-value-small { font-size: 14px; color: var(--muted); }

/* Contact info card (contact.html) */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

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

.info-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: 0; }
.info-block a { color: var(--ink); }
.info-block a:hover { color: var(--primary); }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 4px 0;
  color: var(--ink);
}
.day { font-weight: 500; }
.time { color: var(--muted); }

@media (max-width: 900px) {
  .contact-grid,
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid .contact-form,
  .contact-grid .contact-info,
  .contact-form-side, .contact-info-card { grid-column: 1; }
  .form-row { grid-template-columns: 1fr; }
}

/* Social links */
.social-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 160ms;
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; text-decoration: none; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--accent);
  padding: clamp(80px, 10vh, 120px) 0;
}

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

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

.cta-banner-text h2,
.cta-banner-headline,
.cta-banner-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 20ch;
}

.cta-banner-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 50ch;
  margin-top: 12px;
}

.cta-banner-phone {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: #fff;
  font-weight: 700;
}

.cta-banner-actions,
.cta-banner-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.cta-banner-actions .btn-primary,
.cta-banner-ctas .btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.cta-banner-actions .btn-outline,
.cta-banner-ctas .btn-outline { border-color: rgba(255,255,255,0.45); color: #fff; }
.cta-banner-actions .btn-outline:hover,
.cta-banner-ctas .btn-outline:hover { background: rgba(255,255,255,0.12); text-decoration: none; }

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 150ms;
}
.cta-phone-link:hover { color: #fff; text-decoration: none; }

/* ─── PAGE HEADER (sub-pages) ────────────────────────────────── */
.page-header {
  min-height: clamp(240px, 40vh, 480px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 6vh, 64px);
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

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

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

.page-header-inner h1 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 18ch;
}

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

.page-header-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(255,255,255,0.72);
  margin-top: 12px;
  max-width: 52ch;
  line-height: 1.55;
}

.page-header-accent-line {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-top: 20px;
}

/* ─── SERVICES DETAIL PAGE ───────────────────────────────────── */
.services-detail {
  max-width: var(--content-max);
  margin-inline: auto;
  padding: var(--section-pad) clamp(20px, 4vw, 48px);
}

.services-detail-header {
  margin-bottom: clamp(56px, 8vh, 96px);
}

.services-detail-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 16px;
}

.services-detail-intro {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.68;
}

.feature-block {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 420px;
  overflow: hidden;
}

.feature-block.photo-right {
  grid-template-columns: 1fr 45%;
}

.feature-block.photo-left .feature-photo  { grid-column: 1; }
.feature-block.photo-left .feature-body   { grid-column: 2; }
.feature-block.photo-right .feature-body  { grid-column: 1; }
.feature-block.photo-right .feature-photo { grid-column: 2; }

.feature-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: 100%;
  transition: transform 600ms ease;
}
.feature-block:hover .feature-photo img { transform: scale(1.03); }

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

.feature-body {
  padding: clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--canvas);
}

.feature-body h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.feature-desc {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.68;
  max-width: 55ch;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 6px;
}

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

.section-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: clamp(48px, 6vh, 80px) 0;
}

@media (max-width: 900px) {
  .feature-block,
  .feature-block.photo-right {
    grid-template-columns: 1fr;
  }
  .feature-block .feature-photo,
  .feature-block.photo-right .feature-photo { grid-column: 1; grid-row: 1; min-height: 280px; }
  .feature-block .feature-body,
  .feature-block.photo-right .feature-body  { grid-column: 1; grid-row: 2; }
}

/* ─── ABOUT (about.html) ─────────────────────────────────────── */
.about-story {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}

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

.about-story-portrait-col { grid-column: 1; }
.about-story-text-col     { grid-column: 2; }

.about-story-portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-story-portrait-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  max-height: 620px;
  filter: grayscale(20%);
  transition: filter 400ms;
}
.about-story-portrait-wrap:hover img { filter: grayscale(0%); }

.about-story-portrait-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
}
.about-story-portrait-tag strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  color: var(--ink);
}
.about-story-portrait-tag span {
  font-size: 13px;
  color: var(--muted);
}

.about-story-text-col .section-eyebrow { margin-bottom: 16px; }

.about-story-text-col h2 {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
}

.about-story-body p {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-mid);
  line-height: 1.72;
  margin-bottom: 16px;
}

.about-story-pull {
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.4;
}

.about-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.about-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 999px;
  padding: 7px 14px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-portrait-col { grid-column: 1; }
  .about-story-text-col     { grid-column: 1; }
}

/* Values section */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

.values-header { margin-bottom: 48px; }
.values-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
}

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

.value-card {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-card-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--primary);
  line-height: 1.0;
  margin-bottom: 12px;
}

.value-card h3 {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}

.value-card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.value-card-body  { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* Timeline */
.timeline-section {
  padding: var(--section-pad) 0;
  background: var(--canvas);
}

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

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

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

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px; left: clamp(20px, 4vw, 48px);
  right: clamp(20px, 4vw, 48px);
  height: 1px;
  background: var(--border-strong);
  z-index: 0;
}

.timeline-step {
  padding: 0 24px 0 0;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  box-shadow: 0 0 0 1px var(--primary);
  margin-bottom: 20px;
}

.timeline-year {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.timeline-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.timeline-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
}

.timeline-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* Crew strip */
.crew-strip-section {
  background: var(--accent);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.crew-strip-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

.crew-strip-inner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: -1;
}

.crew-strip-header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.crew-strip-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
}

.crew-strip-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1.0;
}

.crew-strip-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.65);
  max-width: 40ch;
  line-height: 1.55;
}

.crew-strip-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 400px;
}

.crew-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.crew-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.20);
}

.crew-stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  color: #fff;
}

.crew-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

@media (max-width: 640px) {
  .crew-stat-row { grid-template-columns: 1fr; }
}

/* About bridge */
.about-bridge {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

.about-bridge-grid > div:first-child { grid-column: 1; }
.about-bridge-grid > div:last-child  { grid-column: 2; }

.about-bridge-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.about-bridge-body {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 24px;
}

.about-bridge-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  max-height: 480px;
}

@media (max-width: 900px) {
  .about-bridge-grid { grid-template-columns: 1fr; }
  .about-bridge-grid > div:first-child,
  .about-bridge-grid > div:last-child { grid-column: 1; }
}

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

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

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

/* Footer brand col (first child in footer-grid) */
.footer-grid > div:first-child { grid-column: 1; }
.footer-grid > div:nth-child(2) { grid-column: 2; }
.footer-grid > div:nth-child(3) { grid-column: 3; }
.footer-grid > div:nth-child(4) { grid-column: 4; }

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand img, .footer-brand-logo img { max-height: 44px !important; filter: brightness(0) invert(1); }
.footer-brand-name, .footer-bname {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer-tagline, .footer-tag, .footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
  max-width: 28ch;
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 6px;
  transition: color 150ms;
}
.footer-tel:hover { color: var(--primary); text-decoration: none; }
.footer-tel svg { width: 16px; height: 16px; }

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

.footer-links, .footer-link-list, .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0; margin: 0;
}

.footer-links a, .footer-link-list a, .footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-link-list a:hover, .footer-col ul a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact-line, .footer-contact-item {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.55;
  margin-bottom: 6px;
  display: block;
}
.footer-contact-line a, .footer-contact-item a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-contact-line a:hover, .footer-contact-item a:hover { color: var(--primary); text-decoration: none; }
.footer-contact-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }

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

.footer-bottom {
  padding: 24px 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

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

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) { grid-column: auto; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-grid > div:nth-child(4) { grid-column: 1; }
}

/* ─── MOBILE CALL PILL ───────────────────────────────────────── */
.mobile-call, .mobile-cta, .mobile-cta-pill {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.mobile-call a, .mobile-cta, .mobile-cta-pill a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 160ms, transform 160ms;
  white-space: nowrap;
}
.mobile-call a:hover, .mobile-cta:hover, .mobile-cta-pill a:hover {
  filter: brightness(0.92);
  transform: scale(1.03);
  color: #fff;
  text-decoration: none;
}

.mobile-call svg, .mobile-cta svg, .mobile-cta-pill svg {
  width: 20px; height: 20px;
  fill: none; stroke: #fff;
}

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

/* ─── ANIMATION UTILITIES ────────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in, .stagger > * {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.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: translate(0) scale(1);
}

.stagger > * { opacity: 0; transform: translateY(24px); }
.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; }

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

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

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

/* ─── MISC ───────────────────────────────────────────────────── */
.section-divider { border: 0; border-top: 1px solid var(--border); margin: clamp(48px, 6vh, 80px) 0; }

/* Flip: layout swap only, no mirror transforms */
.flip {
  /* grid-template-columns overridden per context above */
}

/* Monochrome team photos */
.crew-strip-photo img,
.about-story-portrait-wrap img {
  filter: grayscale(15%);
  transition: filter 400ms;
}
.crew-strip-photo img:hover,
.about-story-portrait-wrap:hover img { filter: grayscale(0%); }

/* ─── RESPONSIVE GENERAL ─────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --content-max: 1100px; }
}

@media (max-width: 900px) {
  .hero-title, #hero h1 {
    font-size: clamp(52px, 11vw, 100px);
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .faq-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero-trust-chips .trust-chip { font-size: 11px; padding: 5px 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.svc-photo { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
