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

/* ============================================================
   CUSTOM PROPERTIES — K.O. Tree Services
   ============================================================ */
:root {
  --primary:        #034713;
  --primary-dark:   #022d0c;
  --primary-light:  #055a18;
  --primary-tint:   rgba(3, 71, 19, 0.07);
  --accent:         #444444;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --ink:            #141414;
  --muted:          #6B665C;
  --border:         rgba(3, 71, 19, 0.18);
  --border-light:   rgba(0, 0, 0, 0.08);
  --shadow-card:    0 18px 40px -16px rgba(0, 0, 0, 0.18);
  --shadow-pill:    0 18px 40px -10px rgba(0, 0, 0, 0.45);
  --header-height:  72px;
  --section-pad:    clamp(96px, 12vh, 180px);
  --container:      1440px;
}

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

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16.5px; font-weight: 500; color: var(--ink);
  background: var(--canvas); line-height: 1.65;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   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):not(.hero-ribbon) {
  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;
}

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

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

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up    { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.fade-left  { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.fade-right { opacity: 0; transform: translateX(32px);  transition: opacity .65s ease, transform .65s ease; }
.scale-in   { opacity: 0; transform: scale(.94);        transition: opacity .6s ease,  transform .6s ease;  }
.fade-up.visible, .fade-left.visible, .fade-right.visible, .scale-in.visible { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1)  { transition-delay: .04s; }
.stagger.visible > *:nth-child(2)  { transition-delay: .09s; }
.stagger.visible > *:nth-child(3)  { transition-delay: .14s; }
.stagger.visible > *:nth-child(4)  { transition-delay: .19s; }
.stagger.visible > *:nth-child(5)  { transition-delay: .24s; }
.stagger.visible > *:nth-child(6)  { transition-delay: .29s; }
.stagger.visible > *:nth-child(7)  { transition-delay: .34s; }
.stagger.visible > *:nth-child(8)  { transition-delay: .39s; }
.stagger.visible > *:nth-child(9)  { transition-delay: .44s; }
.stagger.visible > *:nth-child(10) { transition-delay: .49s; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container      { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.wide-container { max-width: 1400px;           margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.bleed          { width: 100vw; margin-left: calc(-50vw + 50%); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em; padding: 18px 32px;
  border-radius: 0; border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: filter 200ms, background 200ms, color 200ms;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary  { background: var(--primary); color: var(--canvas); }
.btn-primary:hover { filter: brightness(.9); color: var(--canvas); }

.btn-phone { background: transparent; color: var(--canvas); border: 2px solid rgba(255,255,255,.5); padding: 16px 28px; }
.btn-phone:hover { background: rgba(255,255,255,.1); color: var(--canvas); text-decoration: none; }
.btn-phone svg { width: 18px; height: 18px; }

.btn-ghost { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 16px 28px; }
.btn-ghost:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--canvas); border: 2px solid rgba(255,255,255,.55);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .12em; padding: 14px 28px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: background 200ms, color 200ms;
}
.btn-ghost-white:hover { background: var(--canvas); color: var(--ink); text-decoration: none; }
.btn-ghost-white svg { width: 18px; height: 18px; }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--canvas); border: 2px solid var(--canvas);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em; padding: 16px 32px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: background 200ms, color 200ms;
}
.btn-outline-white:hover { background: var(--canvas); color: var(--ink); text-decoration: none; }
.btn-outline-white svg { width: 18px; height: 18px; }

.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em; padding: 16px 32px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: filter 200ms;
}
.btn-solid:hover { filter: brightness(.9); color: var(--canvas); text-decoration: none; }
.btn-solid svg { width: 18px; height: 18px; }

.btn-service {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .12em; padding: 12px 22px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: filter 200ms;
}
.btn-service:hover { filter: brightness(.9); color: var(--canvas); text-decoration: none; }

.btn-banner-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--canvas); color: var(--primary);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em; padding: 18px 36px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: filter 200ms;
}
.btn-banner-primary:hover { filter: brightness(.96); text-decoration: none; }

.btn-banner-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--canvas); border: 2px solid rgba(255,255,255,.45);
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em; padding: 16px 32px; border-radius: 0;
  cursor: pointer; text-decoration: none; transition: background 200ms, color 200ms;
}
.btn-banner-phone:hover { background: rgba(255,255,255,.1); color: var(--canvas); text-decoration: none; }

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

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

.nav-logo { flex: 0 0 auto; text-decoration: none; display: flex; align-items: center; }
.nav-logo img { max-height: 44px; max-width: 200px; width: auto; object-fit: contain; }

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

.nav-pages a {
  display: inline-block; padding: 6px 0; font-size: 15px; font-weight: 500;
  font-family: 'Inter Tight', sans-serif; color: var(--ink); text-decoration: none;
  background: none !important; border: none !important; box-shadow: none !important; 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) !important; }

.nav-cta {
  flex: 0 0 auto; background: var(--primary); color: var(--canvas); padding: 10px 20px; border-radius: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .1em; text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px; transition: filter 200ms;
}
.nav-cta:hover { filter: brightness(.9); color: var(--canvas); text-decoration: none; }
.nav-cta svg { width: 16px; height: 16px; }
.nav-cta span { display: inline; }

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

#navLinks a { background: none !important; border: none !important; box-shadow: none !important; }
#navLinks a[aria-current="page"] { color: var(--primary); border-bottom: 2px solid var(--primary) !important; }

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

/* ============================================================
   HERO
   ============================================================ */
.hero { min-height: 92vh; display: flex; align-items: flex-end; background: #061a0a; }

.hero-overlay {
  background: linear-gradient(
    to bottom, rgba(3,71,19,.10) 0%, rgba(0,0,0,.20) 35%, rgba(0,0,0,.76) 100%
  );
}

.hero-ribbon {
  position: absolute; top: clamp(20px,4vw,48px); right: clamp(16px,4vw,48px); z-index: 3;
  background: var(--primary); color: var(--canvas); padding: 10px 18px;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; display: flex; align-items: center; gap: 10px;
}

.ribbon-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--canvas); flex-shrink: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.45); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; width: 100%;
  padding: clamp(56px,8vw,120px) clamp(20px,4vw,64px);
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--primary); background: rgba(255,255,255,.92);
  display: inline-block; padding: 6px 14px; margin-bottom: 24px;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(56px,8vw,132px); letter-spacing: -.03em; line-height: .96;
  color: var(--canvas); max-width: 18ch; margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(16px,1.8vw,20px); color: rgba(255,255,255,.8);
  max-width: 52ch; margin-bottom: 36px; line-height: 1.55; font-weight: 500;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 40px; }
.hero-trust-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }

.trust-chip {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--primary); background: rgba(255,255,255,.07); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; padding: 7px 14px;
}

div.trust-chip { background: var(--canvas); color: var(--ink); }

.chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

@media (max-width: 640px) { .hero-ctas { flex-direction: column; align-items: flex-start; } }

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

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

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

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

.marquee-item {
  display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(13px,1.4vw,17px); line-height: 1.2; color: var(--ink);
}
.marquee-item strong { color: var(--primary); }
.marquee-sep { color: var(--primary); font-size: 20px; margin-left: 12px; line-height: 1; }

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

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

.trust-badge {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--primary); padding: 8px 16px;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--ink); background: var(--canvas);
}
.trust-badge-stars { color: var(--primary); font-size: 14px; letter-spacing: 2px; }

/* ============================================================
   TRUST BAR (contact.html)
   ============================================================ */
.trust-bar { background: var(--surface); padding: 24px 0; border-bottom: 1px solid var(--border-light); }

.trust-bar-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center;
}

.trust-bar-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--ink);
}
.trust-bar-item svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }

/* ============================================================
   SECTION HEADINGS & EYEBROWS
   ============================================================ */
.section-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 16px;
}
div.section-eyebrow { display: flex; align-items: center; gap: 10px; }

.eyebrow-bar { display: inline-block; width: 32px; height: 3px; background: var(--primary); flex-shrink: 0; }

.eyebrow-label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary);
}

.section-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(36px,5vw,72px); letter-spacing: -.03em; line-height: 1.0; color: var(--ink); margin-bottom: 16px;
}

.section-headline {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(32px,4.5vw,64px); letter-spacing: -.03em; line-height: 1.0; color: var(--ink); margin-bottom: 24px;
}

.section-sub { font-size: 17px; color: var(--muted); max-width: 56ch; line-height: 1.6; }
.section-sub a { color: var(--primary); font-weight: 600; }

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

.services-header {
  max-width: var(--container); margin: 0 auto 60px; padding: 0 clamp(20px,4vw,64px);
}

/* 3-col grid: flagship spans col 1-2, rows 1-2
   Row 1: [flagship] [card2]
   Row 2: [flagship] [card3]
   Row 3: [card4]   [card5]  [card6]           */
.bento-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(340px,1fr) minmax(220px,1fr) minmax(260px,1fr);
  gap: 14px;
}

.bento-flagship {
  grid-column: 1 / 3; grid-row: 1 / 3;
  position: relative; overflow: hidden; display: block; text-decoration: none;
  background: var(--primary-dark);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.bento-flagship:hover { transform: translateY(-3px); box-shadow: 0 24px 52px -18px rgba(0,0,0,.38); text-decoration: none; }

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

.bento-flagship-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.86) 0%, rgba(0,0,0,.16) 55%, transparent 100%);
}

.bento-flagship-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 36px 40px; }

.bento-card {
  position: relative; overflow: hidden; display: block; text-decoration: none; background: var(--ink);
  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,.3); text-decoration: none; }

.bento-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-card:nth-child(3) { grid-column: 3; 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: 3; grid-row: 3; }

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

.bento-card-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.84) 0%, rgba(0,0,0,.08) 58%, transparent 100%);
}

.bento-card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 18px 22px; }

.bento-index {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(40px,5.5vw,80px); color: var(--primary);
  line-height: .88; letter-spacing: -.04em; opacity: .72; margin-bottom: 6px;
}
.bento-flagship-body .bento-index { font-size: clamp(64px,9vw,128px); opacity: .8; }

.bento-card-body h3, .bento-flagship-body h3 {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(16px,2vw,24px);
  color: var(--canvas); letter-spacing: -.02em; line-height: 1.05; margin-bottom: 6px;
}
.bento-flagship-body h3 { font-size: clamp(26px,3.2vw,44px); margin-bottom: 10px; }

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

.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--primary);
}
.bento-link svg { width: 13px; height: 13px; transition: transform 200ms; }
.bento-flagship:hover .bento-link svg, .bento-card:hover .bento-link svg { transform: translateX(5px); }

.bento-name { color: var(--canvas); }

@media (max-width: 1200px) {
  .bento-grid { grid-template-rows: minmax(280px,1fr) minmax(180px,1fr) minmax(220px,1fr); }
}
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 12px; }
  .bento-flagship { grid-column: 1 / -1; grid-row: auto; min-height: 340px; }
  .bento-card:nth-child(n) { grid-column: auto; grid-row: auto; min-height: 220px; }
}
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-flagship { min-height: 300px; }
  .bento-card { min-height: 200px; }
}

/* ============================================================
   GALLERY PREVIEW (index.html)
   ============================================================ */
.gallery-preview { background: var(--surface); padding: var(--section-pad) 0; }

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

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

.gallery-feature-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 7; }
.gallery-feature-img, .gallery-feature-wrap > img {
  width: 100%; height: 100%; object-fit: cover; max-height: none; display: block;
}

.gallery-cta-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  padding: 28px 32px; display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}

.gallery-cta-label {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(16px,2.2vw,28px);
  color: var(--canvas); letter-spacing: -.02em; line-height: 1.1;
}

.gallery-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; padding: 12px 24px;
  text-decoration: none; white-space: nowrap; transition: filter 200ms;
}
.gallery-cta-link:hover { filter: brightness(.9); color: var(--canvas); text-decoration: none; }
.gallery-cta-link svg { width: 16px; height: 16px; }

@media (max-width: 640px) { .gallery-preview-header { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--canvas); padding: var(--section-pad) 0; }
.faq-inner { max-width: 860px; margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.faq-header { margin-bottom: 56px; }

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

details.faq-item > summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; gap: 16px;
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(16px,2vw,22px);
  letter-spacing: -.01em; line-height: 1.2; color: var(--ink); transition: color 200ms;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary:hover { color: var(--primary); }
details.faq-item[open] > summary { color: var(--primary); }
details.faq-item[open] > summary .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-chevron {
  width: 24px !important; height: 24px !important; flex-shrink: 0;
  color: var(--ink); transition: transform 200ms, color 200ms; margin-left: 8px;
}

.faq-answer, details.faq-item > p {
  padding: 0 0 24px; font-size: 16px; line-height: 1.72; color: var(--muted); max-width: 72ch;
}
.faq-answer a { color: var(--primary); font-weight: 600; }

/* ============================================================
   TEAM CTA BAND
   ============================================================ */
.team-cta { background: var(--primary); padding: clamp(64px,8vw,96px) 0; }

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

.team-cta-text {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(22px,3.2vw,44px); letter-spacing: -.02em; line-height: 1.05;
  color: var(--canvas); max-width: 30ch;
}
.team-cta-text span { display: block; }

@media (max-width: 640px) { .team-cta-inner { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   CONTACT (index.html inline)
   ============================================================ */
.contact { background: var(--surface); padding: var(--section-pad) 0; }

.contact-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}

.contact-detail { display: flex; flex-direction: column; gap: 4px; padding: 18px 0; border-bottom: 1px solid var(--border-light); }

.contact-detail-label {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary);
}
.contact-detail-value { font-size: 16px; color: var(--ink); font-weight: 500; line-height: 1.55; }
.contact-detail-value a { color: var(--ink); font-weight: 600; }
.contact-detail-value a:hover { color: var(--primary); text-decoration: none; }

.contact-areas { margin-top: 24px; }
.contact-areas-label {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 12px;
}

.areas-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  border: 1px solid var(--border); background: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink); padding: 5px 12px;
}

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

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

.form-group label {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--canvas); border: 1px solid rgba(0,0,0,.14); border-radius: 0; padding: 12px 16px;
  font-size: 15px; font-family: 'Inter Tight', sans-serif; color: var(--ink); width: 100%;
  transition: border-color 200ms, box-shadow 200ms; -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(3,71,19,.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit {
  background: var(--primary); color: var(--canvas); border: none; padding: 18px 36px; border-radius: 0;
  font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; cursor: pointer; display: inline-flex; align-items: center; gap: 10px;
  justify-content: center; width: 100%; margin-top: 8px; transition: filter 200ms;
}
.form-submit:hover { filter: brightness(.9); }
.form-submit svg { width: 18px; height: 18px; }

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  position: relative; overflow: hidden;
  min-height: clamp(280px,40vh,480px); max-height: 64vh;
  display: flex; align-items: flex-end; background: #061a0a;
}

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

.page-header-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(3,71,19,.18) 0%, rgba(0,0,0,.7) 100%);
}

.page-header-inner {
  position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; width: 100%;
  padding: clamp(32px,5vw,72px) clamp(20px,4vw,64px);
}

.page-header-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em;
  color: var(--primary); background: rgba(255,255,255,.92);
  display: inline-block; padding: 6px 14px; margin-bottom: 16px;
}

.page-header-title, .page-header h1 {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(36px,6vw,88px); letter-spacing: -.03em; line-height: .96; color: var(--canvas); max-width: 20ch;
}

.page-header-sub { font-size: 17px; color: rgba(255,255,255,.72); margin-top: 14px; max-width: 52ch; line-height: 1.55; }

/* ============================================================
   SERVICE FEATURE (services.html)
   ============================================================ */
.service-feature { padding: var(--section-pad) 0; background: var(--canvas); }
.service-feature:nth-of-type(even) { background: var(--surface); }

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

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

.service-feature-photo { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.service-feature-photo img { width: 100%; height: 100%; object-fit: cover; max-height: none; display: block; }

.service-index {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo Black', sans-serif; font-size: 11px; font-weight: 900;
  letter-spacing: .14em; padding: 6px 12px; text-transform: uppercase;
}

.service-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 12px;
}

.service-feature-body h2, .service-feature-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(26px,3.2vw,46px);
  letter-spacing: -.03em; line-height: 1.0; color: var(--ink); margin-bottom: 18px;
}

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

.service-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.service-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.service-bullets li::before {
  content: ''; 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: 40px; }
  .service-feature.photo-right .service-feature-photo { order: -1; }
  .service-feature.photo-right .service-feature-body  { order: 1; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--primary); padding: clamp(80px,10vw,140px) 0; text-align: center; }

.cta-banner-inner, .cta-banner > .fade-up {
  max-width: 800px; margin: 0 auto; padding: 0 clamp(20px,4vw,64px); text-align: center;
}

.cta-banner-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.55); margin-bottom: 16px;
}

.cta-banner-title, .cta-banner h2 {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(36px,5vw,72px);
  letter-spacing: -.03em; line-height: 1.0; color: var(--canvas); margin-bottom: 20px;
}
.cta-banner-title em { font-style: italic; }

.cta-banner-sub { font-size: 18px; color: rgba(255,255,255,.72); margin-bottom: 40px; line-height: 1.6; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner-phone {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(18px,2.5vw,30px);
  color: var(--canvas); letter-spacing: -.01em; margin-bottom: 32px;
}

.cta-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: rgba(255,255,255,.55); margin-bottom: 12px;
}
.cta-headline {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(28px,4vw,56px);
  letter-spacing: -.03em; line-height: 1.0; color: var(--canvas); margin-bottom: 16px;
}
.cta-phone { font-family: 'Archivo Black', sans-serif; font-size: clamp(20px,2.5vw,32px); color: var(--canvas); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 640px) { .cta-banner-actions { flex-direction: column; align-items: center; } }

/* ============================================================
   GALLERY SECTION (gallery.html)
   ============================================================ */
.gallery-section { background: var(--canvas); padding: var(--section-pad) 0; }

.gallery-section-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.gallery-section-header { margin-bottom: 36px; }

.gallery-section-label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 12px;
}
.gallery-section-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900;
  font-size: clamp(28px,4vw,56px); letter-spacing: -.03em; line-height: 1.0; color: var(--ink);
}

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

.gallery-filters button, .filter-pill {
  background: transparent; border: 1px solid var(--border-light); color: var(--ink);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; padding: 8px 18px; cursor: pointer; border-radius: 0;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.gallery-filters button:hover, .filter-pill:hover { background: var(--primary); color: var(--canvas); border-color: var(--primary); }
.gallery-filters button.active, .filter-pill.active { background: var(--primary); color: var(--canvas); border-color: var(--primary); }

.gallery-count-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; flex-wrap: wrap; gap: 8px; }
.gallery-count-text { font-size: 14px; color: var(--muted); font-family: 'Archivo', sans-serif; }
#visibleCount { font-weight: 700; color: var(--primary); }

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

.gallery-card {
  background: var(--surface); overflow: hidden; display: flex; flex-direction: column;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

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

.gallery-card-photo-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 60%);
}

.gallery-card-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; padding: 4px 8px;
}

.gallery-card-category {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  color: rgba(255,255,255,.85); font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}

.gallery-card-location {
  position: absolute; bottom: 12px; right: 12px; z-index: 2;
  display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.65); font-size: 11px;
}
.gallery-card-location svg { width: 12px !important; height: 12px !important; }

.gallery-card-body { padding: 18px 22px; flex: 1; }
.gallery-card-body h3, .gallery-card-headline {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 16px;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 6px; line-height: 1.2;
}
.gallery-card-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }

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

/* ============================================================
   ABOUT — FOUNDER STORY
   ============================================================ */
.founder-story { background: var(--canvas); padding: var(--section-pad) 0; }

.founder-story-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}

.founder-portrait { position: relative; }
.founder-portrait img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; max-height: 560px; display: block; }
.founder-portrait-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; padding: 12px 20px;
}

.founder-pull {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(18px,2.2vw,26px);
  letter-spacing: -.02em; line-height: 1.2; color: var(--primary);
  border-left: 4px solid var(--primary); padding-left: 22px; margin: 24px 0; font-style: normal;
}

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

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

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

.values-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.values-header { margin-bottom: 56px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.value-card {
  background: var(--canvas); padding: 32px; border-top: 3px solid var(--primary);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.value-num {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(48px,6vw,80px);
  line-height: .88; letter-spacing: -.04em; color: var(--primary); opacity: .22; margin-bottom: 14px;
}
.value-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 17px;
  letter-spacing: -.01em; color: var(--ink); margin-bottom: 10px; line-height: 1.2;
}
.value-body { font-size: 14px; color: var(--muted); line-height: 1.65; }

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

/* ============================================================
   MILESTONES
   ============================================================ */
.milestones-section { background: var(--ink); padding: var(--section-pad) 0; }
.milestones-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.milestones-header { margin-bottom: 64px; }
.milestones-header .section-eyebrow,
.milestones-header .eyebrow-label { color: var(--primary); }
.milestones-header .eyebrow-bar { background: var(--primary); }
.milestones-header .section-headline { color: var(--canvas); }

.milestones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.milestone-step { border-top: 2px solid rgba(255,255,255,.1); padding-top: 24px; }
.milestone-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(255,255,255,.25); margin-bottom: 20px; }
.milestone-dot-filled { border-color: var(--primary); background: var(--primary); }
.milestone-tag {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--primary); margin-bottom: 10px;
}
.milestone-title {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 19px;
  letter-spacing: -.01em; color: var(--canvas); margin-bottom: 10px; line-height: 1.1;
}
.milestone-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; }

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

/* ============================================================
   CREW STRIP
   ============================================================ */
.crew-strip { background: var(--surface); padding: var(--section-pad) 0; }

.crew-strip-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
}

.crew-headline {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(26px,3.5vw,48px);
  letter-spacing: -.03em; line-height: 1.0; color: var(--ink); margin-bottom: 16px;
}
.crew-body { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }

.crew-cta {
  display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: var(--canvas);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; padding: 14px 28px; text-decoration: none; transition: filter 200ms;
}
.crew-cta:hover { filter: brightness(.9); color: var(--canvas); text-decoration: none; }
.crew-cta svg { width: 15px; height: 15px; }

.crew-services-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.crew-service-item { background: var(--canvas); padding: 18px 22px; border-bottom: 1px solid var(--border-light); transition: background 200ms; }
.crew-service-item:hover { background: var(--primary-tint); }
.crew-service-tag {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .18em; color: var(--primary); margin-bottom: 6px;
}
.crew-service-name { font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 15px; letter-spacing: -.01em; color: var(--ink); line-height: 1.2; }

@media (max-width: 900px) { .crew-strip-inner { grid-template-columns: 1fr; gap: 40px; } .crew-services-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .crew-services-list { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT EDITORIAL
   ============================================================ */
.about-editorial { background: var(--canvas); padding: var(--section-pad) 0; }
.about-editorial-inner { max-width: 800px; margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.about-body p { font-size: 17px; color: var(--muted); line-height: 1.72; margin-bottom: 16px; }

.about-cta-link {
  display: inline-flex; align-items: center; gap: 8px; color: var(--primary);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; text-decoration: none;
  margin-top: 24px; border-bottom: 2px solid var(--primary); padding-bottom: 2px; transition: opacity 200ms;
}
.about-cta-link:hover { opacity: .75; text-decoration: none; color: var(--primary); }
.about-cta-link svg { width: 15px; height: 15px; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas { background: var(--surface); padding: var(--section-pad) 0; }
.service-areas-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }
.service-areas-header { margin-bottom: 44px; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 8px; }

.area-item {
  background: var(--canvas); border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink); padding: 8px 16px;
  transition: background 200ms, color 200ms;
}
.area-item:hover { background: var(--primary); color: var(--canvas); }

.area-pill {
  background: var(--surface); border: 1px solid var(--border);
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--ink); padding: 5px 12px;
}

/* ============================================================
   CONTACT SPLIT (contact.html)
   ============================================================ */
.contact-split { background: var(--canvas); padding: var(--section-pad) 0; }

.contact-split-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start;
}

.contact-form-label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 12px; display: block;
}
.contact-form-heading {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(26px,3.2vw,48px);
  letter-spacing: -.03em; line-height: 1.0; color: var(--ink); margin-bottom: 14px;
}
.contact-form-desc { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.contact-form { width: 100%; }

.contact-info-card {
  background: var(--surface); padding: 36px; border-top: 4px solid var(--primary);
  position: sticky; top: calc(var(--header-height) + 24px);
}
a.contact-info-card { display: block; text-decoration: none; color: inherit; }
a.contact-info-card:hover { text-decoration: none; }

.info-card-eyebrow {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .22em; color: var(--primary); margin-bottom: 10px;
}
.info-cta-note {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: clamp(17px,2vw,22px);
  letter-spacing: -.02em; line-height: 1.15; color: var(--ink); margin-bottom: 22px;
}
.info-card-divider { height: 1px; background: var(--border-light); margin: 22px 0; }
.info-card-phone {
  font-family: 'Archivo Black', sans-serif; font-weight: 900; font-size: 26px;
  color: var(--primary); text-decoration: none; display: block; margin-bottom: 6px; letter-spacing: -.02em;
}
.info-card-phone:hover { text-decoration: none; opacity: .85; }
.info-block { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
.info-block-label {
  font-family: 'Archivo', sans-serif; font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--primary);
}
.info-block-value { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.5; }
.info-block-value a { color: var(--primary); font-weight: 600; }
.info-block-value a:hover { text-decoration: none; opacity: .8; }

@media (max-width: 900px) { .contact-split-inner { grid-template-columns: 1fr; gap: 48px; } .contact-info-card { position: static; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.65); padding: clamp(64px,8vw,96px) 0 0; }
.footer-inner { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px); }

/* about.html: .site-footer > .footer-grid (no .footer-inner wrapper) */
.site-footer > .footer-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px,4vw,64px) 64px;
}

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

.footer-brand { grid-column: 1; }
.footer-tagline { font-family: 'Archivo Black', sans-serif; font-size: 15px; color: var(--canvas); letter-spacing: -.01em; margin-bottom: 8px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 32ch; margin-top: 8px; }
.footer-brand-name { font-family: 'Archivo Black', sans-serif; font-size: 18px; color: var(--canvas); letter-spacing: -.02em; margin-bottom: 6px; }
.footer-brand-tag { font-size: 13px; color: rgba(255,255,255,.45); }

.footer-col-title,
.footer-col-label {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em; color: var(--canvas); margin-bottom: 20px; display: block;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-link-list { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-link-list a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; font-weight: 500; transition: color 150ms; }
.footer-links a:hover, .footer-link-list a:hover { color: var(--canvas); text-decoration: none; }

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color 150ms; }
.footer-col ul li a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-item { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 10px; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--primary); }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--canvas); text-decoration: none; }

.footer-contact-row { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; margin-bottom: 10px; transition: color 150ms; }
.footer-contact-row:hover { color: var(--canvas); text-decoration: none; }
.footer-contact-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }

.footer-hours-row { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 6px; line-height: 1.5; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); text-decoration: none; transition: background 200ms, color 200ms; }
.footer-social a:hover { background: var(--primary); color: var(--canvas); text-decoration: none; }
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy, .footer-copyright { font-size: 13px; color: rgba(255,255,255,.38); }
.footer-insured, .footer-insured-badge {
  font-family: 'Archivo', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em; color: var(--primary); background: rgba(3,71,19,.2); padding: 4px 10px;
}

.footer-email-link, .footer-phone-link { color: rgba(255,255,255,.55); transition: color 150ms; }
.footer-email-link:hover, .footer-phone-link:hover { color: var(--canvas); text-decoration: none; }

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-call-btn,
.mobile-sticky-call {
  position: fixed; bottom: 18px; right: 18px; z-index: 999;
  background: var(--primary); color: var(--canvas);
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow-pill);
  display: none; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif; font-size: 13px; font-weight: 700;
  text-decoration: none; text-transform: uppercase; letter-spacing: .08em;
  transition: filter 200ms, transform 200ms;
}
.mobile-call-pill:hover, .mobile-cta-pill:hover, .mobile-call-btn:hover, .mobile-sticky-call:hover {
  filter: brightness(.9); transform: translateY(-2px); color: var(--canvas); text-decoration: none;
}
.mobile-call-pill svg, .mobile-cta-pill svg, .mobile-call-btn svg, .mobile-sticky-call svg {
  width: 20px; height: 20px; flex-shrink: 0;
}

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

/* ============================================================
   STATS / PROCESS / REVIEW / SERVICE CARD
   ============================================================ */
.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 Black', sans-serif; font-weight: 900; font-size: clamp(48px,8vw,96px); line-height: 1; color: var(--primary); }
.stat-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: clamp(11px,1vw,14px); text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin-top: 8px; }

.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 32px; }
.process-step { padding: 24px; border: 1px solid var(--border); }
.step-num { font-family: 'Archivo', sans-serif; font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; letter-spacing: .12em; text-transform: uppercase; }

.review-card { padding: 28px; border-radius: 0; background: var(--surface); }
.review-stars svg { color: var(--primary); width: 18px; height: 18px; }
.review-quote { font-size: 17px; line-height: 1.55; margin: 14px 0; }
.review-attribution { font-size: 13px; color: var(--muted); opacity: .75; }

.service-card { transition: transform 250ms ease-out, box-shadow 250ms ease-out; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* TABLE — thead only dark headers */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price { background: var(--primary); color: var(--canvas); }


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.contact-form-col { grid-column: 1 / -1; }
.contact-info-col { grid-column: 1 / -1; }
.form-group { grid-column: 1 / -1; }
.footer-col { 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; }
