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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:       #E48950;
  --primary-dark:  #C9703A;
  --accent:        #CEB987;
  --canvas:        #F7F6F2;
  --surface:       #FFFFFF;
  --ink:           #14181D;
  --ink-mid:       #2E3440;
  --muted:         #5C6068;
  --border:        rgba(228, 137, 80, 0.22);
  --border-subtle: rgba(20, 24, 29, 0.10);
  --header-height: 72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   GLOBAL RESETS
   ============================================================ */
*, *::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: 400;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.7;
  -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;
}
h1 a:hover, h2 a:hover, h3 a:hover {
  text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px;
}

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

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

p { line-height: 1.7; }

/* ============================================================
   EYEBROW / LABEL SYSTEM
   ============================================================ */
.eyebrow,
.section-eyebrow,
.hero-eyebrow,
.service-eyebrow,
.page-header-eyebrow,
.contact-form-eyebrow,
.info-col-eyebrow,
.cta-banner-eyebrow,
.gallery-eyebrow,
.about-eyebrow,
.contact-form-title,
.contact-info-title,
.footer-col-title,
.footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container, .section-inner, .footer-inner, .footer-grid, .contact-grid,
.about-story-inner, .about-structured-inner, .values-inner,
.timeline-inner, .gallery-container, .trust-strip-inner,
.services-nav-inner, .cta-banner-inner {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.wide-container { max-width: 1400px; margin: auto; }

.section-pad {
  padding-top: clamp(80px, 10vh, 128px);
  padding-bottom: clamp(80px, 10vh, 128px);
}

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

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

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

.nav-logo { flex: 0 0 auto; display: flex; align-items: center; text-decoration: none; }
.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-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
  font-family: 'IBM Plex Sans', sans-serif;
}
.nav-cta:hover { filter: brightness(0.92); color: #fff; text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-cta span { display: none; }
  .nav-pages {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--canvas);
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-pages a { font-size: 17px; padding: 10px 0; width: 100%; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-primary, .btn-outline, .btn-outline-white, .btn-submit, .btn-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  text-decoration: none;
  transition: filter 200ms, transform 150ms, box-shadow 200ms;
  border: 2px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary, .btn-form-submit, .btn-submit {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover, .btn-form-submit:hover, .btn-submit:hover {
  filter: brightness(0.92);
  color: #fff; text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  color: #fff; text-decoration: none;
  border-color: #fff;
}

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

/* SVGs inside buttons */
.btn svg, .btn-primary svg, .btn-outline svg, .btn-submit svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

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

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

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

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

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

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: auto;
  width: 100%;
  padding: clamp(80px, 12vh, 120px) clamp(20px, 4vw, 56px) clamp(64px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

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

.hero-title, .hero-inner h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 16ch;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

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

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

.hero-trust-chips .trust-chip {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(228,137,80,0.5);
  color: rgba(255,255,255,0.9);
}

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

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   TRUST CHIPS (universal)
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.trust-chip-star { color: var(--primary); font-size: 13px; }

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 1px solid var(--primary);
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.trust-item span { color: var(--primary); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--ink);
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-height: 64px;
  position: relative;
  z-index: 1;
}

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

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

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

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: rgba(255,255,255,0.65);
}

.marquee-item strong { color: #fff; }

.marquee-sep {
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

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

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

.services-header h2 { color: var(--ink); }

.services-link-all {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms;
}
.services-link-all:hover { color: var(--primary-dark); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

.bento-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  min-height: 280px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28);
  text-decoration: none;
}

.bento-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  max-height: none;
  transition: transform 400ms ease-out;
}

.bento-card:hover > img { transform: scale(1.04); }

.bento-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.85) 0%, rgba(20,24,29,0.2) 60%, transparent 100%);
  z-index: 1;
}

.bento-card.flagship {
  grid-column: 1 / 3;
  grid-row: 1;
  min-height: 380px;
}

.bento-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 1; grid-row: 2; }
.bento-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.bento-card:nth-child(5) { grid-column: 3; grid-row: 2; }
.bento-card:nth-child(6) { grid-column: 1 / 4; grid-row: 3; min-height: 220px; }

.bento-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 24px;
}

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

.bento-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.bento-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bento-learn {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-arrow { font-size: 14px; transition: transform 200ms; }
.bento-card:hover .bento-arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.flagship { grid-column: 1 / 3; grid-row: 1; }
  .bento-card:nth-child(2) { grid-column: 1; grid-row: 2; }
  .bento-card:nth-child(3) { grid-column: 2; grid-row: 2; }
  .bento-card:nth-child(4) { grid-column: 1; grid-row: 3; }
  .bento-card:nth-child(5) { grid-column: 2; grid-row: 3; }
  .bento-card:nth-child(6) { grid-column: 1 / 3; grid-row: 4; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.flagship,
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6) {
    grid-column: 1; grid-row: auto;
  }
}

/* ============================================================
   GALLERY PREVIEW (index page)
   ============================================================ */
.gallery-preview {
  background: var(--surface);
}

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

.gallery-feature {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  height: clamp(300px, 45vw, 540px);
  text-decoration: none;
}

.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 500ms ease-out;
}

.gallery-feature:hover > img { transform: scale(1.03); }

.gallery-feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,24,29,0.6) 0%, transparent 60%);
  z-index: 1;
}

.gallery-feature-cta {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
}

.gallery-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-cta-badge svg { width: 16px; height: 16px; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { padding: clamp(60px, 8vh, 96px) 0; background: var(--canvas); }

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

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

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

.filter-btn {
  padding: 7px 16px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}

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

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

.gallery-card {
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.18);
}

.gallery-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  transition: transform 400ms ease-out;
}

.gallery-card:hover .gallery-card-img img { transform: scale(1.04); }

.gallery-card-featured { grid-column: 1 / 3; }

.gallery-tag {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  background: var(--ink);
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  z-index: 2;
}

.gallery-card-body {
  padding: 16px 20px;
}

.gallery-card h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--ink);
}

.gallery-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.gallery-card-location svg { width: 12px; height: 12px; flex-shrink: 0; }

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

.gallery-empty {
  display: none;
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
}

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

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

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

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

.faq-list .section-eyebrow { margin-bottom: 24px; }

.faq-list h2 { margin-bottom: 40px; }

details.fade-up {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
}

details.fade-up > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

details.fade-up > summary::-webkit-details-marker { display: none; }

.faq-q {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 200ms, background 200ms, color 200ms, border-color 200ms;
  line-height: 1;
}

details[open] .faq-chevron {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.faq-a {
  padding: 0 0 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  max-width: 72ch;
}

.faq-a a { color: var(--primary); }

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta {
  background: var(--ink);
  padding: clamp(56px, 8vh, 96px) 0;
  overflow: hidden;
}

.team-cta-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto 280px;
  align-items: center;
  gap: 40px;
}

.team-cta-text { grid-column: 1; }

.team-cta-text .eyebrow { color: var(--primary); margin-bottom: 12px; }

.team-cta-text h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: #fff;
  line-height: 1.1;
}

.team-cta .bento-learn {
  grid-column: 2;
  align-self: center;
  padding: 14px 28px;
  background: var(--primary);
  border-radius: 4px;
  color: #fff;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}

.team-cta .bento-learn:hover { filter: brightness(0.92); text-decoration: none; }
.team-cta .bento-arrow { font-size: 16px; }

.team-cta-photo {
  grid-column: 3;
  border-radius: 4px;
  overflow: hidden;
  height: 200px;
}

.team-cta-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(30%);
}

@media (max-width: 900px) {
  .team-cta-inner {
    grid-template-columns: 1fr;
  }
  .team-cta-text, .team-cta .bento-learn, .team-cta-photo {
    grid-column: 1;
  }
  .team-cta-photo { height: 240px; width: 100%; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--canvas); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.contact-form-wrap, .contact-form-col { grid-column: 1; }
.contact-info, .contact-info-col { grid-column: 2; }

.contact-form-title { margin-bottom: 24px; }

.contact-info-title { margin-bottom: 28px; }

.info-block {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.info-block:last-of-type { border-bottom: none; }

.info-block-label, .info-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-block-value, .info-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5;
}

.info-block-value a, .info-value a, .info-phone-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.info-block-value a:hover, .info-value a:hover { text-decoration: underline; }

.contact-socials, .social-links {
  display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap;
}

.social-chip, .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  color: var(--ink);
  transition: background 150ms, color 150ms, border-color 150ms;
  text-decoration: none;
}

.social-chip:hover, .social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  text-decoration: none;
}

.social-chip svg, .social-link svg { width: 18px; height: 18px; }

.service-area-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }

.area-pill {
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--canvas);
  border: 1px solid var(--border-subtle);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-form-col,
  .contact-info, .contact-info-col { grid-column: 1; }
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group, .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

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

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

input, textarea, select {
  padding: 12px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  background: var(--surface);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 150ms;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(228,137,80,0.12);
}

textarea { resize: vertical; min-height: 120px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(200px, 30vh, 360px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
}

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

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

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

.page-header-title, .page-header h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  max-width: 18ch;
}

.page-header-sub {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 10px;
  max-width: 56ch;
}

.breadcrumb, .page-header-breadcrumb {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a, .page-header-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover, .page-header-breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb-sep, .sep { color: var(--primary); margin: 0 2px; }
.breadcrumb-current { color: rgba(255,255,255,0.9); }

/* ============================================================
   SERVICES PAGE — NAV STRIP
   ============================================================ */
.services-nav-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.services-nav-strip::-webkit-scrollbar { display: none; }

.services-nav-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding: 0;
}

.services-nav-link {
  display: inline-block;
  padding: 14px 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
  white-space: nowrap;
}

.services-nav-link:hover { color: var(--primary); border-bottom-color: var(--primary); text-decoration: none; }

/* ============================================================
   SERVICE FEATURE (services page)
   ============================================================ */
.service-feature {
  padding: clamp(64px, 9vh, 112px) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--canvas);
}

.service-feature:nth-child(even) { background: var(--surface); }

.service-feature-inner {
  max-width: 1320px;
  margin: auto;
  padding: 0 clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.service-feature-inner.photo-right .service-feature-photo { order: 2; }
.service-feature-inner.photo-right .service-feature-body { order: 1; }

.service-feature-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-feature-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none;
  filter: grayscale(15%);
  transition: transform 500ms ease-out;
}

.service-feature:hover .service-feature-photo > img { transform: scale(1.03); }

.service-feature-photo-accent {
  position: absolute;
  top: -4px; left: -4px;
  right: 24px; bottom: 24px;
  border: 2px solid var(--primary);
  border-radius: 4px;
  z-index: 0;
  pointer-events: none;
}

.service-feature-body { }

.service-eyebrow { margin-bottom: 16px; }

.service-feature-body h2 { margin-bottom: 16px; }

.service-feature-body p { color: var(--ink-mid); margin-bottom: 12px; line-height: 1.7; }

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.5;
}

.service-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  margin-top: 7px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-feature-inner.photo-right .service-feature-photo,
  .service-feature-inner.photo-right .service-feature-body {
    order: unset;
  }
}

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

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px;
  align-items: start;
}

.cta-banner-text { grid-column: 1; }

.cta-banner-eyebrow,
.cta-text-eyebrow { color: var(--primary); margin-bottom: 16px; }

.cta-banner h2, .cta-banner-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-banner-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.cta-banner-phone, .cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px;
}

.cta-contact-row a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}
.cta-contact-row a:hover { color: var(--primary); text-decoration: underline; }

.cta-form, .cta-form-card {
  grid-column: 2;
  background: var(--surface);
  padding: 32px;
  border-radius: 4px;
  border-top: 3px solid var(--primary);
}

.cta-form-title, .contact-form-heading {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

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

/* ============================================================
   ABOUT PAGE — STORY
   ============================================================ */
.about-story {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}

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

.about-story-portrait-col { grid-column: 1; }

.about-story-portrait-col img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  max-height: 460px;
  filter: grayscale(20%);
}

.about-story-portrait-caption {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.about-story-content { grid-column: 2; }

.about-eyebrow { margin-bottom: 16px; }

.about-headline {
  font-size: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  max-width: 16ch;
}

.about-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 68ch;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

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

/* ============================================================
   ABOUT — STRUCTURED (credentials / extra info)
   ============================================================ */
.about-structured {
  padding: clamp(64px, 8vh, 96px) 0;
  background: var(--surface);
}

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

.about-structured-left { grid-column: 1; }
.about-structured-left h2 { font-size: clamp(28px, 3.5vw, 48px); margin-top: 12px; }

.about-structured-right { grid-column: 2; }

.about-structured-para {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 64ch;
}

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

@media (max-width: 900px) {
  .about-structured-inner { grid-template-columns: 1fr; }
  .about-structured-left, .about-structured-right { grid-column: 1; }
}

/* ============================================================
   VALUES SECTION
   ============================================================ */
.values-section {
  padding: clamp(64px, 8vh, 96px) 0;
  background: var(--canvas);
}

.values-inner { }

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

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

.value-card {
  padding: 28px;
  background: var(--surface);
  border-radius: 4px;
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12);
}

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

.value-card h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.value-card-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

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

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-section {
  padding: clamp(64px, 8vh, 96px) 0;
  background: var(--surface);
}

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

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  opacity: 0.25;
  z-index: 0;
}

.timeline-step {
  position: relative;
  padding: 48px 24px 24px;
}

.timeline-dot {
  position: absolute;
  top: 8px; left: 24px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 1;
}

.timeline-step h3 {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding: 80px 0;
  text-align: center;
}

.stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   REVIEW CARDS
   ============================================================ */
.review-card {
  padding: 28px;
  border-radius: 4px;
  background: var(--surface);
  border-top: 3px solid var(--primary);
}

.review-stars svg { color: var(--primary); width: 18px; height: 18px; }

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  margin: 14px 0;
  color: var(--ink);
}

.review-attribution {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(56px, 7vh, 80px);
}

.footer-inner, .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand, .footer-brand-col {
  grid-column: 1;
}

.footer-logo img, .footer-brand img {
  max-height: 40px !important;
  max-width: 180px !important;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}

.footer-tagline, .footer-brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 32ch;
  margin-bottom: 16px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 32ch;
  margin-top: 8px;
}

.footer-brand-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.footer-brand-tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-contact a, .footer-contact-line a, .footer-contact-item a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}

.footer-contact a:hover, .footer-contact-line a:hover, .footer-contact-item a:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact-line, .footer-contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  list-style: none;
}

.footer-col { }

.footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  display: block;
}

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

.footer-col a, .footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 150ms;
}

.footer-col a:hover, .footer-links a:hover { color: var(--primary); text-decoration: none; }

.footer-phone-big {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.footer-copy, .footer-creds {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .footer-inner, .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-brand-col { grid-column: 1 / 3; }
}

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

/* ============================================================
   MOBILE CTA PILL
   ============================================================ */
.mobile-cta-pill, .mobile-sticky-cta, .mobile-cta {
  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 Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  transition: filter 150ms, transform 150ms;
}

.mobile-cta-pill:hover, .mobile-sticky-cta:hover, .mobile-cta:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

.mobile-cta-pill svg, .mobile-sticky-cta svg, .mobile-cta svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

.mobile-cta-pill a, .mobile-sticky-cta a {
  color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px;
}

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

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

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

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

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

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

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

.stagger.visible > * { opacity: 1; transform: none; }

.stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 400ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 480ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   SVG CAP (inline orphan icons)
   ============================================================ */
svg { display: block; }
.bento-card svg,
.gallery-cta-badge svg,
.gallery-card-location svg,
.social-chip svg, .social-link svg,
.contact-socials svg,
.btn svg, .btn-primary svg, .btn-outline svg, .btn-submit svg,
.mobile-cta-pill svg, .mobile-sticky-cta svg, .mobile-cta svg,
.faq-chevron svg,
.footer-contact svg {
  width: 18px; height: 18px; flex-shrink: 0;
}

/* ============================================================
   SECTION HEADLINE PAIRS
   ============================================================ */
.section-headline, .section-title { margin-bottom: 40px; }

/* ============================================================
   MISCELLANEOUS
   ============================================================ */
.sep { color: var(--primary); margin: 0 6px; }

/* Readable table cells */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #fff;
}

/* No mirror flip */
.flip { direction: rtl; }
.flip > * { direction: ltr; }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.form-group { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
/* validator patch: hero must never crop its headline */
#hero, .hero { overflow: visible !important; }
:where(#hero, .hero) { padding-top: max(var(--header-height, 72px), 72px); }
/* validator patch: keep the hero photo visible, no smothering dark band */
.hero-overlay { background: linear-gradient(to top, rgba(0,0,0,0.66), rgba(0,0,0,0.34) 38%, rgba(0,0,0,0.12) 68%, rgba(0,0,0,0) 100%), linear-gradient(to right, rgba(0,0,0,0.30), rgba(0,0,0,0) 58%) !important; }
