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

/* ─── TOKENS ──────────────────────────────────────────────────────────────── */
:root {
  --primary:        #4d562e;
  --primary-dark:   #3a4022;
  --primary-light:  #6b7540;
  --primary-muted:  rgba(77,86,46,0.12);
  --accent:         #3D3D3D;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --ink-mid:        #3a3530;
  --muted:          #6B6660;
  --border:         rgba(77,86,46,0.18);
  --border-light:   rgba(26,24,20,0.08);
  --sand:           #F0EAD6;
  --sand-dark:      #E4DBCA;

  --radius:         8px;
  --radius-lg:      12px;
  --radius-pill:    999px;

  --section-py:     clamp(96px, 12vh, 160px);
  --content-max:    1280px;
  --wide-max:       1400px;

  --header-height:  72px;

  --font-display:   'Fraunces', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;

  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:    cubic-bezier(0.45, 0, 0.55, 1);
}

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

/* ─── GLOBAL 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; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

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

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

@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-photo { min-height: 60vw; order: -1; }
}

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

/* ─── 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-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

p { line-height: 1.7; }

ul { list-style: none; }

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

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

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

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

.bleed { width: 100%; max-width: none; padding-inline: 0; }

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

/* ─── 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 {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-height);
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 150ms;
}
.nav-pages a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-pages a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  text-decoration: none;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--canvas);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: filter 200ms;
}
.nav-cta:hover {
  filter: brightness(0.9);
  color: var(--canvas);
  text-decoration: none;
}
.nav-cta svg { width: 16px; height: 16px; }

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

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

  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(16px, 5vw, 40px);
    gap: 4px;
    border-bottom: 1px solid rgba(26,24,20,0.08);
    z-index: 900;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; }

  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 14px; }
}

/* ─── ANIMATION UTILITIES ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.scale-in {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

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

.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn,
.btn-primary,
.btn-outline,
.btn-white,
.btn-outline-white,
.btn-service,
.btn-phone,
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: filter 200ms, transform 200ms, box-shadow 200ms;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary,
.btn,
.form-submit {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn:hover,
.form-submit:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--canvas);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--canvas);
  text-decoration: none;
}
.btn-white {
  background: var(--canvas);
  color: var(--primary);
  border-color: var(--canvas);
}
.btn-white:hover {
  filter: brightness(0.95);
  text-decoration: none;
  color: var(--primary);
}
.btn-outline-white {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(250,246,238,0.6);
}
.btn-outline-white:hover {
  background: rgba(250,246,238,0.12);
  text-decoration: none;
  color: var(--canvas);
  border-color: var(--canvas);
}
.btn-service {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
  font-size: 14px;
  padding: 12px 22px;
}
.btn-service:hover {
  filter: brightness(0.9);
  text-decoration: none;
  color: var(--canvas);
}
.btn-service svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-phone {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(250,246,238,0.45);
}
.btn-phone:hover {
  background: rgba(250,246,238,0.1);
  text-decoration: none;
  color: var(--canvas);
}

/* ─── EYEBROW LABELS ──────────────────────────────────────────────────────── */
.section-eyebrow,
.page-eyebrow,
.page-header-eyebrow,
.cta-banner-eyebrow,
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.2;
}

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

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

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(15%) brightness(0.72);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(26,24,20,0.15) 0%,
    rgba(26,24,20,0.25) 40%,
    rgba(26,24,20,0.72) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 64px);
  padding-bottom: clamp(56px, 9vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: min(720px, 100%);
  margin-left: clamp(20px, 5vw, 64px);
}

.hero-eyebrow {
  color: rgba(250,246,238,0.75);
  margin-bottom: 20px;
}
.hero-eyebrow .eyebrow-bullet { background: var(--primary-light); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--canvas);
  max-width: 16ch;
  margin-bottom: 24px;
}

/* Hero accent hairline */
.hero-inner::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 450;
  line-height: 1.55;
  color: rgba(250,246,238,0.82);
  max-width: 52ch;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(77,86,46,0.55);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.88);
  background: rgba(26,24,20,0.25);
  backdrop-filter: blur(4px);
  line-height: 1.2;
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(48px, 12vw, 72px); }
  .hero-inner { margin-left: 0; padding-inline: 20px; }
}

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

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

.trust-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mid);
  background: var(--canvas);
  line-height: 1.2;
  white-space: nowrap;
}

/* about.html trust strip (dark on canvas) */
div.trust-strip .trust-chip {
  color: var(--ink-mid);
  background: var(--canvas);
  border-color: var(--border);
}

/* ─── SECTION SHARED ──────────────────────────────────────────────────────── */
.section {
  padding-block: var(--section-py);
}

.section-title,
.services .section-inner h2,
.gallery .section-inner h2,
.service-areas .section-inner h2,
.faq .section-inner h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}

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

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

.services .section-inner {
  padding-block: 0;
}

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

.service-tab {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: background 200ms, color 200ms, border-color 200ms;
  line-height: 1.2;
  white-space: nowrap;
}
.service-tab:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-muted);
}
.service-tab.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

.services-panels {
  position: relative;
}

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 2px 32px rgba(26,24,20,0.06);
}
.service-panel.active { display: grid; }

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

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

.service-panel-title,
.service-panel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

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

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

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

/* ─── PHOTO BREAK ─────────────────────────────────────────────────────────── */
.photo-break {
  position: relative;
  width: 100%;
  height: clamp(280px, 42vh, 560px);
  overflow: hidden;
}

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

.photo-break-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(77,86,46,0.55) 0%, rgba(26,24,20,0.62) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-inline: clamp(28px, 8vw, 120px);
}

.photo-break-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--canvas);
  max-width: 18ch;
  opacity: 0.96;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 32px;
}

.gallery-tile {
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand);
  text-decoration: none;
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.gallery-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(26,24,20,0.14);
  text-decoration: none;
}
.gallery-tile > img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  filter: grayscale(10%);
  transition: filter 300ms, transform 300ms;
}
.gallery-tile:hover > img { filter: grayscale(0%); transform: scale(1.04); }

.gallery-tile-tall { aspect-ratio: 4 / 5; grid-row: span 1; }
.gallery-tile-featured { grid-column: span 1; }

.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

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

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

.gallery-header {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery-heading-group h2 {
  font-size: clamp(32px, 4.5vw, 56px);
}

.gallery-count {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-filters {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  transition: all 200ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: var(--canvas);
  border-color: var(--primary);
}

#galleryGrid.gallery-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.gallery-tile-featured {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-tile-img-wrap {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
}
.gallery-tile-img-wrap > img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 400ms var(--ease-out), filter 300ms;
}
.gallery-tile:hover .gallery-tile-img-wrap > img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-tile-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: var(--canvas);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.gallery-tile-num {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: rgba(250,246,238,0.7);
  z-index: 2;
}

.gallery-tile-body {
  padding: 16px;
  background: var(--surface);
}
.gallery-tile-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.gallery-tile-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  margin-bottom: 4px;
}
.gallery-tile-meta {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.tile-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
}
.tile-meta-item svg { width: 13px; height: 13px; flex-shrink: 0; }

.gallery-tile-img-wrap + .gallery-tile-body {
  /* when tile is a link, the whole tile is aspect-ratio controlled */
}

/* gallery tile as link — no flex double-stack */
a.gallery-tile {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}
a.gallery-tile.gallery-tile-featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
a.gallery-tile > .gallery-tile-img-wrap {
  height: 100%;
}
a.gallery-tile > .gallery-tile-body {
  display: none; /* index page uses simple tiles */
}

@media (max-width: 900px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile-featured { grid-column: span 2; }
}
@media (max-width: 580px) {
  #galleryGrid.gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile-featured, a.gallery-tile.gallery-tile-featured { grid-column: span 1; aspect-ratio: 4/3; }
}

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

.service-areas-intro {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 36px;
}

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

.area-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  background: var(--canvas);
  transition: all 200ms;
}
.area-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-muted);
}

/* contact.html area chips */
.areas-section {
  padding-block: clamp(48px, 7vh, 80px);
  background: var(--sand);
}

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

.areas-label-col { }
.areas-label-col h2 {
  font-size: clamp(24px, 3vw, 36px);
}
.areas-sub {
  font-size: 15px;
  color: var(--muted);
  margin-top: 8px;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-mid);
  background: var(--canvas);
}

@media (max-width: 640px) {
  .areas-inner { grid-template-columns: 1fr; gap: 28px; }
}

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

.faq-list {
  margin-top: 40px;
  max-width: 72ch;
}

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

summary.faq-question {
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  color: var(--ink);
  gap: 16px;
}
summary.faq-question::-webkit-details-marker { display: none; }

.faq-chevron {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 220ms var(--ease-out), color 220ms;
  line-height: 1;
  user-select: none;
}
details.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

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

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

.team-cta-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.team-cta-inner > img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  grid-column: 2;
  grid-row: 1;
}

.team-cta-text {
  grid-column: 1;
  grid-row: 1;
}

.team-cta-text .section-eyebrow { color: rgba(250,246,238,0.55); }
.team-cta-text .section-eyebrow .eyebrow-bullet { background: var(--primary-light); }

.team-cta-title,
.team-cta-text h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--canvas);
  margin-bottom: 20px;
}

.team-cta-divider {
  width: 40px;
  height: 2px;
  background: var(--primary-light);
  margin: 20px 0;
}

.team-cta-text p {
  color: rgba(250,246,238,0.7);
  font-size: 17px;
  margin-bottom: 28px;
}

.team-cta-text a { color: var(--canvas); }

@media (max-width: 900px) {
  .team-cta-inner {
    grid-template-columns: 1fr;
  }
  .team-cta-inner > img { grid-column: 1; order: -1; max-height: 280px; }
  .team-cta-text { grid-column: 1; }
}

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

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.contact-form-col h2,
.contact-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 32px;
}

.contact-intro {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}

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

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

.form-group label,
.form-field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  width: 100%;
  transition: border-color 200ms;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-muted);
}

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

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

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

.form-submit {
  align-self: flex-start;
  margin-top: 8px;
  border: none;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Contact info col */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--canvas);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.contact-info-card h3,
.info-card-headline {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 24px;
}

.contact-info-block {
  margin-bottom: 24px;
}
.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.contact-phone, .contact-email {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}
.contact-info-block a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}
.contact-info-block a:hover { color: var(--primary); text-decoration: underline; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}

.contact-form-side { }
.contact-form-side h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 8px; }

.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--primary-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.info-icon svg { width: 18px; height: 18px; }

.info-body { display: flex; flex-direction: column; gap: 2px; }
.info-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.info-value { font-size: 15px; font-weight: 500; color: var(--ink); }
.info-value-muted { font-size: 14px; color: var(--muted); }
.info-body a { color: var(--ink); text-decoration: none; font-weight: 600; }
.info-body a:hover { color: var(--primary); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink);
  transition: all 200ms;
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}
.social-link svg { width: 18px; height: 18px; }

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

/* ─── PAGE HEADER ─────────────────────────────────────────────────────────── */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vh, 500px);
  max-height: 64vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

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

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

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

.page-header-inner h1 {
  font-size: clamp(36px, 6vw, 80px);
  color: var(--canvas);
  margin-bottom: 8px;
}

.page-header-eyebrow,
.page-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.65);
  margin-bottom: 12px;
  display: block;
}

.page-header-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(250,246,238,0.72);
  margin-top: 8px;
  max-width: 48ch;
}

/* ─── SERVICES PAGE — FEATURE BLOCKS ─────────────────────────────────────── */
.services-intro {
  padding-block: clamp(48px, 7vh, 80px);
  background: var(--surface);
}
.services-intro-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.services-intro-inner h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 16px; }
.services-intro-inner p { font-size: 17px; color: var(--muted); max-width: 60ch; line-height: 1.7; }

.service-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 800;
  background: var(--canvas);
  border-bottom: 1px solid var(--border-light);
}
.service-nav-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 12px;
}
.service-nav-inner::-webkit-scrollbar { display: none; }
.service-nav-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  transition: all 200ms;
  background: transparent;
}
.service-nav-chip:hover {
  color: var(--primary);
  background: var(--primary-muted);
  text-decoration: none;
}

.service-block {
  padding-block: clamp(72px, 10vh, 120px);
  border-bottom: 1px solid var(--border-light);
}
.service-block:nth-child(even) { background: var(--surface); }
.service-block:nth-child(odd) { background: var(--canvas); }

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

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

.service-block-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-block-photo > img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.service-block-photo-accent {
  position: absolute;
  bottom: -8px; right: -8px;
  width: 60%; height: 60%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--primary);
  z-index: -1;
  pointer-events: none;
}

.service-block-body { }
.service-block-body h2 { font-size: clamp(26px, 3.5vw, 42px); margin-bottom: 16px; }
.service-block-body p { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }

.service-features {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features li {
  font-size: 15px;
  color: var(--ink-mid);
  padding-left: 20px;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

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

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  padding-block: clamp(80px, 10vh, 128px);
  background: var(--primary);
  overflow: hidden;
  position: relative;
}

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

.cta-banner-text h2,
.cta-banner-text > h2 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--canvas);
  margin-bottom: 16px;
}
.cta-banner-text h2 em { font-style: italic; }
.cta-banner-eyebrow { color: rgba(250,246,238,0.6); margin-bottom: 12px; }
.cta-banner-sub { font-size: 16px; color: rgba(250,246,238,0.75); line-height: 1.65; margin-bottom: 28px; }
.cta-banner-actions, .cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-banner-phone {
  font-size: 17px;
  font-weight: 600;
  color: var(--canvas);
  text-decoration: none;
}
.cta-banner-phone:hover { text-decoration: underline; color: var(--canvas); }

.cta-banner-form {
  background: var(--canvas);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.cta-banner-form-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta-banner-form .form-field { margin-bottom: 14px; }
.cta-banner-form button,
.cta-banner-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

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

/* ─── CREDENTIALS ─────────────────────────────────────────────────────────── */
.credentials-section {
  padding-block: var(--section-py);
  background: var(--sand);
}

.credentials-header {
  margin-bottom: 40px;
}
.credentials-header h2 { font-size: clamp(28px, 3.5vw, 44px); }

.credentials-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.credential-badge {
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 200ms;
}
.credential-badge:hover {
  box-shadow: 0 8px 24px rgba(26,24,20,0.08);
}

.credential-badge-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.credential-badge-value {
  font-family: 'Courier New', monospace;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.04em;
}

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

.founder-story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.founder-portrait-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.founder-portrait-wrap > img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(8%);
}
.founder-portrait-caption {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.founder-text { }
.founder-text h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.founder-headline { font-size: clamp(28px, 3.5vw, 44px); }
.founder-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder-pull-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--primary);
  background: var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .founder-story-grid { grid-template-columns: 1fr; }
  .founder-portrait-wrap > img { max-height: 360px; }
}

/* ─── VALUES CARDS ────────────────────────────────────────────────────────── */
.values-section {
  padding-block: var(--section-py);
  background: var(--surface);
}
.values-header { margin-bottom: 40px; }
.values-header h2 { font-size: clamp(28px, 3.5vw, 44px); }

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

.value-card {
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out);
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}
.value-card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.22;
}
.value-card h3 { font-size: 17px; margin-bottom: 8px; }
.value-card p { 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: 580px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── JOURNEY TIMELINE ────────────────────────────────────────────────────── */
.journey-section {
  padding-block: var(--section-py);
  background: var(--canvas);
}
.journey-header { margin-bottom: 48px; }
.journey-header h2 { font-size: clamp(28px, 3.5vw, 44px); }
.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.journey-track::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  height: 1px;
  background: var(--border-light);
  z-index: 0;
}
.journey-step {
  padding: 0 16px;
  padding-top: 48px;
  position: relative;
}
.journey-dot {
  position: absolute;
  top: 8px; left: 16px;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--canvas);
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.journey-dot-fill {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.journey-year {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.journey-step h3 { font-size: 16px; margin-bottom: 8px; }
.journey-step p { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .journey-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .journey-track::before { display: none; }
}
@media (max-width: 580px) {
  .journey-track { grid-template-columns: 1fr; }
}

/* ─── CREW STRIP ──────────────────────────────────────────────────────────── */
.crew-section {
  padding-block: var(--section-py);
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.crew-section .section-inner {
  position: relative; z-index: 2;
}
.crew-section .section-inner > img,
.crew-strip-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.crew-header {
  position: relative; z-index: 2;
}
.crew-header h2 { font-size: clamp(28px, 3.5vw, 48px); color: var(--canvas); }
.crew-header p { font-size: 16px; color: rgba(250,246,238,0.7); max-width: 52ch; line-height: 1.7; }
.crew-header .section-eyebrow { color: rgba(250,246,238,0.5); }
.crew-header .section-eyebrow .eyebrow-bullet { background: var(--primary-light); }

/* ─── ABOUT SPLIT ─────────────────────────────────────────────────────────── */
.about-split-section {
  padding-block: var(--section-py);
  background: var(--surface);
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}
.about-split-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-split-photo > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(8%);
}
.about-split-text h2 { font-size: clamp(24px, 3vw, 38px); margin-bottom: 16px; }
.about-split-text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.about-split-hairline {
  border: none;
  border-top: 1px solid var(--primary);
  margin: 24px 0;
  width: 48px;
}
.about-split-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about-split-chips .trust-chip {
  color: var(--ink-mid);
  background: var(--canvas);
  border-color: var(--border);
}

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

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

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

.footer-brand { }
.footer-tagline {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250,246,238,0.55);
  margin-top: 16px;
  max-width: 30ch;
}
.footer-sub {
  font-size: 13px;
  color: rgba(250,246,238,0.4);
  margin-top: 8px;
}

.footer-brand-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-brand-contact a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(250,246,238,0.72);
  text-decoration: none;
}
.footer-brand-contact a:hover { color: var(--canvas); text-decoration: underline; }

.footer-heading,
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.4);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col ul li a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; flex-direction: column; gap: 2px; }
.footer-contact-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250,246,238,0.35);
}
.footer-contact-link {
  font-size: 14px;
  color: rgba(250,246,238,0.65);
  text-decoration: none;
}
.footer-contact-link:hover { color: var(--canvas); }

.footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer-area-chip {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(250,246,238,0.15);
  border-radius: var(--radius-pill);
  font-size: 11px;
  color: rgba(250,246,238,0.5);
}

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social .social-link,
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,246,238,0.55);
  text-decoration: none;
  transition: all 200ms;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--canvas);
  text-decoration: none;
}

.footer-certs, .footer-bottom-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-cert, .footer-cert-badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid rgba(250,246,238,0.18);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(250,246,238,0.08);
  padding: 20px clamp(20px, 5vw, 64px);
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(250,246,238,0.35);
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 580px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── MOBILE CTA PILL ─────────────────────────────────────────────────────── */
.mobile-cta-pill,
.mobile-call-pill,
.mobile-cta,
.mobile-call {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 200ms, transform 200ms;
  white-space: nowrap;
}
.mobile-cta-pill svg,
.mobile-call-pill svg,
.mobile-cta svg,
.mobile-call svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-cta-pill:hover,
.mobile-call-pill:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--canvas);
}

/* mobile only */
.mobile-cta-pill a,
.mobile-call-pill a,
.mobile-cta a,
.mobile-call a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--canvas);
  text-decoration: none;
}

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

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

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

/* ─── PROCESS ─────────────────────────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
}

/* ─── REVIEW CARDS ────────────────────────────────────────────────────────── */
.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--sand);
}
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: 0.75; }

/* ─── MARQUEE ─────────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-item {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── FAQ DETAILS (system) ────────────────────────────────────────────────── */
details.faq {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
details.faq > summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  font-weight: 300;
  transition: transform 200ms;
}
details.faq[open] > summary::after {
  transform: rotate(45deg);
  color: var(--primary);
}
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ─── READABLE TABLE ──────────────────────────────────────────────────────── */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: var(--canvas);
}

/* ─── MISC PAGE-SPECIFIC ──────────────────────────────────────────────────── */
address { font-style: normal; }
address span { display: block; font-size: 14px; color: rgba(250,246,238,0.6); line-height: 1.8; }
address a { color: rgba(250,246,238,0.65); text-decoration: none; }
address a:hover { color: var(--canvas); }

/* Scroll progress wired via JS */


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form-col { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.cta-banner-btns { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.areas-label-col { grid-column: 1 / -1; }
.areas-chips { grid-column: 1 / -1; }
/* validator patch: never hide a wrapper that contains a heading */
.gallery-tile-body { display: block !important; }
/* 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; }
