@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');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #6e5134;
  --primary-dark:   #54391f;
  --primary-light:  #8a6a47;
  --accent:         #5A5A5A;
  --canvas:         #FFFFFF;
  --surface:        #F2F0EB;
  --ink:            #0C0C0F;
  --muted:          #5A5852;
  --extra2:         #5A5852;
  --border:         rgba(12,12,15,0.14);
  --border-ink:     #0C0C0F;
  --header-height:  72px;
}

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

/* ============================================================
   RESET + GLOBAL
   ============================================================ */
*, *::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: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 500;
  background: var(--canvas);
  color: var(--ink);
  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 30%;
  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 30%; z-index: 0;
}

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

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

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

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit; text-decoration: none; border-bottom: 0;
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

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

p { line-height: 1.68; }

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

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container { max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

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

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

.top-nav {
  height: var(--header-height);
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { flex: 0 0 auto; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

.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: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  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"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--canvas);
    padding: 24px clamp(20px, 4vw, 48px);
    gap: 8px;
    border-bottom: 1px solid rgba(12,12,15,0.10);
    z-index: 800;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 14px; padding: 10px 0; }
  .nav-cta .nav-cta-label { display: none; }
  .nav-cta { padding: 10px 14px; }
}

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

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { filter: brightness(0.88); color: #fff; text-decoration: none; }

.btn-primary-dark {
  background: var(--ink);
  color: #fff;
}
.btn-primary-dark:hover { background: var(--primary); color: #fff; text-decoration: none; }

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

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 18px 32px; border-radius: 0;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.btn-outline-white:hover { background: #fff; color: var(--ink); text-decoration: none; }

.btn-white {
  background: #fff;
  color: var(--ink);
}
.btn-white:hover { background: var(--surface); color: var(--ink); text-decoration: none; }

.btn-phone {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms;
}
.btn-service:hover { color: var(--ink); text-decoration: none; }

.btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 18px 40px; border-radius: 0; border: none;
  cursor: pointer; transition: filter 150ms;
}
.btn-submit:hover { filter: brightness(0.88); }

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scale-in { opacity: 0; transform: scale(0.94); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }

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

/* ============================================================
   HERO
   ============================================================ */
#hero.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero > img:first-of-type,
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 25%;
  z-index: 0;
  filter: grayscale(20%) contrast(1.05);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(12,12,15,0.82) 0%,
    rgba(110,81,52,0.55) 55%,
    rgba(12,12,15,0.28) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  width: 100%;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 56px) clamp(72px, 10vh, 120px);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  min-height: 92vh;
}

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

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

.hero-sub {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 54ch;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-ctas a:first-child {
  background: var(--primary); color: #fff;
  padding: 18px 36px; border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  transition: filter 150ms;
}
.hero-ctas a:first-child:hover { filter: brightness(0.88); text-decoration: none; }

.hero-ctas a:last-child {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 18px 36px; border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 150ms, border-color 150ms;
}
.hero-ctas a:last-child:hover { background: rgba(255,255,255,0.12); border-color: #fff; text-decoration: none; }

.hero-trust-chips {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0;
  border: 1px solid rgba(255,255,255,0.28);
}
.hero-trust-chips .trust-chip {
  display: flex; align-items: center;
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.88);
  border-right: 1px solid rgba(255,255,255,0.28);
  gap: 8px;
}
.hero-trust-chips .trust-chip:last-child { border-right: none; }
.hero-trust-chips .trust-chip-dot {
  width: 6px; height: 6px;
  background: var(--primary-light); border-radius: 50%;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .hero-trust-chips { flex-direction: column; }
  .hero-trust-chips .trust-chip { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.20); }
  .hero-trust-chips .trust-chip:last-child { border-bottom: none; }
}

/* ============================================================
   CLAIM BAND (unique move — type-band between hero + services)
   ============================================================ */
.claim-band {
  background: var(--primary);
  padding: clamp(48px, 7vh, 96px) 0;
  overflow: hidden;
}

.claim-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.claim-band-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 120px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
}

.claim-band-text em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   BRAND BAND (about page + services page)
   ============================================================ */
.brand-band {
  background: var(--primary);
  padding: clamp(48px, 6vh, 80px) clamp(20px, 4vw, 56px);
}

.brand-band-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.brand-band-claim {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 20ch;
}

.brand-band-chips {
  display: flex; flex-wrap: wrap; gap: 12px;
}

.brand-band-chip, .band-chip {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.50);
  padding: 8px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.88);
}

.brand-band-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--primary);
  padding: 16px 32px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 150ms, color 150ms;
}
.brand-band-cta:hover { background: var(--ink); color: #fff; text-decoration: none; }
.brand-band-cta svg { width: 18px; height: 18px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
  background: var(--surface);
}

.trust-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.trust-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px;
  border-right: 1px solid var(--border-ink);
}
.trust-item:last-child { border-right: none; }

.trust-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: 6px;
}

.trust-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* trust chips variant (about page) */
.trust-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border: 2px solid var(--border-ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.trust-chip-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  flex: 0 0 auto;
}
.trust-chip-sq {
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 16px 20px;
  border: 2px solid var(--border-ink);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}
.trust-chip-sq strong { font-weight: 700; font-size: 13px; margin-top: 4px; }

.contact-trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-ink);
  border-bottom: 1px solid var(--border-ink);
}
.contact-trust-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: flex; flex-wrap: wrap;
  gap: 0;
}
.contact-trust-inner .trust-chip-sq {
  flex: 1 1 160px;
  border-right: 1px solid var(--border-ink);
  border-bottom: none;
}
.contact-trust-inner .trust-chip-sq:last-child { border-right: none; }

@media (max-width: 640px) {
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .trust-item { border-bottom: 1px solid var(--border-ink); }
  .trust-item:nth-child(even) { border-right: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.services-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.services-inner > h2 {
  margin-bottom: 48px;
}

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

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border-ink);
}

/* flagship takes 2 columns */
.service-flagship {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--canvas);
  text-decoration: none;
  transition: opacity 180ms;
}
.service-flagship:hover { opacity: 0.9; text-decoration: none; }

.service-flagship > img {
  width: 100%; height: 380px;
  object-fit: cover;
  display: block;
}

.service-flagship-img { width: 100%; height: 380px; object-fit: cover; }

.service-flagship-body {
  padding: 36px 32px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-flagship-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.service-flagship-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-flagship-body .service-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.service-flagship-body a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 14px 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  width: fit-content;
  transition: filter 150ms;
}
.service-flagship-body a:hover { filter: brightness(0.88); text-decoration: none; }

/* service cards in bento */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  overflow: hidden;
  text-decoration: none;
  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); text-decoration: none; }

.service-card > img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 300ms;
}
.service-card:hover > img { filter: grayscale(0%); }

.service-card-body {
  padding: 20px 24px 24px;
  background: var(--surface);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.service-arrow {
  display: inline-flex;
  font-size: 20px;
  color: var(--primary);
  transition: transform 200ms;
}
.service-card:hover .service-arrow { transform: translateX(4px); }

.service-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
}

.services-cta-row {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-flagship { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .service-flagship > img { height: 240px; }
  .service-flagship-img { height: 240px; }
}

@media (max-width: 640px) {
  .services-bento { grid-template-columns: 1fr; }
  .service-flagship { grid-column: auto; }
}

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

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-surface {
  background: var(--surface);
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.service-block-photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}
.service-block-index {
  position: absolute; top: 24px; left: 24px; z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-block-body {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}

.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: 16px;
}

.service-block-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.96; letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-block-body p {
  font-size: 16px; color: var(--muted);
  line-height: 1.68; margin-bottom: 16px;
}

.service-bullets {
  list-style: none; padding: 0; margin: 16px 0 28px;
}
.service-bullets li {
  font-size: 15px; color: var(--ink); line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px; position: relative;
}
.service-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 18px;
  width: 8px; height: 2px;
  background: var(--primary);
}

.service-block-body a.btn-primary,
.service-block-body > a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 16px 32px; border-radius: 0;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; width: fit-content;
  transition: filter 150ms;
}
.service-block-body a.btn-primary:hover,
.service-block-body > a:hover { filter: brightness(0.88); text-decoration: none; }

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

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.gallery-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.gallery-inner > h2 { margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border-ink);
  margin-top: 32px;
}

.gallery-tile {
  display: block;
  overflow: hidden;
  background: var(--surface);
  aspect-ratio: 4 / 3;
}
.gallery-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  max-height: none;
}
.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile-tall {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-stat-tile {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 32px 28px;
  background: var(--ink);
}
.gallery-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900; line-height: 1;
  color: var(--primary-light);
  letter-spacing: -0.03em;
}
.gallery-stat-label {
  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.55);
  margin-top: 8px;
}

.gallery-text-tile {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
  background: var(--primary);
}
.gallery-text-tile p {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.gallery-text-tile a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  padding: 12px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 150ms;
}
.gallery-text-tile a:hover { background: var(--ink); color: #fff; text-decoration: none; }

.gallery-cta-row {
  margin-top: 40px;
  display: flex; align-items: center; gap: 16px;
}

/* Gallery Full Page */
.gallery-section { background: var(--canvas); padding: clamp(72px, 9vh, 112px) 0; }
.gallery-section-inner { max-width: 1360px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

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

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

.gallery-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
}

.gallery-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}

.gallery-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent; border: 2px solid var(--border-ink);
  padding: 10px 20px; cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
  transition: background 150ms, color 150ms;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--ink); color: #fff;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2px;
  background: var(--border-ink);
  margin-bottom: 2px;
}

.gallery-showcase-main {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.gallery-showcase-main > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
}

.gallery-showcase-side {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--border-ink);
}

.gallery-stat-card {
  flex: 1;
  background: var(--ink);
  padding: 32px 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.gallery-stat-card .gallery-stat-num {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900; line-height: 1;
  color: #fff; letter-spacing: -0.03em;
}
.gallery-stat-card .gallery-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--primary-light);
  margin-top: 4px;
}
.gallery-stat-desc {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.5; margin-top: 8px;
}

.gallery-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-ink);
}

.gallery-service-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
}
.gallery-service-tile > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease;
}
.gallery-service-tile:hover > img { transform: scale(1.05); }

.gallery-service-tile-body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(12,12,15,0.82) 0%, transparent 60%);
  z-index: 1;
}

.service-tile-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 4px;
}

.service-tile-cat {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.60);
  margin-bottom: 4px;
}

.service-tile-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -0.01em;
  color: #fff;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tile-tall { grid-row: auto; aspect-ratio: 4 / 3; }
  .gallery-showcase { grid-template-columns: 1fr; }
  .gallery-showcase-main { min-height: 320px; }
  .gallery-services-grid { grid-template-columns: 1fr 1fr; }
}

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

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.about-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

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

.about-text-col h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 28px;
}

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

.about-divider {
  width: 80px; height: 4px;
  background: var(--primary);
  margin: 32px 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-ink);
}

.about-value-card {
  background: var(--surface);
  padding: 20px;
}

.about-value-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 8px;
}

.about-value-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -0.01em;
  color: var(--ink);
}

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

.about-portrait {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  max-height: 640px;
}

.about-portrait-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(12,12,15,0.88) 0%, transparent 100%);
  padding: 32px 24px 24px;
}

.about-portrait-name {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff;
}

.about-portrait-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-photo-col { order: -1; }
  .about-portrait { aspect-ratio: 16 / 9; max-height: 400px; }
  .about-values { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CREDENTIALS
   ============================================================ */
.credentials {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.credentials-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

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

.credentials-headline {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 48px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-ink);
}

.cred-card {
  background: var(--canvas);
  padding: 32px;
  border-left: 4px solid transparent;
  transition: border-color 200ms;
}
.cred-card:hover { border-left-color: var(--primary); }

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

.cred-card-value {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.0; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 8px;
}

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

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

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.service-areas-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.service-areas-inner > h2 { margin-bottom: 40px; }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.area-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border-ink);
  padding: 12px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
  transition: background 150ms, color 150ms;
}
.area-chip:hover { background: var(--ink); color: #fff; }
.area-chip svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--primary); }

.area-pill {
  display: inline-flex; align-items: center;
  border: 2px solid var(--border-ink);
  padding: 10px 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--ink);
}

.area-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--surface);
  padding: clamp(72px, 9vh, 112px) 0;
}

.faq-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}

.faq-inner > h2 { margin-bottom: 48px; }

.faq-list { margin-top: 32px; }

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

.faq-item > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
  gap: 24px;
}
.faq-item > summary::-webkit-details-marker { display: none; }

.faq-chevron {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border-ink);
  transition: background 200ms;
}
.faq-chevron svg { width: 14px; height: 14px; transition: transform 200ms; }
.faq-item[open] .faq-chevron { background: var(--primary); border-color: var(--primary); }
.faq-item[open] .faq-chevron svg { transform: rotate(45deg); color: #fff; }

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

/* ============================================================
   TEAM CTA BANNER
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(72px, 9vh, 112px) 0;
}

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

.team-cta-text {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.96; letter-spacing: -0.02em;
  color: #fff;
}
.team-cta-text span { color: var(--primary-light); }

.team-cta-inner > a {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 18px 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; flex: 0 0 auto;
  transition: filter 150ms;
}
.team-cta-inner > a:hover { filter: brightness(0.88); text-decoration: none; }

/* ============================================================
   CTA BANNER (services + gallery pages)
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: clamp(72px, 9vh, 112px) clamp(20px, 4vw, 56px);
}

.cta-banner-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.cta-banner-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.65);
  margin-bottom: 16px;
}

.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 24px;
}

.cta-banner-sub {
  font-size: 17px; color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-bottom: 40px;
  max-width: 54ch;
}

.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; text-transform: uppercase;
  color: #fff; margin-bottom: 32px;
  text-decoration: none;
}

.cta-banner-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.contact-section {
  background: var(--canvas);
  padding: clamp(72px, 9vh, 112px) 0;
}

.contact-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.contact-form-col > h2,
.contact-col-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 32px;
}

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

.contact-col-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.68; margin-bottom: 32px;
}

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

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

.form-field label, .form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--muted);
}

.form-field input, .form-field textarea,
.form-group input, .form-group textarea,
.form-group select {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--ink);
  transition: border-color 150ms;
  outline: none;
  width: 100%;
}

.form-field input:focus, .form-field textarea:focus,
.form-group input:focus, .form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-field textarea, .form-group textarea {
  min-height: 140px; resize: vertical;
}

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

.form-group.full { grid-column: 1 / -1; }

.form-submit-row {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}

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

.form-submit {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff;
  padding: 18px 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  border: none; cursor: pointer; transition: filter 150ms;
}
.form-submit:hover { filter: brightness(0.88); }

.contact-info-col { display: flex; flex-direction: column; gap: 0; }
.info-col-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;
}
.info-col-heading {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 32px;
}

.contact-info-block { display: flex; flex-direction: column; }

.info-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-item-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: 6px;
}
.info-item-value {
  font-size: 16px; font-weight: 600; color: var(--ink); line-height: 1.5;
}
.info-item-value a { color: var(--ink); text-decoration: none; transition: color 150ms; }
.info-item-value a:hover { color: var(--primary); text-decoration: underline; }
.info-item-value-small {
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.info-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900; color: var(--primary);
  text-decoration: none; letter-spacing: -0.01em;
}
.info-service-areas { margin-top: 24px; }
.info-service-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: 12px;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative;
  overflow: hidden;
  min-height: 48vh;
  max-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0; max-height: none;
  filter: grayscale(15%) contrast(1.05);
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(12,12,15,0.78) 0%, rgba(12,12,15,0.40) 100%);
}

.page-header-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) clamp(20px, 4vw, 56px) clamp(40px, 5vh, 72px);
}

.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-light); margin-bottom: 16px;
}

.page-header-title, .page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
  color: #fff; max-width: 18ch;
}
.page-header-title span, .page-header h1 span { color: var(--primary-light); }

.page-header-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.75);
  line-height: 1.6; margin-top: 16px;
  max-width: 54ch;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  padding: clamp(56px, 8vh, 96px) 0 0;
}

.footer-inner, .footer-grid {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vh, 80px);
}

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

.footer-brand img { max-height: 44px !important; filter: brightness(10); }

.footer-brand-name, .footer-brand-desc {
  font-family: 'Archivo Black', sans-serif;
  font-size: 18px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff;
}

.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.6;
}

.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.50);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400; text-transform: none;
  letter-spacing: 0; line-height: 1.6;
}

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  transition: background 150ms, color 150ms;
}
.social-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); text-decoration: none; }
.social-link svg { width: 18px; height: 18px; }

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

.footer-col-heading, .footer-col-title, .footer-col-label {
  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.40);
  margin-bottom: 8px;
}

.footer-col h4 {
  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.40);
  margin-bottom: 8px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-col ul li a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 150ms;
}
.footer-links li a:hover, .footer-col ul li a:hover { color: #fff; text-decoration: none; }

.footer-col address {
  font-style: normal; font-size: 14px;
  color: rgba(255,255,255,0.65); line-height: 1.8;
}
.footer-col address a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-col address a:hover { color: #fff; text-decoration: none; }

.footer-phone {
  font-family: 'Archivo Black', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--primary-light); text-decoration: none;
}

.footer-contact-item { margin-bottom: 8px; }
.footer-contact-item a { font-size: 14px; color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-contact-line {
  display: flex; flex-direction: column; gap: 4px;
}
.footer-contact-line span { font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-line a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-contact-line a:hover { color: #fff; }

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

.footer-copy, .footer-certs, .footer-cert {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.30);
}

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

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill, .mobile-cta-pill, .mobile-cta, .mobile-sticky-cta > a {
  position: fixed;
  bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary);
  color: #fff;
  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-cta-pill:hover, .mobile-cta:hover,
.mobile-sticky-cta > a:hover {
  filter: brightness(0.88); transform: translateY(-2px);
  text-decoration: none; color: #fff;
}
.mobile-call-pill svg, .mobile-cta-pill svg, .mobile-cta svg,
.mobile-sticky-cta svg {
  width: 18px; height: 18px; flex: 0 0 auto;
}
.mobile-sticky-cta { position: fixed; bottom: 18px; right: 18px; z-index: 999; }

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

/* ============================================================
   SVG CAPS
   ============================================================ */
svg { width: 24px; height: 24px; }
.nav-toggle svg { width: 26px; height: 26px; }
.area-chip svg { width: 14px; height: 14px; }
.social-link svg { width: 18px; height: 18px; }
.faq-chevron svg { width: 14px; height: 14px; }
.service-arrow svg { width: 16px; height: 16px; }
.brand-band-cta svg { width: 18px; height: 18px; }
.btn-outline-white svg { width: 16px; height: 16px; }
.mobile-call-pill svg, .mobile-cta-pill svg, .mobile-cta svg { width: 18px; height: 18px; }

/* ============================================================
   RESPONSIVE — mobile-first queries
   ============================================================ */
@media (max-width: 900px) {
  .hero-trust-chips { display: flex; flex-wrap: wrap; }
  .services-bento { grid-template-columns: 1fr; background: transparent; gap: 2px; }
  .service-flagship { grid-column: auto; grid-template-columns: 1fr; }
  .brand-band-inner { flex-direction: column; }
  .team-cta-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-values { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION BASE PADDING
   ============================================================ */
.section { padding: clamp(72px, 9vh, 112px) 0; }
.full { width: 100%; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.service-flagship-body { grid-column: 1 / -1; }
.service-flagship-img { grid-column: 1 / -1; }
.service-num { grid-column: 1 / -1; }
.gallery-stat-tile { grid-column: 1 / -1; }
.gallery-text-tile { grid-column: 1 / -1; }
.gallery-tile { grid-column: 1 / -1; }
.contact-form-col { grid-column: 1 / -1; }
.footer-brand { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.service-block-photo { grid-column: 1 / -1; }
.gallery-showcase-main { grid-column: 1 / -1; }
.gallery-showcase-side { grid-column: 1 / -1; }
.gallery-service-tile { grid-column: 1 / -1; }
.trust-chip { grid-column: 1 / -1; }
.about-value-card { grid-column: 1 / -1; }
.cred-card { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-grid { grid-column: 1 / -1; }
.footer-bottom { 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; }
