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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #94AC44;
  --accent:        #526F24;
  --canvas:        #FFFFFF;
  --surface:       #F2F0EB;
  --ink:           #0C0C0F;
  --muted:         #5A5852;
  --ink-border:    rgba(12,12,15,0.14);
  --border:        rgba(12,12,15,0.14);
  --header-height: 72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; 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;
}
[class*="gallery-tile"] { aspect-ratio: 4 / 3; overflow: hidden; }
[class*="gallery-tile"] > img { width: 100%; height: 100%; object-fit: cover; }

/* Anchors inside headings */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

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

ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }
details { cursor: pointer; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: 1360px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.wide-container { max-width: 1400px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }
.bleed          { width: 100%; max-width: none; padding-inline: 0; }

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

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

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

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

.nav-pages {
  flex: 1;
  display: flex; justify-content: center;
  align-items: center;
  gap: 28px;
}
.nav-pages ul { display: flex; gap: 28px; align-items: center; padding: 0; margin: 0; list-style: none; }
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block; padding: 6px 0;
  font-size: 15px; font-weight: 500;
  color: var(--ink); text-decoration: none;
  letter-spacing: 0.01em;
}
.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;
  background: var(--primary); color: var(--canvas);
  padding: 10px 20px; border-radius: 0;
  font-weight: 700; font-size: 14px;
  text-decoration: none; white-space: nowrap;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: 'IBM Plex Mono', monospace;
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { filter: brightness(0.92); color: var(--canvas); text-decoration: none; }
.nav-cta span { font-family: 'IBM Plex Mono', monospace; }

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 32px; border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  text-decoration: none; transition: filter 150ms, background 150ms, color 150ms;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--primary); color: var(--canvas);
  border: 2px solid var(--primary);
}
.btn-primary:hover { filter: brightness(0.9); color: var(--canvas); text-decoration: none; }

.btn-outline {
  background: transparent; color: var(--canvas);
  border: 2px solid var(--canvas);
}
.btn-outline:hover { background: var(--canvas); color: var(--ink); text-decoration: none; }

.btn-ink {
  background: var(--ink); color: var(--canvas);
  border: 2px solid var(--ink);
}
.btn-ink:hover { background: #2a2a2f; color: var(--canvas); text-decoration: none; }

.btn-pair { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--ink);
}

.hero > img { 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: linear-gradient(
    105deg,
    rgba(12,12,15,0.88) 0%,
    rgba(12,12,15,0.72) 40%,
    rgba(12,12,15,0.35) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(40px, 7vh, 96px) clamp(20px, 5vw, 80px);
  padding-top: calc(var(--header-height) + clamp(40px, 6vh, 80px));
  max-width: 1360px; width: 100%;
  min-height: 92vh;
}

h1.hero-title,
.hero-inner h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--canvas);
  max-width: 18ch;
  margin-bottom: 24px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  line-height: 1.55;
  margin-bottom: 32px;
}

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

.hero-trust-chips {
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid rgba(255,255,255,0.25);
  width: fit-content;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  border-right: 1px solid rgba(255,255,255,0.25);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.trust-chip:last-child { border-right: none; }
.trust-chip svg { width: 14px; height: 14px; color: var(--primary); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 24px 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 16px;
}
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 2px solid var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink);
  flex: 1 1 auto; min-width: 140px;
  justify-content: center;
}
.trust-badge-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }
.trust-badge svg { width: 20px; height: 20px; color: var(--primary); }

@media (max-width: 640px) {
  .trust-badge { padding: 8px 12px; font-size: 10px; min-width: 120px; }
}

/* ============================================================
   BRAND BAND (the unique move)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(40px, 6vw, 72px) 0;
  overflow: hidden;
}
.brand-band-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--canvas);
  max-width: 22ch;
}
.brand-band-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.72);
  margin-top: 20px;
}
.brand-band-note {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  font-weight: 500;
  font-style: italic;
}
.brand-band-meta {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 16px;
}

/* Claim band (used on sub-pages) */
.claim-band {
  background: var(--primary);
  padding: clamp(28px, 4vw, 52px) 0;
}
.claim-band-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.claim-band-text {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--canvas);
  max-width: 24ch;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.services .container > p.section-label { margin-bottom: 8px; }
.services .container > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 20ch;
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 16px;
  display: block;
}
.section-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 16px;
  display: block;
}

/* Services bento grid: 1 flagship wide + 5 in grid */
.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}
.service-card {
  position: relative; overflow: hidden;
  display: block; text-decoration: none;
  background: var(--ink);
  border-radius: 0;
  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.45); text-decoration: none; }
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; transition: transform 400ms ease;
  max-height: none;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-flagship {
  grid-column: 1 / 3;
  grid-row: 1;
  min-height: 480px;
}
.service-card-sm {
  grid-column: auto;
  grid-row: auto;
  min-height: 280px;
}
.service-card-sm:nth-of-type(2) { grid-column: 3; grid-row: 1; }
.service-card-sm:nth-of-type(3) { grid-column: 3; grid-row: 1; min-height: 220px; }
.service-card-md {
  grid-column: auto;
  min-height: 320px;
}

.service-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(12,12,15,0.92) 0%, rgba(12,12,15,0.3) 60%, transparent 100%);
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 24px 28px;
}
.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--canvas);
}
.service-card-flagship .service-card-body h3 { font-size: clamp(24px, 3vw, 40px); }
.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 8px;
}
.service-card-desc {
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-top: 6px; line-height: 1.5;
  display: none;
}
.service-card-flagship .service-card-desc { display: block; }
.service-card-link {
  display: inline-block; margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}

.services-cta {
  margin-top: 40px; display: flex; align-items: center; gap: 16px;
}
.services-cta-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card-flagship { grid-column: 1 / 3; grid-row: 1; min-height: 360px; }
  .service-card-sm:nth-of-type(2) { grid-column: auto; grid-row: auto; }
  .service-card-sm:nth-of-type(3) { grid-column: auto; grid-row: auto; }
  .service-card-sm, .service-card-md { min-height: 240px; }
}
@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; gap: 2px; }
  .service-card-flagship { grid-column: 1; min-height: 300px; }
  .service-card-sm:nth-of-type(2) { grid-column: 1; }
  .service-card-sm:nth-of-type(3) { grid-column: 1; }
  .service-card-sm, .service-card-md { min-height: 220px; }
}

/* ============================================================
   SERVICE NAV STRIP (services.html)
   ============================================================ */
.service-nav-strip {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  position: sticky; top: var(--header-height); z-index: 800;
}
.service-nav-inner {
  display: flex; gap: 0;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.service-nav-item {
  display: inline-block; padding: 16px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55); white-space: nowrap;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color 150ms, background 150ms;
}
.service-nav-item:first-child { border-left: 1px solid rgba(255,255,255,0.08); }
.service-nav-item:hover { color: var(--canvas); background: rgba(255,255,255,0.04); text-decoration: none; }
.service-nav-item.active { color: var(--primary); }

/* ============================================================
   SERVICE BLOCKS (services.html)
   ============================================================ */
.service-block {
  padding: clamp(72px, 9vh, 112px) 0;
  background: var(--canvas);
}
.service-block:nth-of-type(even) { background: var(--surface); }

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.service-block.photo-right .service-block-inner {
  direction: rtl;
}
.service-block.photo-right .service-block-inner > * { direction: ltr; }

.service-block-img {
  position: relative; overflow: hidden;
  border: 1px solid var(--ink);
}
.service-block-img > img {
  width: 100%; height: 100%;
  aspect-ratio: 4/3; object-fit: cover;
  max-height: 520px; display: block;
}
.service-index-num {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900; line-height: 0.85;
  color: var(--primary); opacity: 0.18;
  pointer-events: none; user-select: none;
}

.service-block-body {}
.service-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 14px; display: block;
}
.service-block-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 20px;
}
.service-block-body p {
  font-size: 16px; line-height: 1.7;
  color: var(--muted); margin-bottom: 14px;
}
.service-bullets {
  margin: 20px 0; padding-left: 0; list-style: none;
}
.service-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; line-height: 1.6; color: var(--ink);
  margin-bottom: 8px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.service-bullets li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--primary); margin-top: 7px;
}

@media (max-width: 900px) {
  .service-block-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-block.photo-right .service-block-inner { direction: ltr; }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.gallery .container > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 40px; max-width: 20ch;
}
.gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery .gallery-grid .gallery-tile {
  aspect-ratio: 4/3; overflow: hidden;
  position: relative;
}
.gallery .gallery-grid .gallery-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease; max-height: none;
}
.gallery .gallery-grid .gallery-tile:hover img { transform: scale(1.05); }

.gallery-cta { margin-top: 40px; display: flex; gap: 16px; align-items: center; }
.gallery-cta-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
}

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

/* ============================================================
   GALLERY PAGE (gallery.html)
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: clamp(64px, 8vh, 96px) 0;
}
.gallery-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 36px;
}
.gallery-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary);
  margin-bottom: 10px;
}
.gallery-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}
.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
  white-space: nowrap;
}
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.filter-pill {
  padding: 8px 18px; border: 2px solid var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--ink); background: transparent;
  cursor: pointer; border-radius: 0;
  transition: background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); border-color: var(--primary); color: var(--canvas);
}
.gallery-featured {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 2px; margin-bottom: 2px;
}
.gallery-featured .gallery-tile.tall { aspect-ratio: auto; min-height: 500px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-tile {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; background: var(--ink);
}
.gallery-tile > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 400ms ease; max-height: none;
}
.gallery-tile:hover > img { transform: scale(1.05); }
.gallery-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,15,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 300ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }
.gallery-tile-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; z-index: 2;
  opacity: 0; transform: translateY(8px); transition: opacity 300ms, transform 300ms;
}
.gallery-tile:hover .gallery-tile-body { opacity: 1; transform: translateY(0); }
.tile-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 4px;
}
.tile-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 16px; font-weight: 900;
  text-transform: uppercase; color: var(--canvas);
  line-height: 1.1;
}
.tile-location {
  font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px;
}
.tile-index {
  position: absolute; top: 12px; left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  background: var(--primary); color: var(--canvas);
  padding: 3px 7px; letter-spacing: 0.1em;
  text-transform: uppercase; z-index: 3;
}

@media (max-width: 900px) {
  .gallery-featured { grid-template-columns: 1fr; }
  .gallery-featured .gallery-tile.tall { min-height: 300px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.faq .container > h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 48px; max-width: 20ch;
}
.faq-list { border-top: 1px solid var(--ink); }

.faq-list details {
  border-bottom: 1px solid var(--ink);
  padding: 0;
}
.faq-list details > summary {
  cursor: pointer; padding: 22px 0;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(16px, 1.8vw, 21px);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list details > summary::-webkit-details-marker { display: none; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink); transition: transform 200ms, color 200ms; }
.faq-list details[open] > summary { color: var(--primary); }
.faq-list details[open] > summary .faq-chevron { transform: rotate(45deg); color: var(--primary); }

.faq-body {
  padding: 0 0 24px;
  font-size: 16px; line-height: 1.7; color: var(--muted);
  max-width: 72ch;
}

/* ============================================================
   TEAM CTA SECTION
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: 0; overflow: hidden;
}
.team-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
  min-height: 480px;
}
.team-cta-text {
  padding: clamp(48px, 7vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--primary);
}
.team-cta-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7); margin-bottom: 16px;
}
.team-cta-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  margin-bottom: 16px;
}
.team-cta-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  margin-bottom: 16px;
}
.team-cta-body { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.8); margin-bottom: 28px; }

.team-cta-photo {
  position: relative; overflow: hidden;
  min-height: 400px;
}
.team-cta-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(30%);
  max-height: none;
}
.team-cta-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(148,172,68,0.2) 0%, transparent 50%);
}

@media (max-width: 900px) {
  .team-cta-inner { grid-template-columns: 1fr; }
  .team-cta-photo { min-height: 300px; order: -1; }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.contact .container > h2,
.contact-section h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 32px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.contact-form-col {}
.contact-form-header { margin-bottom: 28px; }
.contact-form-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary);
  margin-bottom: 8px;
}
.contact-form-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 8px;
}
.contact-form-note { font-size: 14px; color: var(--muted); }

.contact-info-col {}
.contact-info-card {
  padding: 32px;
  border: 1px solid var(--ink);
  background: var(--canvas);
}
.contact-info-card h3,
.info-card-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: 18px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 24px;
}
.contact-info-block { }
.contact-info-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: 22px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 24px;
}

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

/* Info rows */
.info-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.info-row:last-child { border-bottom: none; }
.info-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 4px;
}
.info-value { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.info-value a { color: var(--ink); font-weight: 600; }
.info-value a:hover { color: var(--primary); }

/* Info items (contact.html) */
.info-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-item:last-child { border-bottom: none; }
.info-item-label {
  display: block; font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  margin-bottom: 6px;
}
.info-item-value { font-size: 15px; font-weight: 500; color: var(--ink); line-height: 1.5; }
.info-item-value a { color: var(--ink); font-weight: 600; }
.info-item-value a:hover { color: var(--primary); }
.info-block { padding: 0; }
.info-email-link, .info-phone { color: var(--ink); font-weight: 600; }
.info-email-link:hover, .info-phone:hover { color: var(--primary); }
.info-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-top: 4px; }
.hours-day, .hours-time { font-size: 13px; line-height: 1.5; }
.hours-day { color: var(--muted); }
.hours-time { font-weight: 600; }
.info-areas { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.area-chip, .service-areas-list span {
  display: inline-block; padding: 5px 10px;
  border: 2px solid var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
}
.service-areas-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  position: relative; margin-bottom: 18px;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-field {
  position: relative; margin-bottom: 16px;
}
.form-group label, .form-field label {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select,
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--ink);
  border-radius: 0; background: var(--canvas); color: var(--ink);
  font-size: 15px; font-weight: 500;
  outline: none; transition: border-color 150ms;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus,
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(148,172,68,0.12);
}
.form-group textarea, .form-field textarea { resize: vertical; min-height: 120px; }

.form-submit, button[type="submit"] {
  width: 100%; padding: 18px 32px;
  background: var(--primary); color: var(--canvas);
  border: 2px solid var(--primary); border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  cursor: pointer; transition: filter 150ms;
  margin-top: 8px;
}
.form-submit:hover, button[type="submit"]:hover { filter: brightness(0.9); }
.form-disclaimer { font-size: 12px; color: var(--muted); margin-top: 10px; line-height: 1.5; }

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

/* ============================================================
   CTA BANNER (services.html, about.html, gallery.html)
   ============================================================ */
.cta-banner, .cta-banner-section {
  background: var(--ink);
  padding: clamp(64px, 8vw, 96px) 0;
  position: relative; overflow: hidden;
}
.cta-banner-section { background: var(--primary); }
.cta-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.2; z-index: 0; max-height: none;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(12,12,15,0.94) 0%, rgba(82,111,36,0.8) 100%);
  z-index: 1;
}
.cta-banner-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.cta-banner-text {}
.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary); margin-bottom: 14px; display: block;
}
.cta-banner-section .cta-banner-eyebrow { color: rgba(255,255,255,0.7); }
.cta-banner-heading, .cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  margin-bottom: 16px;
}
.cta-banner-sub { font-size: 16px; color: rgba(255,255,255,0.72); line-height: 1.65; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-banner-form form { display: flex; flex-direction: column; gap: 12px; }
.cta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary);
  margin-bottom: 8px; display: block;
}
.cta-banner-section .cta-label { color: rgba(255,255,255,0.75); }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative; overflow: hidden;
  min-height: 40vh; max-height: 64vh;
  display: flex; align-items: flex-end;
  background: var(--ink);
}
.page-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%; z-index: 0; max-height: none;
}
.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(12,12,15,0.85) 0%, rgba(12,12,15,0.4) 60%, transparent 100%);
}
.page-header-inner {
  position: relative; z-index: 2;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 5vw, 64px);
  max-width: 1360px; width: 100%; margin-inline: auto;
}
.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary);
  margin-bottom: 12px; display: block;
}
.page-header-inner h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  max-width: 18ch; margin-bottom: 16px;
}
.page-header-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 96px);
  line-height: 0.95; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  max-width: 18ch; margin-bottom: 16px;
}
.page-header-sub {
  font-size: 16px; color: rgba(255,255,255,0.72);
  max-width: 52ch; line-height: 1.6;
}

/* ============================================================
   ABOUT STORY SECTION
   ============================================================ */
.about-story {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}
.about-story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.about-story-portrait {
  position: relative; border: 1px solid var(--ink); overflow: hidden;
}
.about-story-portrait > img {
  width: 100%; object-fit: cover; aspect-ratio: 3/4;
  filter: grayscale(20%); max-height: none;
  display: block;
}
.about-story-text {}
.about-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--primary);
  margin-bottom: 16px; display: block;
}
.about-story-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 24px;
}
.about-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 24px;
}
.about-body { margin-bottom: 28px; }
.about-body p { font-size: 16px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }
.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3.4em; font-weight: 900;
  float: left; line-height: 0.75; margin-right: 8px; margin-top: 6px;
  color: var(--primary); text-transform: uppercase;
}
.about-service-areas { margin-top: 24px; }
.about-areas-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
  margin-bottom: 10px;
}
.about-areas-list { display: flex; flex-wrap: wrap; gap: 6px; padding: 0; list-style: none; }
.about-areas-list li {
  display: inline-block; padding: 5px 10px;
  border: 2px solid var(--ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink);
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-portrait { max-height: 420px; overflow: hidden; }
  .about-story-portrait > img { aspect-ratio: 4/3; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}
.values-inner {
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.values-inner h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
  margin-bottom: 48px; max-width: 20ch;
}
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.value-card {
  padding: 32px; background: var(--canvas);
  border: 1px solid var(--ink); border-radius: 0;
  position: relative;
}
.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: 18px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 12px; margin-top: 16px;
}
.value-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900; font-size: 18px;
  text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.value-index {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 6vw, 72px); font-weight: 900;
  color: var(--primary); opacity: 0.25;
  line-height: 1; margin-bottom: 8px;
}
.value-body { font-size: 15px; line-height: 1.65; color: var(--muted); }

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

/* ============================================================
   COMPANY OVERVIEW (about.html)
   ============================================================ */
.company-overview {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}
.company-overview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}
.company-overview-text {}
.company-overview-text h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--canvas);
  margin-bottom: 20px;
}
.company-overview-text p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
.company-overview-text .section-eyebrow { color: var(--primary); }
.overview-contact { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.overview-phone { color: var(--canvas); font-weight: 600; }
.company-overview-credentials {}
.credentials-block { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.credentials-block:last-child { border-bottom: none; }
.credentials-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45); margin-bottom: 6px;
}
.credentials-block > p { font-size: 15px; color: rgba(255,255,255,0.85); font-weight: 500; }
.credentials-block a { color: var(--primary); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: clamp(64px, 8vh, 96px) 0 0;
}
footer { background: var(--ink); padding: clamp(64px, 8vh, 96px) 0 0; }
.footer-inner, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1360px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
  padding-bottom: 48px;
}
.footer-brand { }
.footer-brand-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 15px; font-weight: 900;
  text-transform: uppercase; color: var(--canvas);
  margin-bottom: 8px; margin-top: 10px;
}
.footer-brand-tagline, .footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.5;
  margin-bottom: 8px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-col { }
.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4); margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-col ul a {
  font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none;
  transition: color 150ms;
}
.footer-links a:hover, .footer-col ul a:hover { color: var(--primary); text-decoration: none; }
.footer-phone { color: rgba(255,255,255,0.65); font-size: 14px; }
.footer-phone-link, .footer-email-link { color: rgba(255,255,255,0.65); }
.footer-phone-link:hover, .footer-email-link:hover { color: var(--primary); }
.footer-address { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; font-style: normal; }
.footer-col address { font-style: normal; font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; }
.footer-col address a { color: rgba(255,255,255,0.65); }
.footer-col address a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px clamp(20px, 5vw, 64px);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  max-width: 1360px; margin-inline: auto;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; list-style: none; padding: 0; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   MOBILE CALL PILL / STICKY CTA
   ============================================================ */
.mobile-call-pill, .mobile-call, .mobile-cta, .mobile-sticky-cta {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: var(--canvas);
  padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
}
.mobile-call-pill:hover, .mobile-call:hover, .mobile-cta:hover, .mobile-sticky-cta:hover {
  filter: brightness(0.9); transform: translateY(-2px); text-decoration: none; color: var(--canvas);
}
.mobile-call-pill svg, .mobile-call svg, .mobile-cta svg, .mobile-sticky-cta svg,
.mobile-sticky-cta a svg {
  width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-sticky-cta a {
  display: flex; align-items: center; gap: 10px;
  color: var(--canvas); text-decoration: none;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-left { opacity: 0; transform: translateX(-28px); transition: opacity 600ms ease, transform 600ms ease; }
.fade-right { opacity: 0; transform: translateX(28px); transition: opacity 600ms ease, transform 600ms ease; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 600ms ease, transform 600ms ease; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 550ms ease, transform 550ms ease; }
.stagger > *.visible { opacity: 1; transform: none; }

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

/* ============================================================
   SECTION RHYTHM
   ============================================================ */
section { padding: clamp(72px, 9vh, 112px) 0; }
section h2:not(.gallery-heading):not(.cta-banner-heading) {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--ink);
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.cta-phone, .cta-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(20px, 3vw, 36px); font-weight: 900;
  color: var(--canvas); letter-spacing: -0.01em;
}
.cta-phone a, .cta-phone-big a { color: inherit; text-decoration: none; }

.team-cta .btn-outline {
  border-color: var(--canvas); color: var(--canvas);
}
.team-cta .btn-outline:hover { background: var(--canvas); color: var(--primary); }

/* Scroll bar */
.scroll-bar, .scroll-progress, #scrollBar, #scrollProgress, #scroll-progress {
  height: 3px; background: var(--primary);
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.gallery-tile-main { grid-column: 1 / -1; }
.gallery-tile-tall { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.team-cta-photo { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.tall { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.info-hours-row { 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; }
