@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
   ============================================================ */
:root {
  --primary:        #5F9C32;
  --primary-dark:   #4a7a26;
  --primary-light:  #7dbb44;
  --primary-wash:   #eef6e6;
  --accent:         #34583B;
  --accent-dark:    #243d29;
  --canvas:         #FFFFFF;
  --surface:        #F7F4ED;
  --surface-2:      #EEE9DF;
  --ink:            #141414;
  --ink-mid:        #2e2e2e;
  --muted:          #6B665C;
  --muted-light:    #9e9890;
  --border:         rgba(20,20,20,0.10);
  --border-brand:   rgba(95,156,50,0.30);
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg:      0 18px 56px rgba(0,0,0,0.14);
  --header-height:  72px;
  --radius:         0px;
  --section-py:     clamp(80px, 10vh, 160px);
}

@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);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 500;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--canvas);
  overflow-x: hidden;
}

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

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

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

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

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

.page-header, [class*="page-header"], .about-feature, .about-hero {
  position: relative; overflow: hidden; max-height: 64vh;
}
.page-header > img, [class*="page-header"] > img,
.page-header-bg, .about-feature > img:first-of-type,
.about-hero-bg, .page-header img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%; z-index: 0;
}
section > img:first-child:not([class*="logo"]):not(.nav-logo) {
  max-height: 64vh; object-fit: cover;
}
section img:not(.hero-bg):not(.page-header-bg):not([class*="full-bleed"]):not([class*="logo"]) {
  max-height: 720px;
}

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

/* 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;
}

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

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

/* ============================================================
   LAYOUT CONTAINERS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.wide-container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

.wide {
  grid-column: span 2;
}

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

/* ============================================================
   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 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }

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

.nav-pages li { list-style: none; }

.nav-pages a {
  display: inline-block;
  padding: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Archivo', sans-serif;
  letter-spacing: 0.01em;
  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);
  text-decoration: none;
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 150ms;
}

.nav-cta:hover {
  color: #ffffff;
  filter: brightness(0.92);
  text-decoration: none;
}

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

@media (max-width: 900px) {
  .nav-toggle { display: flex; }

  .nav-pages {
    display: none;
    flex-direction: column;
    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,0.08);
    justify-content: flex-start;
    z-index: 800;
  }

  .nav-pages.open { display: flex; }

  .nav-pages a {
    font-size: 17px;
    padding: 10px 0;
  }

  .nav-cta span { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: clamp(560px, 88vh, 960px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.15) 0%,
    rgba(20,20,20,0.30) 40%,
    rgba(20,20,20,0.72) 75%,
    rgba(40,56,30,0.90) 100%
  );
}

.hero-ribbon {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 16px;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.hero-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) 28px clamp(64px, 8vh, 112px);
}

.hero-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7.5vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 18ch;
  margin-bottom: clamp(20px, 2.5vh, 32px);
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: clamp(28px, 3.5vh, 40px);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(28px, 3.5vh, 44px);
}

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

.trust-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(95,156,50,0.55);
  background: rgba(95,156,50,0.10);
  color: rgba(255,255,255,0.92);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn,
.btn-primary,
.btn-primary-lg,
.btn-cta-primary,
.btn-white,
.btn-cta-outline,
.btn-outline-light,
.btn-phone,
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: filter 150ms, background 150ms, color 150ms, box-shadow 150ms;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 0;
}

.btn-primary,
.btn-cta-primary {
  background: var(--primary);
  color: #ffffff;
  padding: 18px 32px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary:hover,
.btn-cta-primary:hover {
  filter: brightness(0.90);
  color: #ffffff;
  text-decoration: none;
}

.btn-primary-lg {
  background: var(--primary);
  color: #ffffff;
  padding: 20px 40px;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary-lg:hover { filter: brightness(0.90); color: #ffffff; text-decoration: none; }

.btn-cta-outline,
.btn-outline-light,
.btn-phone {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.55);
  padding: 16px 30px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.btn-cta-outline:hover,
.btn-outline-light:hover,
.btn-phone:hover {
  border-color: #ffffff;
  color: #ffffff;
  background: rgba(255,255,255,0.10);
  text-decoration: none;
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  padding: 18px 32px;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-color: #ffffff;
}

.btn-white:hover { filter: brightness(0.95); color: var(--primary); text-decoration: none; }

.btn-service {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  padding: 12px 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 16px;
}

.btn-service svg { width: 14px; height: 14px; }

.btn-service:hover {
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
}

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

.trust-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.trust-chip-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--primary);
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee,
.marquee-strip {
  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:hover .marquee-track,
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

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

.marquee-item {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
  color: var(--ink);
}

.marquee-sep,
.marquee-dot {
  color: var(--primary);
  font-weight: 900;
  font-size: 16px;
  user-select: none;
  flex-shrink: 0;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: clamp(40px, 5vh, 72px);
}

.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 24ch;
}

.section-intro {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
  margin-top: 16px;
}

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

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

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

/* Flagship card spans 2 cols × 2 rows */
.service-card.service-flagship {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 560px;
}

/* Supporting cards */
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 280px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  max-height: none !important;
  filter: grayscale(20%) brightness(0.85);
  transition: transform 400ms ease, filter 400ms ease;
}

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

.service-card:hover > img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(0.80);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.86) 0%, rgba(20,20,20,0.30) 55%, transparent 100%);
  pointer-events: none;
}

.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 8px;
}

.service-flagship .service-card-body h3 {
  font-size: clamp(22px, 2.8vw, 38px);
}

.service-desc {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  max-width: 52ch;
  margin-bottom: 4px;
}

.service-index {
  display: inline-block;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 12px;
  text-decoration: none;
}

.service-link:hover { color: var(--primary-light); text-decoration: underline; }

.services-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .services-bento { grid-template-columns: 1fr 1fr; }
  .service-card.service-flagship { grid-column: 1 / -1; grid-row: span 1; min-height: 360px; }
  .service-card { min-height: 240px; }
}

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

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-detail {
  padding: var(--section-py) 0;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto 2px;
  min-height: 520px;
  overflow: hidden;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-block-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.service-block-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 500ms ease;
}

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

.service-block-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(20,20,20,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.service-block-index {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  color: rgba(255,255,255,0.20);
  letter-spacing: -0.04em;
  pointer-events: none;
}

.service-block-body {
  background: var(--surface);
  padding: clamp(40px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

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

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

.service-block-body h2 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.service-block-body > p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 54ch;
  margin-bottom: 14px;
}

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

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

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

@media (max-width: 900px) {
  .service-block {
    grid-template-columns: 1fr;
  }
  .service-block:nth-child(even) { direction: ltr; }
  .service-block-photo { min-height: 300px; }
  .service-block-body { padding: 36px 24px; }
}

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

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

.gallery-feature {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  margin-top: 40px;
}

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

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

.gallery-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(20,20,20,0.80) 0%, transparent 100%);
}

.gallery-feature-caption a {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
}

.gallery-feature-caption a:hover { color: var(--primary); border-color: var(--primary); text-decoration: none; }

/* ============================================================
   GALLERY FULL PAGE
   ============================================================ */
.gallery-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

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

.gallery-heading-block {}

.gallery-section-eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.gallery-section-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.gallery-count {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--muted);
  text-transform: uppercase;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-mid);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 150ms, color 150ms, border-color 150ms;
}

.filter-pill:hover { background: var(--primary-wash); color: var(--primary); border-color: var(--primary); }
.filter-pill.active { background: var(--primary); color: #ffffff; border-color: var(--primary); }

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

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.project-card.wide { grid-column: span 2; }

.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

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

.project-card.wide .project-card-photo { aspect-ratio: 16 / 9; }

.project-card-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  transition: transform 400ms ease;
}

.project-card:hover .project-card-photo > img { transform: scale(1.06); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,20,20,0.70) 0%, transparent 65%);
  pointer-events: none;
  transition: opacity 300ms;
}

.project-card:hover .project-card-overlay { opacity: 0.85; }

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

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

.project-card-location {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.70);
}

.project-card-location svg { width: 12px; height: 12px; color: var(--primary); }

.project-card-body {
  padding: 20px 24px 24px;
}

.project-card-body h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.project-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-meta-item {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-results-note {
  margin-top: 36px;
  text-align: center;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-card.wide { grid-column: 1 / -1; }
}

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

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--surface);
  padding: var(--section-py) 0;
}

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

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

.review-card {
  padding: 32px;
  background: var(--canvas);
  border: 1px solid var(--border);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

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

.review-quote {
  font-family: 'Archivo', sans-serif;
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 52ch;
}

.review-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.review-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.review-badge {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

.faq-header {
  margin-bottom: clamp(40px, 5vh, 64px);
}

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

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

details.faq-item > summary {
  cursor: pointer;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 16px;
  transition: color 150ms;
}

details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::marker { display: none; }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms ease, color 150ms;
}

details.faq-item > summary:hover { color: var(--primary); }
details.faq-item > summary:hover .faq-chevron { color: var(--primary); }

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

.faq-answer {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  max-width: 66ch;
}

.faq-answer a { color: var(--primary); text-underline-offset: 3px; }

/* ============================================================
   TEAM CTA
   ============================================================ */
.team-cta {
  background: var(--accent);
  padding: clamp(56px, 7vh, 96px) 0;
}

.team-cta-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  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, 2.8vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  max-width: 28ch;
}

.team-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  max-width: 48ch;
}

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

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

.cta-banner-left {
  flex: 1;
  min-width: 260px;
}

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

.cta-banner-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 20ch;
}

.cta-banner-title em {
  color: var(--primary);
  font-style: normal;
}

.cta-banner-sub,
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  margin-top: 14px;
  max-width: 52ch;
  line-height: 1.6;
}

.cta-banner-actions,
.cta-banner-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

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

.cta-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.cta-phone-big,
.cta-phone-number {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 40px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.cta-phone-big:hover, .cta-phone-number:hover { color: var(--primary-light); text-decoration: none; }

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

.contact-section {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

.contact-form-col {}

.contact-form-heading {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 36px);
  color: var(--ink);
  margin-bottom: 24px;
}

.contact-form-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.contact-form-sub a { color: var(--primary); }

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
.form-textarea,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 500;
  border-radius: 0;
  outline: none;
  transition: border-color 150ms;
  appearance: none;
  -webkit-appearance: none;
}

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

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

.form-submit,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  padding: 18px 36px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 150ms;
  align-self: flex-start;
}

.form-submit:hover, button[type="submit"]:hover { filter: brightness(0.90); }

.req { color: var(--primary); }

.contact-info-col {
  padding-top: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.contact-item-value,
.info-item-value {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}

.contact-item-value a,
.info-item-value a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-item-value a:hover,
.info-item-value a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-phone-big {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.info-card-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.info-item:last-child { border-bottom: none; }

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

.info-service-pill {
  display: inline-flex;
  padding: 4px 10px;
  border: 1px solid var(--border-brand);
  background: var(--primary-wash);
  color: var(--accent);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.info-social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.info-social-links a {
  color: var(--muted);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.info-social-links a:hover { color: var(--primary); }

.cta-phone-block {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--primary-wash);
  border: 1px solid var(--border-brand);
}

.cta-phone-block a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.cta-phone-prompt {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cta-phone-display {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--primary);
  letter-spacing: -0.02em;
}

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

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */
.page-header {
  min-height: clamp(280px, 40vh, 480px);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(20,20,20,0.35) 0%, rgba(20,20,20,0.75) 100%);
  pointer-events: none;
}

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

.page-header-inner h1,
.page-header-inner > h1 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 20ch;
}

.page-header-inner h1 em {
  color: var(--primary);
  font-style: normal;
}

.page-header-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.78);
  margin-top: 14px;
  max-width: 52ch;
  line-height: 1.6;
}

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

.header-title {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #ffffff;
}

.header-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
}

.page-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 16px;
}

.page-header-breadcrumb a { color: rgba(255,255,255,0.60); text-decoration: none; }
.page-header-breadcrumb a:hover { color: var(--primary); text-decoration: none; }
.page-header-breadcrumb .current { color: var(--primary); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-header {
  min-height: clamp(240px, 35vh, 420px);
}

.about-story {
  background: var(--canvas);
  padding: var(--section-py) 0;
}

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

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

.about-portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-portrait-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none !important;
  filter: grayscale(15%);
}

.about-portrait-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.badge-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.badge-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-top: 2px;
}

.about-story-col {
  padding-top: 8px;
}

.about-story-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 22ch;
}

.about-story-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story-body p {
  font-size: 16.5px;
  line-height: 1.70;
  color: var(--ink-mid);
  max-width: 66ch;
}

.drop-cap::first-letter {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 3.6em;
  line-height: 0.78;
  float: left;
  margin-right: 6px;
  color: var(--primary);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .about-story-inner { grid-template-columns: 1fr; }
  .about-portrait-wrap { aspect-ratio: 16 / 9; max-height: 340px; }
  .about-portrait-badge { bottom: 8px; right: 8px; width: 76px; height: 76px; }
  .badge-num { font-size: 22px; }
}

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

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

.values-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: clamp(32px, 4vh, 56px);
  max-width: 22ch;
}

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

.value-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--canvas);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 12px;
}

.value-card h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 14px;
}

.value-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.60;
}

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

/* ============================================================
   JOURNEY
   ============================================================ */
.journey {
  background: var(--ink);
  padding: var(--section-py) 0;
  overflow: hidden;
}

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

.journey-inner > .section-eyebrow { color: var(--primary); }

.journey-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: clamp(40px, 5vh, 72px);
  max-width: 24ch;
}

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

.journey-track::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: rgba(95,156,50,0.30);
  z-index: 0;
}

.journey-step {
  position: relative;
  z-index: 1;
}

.journey-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--ink);
  margin-bottom: 16px;
  position: relative;
}

.journey-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--primary);
}

.journey-label {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.journey-step-title,
.journey-step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-bottom: 10px;
}

.journey-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

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

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

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

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

.crew-headline {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 22ch;
}

.crew-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
  margin-bottom: clamp(32px, 4vh, 56px);
}

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

.crew-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--canvas);
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}

.crew-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary);
}

.crew-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.crew-card-num {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: rgba(95,156,50,0.15);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.crew-card-name,
.crew-card h3 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 6px;
}

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

.crew-card-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) clamp(20px, 4vw, 56px) clamp(40px, 5vh, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

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

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

.footer-logo,
.footer-brand-logo {
  margin-bottom: 4px;
}

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

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  line-height: 1.55;
  max-width: 36ch;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 38ch;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-line svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-contact-line a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
}

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

.footer-col {}

.footer-col h4,
.footer-col-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
  display: block;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

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

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

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

.footer-col ul li { color: rgba(255,255,255,0.65); font-size: 14px; }

.footer-phone-link,
.footer-email-link {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 500;
}

.footer-phone,
.footer-email {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

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

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 150ms;
}

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

.footer-social a svg { width: 18px; height: 18px; }

.footer-top {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 96px) clamp(20px, 4vw, 56px) clamp(40px, 5vh, 64px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.70); text-decoration: none; }

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

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

/* ============================================================
   MOBILE CALL PILL / STICKY CTA
   ============================================================ */
.mobile-call-pill,
.mobile-cta-pill,
.mobile-cta-sticky,
.mobile-sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: filter 180ms, transform 180ms;
}

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

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

.mobile-cta-sticky > a,
.mobile-sticky-cta > a {
  display: inherit;
  align-items: inherit;
  gap: inherit;
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

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

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(0.22,1,0.36,1), transform 650ms cubic-bezier(0.22,1,0.36,1);
}

.fade-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 650ms cubic-bezier(0.22,1,0.36,1), transform 650ms cubic-bezier(0.22,1,0.36,1);
}

.fade-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 650ms cubic-bezier(0.22,1,0.36,1), transform 650ms cubic-bezier(0.22,1,0.36,1);
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms cubic-bezier(0.22,1,0.36,1), transform 600ms cubic-bezier(0.22,1,0.36,1);
}

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

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

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

/* Pre-visible states override for elements that start visible */
.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible,
.stagger.visible > * {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   STATS
   ============================================================ */
.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;
  font-family: 'Archivo Black', sans-serif;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: clamp(11px, 1vw, 14px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-top: 8px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
}

/* ============================================================
   PROCESS (if used)
   ============================================================ */
.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-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}

/* ============================================================
   TABLE CELLS (safe scoping)
   ============================================================ */
.services-table thead .col-service,
.services-table thead .col-desc,
.services-table thead .col-timeline,
.services-table thead .col-price {
  background: var(--ink);
  color: #ffffff;
}

.services-table tbody .col-service,
.services-table tbody .col-desc,
.services-table tbody .col-timeline,
.services-table tbody .col-price {
  background: transparent;
  color: var(--ink);
}

/* ============================================================
   MISCELLANEOUS
   ============================================================ */

/* Texture grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9998;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Success state for contact form */
.form-success {
  display: none;
  background: var(--primary-wash);
  border: 1px solid var(--primary);
  color: var(--accent);
  padding: 18px 24px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
}

.form-success.visible { display: block; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-card.service-flagship { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-ribbon { top: auto; bottom: auto; top: 16px; right: 16px; font-size: 10px; padding: 6px 12px; }
  .hero-title { max-width: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .team-cta-inner { flex-direction: column; }
  .cta-banner-inner { flex-direction: column; }
  .contact-form-col .section-header { margin-bottom: 24px; }
}

@media (max-width: 640px) {
  .hero-trust-chips { gap: 8px; }
  .trust-chip { font-size: 10px; padding: 5px 10px; letter-spacing: 0.14em; }
  .trust-strip-inner { gap: 8px; }
  .trust-chip-pill { font-size: 10px; padding: 6px 10px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .filter-strip { gap: 8px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


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