@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter+Tight:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --primary:        #6DBE2E;
  --primary-dim:    #559924;
  --primary-glow:   rgba(109,190,46,0.18);
  --accent:         #2C2C2C;
  --canvas:         #0C0C0F;
  --surface:        #1A1814;
  --surface-2:      #141210;
  --ink:            #F4F1EA;
  --ink-mid:        #C8C4BC;
  --muted:          #8E8A82;
  --border:         rgba(244,241,234,0.1);
  --border-brand:   rgba(109,190,46,0.35);
  --header-height:  72px;

  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'Inter Tight', system-ui, sans-serif;
  --font-mono:      'IBM Plex Mono', 'Courier New', monospace;

  --radius:         4px;
  --radius-lg:      8px;
  --section-py:     clamp(112px, 14vh, 180px);
  --container:      1200px;
}

@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);
  background: var(--canvas);
  color: var(--ink);
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.68;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Universal image cap */
img { max-width: 100%; height: auto; display: block; }

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

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

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, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 6vw, 88px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* The unique move: display words inside body copy */
em, .accent-word {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.25em;
  color: var(--primary);
  line-height: 1;
}

/* Mono label style */
.label,
.section-eyebrow,
.page-header-eyebrow,
.services-intro .section-eyebrow,
.about-eyebrow,
.cred-card-eyebrow,
.faq-eyebrow,
.gallery-section-eyebrow,
.service-panel-eyebrow,
.service-block-eyebrow,
.cta-banner-eyebrow,
.info-card-label,
.info-block-label,
.footer-col-label,
.footer-col-title {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

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

ul { list-style: none; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

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

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

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

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

.top-nav {
  height: var(--header-height);
  max-width: 1320px;
  margin: auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

#navLinks.nav-pages {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav-pages ul {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  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);
}

.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;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

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

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

  #navLinks.nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    z-index: 800;
  }
  #navLinks.nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; width: 100%; }

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

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.1vw, 16px);
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease-out, filter 200ms ease-out, box-shadow 200ms ease-out;
  white-space: nowrap;
  border: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary);
  color: var(--canvas);
}
.btn-primary:hover { filter: brightness(0.9); color: var(--canvas); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* ─── ANIMATION UTILITIES ────────────────────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up    { transform: translateY(32px); }
.fade-left  { transform: translateX(-32px); }
.fade-right { transform: translateX(32px); }
.scale-in   { transform: scale(0.94); }

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

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.stagger > *.visible {
  opacity: 1;
  transform: none;
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(109,190,46,0.18) 0%, transparent 55%),
    linear-gradient(160deg, rgba(12,12,15,0.85) 0%, rgba(12,12,15,0.55) 50%, rgba(12,12,15,0.92) 100%);
}

.hero-ribbon {
  position: absolute;
  top: 32px; right: 32px;
  z-index: 3;
  background: var(--primary-glow);
  border: 1px solid var(--border-brand);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 8vh, 96px) clamp(24px, 6vw, 80px);
  padding-top: 0;
  max-width: 820px;
  margin-top: auto;
  padding-bottom: clamp(64px, 9vh, 112px);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: clamp(72px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--primary);
  font-size: 1em;
}

.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mid);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero-inner { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: clamp(52px, 13vw, 80px); }
  .hero-ribbon { top: 16px; right: 16px; }
}

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

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

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}
.marquee-item span {
  color: var(--primary);
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

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

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

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.trust-badge-icon {
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
}

.trust-sep {
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
  opacity: 0.6;
}

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

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

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-top: 8px;
  margin-bottom: 16px;
}
.section-title em { font-size: 1em; color: var(--primary); }

.section-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  max-width: 56ch;
  line-height: 1.6;
}

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

.service-tab {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms, border-color 180ms, background 180ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); border-color: var(--ink-mid); }
.service-tab.active {
  color: var(--canvas);
  background: var(--primary);
  border-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 45% 1fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-panel.active { display: grid; }

.service-panel > img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) brightness(0.9);
}

.service-panel-body {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border-left: 1px solid var(--border-brand);
}

.service-panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-panel-body h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

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

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

@media (max-width: 900px) {
  .service-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .service-panel > img {
    height: 240px;
    max-height: 240px;
  }
  .service-panel-body { border-left: none; border-top: 1px solid var(--border-brand); }
}

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

.gallery-inner {
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.gallery-heading-block { flex: 1; }
.gallery-section-title { font-size: clamp(36px, 5vw, 64px); margin-top: 8px; }
.gallery-section-title em { color: var(--primary); font-size: 1em; }
.gallery-count-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 180ms, border-color 180ms, background 180ms;
}
.filter-pill:hover, .filter-pill.active {
  color: var(--primary);
  border-color: var(--primary);
}

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

.gallery-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
}
.gallery-card.card-wide { grid-column: span 2; }

.gallery-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gallery-card-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 300ms, transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-img-wrap img { filter: saturate(1); transform: scale(1.03); }

.gallery-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas);
  padding: 4px 8px;
  border-radius: 2px;
}
.gallery-card-num {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(244,241,234,0.5);
  letter-spacing: 0.1em;
}

.gallery-card-body {
  padding: 20px 20px 22px;
}
.gallery-card-body h3 {
  font-size: clamp(16px, 1.5vw, 20px);
  font-family: var(--font-display);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.gallery-card-category {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}
.gallery-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.gallery-card-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--muted);
}
.gallery-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12,12,15,0.88) 100%);
  opacity: 0;
  transition: opacity 300ms;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--ink); }
.gallery-overlay-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  display: block;
}

/* Gallery preview (index.html) */
.gallery-preview {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 560px;
}
.gallery-preview > img {
  width: 100%;
  height: 560px;
  max-height: 560px;
  object-fit: cover;
  filter: saturate(0.8);
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.card-wide { grid-column: span 1; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-header-row { flex-direction: column; align-items: flex-start; }
}

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews {
  padding: var(--section-py) 0;
  background: var(--surface);
}
.reviews .container > .fade-up { margin-bottom: 48px; }

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

.review-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--canvas);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars svg { color: var(--primary); width: 16px; height: 16px; }
.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
}
.review-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-no-reviews {
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
}

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
.service-areas {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.area-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  transition: color 150ms, border-color 150ms;
}
.area-pill:hover { color: var(--primary); border-color: var(--primary); }

.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.area-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: 999px;
}

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

.credentials-inner {
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.credentials-heading, .creds-heading {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px; margin-bottom: 48px;
}
.credentials-heading em, .creds-heading em { color: var(--primary); font-size: 1em; }

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

.cred-card, .credential-card {
  padding: 32px 28px 28px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.cred-card:hover, .credential-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.4);
}

.cred-card-eyebrow, .credential-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}

.cred-card-title, .credential-card-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.1;
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.cred-card-sub, .credential-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

/* ─── TEAM CTA ───────────────────────────────────────────────────────────── */
.team-cta {
  padding: clamp(80px, 10vh, 140px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
}

.team-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.team-cta-text em { color: var(--primary); font-size: 1em; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq, .faq-section {
  padding: var(--section-py) 0;
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.faq-heading-col { margin-bottom: 48px; }

.faq-heading {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px;
}
.faq-heading em { color: var(--primary); font-size: 1em; }

.faq-list {
  max-width: 760px;
}

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

details > summary, details.faq-item > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink);
  transition: color 150ms;
  min-height: 60px;
}
details > summary::-webkit-details-marker { display: none; }
details > summary:hover { color: var(--primary); }

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

.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
}
.faq-answer a { color: var(--primary); }
.faq-answer a:hover { text-decoration: underline; }

/* Chevron SVG cap */
svg.faq-chevron { width: 20px; height: 20px; }

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-top: 48px;
}

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

.contact-form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.contact-form-title {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.contact-form-title em { color: var(--primary); font-size: 1em; }

.contact-form-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

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

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

.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label, .form-field label, .contact-form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select,
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 150ms;
  outline: none;
  width: 100%;
}
.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);
}
.form-group input::placeholder,
.form-field input::placeholder,
textarea::placeholder { color: var(--muted); }

textarea { min-height: 130px; resize: vertical; }
select { appearance: none; cursor: pointer; }
select option { background: var(--surface); color: var(--ink); }

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--canvas);
  border: none;
  padding: 18px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: filter 200ms, transform 200ms;
  align-self: flex-start;
}
.form-submit:hover { filter: brightness(0.9); transform: translateY(-1px); }
.form-submit svg { width: 18px; height: 18px; }

.contact-info, .contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 48px);
}

.contact-info-block, .info-block {
  padding: 20px 0;
}
.contact-info-block:first-child, .info-block:first-child { padding-top: 0; }
.contact-info-block:last-child, .info-block:last-child { border-bottom: none; }

.contact-info-block h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-phone, .cta-phone-big {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.contact-phone:hover, .cta-phone-big:hover { color: var(--primary); text-decoration: none; }

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  transition: color 150ms, border-color 150ms;
}
.social-link:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

.info-divider, hr.info-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

.cert-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}
.cert-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.cert-text {
  font-size: 13px;
  color: var(--muted);
}

.info-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 24px;
}

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

/* ─── CTA BANNER ─────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vh, 160px) 0;
  background: var(--surface);
}

.cta-banner > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(0.3) saturate(0.6);
}

.cta-banner-overlay, .cta-banner-bg {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.75) 100%);
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.cta-banner-text {
  max-width: 700px;
}

.cta-banner-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}
.cta-banner-title em, .cta-banner-title .accent-word { color: var(--primary); font-size: 1em; }

.cta-banner-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 50ch;
}

.cta-banner-ctas, .cta-banner-actions, .cta-pair {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-banner-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ink);
}

/* ─── PAGE HEADER ────────────────────────────────────────────────────────── */
.page-header {
  min-height: 52vh;
  max-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface);
}

.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(160deg, rgba(12,12,15,0.8) 0%, rgba(12,12,15,0.6) 50%, rgba(12,12,15,0.9) 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: auto;
  padding: clamp(48px, 7vh, 80px) clamp(20px, 5vw, 48px);
  width: 100%;
}

.page-header-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}

.page-header-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 18px;
}
.page-header-title em, .page-header-title .accent-word { color: var(--primary); font-size: 1em; }

.page-header-sub {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mid);
  max-width: 52ch;
  line-height: 1.6;
}

/* ─── SERVICES DETAIL (services.html) ───────────────────────────────────── */
.services-intro {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 8vh, 112px) clamp(20px, 5vw, 48px) 0;
}

.services-intro-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-top: 8px;
  margin-bottom: 24px;
}
.services-intro-heading em { color: var(--primary); font-size: 1em; }

.services-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 6vh, 80px) clamp(20px, 5vw, 48px) clamp(112px, 14vh, 180px);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.service-block.reverse {
  direction: rtl;
}
.service-block.reverse > * { direction: ltr; }

.service-block-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-block-photo > img {
  width: 100%;
  height: 420px;
  max-height: 420px;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.9);
  display: block;
}
.service-block-photo-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--canvas);
  padding: 4px 10px;
  border-radius: 2px;
}

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

.service-block-body h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.service-block-body h2 em { color: var(--primary); font-size: 1em; }

.service-block-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

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

.service-block-features {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-block-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
}
.service-block-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.service-block-cta {
  align-self: flex-start;
}

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

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

.about-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
  align-items: start;
}

.about-portrait-col {
  position: relative;
}
.about-portrait-img {
  width: 100%;
  height: clamp(400px, 55vw, 600px);
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(0.75) brightness(0.88);
  display: block;
}

.about-portrait-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(12,12,15,0.88);
  border: 1px solid var(--border-brand);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.about-portrait-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.about-portrait-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  display: block;
}

.about-copy-col {
  padding-top: 8px;
}

.about-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}

.about-display-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
}
.about-display-sub .accent-word, .about-display-sub em { color: var(--primary); font-size: 1em; }

.about-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-brand);
  list-style: none;
}

.about-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
}

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

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

.values-inner {
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.section-heading {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 8px; margin-bottom: 48px;
}
.section-heading .accent-word, .section-heading em { color: var(--primary); font-size: 1em; }

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

.value-card {
  padding: 32px 24px;
  background: var(--canvas);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.5);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.value-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-py) 0;
  background: var(--canvas);
  max-width: var(--container);
  margin: auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.timeline-track {
  position: relative;
  margin-top: 48px;
  padding-left: 48px;
  border-left: 1px solid var(--border-brand);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -54px; top: 4px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--canvas);
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: clamp(18px, 2vw, 24px);
  margin-bottom: 8px;
}
.timeline-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

.crew-inner {
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

.crew-photo-wrap {
  position: relative;
  margin-top: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
}
.crew-photo-wrap > img, .crew-photo {
  width: 100%;
  height: 500px;
  max-height: 500px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.7);
  display: block;
}
.crew-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,12,15,0.9) 100%);
}
.crew-photo-caption {
  position: absolute;
  bottom: 32px; left: 32px;
  z-index: 2;
}
.crew-photo-caption h3 {
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 8px;
}
.crew-caption-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}
.crew-caption-body {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 56ch;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: clamp(64px, 8vh, 112px) 0 0;
}

.footer-inner, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  max-width: var(--container);
  margin: auto;
  padding: 0 clamp(20px, 5vw, 48px);
}

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

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28ch;
}
.footer-tagline em { color: var(--primary); font-size: 1em; }

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-contact-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 150ms;
}
.footer-contact-line:hover { color: var(--primary); text-decoration: none; }
.footer-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-col-title, .footer-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 18px;
}

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

.footer-links a, .footer-links li a {
  font-size: 14px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-phone, .footer-phone-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  text-decoration: none;
}
.footer-phone-link:hover { color: var(--primary); }

.footer-email-link {
  font-size: 14px;
  color: var(--primary);
}

.footer-cert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.footer-cert-badge, .footer-cert-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-cert-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.footer-cert-badge::before, .footer-cert-item:not(:has(.footer-cert-dot))::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: clamp(40px, 5vh, 64px);
  padding: 20px clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-service-area {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--primary); }

.footer-cert {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

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

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

address {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
address a { color: var(--muted); }
address a:hover { color: var(--primary); }

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.025;
}

/* ─── UNSIZED SVG CAPS ───────────────────────────────────────────────────── */
svg { display: inline-block; }
.btn svg, .nav-cta svg { width: 18px; height: 18px; }
.trust-badge-icon svg, .trust-sep svg { width: 14px; height: 14px; }
.social-link svg, .footer-contact-line svg { width: 18px; height: 18px; }
.gallery-meta-item svg { width: 12px; height: 12px; }
.faq-chevron, svg.faq-chevron { width: 20px; height: 20px; }
.form-submit svg { width: 18px; height: 18px; }
.mobile-cta svg, .mobile-call-pill svg, .mobile-sticky-cta svg { width: 18px; height: 18px; }

/* ─── RESPONSIVE SECTION PADDING ────────────────────────────────────────── */
@media (max-width: 640px) {
  .services, .gallery, .gallery-section, .reviews,
  .service-areas, .credentials, .faq, .faq-section,
  .contact, .contact-section, .about-section,
  .values-section, .crew-section {
    padding-top: clamp(64px, 10vh, 100px);
    padding-bottom: clamp(64px, 10vh, 100px);
  }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
  .creds-grid, .credentials-grid { grid-template-columns: 1fr; }
  .services-tabs { gap: 6px; }
  .service-tab { font-size: 10px; padding: 7px 12px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.service-block-body { grid-column: 1 / -1; }
.credential-card { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }

/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
