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

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #BE602F;
  --primary-dark:   #a0521a;
  --primary-light:  #d4784a;
  --accent:         #345C54;
  --accent-light:   #4a7a70;
  --ink:            #14181D;
  --ink-mid:        #2e343c;
  --muted:          #5C6068;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --surface-2:      #f0ede7;
  --border:         rgba(190,96,47,0.18);
  --border-neutral: rgba(20,24,29,0.10);
  --header-height:  72px;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;

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

  --section-py:  clamp(80px, 10vh, 128px);
  --content-max: 1320px;
  --wide-max:    1400px;

  --shadow-sm:   0 2px 8px -2px rgba(20,24,29,0.10);
  --shadow-md:   0 8px 24px -8px rgba(20,24,29,0.16);
  --shadow-lg:   0 18px 48px -16px rgba(20,24,29,0.22);
  --shadow-pill: 0 18px 40px -10px rgba(0,0,0,0.45);
}

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

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

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

body {
  font-family: var(--font-body);
  font-weight: 450;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.68;
  -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; object-position: center 45%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

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

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

[class*="gallery-grid"] > [class*="gallery-tile"],
[class*="gallery-grid"] > a,
[class*="gallery-grid"] > figure {
  grid-column: auto; width: auto; max-width: 100%; height: auto; min-height: 0;
}

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

/* Anchor-in-heading fix */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

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

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

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 { font-size: clamp(48px, 7vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 1.6vw, 20px); }

p { line-height: 1.70; }

.section-eyebrow,
.eyebrow,
.feature-eyebrow,
.page-header-eyebrow,
.section-lead {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
  margin-bottom: 14px;
}

.section-lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 12px;
  margin-bottom: 0;
  max-width: 56ch;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms, box-shadow 180ms;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover {
  background: var(--ink);
  color: var(--canvas);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-neutral);
}
.btn-ghost:hover { background: var(--surface-2); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.12); }

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

.btn-block { width: 100%; justify-content: center; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 180ms, transform 150ms;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; }

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

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

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

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

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

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  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"],
.nav-pages li.active a {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  text-decoration: none;
}

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

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 3vw, 40px);
    gap: 8px;
    border-bottom: 1px solid rgba(20,24,29,0.08);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
}

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

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20,24,29,0.55);
}

.hero-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

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

.hero-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(247,246,242,0.75);
  max-width: 48ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

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

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

.trust-chip {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--canvas);
  background: rgba(247,246,242,0.10);
  border: 1px solid rgba(190,96,47,0.55);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .hero { min-height: 85vh; align-items: flex-end; }
  .hero-title { font-size: clamp(40px, 11vw, 72px); }
  .hero-ctas { flex-direction: column; }
}

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

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

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

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

.marquee-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-neutral);
  padding-block: clamp(32px, 4vh, 48px);
}

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

.trust-badge {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
}

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

.services-header h2 { margin-bottom: 0; }

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border-neutral);
  padding-bottom: 0;
}

.service-tab {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 18px;
  margin-bottom: -2px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}
.service-tab:hover { color: var(--ink); }
.service-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-panel.active { display: grid; }

.service-panel > img:first-of-type,
.service-panel-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  max-height: 500px !important;
}

.service-panel img { max-height: 500px !important; }

.service-panel-body { padding-top: 8px; }
.service-panel-body h3 {
  font-size: clamp(24px, 2.5vw, 36px);
  margin-bottom: 16px;
  color: var(--ink);
}
.service-panel-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.service-panel-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .service-panel.active { grid-template-columns: 1fr; gap: 24px; }
  .service-panel > img:first-of-type, .service-panel-img { height: 260px; }
}

/* Services detail page */
.services-detail { background: var(--canvas); }

.services-detail-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: var(--section-py);
  display: flex;
  flex-direction: column;
  gap: clamp(64px, 8vh, 96px);
}

.services-index-strip {
  background: var(--ink);
  padding-block: 0;
  overflow-x: auto;
}
.services-index-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  display: flex;
  gap: 0;
  align-items: stretch;
}
.services-index-label {
  display: none;
}
.services-index-inner a {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(247,246,242,0.7);
  padding: 14px 18px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  transition: color 150ms, background 150ms;
}
.services-index-inner a:hover { color: #fff; background: rgba(255,255,255,0.06); text-decoration: none; }
.services-index-inner a:first-child { border-left: 1px solid rgba(255,255,255,0.08); }

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

.feature-photo {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.feature-photo img {
  width: 100%;
  height: clamp(320px, 45vw, 560px);
  object-fit: cover;
  max-height: 600px !important;
  display: block;
}

.feature-photo-num {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  background: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.feature-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 12px;
}

.feature-content h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.feature-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.feature-content .btn { margin-top: 16px; }

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.feature-bullets li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feature-block.reverse > * { direction: ltr; }
}

/* Additional services grid */
.additional-services {
  background: var(--surface);
  padding-block: var(--section-py);
}
.additional-services-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.additional-services-inner .section-header { margin-bottom: 40px; }
.additional-services-inner .section-header h2 { font-size: clamp(28px, 4vw, 56px); }

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

.additional-card {
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 24px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.additional-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.additional-card h3 { font-size: 18px; margin-bottom: 8px; }
.additional-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.additional-card-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
}

.reviews-header {
  margin-bottom: 48px;
}
.reviews-header h2 { margin-bottom: 16px; }

.reviews-rating-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rating-big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--primary);
  line-height: 1;
}

.rating-meta { display: flex; flex-direction: column; gap: 4px; }

.rating-stars, .review-card-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}
.rating-stars svg, .review-card-stars svg {
  width: 18px; height: 18px;
  color: var(--primary);
  fill: var(--primary);
}

.rating-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.reviews-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.review-card-stars { margin-bottom: 14px; }

.review-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
}

.review-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.reviews-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

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

/* ============================================================
   GALLERY (homepage tiles)
   ============================================================ */
.gallery { background: var(--canvas); }

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-header h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 0; }
.gallery-header a { text-decoration: none; }
.gallery-header a:hover { text-decoration: none; }

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

.gallery-tile {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  transition: transform 300ms ease-out;
}
.gallery-tile:hover { transform: scale(1.01); }
.gallery-tile > a,
.gallery-link {
  display: block;
  width: 100%; height: 100%;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease-out;
}
.gallery-tile:hover img { transform: scale(1.04); }

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

/* ============================================================
   GALLERY PAGE (full gallery)
   ============================================================ */
.gallery-section { background: var(--canvas); }

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

.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-heading-block h2 { font-size: clamp(28px, 4vw, 56px); }
.gallery-count {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-pill {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Gallery cards (full page) */
.gallery-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-neutral);
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-card.featured { grid-column: span 2; }

.gallery-card-img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.gallery-card.featured .gallery-card-img-wrap { aspect-ratio: 16 / 9; }
.gallery-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease-out;
}
.gallery-card:hover .gallery-card-img-wrap img { transform: scale(1.04); }

.gallery-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  background: var(--primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.gallery-card-num {
  position: absolute;
  bottom: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.gallery-card-body {
  padding: 20px;
}
.gallery-card-body h3 { font-size: 18px; margin-bottom: 8px; }

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
.gallery-card-location svg { width: 14px; height: 14px; flex-shrink: 0; }

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

.gallery-card-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.gallery-meta-item {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

@media (max-width: 900px) {
  #galleryGrid.gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card.featured { grid-column: span 2; }
}
@media (max-width: 640px) {
  #galleryGrid.gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.featured { grid-column: span 1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); }

.faq-header { margin-bottom: 40px; }
.faq-header h2 { font-size: clamp(28px, 4vw, 56px); }

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

details.faq, .faq-list details {
  border-bottom: 1px solid var(--border-neutral);
  padding: 0;
}
details.faq:first-of-type, .faq-list details:first-of-type {
  border-top: 1px solid var(--border-neutral);
}

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

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

.faq-answer, details.faq p, .faq-list details p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.70;
  padding-bottom: 20px;
  padding-right: 40px;
}

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding-block: clamp(48px, 6vh, 72px);
}

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

.team-cta-inner > a {
  flex-shrink: 0;
}

.team-cta-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.team-cta-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.team-cta-heading span { color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--ink);
  padding-block: clamp(64px, 8vh, 96px);
}

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

.cta-banner-left h2 {
  font-size: clamp(28px, 4vw, 56px);
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.0;
}
.cta-banner-left h2 em {
  font-style: italic;
  color: var(--primary);
}
.cta-banner-left p {
  color: rgba(247,246,242,0.65);
  font-size: 16px;
  max-width: 44ch;
}
.cta-banner-left .eyebrow { color: var(--primary); }

.cta-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 36px);
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-block: 16px;
  transition: color 150ms;
}
.cta-phone-link:hover { color: var(--primary); text-decoration: none; }
.cta-phone-icon svg, .cta-phone-link svg { width: 24px; height: 24px; }
.cta-phone-big { font-size: clamp(20px, 2.5vw, 32px); }
.cta-phone-icon { display: inline-flex; align-items: center; }

.cta-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-banner-right {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 32px;
}

.cta-form-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
.contact, .contact-section { background: var(--surface); }

.contact-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: var(--section-py);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.contact-form-col h2,
.contact-form-wrap h2,
.contact-form-wrap .contact-form-title {
  font-size: clamp(24px, 3.5vw, 48px);
  margin-bottom: 8px;
}

.contact-form-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
  margin-bottom: 24px;
}

.contact-info-col h3,
.contact-info-card p.info-card-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-info-col h3 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 28px); font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 28px; }

.contact-info-card {
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 28px;
}

.info-card-eyebrow {
  font-family: var(--font-mono) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.10em !important;
  color: var(--primary) !important;
  display: block;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 16px;
  border-bottom: 1px solid var(--border-neutral);
}
.contact-item:last-child { border-bottom: none; }

.contact-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; color: var(--primary); }

.contact-item-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.contact-item-value a { color: var(--ink); }
.contact-item-value a:hover { color: var(--primary); }

/* Info block (contact page variant) */
.info-block {
  padding-block: 16px;
  border-bottom: 1px solid var(--border-neutral);
}
.info-block:last-child { border-bottom: none; }
.info-block-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}
.info-phone-main, .info-phone-alt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.info-phone-main a, .info-phone-alt a { color: var(--ink); }
.info-phone-main a:hover, .info-phone-alt a:hover { color: var(--primary); text-decoration: none; }
.info-phone-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.info-county-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-email-link { color: var(--primary); font-size: 15px; font-weight: 500; }
.info-email-link:hover { text-decoration: underline; }
.info-text { font-size: 15px; color: var(--muted); line-height: 1.6; }

.rating-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.rating-stars svg { width: 16px; height: 16px; color: var(--primary); fill: var(--primary); }
.rating-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.area-chip {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
}

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

/* ============================================================
   FORMS
   ============================================================ */
.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-full { grid-column: 1 / -1; }
.form-submit { display: flex; }

label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="tel"],
input[type="number"],
select,
textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-neutral);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color 150ms;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(190,96,47,0.12);
}
textarea { min-height: 110px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C6068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.contact-form { margin-top: 24px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 5vh, 64px);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(20,24,29,0.60);
}

.page-header-hairline {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 3;
}

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

.page-header-inner h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 80px);
  max-width: 20ch;
  margin-bottom: 0;
}

.page-header-sub {
  font-size: clamp(14px, 1.4vw, 18px);
  color: rgba(247,246,242,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-top: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding-block: var(--section-py);
}

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

.about-portrait-col { position: relative; }

.about-portrait-frame {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface-2);
}
.about-portrait-frame img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  max-height: 580px !important;
  display: block;
}

.about-portrait-accent {
  position: absolute;
  bottom: -8px; right: -8px;
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  z-index: 0;
}

.about-portrait-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
  margin-top: 14px;
}

.about-story-col { padding-top: 8px; }
.about-story-col .eyebrow { margin-bottom: 12px; }
.about-story-col h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 24px; }

.about-story-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 16px;
}

.about-chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-chip {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--ink);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}

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

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.values-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.values-inner h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 48px; }
.values-inner .section-eyebrow { margin-bottom: 12px; }

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

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

.value-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 12px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-body { font-size: 14px; color: var(--muted); line-height: 1.60; }

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

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline-section {
  background: var(--canvas);
  padding-block: var(--section-py);
  padding-inline: clamp(20px, 4vw, 48px);
  max-width: var(--content-max);
  margin-inline: auto;
}
.timeline-section h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 48px; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.timeline-grid::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 2px;
  background: var(--border-neutral);
  z-index: 0;
}

.timeline-step {
  position: relative;
  padding: 0 24px 0 0;
}
.timeline-step h3 { font-size: 16px; color: var(--ink); margin-bottom: 4px; }

.timeline-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--canvas);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 6px;
}
.timeline-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (max-width: 900px) {
  .timeline-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline-grid::before { display: none; }
}
@media (max-width: 640px) { .timeline-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CREW SECTION
   ============================================================ */
.crew-section {
  background: var(--surface);
  padding-block: var(--section-py);
}

.crew-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.crew-inner h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 40px; }
.crew-inner .section-eyebrow { margin-bottom: 12px; }

.crew-statement {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.crew-quote-block {
  padding: 32px;
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
}
.crew-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.crew-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

.crew-stats-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.crew-stat-box {
  padding: 20px 24px;
  background: var(--canvas);
  border: 1px solid var(--border-neutral);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}
.crew-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.crew-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--muted);
}

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

/* ============================================================
   SECTION HEADERS (generic)
   ============================================================ */
.section-header { margin-bottom: 40px; }
.section-header h2, .section-heading, .section-headline {
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.0;
}
.services-header h2 { font-size: clamp(28px, 4vw, 56px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.75);
}

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

.footer-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-block: clamp(60px, 7vh, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.site-footer .footer-inner .footer-grid {
  padding: 0;
}

.footer-brand img { margin-bottom: 16px; }
.footer-brand p, .footer-brand-name {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(247,246,242,0.65);
  margin-bottom: 8px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  display: block;
  margin-bottom: 16px;
}
.footer-about { font-size: 14px; color: rgba(247,246,242,0.55); line-height: 1.65; }

.footer-contact-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.footer-contact-line a { color: rgba(247,246,242,0.65); font-size: 14px; text-decoration: none; }
.footer-contact-line a:hover { color: var(--primary); text-decoration: none; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact-icon { width: 16px !important; height: 16px !important; color: var(--primary); }
.footer-contact-item a { color: rgba(247,246,242,0.65); font-size: 14px; text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary); text-decoration: none; }

.footer-col h4,
.footer-col-title {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247,246,242,0.45);
  margin-bottom: 20px;
  display: block;
}

.footer-col ul,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a,
.footer-links a,
.footer-phone-link {
  font-size: 14px;
  color: rgba(247,246,242,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-col a:hover,
.footer-links a:hover,
.footer-phone-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-text,
.footer-copy,
.footer-legal {
  font-size: 13px;
  color: rgba(247,246,242,0.40);
}
.footer-legal a { color: rgba(247,246,242,0.40); }
.footer-legal a:hover { color: var(--primary); text-decoration: none; }

.footer-rating { display: flex; align-items: center; gap: 6px; }
.footer-stars { display: flex; gap: 2px; }
.footer-stars svg { width: 14px !important; height: 14px !important; color: var(--primary); fill: var(--primary); }

address { font-style: normal; }

@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-call-pill, .mobile-call > a, .mobile-cta > a {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--shadow-pill);
  transition: background 180ms, transform 150ms;
}
.mobile-call-pill:hover, .mobile-call > a:hover, .mobile-cta > a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}
.mobile-call-pill svg, .mobile-call svg, .mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-call { display: none; }
.mobile-cta { display: none; }

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

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

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

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.stagger > *.visible { opacity: 1; transform: translateY(0); }

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

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

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

/* ============================================================
   MISC / UTILITY
   ============================================================ */
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

.section-eyebrow + h2, .eyebrow + h2 { margin-top: 0; }

.service-index-link {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--primary);
  text-decoration: none;
}
.service-index-link:hover { text-decoration: underline; }

/* Scroll progress on services/gallery/contact pages */
#scrollProgress, #scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--primary);
  width: 0%;
  z-index: 9999;
  transition: width 80ms linear;
}

/* ============================================================
   RESPONSIVE CATCH-ALL
   ============================================================ */
@media (max-width: 640px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-buttons { flex-direction: column; }
  .team-cta-inner { flex-direction: column; align-items: flex-start; }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.feature-photo { grid-column: 1 / -1; }
.feature-content { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.about-story-col { 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); }
/* 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; }
