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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #4d562e;
  --primary-dark:   #3a4022;
  --primary-light:  #6b7840;
  --accent:         #4d562e;
  --canvas:         #F7F6F2;
  --surface:        #FFFFFF;
  --ink:            #14181D;
  --ink-mid:        #2e3338;
  --muted:          #5C6068;
  --border:         rgba(77,86,46,0.22);
  --border-light:   rgba(20,24,29,0.10);
  --sand:           #eceae3;
  --sand-dark:      #dedad0;
  --header-height:  72px;
}
@media (max-width: 900px) {
  :root { --header-height: 60px; }
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); font-size: 16px; }
body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-weight: 450;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   UNIVERSAL IMAGE CAP — MANDATORY VERBATIM
   ============================================================ */
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-header, .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img, .page-header-bg,
.about-header > img:first-of-type, .about-hero-bg,
.page-header img:first-of-type, .about-header > img {
  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; }

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

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

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

p { line-height: 1.68; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.wide-container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section-inner  { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

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

/* ============================================================
   SITE HEADER / NAV
   ============================================================ */
.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: 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 !important; max-width: 200px !important; }

.nav-pages {
  flex: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0; margin: 0;
  gap: 28px;
  align-items: center;
}
.nav-pages li { list-style: none; }
.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 150ms, border-color 150ms;
}
.nav-pages a:hover { color: var(--primary); text-decoration: none; border-bottom-color: var(--primary); }
.nav-pages a[aria-current="page"] { color: var(--primary); border-bottom-color: var(--primary); }

.nav-cta {
  flex: 0 0 auto;
  background: var(--primary);
  color: #F7F6F2;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}
.nav-cta:hover { filter: brightness(0.92); color: #F7F6F2; text-decoration: none; }

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

@media (max-width: 900px) {
  .nav-pages {
    display: none;
    flex-direction: column;
    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(0,0,0,0.08);
    z-index: 800;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .nav-pages.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta span { display: none; }
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left  { opacity: 0; transform: translateX(-24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right { opacity: 0; transform: translateX(24px);  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; }

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

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.stagger.visible > *:nth-child(1)  { opacity: 1; transform: none; transition-delay: 0.00s; }
.stagger.visible > *:nth-child(2)  { opacity: 1; transform: none; transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3)  { opacity: 1; transform: none; transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4)  { opacity: 1; transform: none; transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5)  { opacity: 1; transform: none; transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6)  { opacity: 1; transform: none; transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7)  { opacity: 1; transform: none; transition-delay: 0.48s; }
.stagger.visible > *:nth-child(8)  { opacity: 1; transform: none; transition-delay: 0.56s; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 4px;
  border: none; cursor: pointer;
  transition: filter 160ms, transform 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: #F7F6F2;
}
.btn-primary:hover { filter: brightness(0.92); color: #F7F6F2; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #F7F6F2;
  border: 2px solid rgba(247,246,242,0.55);
}
.btn-outline:hover { border-color: #F7F6F2; color: #F7F6F2; }

.btn-dark {
  background: var(--ink);
  color: var(--canvas);
}
.btn-dark:hover { filter: brightness(1.15); color: var(--canvas); }

.btn-submit {
  background: var(--primary); color: #F7F6F2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 4px; border: none;
  cursor: pointer; width: 100%;
  transition: filter 160ms, transform 160ms;
}
.btn-submit:hover { filter: brightness(0.92); transform: translateY(-1px); }

.btn-banner-primary {
  background: #F7F6F2; color: var(--primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 4px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: filter 160ms;
}
.btn-banner-primary:hover { filter: brightness(0.95); color: var(--primary); text-decoration: none; }

.btn-banner-outline {
  background: transparent; color: #F7F6F2;
  border: 2px solid rgba(247,246,242,0.55);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 26px; border-radius: 4px;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 150ms;
}
.btn-banner-outline:hover { border-color: #F7F6F2; color: #F7F6F2; text-decoration: none; }

/* ============================================================
   SECTION EYEBROW / LEAD
   ============================================================ */
.section-eyebrow {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-lead {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}
.section-title {
  font-size: clamp(36px, 5vw, 72px);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0;
}

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

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(20,24,29,0.72) 0%,
    rgba(20,24,29,0.48) 60%,
    rgba(20,24,29,0.35) 100%
  );
}

.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: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(20px, 4vw, 48px) clamp(64px, 8vh, 100px);
  width: 100%;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.7);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #F7F6F2;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: rgba(247,246,242,0.88);
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(247,246,242,0.72);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.hero-ctas svg { width: 18px; height: 18px; flex: 0 0 auto; }

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

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

/* hero-inner trust chips override — white surface on dark photo */
.hero-trust-chips .trust-chip {
  background: rgba(247,246,242,0.10);
  border-color: rgba(247,246,242,0.28);
  color: rgba(247,246,242,0.88);
  backdrop-filter: blur(6px);
}

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

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

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

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

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

.marquee-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mid);
  line-height: 1.2;
  flex: 0 0 auto;
}

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

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

/* ============================================================
   SERVICES SECTION (index)
   ============================================================ */
.services {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 64px);
  flex-wrap: wrap;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 72px);
}
.services-header a { text-decoration: none; }

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

.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  background: var(--sand-dark);
}
.service-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
  max-height: none !important;
}
.service-card:hover > img { transform: scale(1.04); }

.service-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,24,29,0.82) 0%, rgba(20,24,29,0.1) 55%, transparent 100%);
  transition: opacity 250ms;
}
.service-card:hover .service-card-overlay { opacity: 0.9; }

.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.service-card-body h3 {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  color: #F7F6F2;
  line-height: 1.1;
  letter-spacing: -0.01em;
  order: 2;
}
.service-card-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.55);
  order: 1;
  margin-bottom: 4px;
}
.service-card-desc {
  font-size: 13px;
  color: rgba(247,246,242,0.7);
  line-height: 1.4;
  order: 3;
  margin-top: 2px;
}
.service-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.55);
  order: 4;
  margin-top: 8px;
  transition: color 150ms;
}
.service-card:hover .service-card-link { color: rgba(247,246,242,0.9); }

/* service-card hover from required patterns */
.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.28); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16 / 9; }
}

/* ============================================================
   GALLERY PREVIEW (index)
   ============================================================ */
.gallery-preview {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--surface);
}

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

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

.gallery-feature {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16 / 7;
  background: var(--sand-dark);
}
.gallery-feature > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 0.7s ease;
}
.gallery-feature:hover > img { transform: scale(1.03); }

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

.gallery-feature-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 36px 40px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.gallery-feature-body h3 {
  font-size: clamp(24px, 3vw, 40px);
  color: #F7F6F2;
}
.gallery-feature-body .section-eyebrow { color: rgba(247,246,242,0.65); margin-bottom: 8px; }
.gallery-feature-body .btn { flex: 0 0 auto; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}
.reviews .section-inner > div:first-child { margin-bottom: clamp(32px, 4vw, 56px); }
.reviews .section-inner > div:first-child h2 { font-size: clamp(36px, 5vw, 72px); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border-radius: 4px;
  padding: 28px;
  border-top: 3px solid var(--primary);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -16px rgba(0,0,0,0.12); }

.review-stars {
  display: flex; gap: 3px;
  margin-bottom: 14px;
}
.review-stars svg { width: 18px; height: 18px; color: var(--primary); flex: 0 0 18px; }

.review-quote {
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.review-attribution {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 13px;
  color: var(--muted);
}
.review-attribution strong { color: var(--ink); font-weight: 600; }

.review-source {
  display: flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-source svg { width: 16px; height: 16px; flex: 0 0 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--surface);
}
.faq .section-inner > div:first-child { margin-bottom: clamp(32px, 4vw, 48px); }
.faq .section-inner > div:first-child h2 { font-size: clamp(36px, 5vw, 72px); }

.faq-list { border-top: 1px solid var(--border-light); }

details {
  border-bottom: 1px solid var(--border-light);
}

details summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 24px;
  transition: color 150ms;
}
details summary:hover { color: var(--primary); }
details summary::-webkit-details-marker { display: none; }

.faq-chevron {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  flex: 0 0 28px;
  color: var(--muted);
  transition: transform 200ms, color 200ms;
}
.faq-chevron svg { width: 18px; height: 18px; }

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

.faq-body {
  padding-bottom: 22px;
  font-size: 16px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 760px;
}

/* ============================================================
   CONTACT SECTION (index)
   ============================================================ */
.contact {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}
.contact .section-inner > div:first-child { margin-bottom: clamp(32px, 4vw, 48px); }
.contact .section-inner > div:first-child h2 { font-size: clamp(36px, 5vw, 72px); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-col {}
.contact-info-col {}
.contact-heading { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 28px; }
.contact-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.contact-intro { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; }
.contact-form-title { font-size: clamp(20px, 2.2vw, 28px); font-family: 'Archivo', sans-serif; font-weight: 800; margin-bottom: 24px; }
.contact-info-title { font-size: clamp(18px, 2vw, 24px); font-family: 'Archivo', sans-serif; font-weight: 800; margin-bottom: 24px; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 36px; height: 36px; flex: 0 0 36px; display: flex; align-items: center; justify-content: center; background: var(--canvas); border-radius: 4px; border: 1px solid var(--border-light); }
.contact-info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.contact-info-label { font-size: 14px; color: var(--muted); margin-bottom: 2px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-info-value { font-size: 15px; color: var(--ink); font-weight: 500; }

.contact-socials { display: flex; gap: 12px; margin-top: 24px; }
.social-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--border-light);
  border-radius: 4px; padding: 8px 14px;
  text-decoration: none; transition: border-color 150ms, color 150ms;
}
.social-chip:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

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

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form textarea,
.contact-form select,
.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--surface);
  color: var(--ink);
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15px;
  transition: border-color 150ms, box-shadow 150ms;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(77,86,46,0.12);
}
.form-group textarea, .contact-form textarea, .cta-form textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); margin-top: 8px; line-height: 1.5; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  max-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 0;
}

.page-header > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
  max-height: none !important;
}

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,24,29,0.75) 0%, rgba(20,24,29,0.4) 60%, transparent 100%);
}

.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: 0 auto;
  padding: clamp(48px, 8vh, 80px) clamp(20px, 4vw, 48px) clamp(40px, 6vh, 64px);
}

.page-header-inner h1 {
  font-size: clamp(40px, 6vw, 88px);
  color: #F7F6F2;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-top: 12px;
}

.page-header-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,246,242,0.6);
  margin-bottom: 8px;
}

.page-header-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(247,246,242,0.65);
  line-height: 1.6;
  max-width: 500px;
  margin-top: 16px;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-intro-strip {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}
.services-intro-strip-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.strip-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,246,242,0.85);
}
.strip-dot {
  width: 4px; height: 4px; background: rgba(247,246,242,0.4); border-radius: 50%; flex: 0 0 4px;
}

.services-detail {
  max-width: 1320px; margin: 0 auto;
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 48px);
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: clamp(64px, 8vw, 96px);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: clamp(64px, 8vw, 96px);
}
.service-block:last-child { border-bottom: none; margin-bottom: 0; }

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

.service-block-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: var(--sand-dark);
  grid-column: 1;
}
.service-block.reverse .service-block-photo { grid-column: 2; }
.service-block.reverse .service-block-body  { grid-column: 1; }

.service-block-photo > img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
}

.service-block-index {
  position: absolute; top: 16px; left: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #F7F6F2;
  background: var(--primary);
  padding: 4px 10px; border-radius: 2px;
  z-index: 2;
}

.service-block-body {}
.service-block-body h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  margin-bottom: 20px;
}

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

.service-copy { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-copy p + p { margin-top: 12px; }

.service-bullets {
  list-style: none; padding: 0; margin: 0 0 24px 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--ink);
  line-height: 1.5;
}
.service-bullets li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  flex: 0 0 6px;
  margin-top: 7px;
}

.service-cta {
  display: inline-flex; align-items: center; gap: 10px;
  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;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  transition: gap 150ms;
}
.service-cta:hover { gap: 14px; color: var(--primary); text-decoration: none; }
.service-cta svg { width: 16px; height: 16px; flex: 0 0 16px; }

@media (max-width: 900px) {
  .service-block { grid-template-columns: 1fr; gap: 32px; }
  .service-block.reverse { direction: ltr; }
  .service-block.reverse .service-block-photo { grid-column: 1; order: -1; }
  .service-block.reverse .service-block-body  { grid-column: 1; }
  .service-block-photo { aspect-ratio: 16 / 9; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: clamp(64px, 8vw, 96px) 0;
}
.cta-banner-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(77,86,46,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-banner-left {}
.cta-banner-right {}

.cta-banner-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,246,242,0.55);
  margin-bottom: 12px;
}
.cta-banner-inner h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: #F7F6F2;
  margin-bottom: 16px;
}
.cta-banner-sub {
  font-size: 16px; color: rgba(247,246,242,0.65);
  line-height: 1.6; margin-bottom: 32px;
}
.cta-banner-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.cta-banner-actions a { text-decoration: none; }

.cta-banner-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  color: #F7F6F2;
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  transition: color 150ms;
}
.cta-banner-phone:hover { color: rgba(247,246,242,0.8); text-decoration: none; }
.cta-banner-phone svg { width: 24px; height: 24px; flex: 0 0 24px; }

.cta-banner-note {
  font-size: 12px; color: rgba(247,246,242,0.4);
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em; text-transform: uppercase;
}

.cta-banner-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 800;
  color: #F7F6F2;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

/* when inner is single-column (services.html) */
.cta-banner-inner.fade-up {
  grid-template-columns: 1fr;
  text-align: left;
}

/* cta-actions (gallery, about) */
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.cta-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,246,242,0.55); margin-bottom: 12px; }
.cta-sub { font-size: 16px; color: rgba(247,246,242,0.65); line-height: 1.6; margin-bottom: 32px; }
.cta-title { font-family: 'Archivo', sans-serif; font-size: clamp(32px, 4.5vw, 64px); font-weight: 800; color: #F7F6F2; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 16px; }
.cta-phone { font-family: 'Archivo', sans-serif; font-size: clamp(18px, 2.2vw, 28px); font-weight: 800; color: #F7F6F2; }
.cta-form { }
.cta-form-title { font-family: 'Archivo', sans-serif; font-size: 20px; font-weight: 800; color: #F7F6F2; margin-bottom: 20px; }

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

/* ============================================================
   ABOUT HEADER
   ============================================================ */
.about-header {
  min-height: clamp(280px, 40vh, 480px);
  max-height: 64vh;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.about-header > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0; max-height: none !important;
}
.about-header-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,24,29,0.75) 0%, rgba(20,24,29,0.35) 100%);
}
.about-header-hairline { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary); z-index: 3; }
.about-header-inner {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: clamp(48px, 8vh, 80px) clamp(20px, 4vw, 48px) clamp(40px, 6vh, 64px);
}
.about-header-inner h1 { font-size: clamp(40px, 6vw, 88px); color: #F7F6F2; letter-spacing: -0.03em; margin-top: 8px; }
.about-header-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,246,242,0.6); margin-bottom: 8px; }
.about-header-sub { font-size: 15px; color: rgba(247,246,242,0.6); margin-top: 14px; max-width: 480px; line-height: 1.6; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.about-left {}
.about-portrait-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--sand-dark);
}
.about-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(20%);
}
.about-portrait-caption {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--primary);
}
.about-portrait-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 18px;
  color: var(--ink); margin-bottom: 4px;
}
.about-portrait-role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

.about-right {}
.about-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.about-headline { font-size: clamp(32px, 4.5vw, 64px); margin-bottom: 32px; }
.about-body { margin-bottom: 32px; }
.about-body p { font-size: 16px; color: var(--muted); line-height: 1.72; }
.about-body p + p { margin-top: 16px; }

.about-values {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.about-value-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 7px 14px;
  background: var(--surface);
}
.dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%; flex: 0 0 6px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 32px;
}
.about-stat {}
.about-stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.0;
  letter-spacing: -0.03em;
}
.about-stat-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.about-commitments {
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  padding: 24px 28px;
  background: var(--surface);
}
.about-commitments-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 16px;
}
.about-commit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.about-commit-item {
  font-size: 13px; color: var(--ink); line-height: 1.4;
  display: flex; align-items: flex-start; gap: 8px;
}
.about-commit-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%; flex: 0 0 5px;
  margin-top: 6px;
}
.about-commit-num { font-weight: 700; color: var(--primary); }
.about-commit-title { font-weight: 600; }
.about-commit-desc { color: var(--muted); font-size: 13px; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-commit-list { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--canvas);
}
.gallery-header {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  margin-bottom: 40px;
}
.gallery-eyebrow { font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.gallery-title { font-size: clamp(32px, 5vw, 64px); margin-bottom: 12px; }
.gallery-desc { font-size: 16px; color: var(--muted); line-height: 1.65; max-width: 560px; }

.gallery-filters {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--border-light); border-radius: 4px;
  padding: 8px 16px; cursor: pointer;
  transition: border-color 150ms, background 150ms, color 150ms;
}
.filter-pill:hover, .filter-pill.active {
  background: var(--primary); color: #F7F6F2; border-color: var(--primary);
}

.gallery-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-tile {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4 / 3; background: var(--sand-dark);
  display: block;
}
.gallery-tile > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  max-height: none !important;
  transition: transform 0.5s ease;
}
.gallery-tile:hover > img { transform: scale(1.04); }

.gallery-tile-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,24,29,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 250ms;
}
.gallery-tile:hover .gallery-tile-overlay { opacity: 1; }

.tile-wide { grid-column: span 2; aspect-ratio: 16/9; }

.gallery-tile-text {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  grid-column: span 1;
}
.tile-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--muted); flex: 0 0 28px; padding-top: 2px;
}
.tile-info {}
.tile-category-text { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 4px; }
.tile-headline-text { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.01em; }
.tile-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

.tile-category { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(247,246,242,0.65); }
.tile-headline { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 16px; color: #F7F6F2; }
.tile-meta { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(247,246,242,0.55); }
.tile-meta svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .tile-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .gallery-tile-text { grid-column: span 1; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: clamp(80px, 10vh, 128px) 0;
  background: var(--canvas);
}
.contact-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.contact-form-col {}
.contact-form-col h2 { font-size: clamp(28px, 4vw, 56px); margin-bottom: 8px; }
.contact-form-col .contact-eyebrow { margin-bottom: 8px; }

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary);
  border-radius: 4px;
  padding: 28px;
}
.info-card-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800; font-size: 18px;
  color: var(--ink); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.info-block {}
.info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
}
.info-divider { height: 1px; background: var(--border-light); }
.info-icon {
  width: 36px; height: 36px; flex: 0 0 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--canvas); border-radius: 4px;
  border: 1px solid var(--border-light);
}
.info-icon svg { width: 18px; height: 18px; color: var(--primary); }
.info-label { font-family: 'IBM Plex Mono', monospace; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info-value { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.info-rating { display: flex; align-items: center; gap: 6px; }
.info-rating-text { font-size: 14px; color: var(--ink); }
.info-stars { display: flex; gap: 2px; }
.info-stars svg { width: 14px; height: 14px; color: var(--primary); }

.guarantee-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: clamp(48px, 6vw, 80px) 0;
}
.guarantee-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.guarantee-item {
  border-top: 2px solid var(--primary);
  padding-top: 20px;
}
.guarantee-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px; display: block;
}
.guarantee-title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.guarantee-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(247,246,242,0.75);
  padding: clamp(56px, 8vw, 96px) 0 0;
}

.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.footer-grid {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {}
.footer-brand img { margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-name { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 20px; color: #F7F6F2; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(247,246,242,0.5); line-height: 1.6; margin-bottom: 16px; }
.footer-brand-desc { font-size: 13px; color: rgba(247,246,242,0.45); line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.footer-contact a { font-size: 13px; color: rgba(247,246,242,0.6); text-decoration: none; transition: color 150ms; }
.footer-contact a:hover { color: #F7F6F2; text-decoration: none; }

.footer-col {}
.footer-col-title, .footer-col-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(247,246,242,0.4);
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links li { list-style: none; }
.footer-links a { font-size: 14px; color: rgba(247,246,242,0.65); text-decoration: none; transition: color 150ms; }
.footer-links a:hover { color: #F7F6F2; text-decoration: none; }

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

.footer-info-list { display: flex; flex-direction: column; gap: 8px; }
.footer-info-item { font-size: 13px; color: rgba(247,246,242,0.55); line-height: 1.5; }
.footer-info-item a { color: rgba(247,246,242,0.65); text-decoration: none; }
.footer-info-item a:hover { color: #F7F6F2; text-decoration: none; }

.footer-phone-link, .footer-email-link { color: rgba(247,246,242,0.7) !important; }
.footer-phone-link:hover, .footer-email-link:hover { color: #F7F6F2 !important; }

.footer-divider { border: none; border-top: 1px solid rgba(247,246,242,0.08); margin: 0 clamp(20px, 4vw, 48px); }

.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  border-top: 1px solid rgba(247,246,242,0.08);
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(247,246,242,0.35); font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.05em; }
.footer-legal { font-size: 12px; color: rgba(247,246,242,0.3); }
.footer-license { font-size: 12px; color: rgba(247,246,242,0.3); font-family: 'IBM Plex Mono', monospace; }
.footer-contact-line { font-size: 13px; color: rgba(247,246,242,0.55); }
.footer-contact-line a { color: rgba(247,246,242,0.65); text-decoration: none; }

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

/* ============================================================
   MOBILE CTA PILL — REQUIRED PATTERN
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-sticky-cta,
.mobile-call,
.mobile-cta {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 999;
  display: flex;
}

.mobile-call-pill a,
.mobile-cta-pill a,
.mobile-sticky-cta a,
.mobile-call a,
.mobile-cta a {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary);
  color: #F7F6F2;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  white-space: nowrap;
  transition: filter 150ms, transform 150ms;
}
.mobile-call-pill a:hover,
.mobile-cta-pill a:hover,
.mobile-sticky-cta a:hover,
.mobile-call a:hover,
.mobile-cta a:hover {
  filter: brightness(0.92); transform: translateY(-1px); color: #F7F6F2; text-decoration: none;
}
.mobile-call-pill svg,
.mobile-cta-pill svg,
.mobile-sticky-cta svg,
.mobile-call svg,
.mobile-cta svg,
.mobile-call-pill a svg,
.mobile-cta-pill a svg,
.mobile-sticky-cta a svg,
.mobile-call a svg,
.mobile-cta a svg {
  width: 20px; height: 20px; flex: 0 0 20px;
}

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

/* ============================================================
   PROCESS STRIP (required styles)
   ============================================================ */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border, rgba(0,0,0,0.1)); border-radius: 8px; }
.step-num { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: 0.12em; }

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

/* ============================================================
   AREA CHIPS / SERVICE AREA
   ============================================================ */
.service-area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.area-chip {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--border-light); border-radius: 4px;
  padding: 6px 12px; background: var(--surface);
}

/* ============================================================
   INFO BAND / GUARANTEE
   ============================================================ */
.info-card-heading { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; }

/* ============================================================
   MISC
   ============================================================ */
.dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; flex: 0 0 6px; }

/* Active state for service tabs etc. */
.active { }

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .hero { min-height: 88vw; }
  .hero-title { max-width: 18ch; }
  .services-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding-top: clamp(60px, 15vw, 100px); }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.btn-primary { grid-column: 1 / -1; }
.btn-outline { grid-column: 1 / -1; }
.trust-chip { grid-column: 1 / -1; }
.service-card-overlay { grid-column: 1 / -1; }
.service-card-body { grid-column: 1 / -1; }
.gallery-feature-overlay { grid-column: 1 / -1; }
.gallery-feature-body { grid-column: 1 / -1; }
.section-eyebrow { grid-column: 1 / -1; }
.section-title { grid-column: 1 / -1; }
.review-stars { grid-column: 1 / -1; }
.review-quote { grid-column: 1 / -1; }
.review-attribution { grid-column: 1 / -1; }
.contact-form-title { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.contact-info-title { grid-column: 1 / -1; }
.contact-info-item { grid-column: 1 / -1; }
.contact-socials { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
.cta-banner-eyebrow { grid-column: 1 / -1; }
.cta-banner-title { grid-column: 1 / -1; }
.cta-banner-sub { grid-column: 1 / -1; }
.cta-banner-phone { grid-column: 1 / -1; }
.cta-banner-actions { grid-column: 1 / -1; }
.gallery-eyebrow { grid-column: 1 / -1; }
.gallery-title { grid-column: 1 / -1; }
.gallery-desc { grid-column: 1 / -1; }
.active { grid-column: 1 / -1; }
.filter-pill { grid-column: 1 / -1; }
.gallery-tile-overlay { grid-column: 1 / -1; }
.tile-num { grid-column: 1 / -1; }
.tile-info { grid-column: 1 / -1; }
.about-right { grid-column: 1 / -1; }
.about-portrait-wrap { grid-column: 1 / -1; }
.about-portrait-caption { grid-column: 1 / -1; }
.dot { grid-column: 1 / -1; }
.about-stat-num { grid-column: 1 / -1; }
.about-stat-label { grid-column: 1 / -1; }
.about-commitments-label { grid-column: 1 / -1; }
.about-commit-list { grid-column: 1 / -1; }
.about-commit-item { grid-column: 1 / -1; }
.cta-banner-note { grid-column: 1 / -1; }
.cta-form { grid-column: 1 / -1; }
.contact-eyebrow { grid-column: 1 / -1; }
.contact-heading { grid-column: 1 / -1; }
.contact-intro { grid-column: 1 / -1; }
.contact-form { grid-column: 1 / -1; }
.info-card { grid-column: 1 / -1; }
.guarantee-label { grid-column: 1 / -1; }
.guarantee-title { grid-column: 1 / -1; }
.guarantee-body { 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; }
