@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --primary:        #DE6D5D;
  --primary-dark:   #c4503f;
  --primary-deeper: #a83e2e;
  --accent:         #CEB9B6;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-solid:   #0C0C0F;

  --display-font: 'Archivo Black', sans-serif;
  --body-font:    'IBM Plex Sans', sans-serif;
  --mono-font:    'IBM Plex Mono', monospace;

  --section-py:   clamp(72px, 9vh, 112px);
  --container:    1360px;
  --radius:       0;

  --header-height: 72px;
}

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

/* ─── GLOBAL SMOOTH SCROLL ───────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  box-sizing: border-box;
}
*, *::before, *::after { box-sizing: inherit; }

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; 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;
}

/* ─── TYPOGRAPHY BASE ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--display-font);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; transition: color 150ms; }
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
ul { list-style: none; margin: 0; padding: 0; }
address { font-style: normal; }

/* ─── CONTAINERS ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
}
.wide-container {
  max-width: 1400px;
  margin-left: auto; margin-right: auto;
  padding-left: clamp(20px, 4vw, 64px);
  padding-right: clamp(20px, 4vw, 64px);
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
#scrollProgress, .scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; 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(12,12,15,0.10);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-height);
}
.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  max-height: 44px !important;
  max-width: 200px !important;
  width: auto !important;
}
.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--mono-font);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}
.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: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--mono-font);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid var(--primary);
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff !important; text-decoration: none; }
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    position: absolute;
    top: 60px; left: 0; right: 0;
    flex-direction: column;
    background: var(--canvas);
    padding: 24px 28px;
    gap: 4px;
    border-bottom: 1px solid rgba(12,12,15,0.10);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-toggle { display: flex; }
  .nav-cta span:not(:first-child) { display: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn, .btn-primary, .btn-white, .btn-cta-banner,
.btn-primary-banner, .btn-outline-banner, .btn-service, .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono-font);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 18px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: filter 150ms, background 150ms, color 150ms;
  white-space: nowrap;
  border: 2px solid var(--primary);
}
.btn-primary, .btn-cta-banner, .btn-primary-banner {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover, .btn-cta-banner:hover, .btn-primary-banner:hover {
  filter: brightness(0.9);
  color: #fff;
  text-decoration: none;
}
.btn-white {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-white:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-outline-banner {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline-banner:hover { background: var(--ink); color: #fff; text-decoration: none; }
.btn-service {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 14px 24px;
}
.btn-service:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn-service svg { width: 16px; height: 16px; }
.btn-submit {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 20px 32px;
  margin-top: 8px;
}
.btn-submit:hover { filter: brightness(0.88); text-decoration: none; }
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 32px;
  border: 2px solid var(--ink);
  transition: background 150ms, color 150ms;
}
.btn-phone:hover { background: var(--ink); color: #fff; text-decoration: none; }

/* ─── HERO ───────────────────────────────────────────────── */
#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#hero.hero > img, #hero.hero .hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: grayscale(18%);
}
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.70) 35%,
    rgba(222,109,93,0.28) 75%,
    rgba(222,109,93,0.12) 100%
  );
}
.hero-inner {
  padding: clamp(40px, 7vw, 88px) clamp(20px, 5vw, 80px);
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: clamp(56px, 8vh, 100px);
}
.hero-eyebrow {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0;
}
.hero-title, h1.hero-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(64px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  max-width: 18ch;
}
.hero-sub {
  font-family: var(--body-font);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  max-width: 52ch;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.hero-ctas a { text-decoration: none; }
.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border-solid);
  width: fit-content;
  margin-top: 8px;
}
.trust-chip {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.90);
  padding: 9px 16px;
  border-right: 1px solid rgba(255,255,255,0.22);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-chip:last-child { border-right: none; }
.trust-chip svg { width: 14px; height: 14px; flex-shrink: 0; }

@media (max-width: 640px) {
  #hero.hero { min-height: 100svh; }
  .hero-title { font-size: clamp(48px, 13vw, 80px); }
  .hero-trust-chips { flex-direction: column; }
  .trust-chip { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.22); }
  .trust-chip:last-child { border-bottom: none; }
}

/* ─── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  overflow-x: auto;
}
.trust-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  border-right: 1px solid var(--border-solid);
  flex: 0 0 auto;
}
.trust-badge:last-child { border-right: none; }
.trust-badge-icon {
  font-size: 16px;
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.trust-badge-icon svg { width: 18px; height: 18px; }
.trust-badge span:not(.trust-badge-icon) {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  white-space: nowrap;
}
/* services.html uses .trust-chip inside .trust-strip */
.trust-strip .trust-chip {
  color: var(--ink);
  padding: 18px 24px;
  border-right: 1px solid var(--border-solid);
  border-bottom: none;
}
.trust-strip .trust-chip svg { color: var(--primary); }
.trust-strip .trust-chip:last-child { border-right: none; }

/* ─── BRAND BAND ─────────────────────────────────────────── */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 72px) 0;
  overflow: hidden;
}
.brand-band-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.brand-band-claim {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.brand-band-meta {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.70);
  margin-top: 20px;
}

/* ─── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  background: var(--canvas);
  max-height: 64px;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--mono-font);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.2;
  color: var(--ink);
  padding: 0 24px;
}
.marquee-sep {
  color: var(--primary);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  user-select: none;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION EYEBROW / HEADER ───────────────────────────── */
.section-eyebrow, .services-eyebrow, .gallery-eyebrow,
.page-header-eyebrow, .cta-eyebrow, .cta-banner-eyebrow,
.about-eyebrow, .service-eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}
.section-title, .services-headline, .gallery-title,
.section-heading, .cta-banner-title {
  font-family: var(--display-font);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.section-num {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.services-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
  margin-top: 12px;
}

/* Flagship */
.services-flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-solid);
}
.flagship-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.flagship-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(12%);
}
.flagship-num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--display-font);
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  z-index: 2;
  pointer-events: none;
  opacity: 0.85;
}
.flagship-body {
  background: var(--surface);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-left: 1px solid var(--border-solid);
}
.flagship-body h3 {
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.flagship-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-solid);
}
.service-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border-solid);
  text-decoration: none;
  color: var(--ink);
  background: var(--canvas);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
  overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
  text-decoration: none;
  color: var(--ink);
  z-index: 1;
}
.service-card-photo {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-solid);
  flex-shrink: 0;
}
.service-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(10%);
  transition: transform 400ms ease;
}
.service-card:hover .service-card-photo img { transform: scale(1.04); }
.service-card-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--display-font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  opacity: 0.80;
  z-index: 2;
  pointer-events: none;
}
.service-card-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.service-card-name {
  font-family: var(--display-font);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--ink);
}
.service-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}
.service-card-arrow {
  font-family: var(--mono-font);
  font-size: 18px;
  color: var(--primary);
  margin-top: 10px;
  display: block;
  transition: transform 200ms;
}
.service-card:hover .service-card-arrow { transform: translateX(5px); }

/* 5 items in 3 cols: last item spanning full width handled by grid-auto */
.services-grid .service-card:nth-child(3) { border-right: none; }
.services-grid .service-card:nth-child(4) { border-top: 1px solid var(--border-solid); }
.services-grid .service-card:nth-child(5) {
  border-top: 1px solid var(--border-solid);
  border-right: none;
}

@media (max-width: 900px) {
  .services-flagship { grid-template-columns: 1fr; }
  .flagship-body { border-left: none; border-top: 1px solid var(--border-solid); }
  .flagship-photo { min-height: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:nth-child(3) { border-right: 1px solid var(--border-solid); }
  .services-grid .service-card:nth-child(4) { border-right: none; }
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(4) { border-right: none; }
  .services-grid .service-card:nth-child(n+3) { border-top: 1px solid var(--border-solid); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card + .service-card { border-top: 1px solid var(--border-solid); }
}

/* ─── SERVICES PAGE (feature blocks) ────────────────────── */
.services-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.services-section-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  margin-bottom: 64px;
}
.services-headline {
  margin-bottom: 16px;
}
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-solid);
}
.service-feature:last-of-type { border-bottom: 1px solid var(--border-solid); }
.service-feature-photo {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.service-feature-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  filter: grayscale(8%);
  transition: transform 600ms ease;
}
.service-feature:hover .service-feature-photo img { transform: scale(1.03); }
.service-feature-index {
  position: absolute;
  top: 16px; left: 20px;
  font-family: var(--display-font);
  font-size: clamp(60px, 9vw, 120px);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}
.service-feature-body {
  padding: clamp(36px, 5vw, 64px);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  border-left: 1px solid var(--border-solid);
}
.service-feature-body.surface-bg {
  background: var(--surface);
}
.service-feature-body h2 {
  font-family: var(--display-font);
  font-size: clamp(24px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.service-desc {
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
}
.service-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-bullets li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 2px;
  background: var(--primary);
}
.service-feature:nth-child(even) .service-feature-photo { order: 2; border-left: 1px solid var(--border-solid); border-right: none; }
.service-feature:nth-child(even) .service-feature-body { border-left: none; order: 1; }

@media (max-width: 900px) {
  .service-feature { grid-template-columns: 1fr; }
  .service-feature-photo { min-height: 280px; order: -1 !important; }
  .service-feature-body { border-left: none !important; border-top: 1px solid var(--border-solid); order: 1 !important; }
  .service-feature:nth-child(even) .service-feature-photo { order: -1 !important; }
}

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery {
  background: var(--surface);
  padding: var(--section-py) 0;
}
.gallery-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.gallery-header a {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none;
}
.gallery-eyebrow { margin-bottom: 12px; }
.gallery-title {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.92;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-solid);
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--ink);
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: transform 500ms ease, filter 400ms ease;
}
.gallery-tile:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-tile.featured {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 360px;
}
.gallery-tile-label, .tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.85) 0%, transparent 100%);
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gallery-tile-label p, .tile-label-name {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.90);
}
.tile-label-tag {
  font-family: var(--mono-font);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: rgba(12,12,15,0.72);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.tile-title {
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.tile-meta {
  font-family: var(--mono-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.70);
  margin-bottom: 4px;
}
.tile-location {
  font-family: var(--mono-font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tile-location svg { width: 12px; height: 12px; }
.tile-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  z-index: 3;
}
.tile-num {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: rgba(255,255,255,0.15);
  line-height: 0.85;
  z-index: 2;
  pointer-events: none;
}

/* Gallery page filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border: 2px solid var(--border-solid);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Gallery stats */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-solid);
}
.gallery-stat {
  padding: 32px 28px;
  border-right: 1px solid var(--border-solid);
  text-align: left;
}
.gallery-stat:last-child { border-right: none; }
.gallery-stat-num {
  font-family: var(--display-font);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  line-height: 0.92;
  color: var(--primary);
}
.gallery-stat-label {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tile.featured { grid-column: span 2; }
  .gallery-stats { grid-template-columns: 1fr 1fr; }
  .gallery-stat:nth-child(2) { border-right: none; }
  .gallery-stat:nth-child(3) { border-top: 1px solid var(--border-solid); grid-column: span 2; border-right: none; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tile.featured { grid-column: span 1; min-height: 260px; }
  .gallery-stats { grid-template-columns: 1fr; }
  .gallery-stat { border-right: none; border-bottom: 1px solid var(--border-solid); }
  .gallery-stat:last-child { border-bottom: none; }
  .gallery-stat:nth-child(n) { grid-column: auto; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.faq-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.faq-header {
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-header h2 {
  font-family: var(--display-font);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.92;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
details {
  border-bottom: 1px solid var(--border-solid);
  padding: 20px 0;
}
details > summary {
  cursor: pointer;
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  user-select: none;
}
details > summary::-webkit-details-marker { display: none; }
.summary-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-solid);
  font-weight: 300;
  font-size: 18px;
  color: var(--ink);
  transition: transform 200ms, border-color 200ms, color 200ms;
  font-family: var(--mono-font);
  line-height: 1;
}
details[open] > summary .summary-chevron {
  transform: rotate(45deg);
  color: var(--primary);
  border-color: var(--primary);
}
.faq-answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.68;
  color: var(--muted);
  padding-right: 40px;
}

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

/* ─── TEAM CTA ────────────────────────────────────────────── */
.team-cta {
  background: var(--primary);
  padding: clamp(36px, 5vw, 56px) 0;
}
.team-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.team-cta-text {
  font-family: var(--display-font);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 0.95;
}
.team-cta a {
  background: #fff;
  color: var(--ink);
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  padding: 16px 28px;
  text-decoration: none;
  border: 2px solid #fff;
  flex-shrink: 0;
  transition: background 150ms, color 150ms;
}
.team-cta a:hover { background: var(--ink); color: #fff; border-color: var(--ink); text-decoration: none; }

/* ─── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-solid);
  position: relative;
  overflow: hidden;
}
.cta-banner-bg-text {
  position: absolute;
  top: 50%; left: -20px;
  transform: translateY(-50%);
  font-family: var(--display-font);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(12,12,15,0.04);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.cta-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-banner-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-banner-title {
  font-family: var(--display-font);
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 0.92;
  color: var(--ink);
}
.cta-banner-title span { color: var(--primary); }
.cta-banner-sub, .cta-banner-text > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.cta-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cta-banner-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border-solid);
  background: var(--canvas);
}
.cta-banner-form input,
.cta-banner-form textarea {
  border: none;
  border-bottom: 1px solid var(--border-solid);
  padding: 16px 20px;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: var(--canvas);
  outline: none;
  width: 100%;
}
.cta-banner-form textarea { min-height: 100px; resize: vertical; }
.cta-banner-form input:focus,
.cta-banner-form textarea:focus { background: var(--surface); }
.cta-banner-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  cursor: pointer;
  transition: filter 150ms;
  align-self: stretch;
}
.cta-banner-form button:hover { filter: brightness(0.88); }
.cta-banner-headline { font-family: var(--display-font); font-size: clamp(28px, 4vw, 56px); line-height: 0.92; text-transform: uppercase; letter-spacing: -0.02em; color: var(--ink); }
.cta-banner-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: 8px;
}
.cta-phone-big, .info-phone-big {
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--canvas);
  padding: var(--section-py) 0;
}
.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-solid);
}
.contact-form-col {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--border-solid);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form-col h2, .contact-form-col > h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.contact-form-lead, .form-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}
.contact-info-col {
  padding: clamp(32px, 4vw, 56px);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-col h2, .contact-info-col > h2 {
  font-family: var(--display-font);
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.info-label, .info-block-label {
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 4px;
}
.info-value, .info-block > p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}
.info-value a, .info-block a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.info-value a:hover, .info-block a:hover { text-decoration: underline; }
.contact-info-col > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-col > div:first-child { padding-top: 0; }
.contact-info-col > div:last-child { border-bottom: none; }
.info-block {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-block:last-child { border-bottom: none; }
.info-divider { height: 1px; background: var(--border); }

/* Form styles */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 16px;
  border: 2px solid var(--border-solid);
  background: var(--canvas);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  width: 100%;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--surface);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Service area chips */
.service-area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.area-chip {
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border: 2px solid var(--border-solid);
  color: var(--ink);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-col { border-right: none; border-bottom: 1px solid var(--border-solid); }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── PAGE HEADER ────────────────────────────────────────── */
.page-header {
  min-height: clamp(260px, 36vh, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-bottom: 1px solid var(--border-solid);
}
.page-header > img {
  filter: grayscale(15%);
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,12,15,0.82) 0%,
    rgba(12,12,15,0.50) 50%,
    rgba(12,12,15,0.22) 100%
  );
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 4vw, 64px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.page-header h1, .page-header-inner h1 {
  font-family: var(--display-font);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}
.page-header-sub {
  font-family: var(--body-font);
  font-size: 16px;
  color: rgba(255,255,255,0.80);
  margin-top: 12px;
  max-width: 56ch;
}
.page-header-eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-story {
  padding: var(--section-py) 0;
  background: var(--canvas);
}
.about-story-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  border: 1px solid var(--border-solid);
}
.about-story-photo-col {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-right: 1px solid var(--border-solid);
}
.about-story-photo-col img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  filter: grayscale(12%);
}
.about-story-photo-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--mono-font);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.85);
  background: rgba(12,12,15,0.65);
  padding: 6px 10px;
  z-index: 2;
}
.about-story-text-col {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.about-eyebrow {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
}
.about-headline, .about-story-text-col h2 {
  font-family: var(--display-font);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}
.about-divider {
  width: 80px; height: 4px;
  background: var(--primary);
  margin: 8px 0;
}
.about-body p {
  font-size: 16px;
  line-height: 1.72;
  color: var(--muted);
  margin-bottom: 16px;
}
.about-body p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-photo-col { min-height: 300px; border-right: none; border-bottom: 1px solid var(--border-solid); }
}

/* ─── VALUES ─────────────────────────────────────────────── */
.values-section {
  background: var(--surface);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-solid);
}
.values-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.values-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.values-section .section-header h2 {
  font-family: var(--display-font);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.92;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-solid);
}
.value-card {
  padding: 32px 24px;
  border-right: 1px solid var(--border-solid);
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.value-card:last-child { border-right: none; }
.value-card h3 {
  font-family: var(--display-font);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  color: var(--ink);
}
.value-card-num {
  font-family: var(--display-font);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--primary);
  line-height: 0.85;
  opacity: 0.80;
}
.value-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}
.value-card-title { /* already styled via h3 */ }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(3),
  .value-card:nth-child(4) { border-top: 1px solid var(--border-solid); }
  .value-card:nth-child(4) { border-right: none; }
}
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none !important; border-bottom: 1px solid var(--border-solid); }
  .value-card:last-child { border-bottom: none; }
}

/* ─── CREW STRIP ─────────────────────────────────────────── */
.crew-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border-solid);
}
.crew-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.crew-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.crew-section .section-header h2 {
  font-family: var(--display-font);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 0.92;
}
.crew-strip {
  position: relative;
  overflow: hidden;
  height: 440px;
  border: 1px solid var(--border-solid);
}
.crew-strip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; max-height: none;
  filter: grayscale(20%);
}
.crew-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,12,15,0.70) 0%,
    rgba(12,12,15,0.10) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  z-index: 2;
}
.crew-overlay-label {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}
.crew-overlay-title {
  font-family: var(--display-font);
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 0.92;
}

@media (max-width: 640px) {
  .crew-strip { height: 300px; }
}

/* ─── SERVICE AREAS ──────────────────────────────────────── */
.service-areas {
  background: var(--surface);
  border-top: 1px solid var(--border-solid);
  border-bottom: 1px solid var(--border-solid);
  padding: clamp(32px, 4vw, 56px) 0;
}
.service-areas-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
}
.service-areas-label {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  flex-shrink: 0;
}
.service-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  padding: 0; margin: 0;
}
.service-areas-list li {
  font-family: var(--mono-font);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 14px;
  border: 2px solid var(--border-solid);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.80);
  border-top: 1px solid var(--border-solid);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 64px) clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand-name {
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.footer-phone a, .footer-email a {
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  text-decoration: none;
}
.footer-phone a:hover, .footer-email a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-col-title, h4.footer-col-heading, .footer-col h4 {
  font-family: var(--mono-font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 10px;
}
.footer-links, .footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-col a:hover {
  color: var(--primary);
  text-decoration: underline;
}
.footer-address {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.70);
  transition: color 150ms, border-color 150ms;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }
.footer-social svg { width: 18px; height: 18px; }
.footer-contact-line, .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
}
.footer-contact-line svg, .footer-contact-item svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.footer-contact-line a, .footer-contact-item a {
  color: rgba(255,255,255,0.80);
  text-decoration: none;
}
.footer-contact-line a:hover, .footer-contact-item a:hover { color: var(--primary); }
.footer-service-areas {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.footer-service-areas li { font-family: var(--mono-font); font-size: 11px; letter-spacing: 0.06em; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy, .footer-bottom p, .footer-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--mono-font);
}
.footer-license, .footer-bottom-license {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  font-family: var(--mono-font);
  font-weight: 600;
  letter-spacing: 0.06em;
}

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

/* ─── MOBILE CALL PILL ───────────────────────────────────── */
.mobile-call-pill, .mobile-cta-sticky, .mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: var(--mono-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: filter 150ms;
}
.mobile-call-pill:hover, .mobile-cta-sticky:hover, .mobile-cta:hover {
  filter: brightness(0.92);
  color: #fff;
  text-decoration: none;
}
.mobile-call-pill svg, .mobile-cta-sticky svg, .mobile-cta svg {
  width: 18px; height: 18px; flex-shrink: 0;
}
.mobile-call-pill > a, .mobile-cta-sticky > a, .mobile-cta > a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 900px) {
  .mobile-call-pill, .mobile-cta-sticky, .mobile-cta { display: none; }
}

/* ─── ANIMATION UTILITIES ────────────────────────────────── */
.fade-up, .fade-left, .fade-right, .scale-in {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.95); }

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

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

/* ─── MISC UTILITIES ─────────────────────────────────────── */
.surface-bg { background: var(--surface); }
.bleed { width: 100%; max-width: none; padding: 0; }

/* SVG caps */
svg { overflow: visible; }
.trust-badge-icon svg,
.summary-chevron svg,
.service-card-arrow svg,
.btn-service svg,
.footer-social svg,
.footer-contact-line svg,
.footer-contact-item svg,
.tile-location svg,
.cta-banner-actions svg,
.nav-cta svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
}

/* Responsive section padding */
@media (max-width: 640px) {
  .contact-form-col, .contact-info-col { padding: clamp(24px, 5vw, 36px); }
  .flagship-body { padding: clamp(24px, 5vw, 36px); }
  .service-feature-body { padding: clamp(28px, 5vw, 40px); }
  .faq-inner, .gallery-inner, .services-inner { padding-left: 16px; padding-right: 16px; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.flagship-photo { grid-column: 1 / -1; }
.flagship-body { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-feature-photo { grid-column: 1 / -1; }
.gallery-stat { grid-column: 1 / -1; }
.about-story-photo-col { grid-column: 1 / -1; }
.about-story-text-col { grid-column: 1 / -1; }
.value-card { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
