/* Gerryk — Light theme, dark green + bright green, Montserrat-inspired */

:root {
  --dark-green: #004225;
  --dark-green-deep: #002E1A;
  --bright-green: #28A745;
  --bright-green-hover: #1F8A38;

  /* Backward-compat aliases (used in legacy markup) */
  --primary: #004225;
  --primary-soft: #28A745;
  --primary-deep: #002E1A;
  --accent: #28A745;

  --bg: #FFFFFF;
  --bg-alt: #F7F8F5;
  --bg-deep: #EEF1EB;
  --panel: #FFFFFF;

  --ink: #0F1A14;
  --ink-soft: #3E4A42;
  --ink-mute: #6D7A72;

  --line: #E2E7E1;
  --line-bright: #CBD3CA;

  --radius: 6px;
  --radius-lg: 14px;
  --container: 1240px;

  --shadow-sm: 0 1px 3px rgba(10,30,20,0.06);
  --shadow: 0 6px 24px -6px rgba(10,30,20,0.10), 0 2px 6px rgba(10,30,20,0.04);
  --shadow-lg: 0 30px 60px -20px rgba(10,30,20,0.18);
}

/* Legacy theme attributes — all map to light theme now */
[data-theme="charcoal"], [data-theme="midnight"] { /* no-op */ }

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.accent { color: var(--bright-green); }

/* ---------- Top bar (thin utility bar) ---------- */
.topbar {
  background: var(--dark-green);
  color: #F4F7F2;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  gap: 20px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DCE6DE;
}
.topbar-item svg { opacity: 0.85; flex-shrink: 0; }
.topbar-socials {
  display: inline-flex;
  gap: 4px;
}
.topbar-socials a {
  width: 26px; height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #F4F7F2;
  transition: background .15s;
}
.topbar-socials a:hover { background: var(--bright-green); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 200;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--dark-green);
  text-decoration: none;
}
.logo-badge { line-height: 0; }
.logo-badge .logo-svg {
  width: 68px;
  height: 68px;
  display: block;
  transition: transform .35s ease;
}
.logo-badge:hover .logo-svg { transform: rotate(-4deg) scale(1.04); }
.footer .logo-badge .logo-svg { width: 104px; height: 104px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav > a,
.nav .nav-item > a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav > a:hover, .nav .nav-item > a:hover { color: var(--bright-green); }
.nav > a.active, .nav .nav-item > a.active { color: var(--dark-green); }
.nav > a.active::after, .nav .nav-item > a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--bright-green);
}
.nav-caret { opacity: 0.6; transition: transform .2s ease; }

/* Dropdown */
.nav-item { position: relative; }
.nav-item.has-menu > a { cursor: default; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 320px;
  padding-top: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.nav-item:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown-inner {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 10px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.nav-dropdown-inner::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.nav-dropdown-label {
  display: none;
}
.nav-dropdown-grid {
  display: flex;
  flex-direction: column;
}
.nav-dropdown-grid a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 4px;
  transition: all .15s;
}
.nav-dropdown-grid a:hover {
  background: var(--bg-alt);
  color: var(--dark-green);
}

.header-cta {
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-primary {
  background: var(--dark-green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--dark-green-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(0,66,37,0.5);
}
.btn-dark {
  background: var(--dark-green);
  color: #fff;
}
.btn-dark:hover {
  background: var(--dark-green-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--dark-green);
  border-color: var(--line-bright);
}
.btn-ghost:hover { border-color: var(--dark-green); color: var(--dark-green); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }


/* ---------- Hero: full-bleed photo, text overlay, floating stats ---------- */
.hero-ref {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  min-height: 640px;
}
.hero-ref-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-ref-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0.0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.hero-ref-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: 48px;
  align-items: end;
  min-height: 640px;
  padding: 80px 0 0;
}
.hero-ref-text {
  max-width: 640px;
  color: #fff;
  padding-bottom: 20px;
}
.hero-ref-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--bright-green);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-ref-text h1 {
  font-family: inherit;
  font-weight: 800;
  font-size: clamp(42px, 5.6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero-ref-text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin: 0 0 28px;
  max-width: 520px;
}
.hero-ref-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  background: var(--bright-green);
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.hero-ref-cta:hover {
  background: var(--bright-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(40,167,69,0.5);
}

.hero-ref-stats {
  align-self: end;
  background: #fff;
  color: var(--ink);
  border-radius: 4px 4px 0 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 -10px 40px -10px rgba(0,0,0,0.35);
  min-width: 240px;
  margin-bottom: 0;
}
.hero-ref-stat .num {
  font-size: 38px;
  font-weight: 800;
  color: var(--bright-green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-ref-stat .lbl {
  font-size: 13px;
  line-height: 1.3;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 960px) {
  .hero-ref { min-height: 0; }
  .hero-ref-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 0 40px;
    min-height: 0;
  }
  .hero-ref-stats { margin-bottom: 0; min-width: 0; }
}


/* ---------- Hero: split (image top, dark cut bar, then content) ---------- */
.hero-split {
  position: relative;
  background: #fff;
  padding-bottom: 40px;
}
.hero-split-image {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center;
  color: #fff;
  isolation: isolate;
  display: flex;
  align-items: center;
}
.hero-split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(0,20,10,0.85) 0%,
    rgba(0,30,16,0.70) 40%,
    rgba(0,30,16,0.30) 80%,
    rgba(0,30,16,0.15) 100%);
  z-index: 1;
}
.hero-split-text {
  position: relative;
  z-index: 2;
  padding: 110px 0 140px;
  max-width: 720px;
  color: #fff;
}
.hero-split-text .hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 20px;
}
.hero-split-text h1,
.hero-split-text h1 span {
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  text-wrap: pretty;
  color: #fff;
}
.hero-split-text h1 .accent { color: var(--bright-green); }
.hero-split-text .hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.90);
  max-width: 580px;
}

/* the cut bar sits overlapping the bottom of the image */
.hero-cut {
  position: relative;
  margin-top: -72px;
  z-index: 3;
}
.hero-cut-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.hero-cut-dark {
  background: #0F1A14;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 32px;
  min-height: 104px;
  gap: 28px;
  flex: 1 1 auto;
  min-width: 0;
}
.hero-cut-cta { padding: 14px 32px; font-size: 14px; flex-shrink: 0; }
.hero-cut-link {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .15s;
}
.hero-cut-link:hover { color: var(--bright-green); }

.hero-cut-stats {
  display: flex;
  gap: 40px;
  padding: 0 0 0 48px;
  align-items: center;
  flex-shrink: 0;
  min-height: 104px;
  background: #fff;
}
.hero-cut-stat .num {
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.hero-cut-stat .num .accent { color: var(--bright-green); }
.hero-cut-stat .lbl {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .hero-split-text { padding: 80px 0 120px; }
  .hero-cut-inner { flex-wrap: wrap; }
  .hero-cut-dark { min-width: 100%; }
  .hero-cut-stats {
    padding: 24px 0 0;
    width: 100%;
    justify-content: space-between;
    min-height: 0;
    gap: 16px;
  }
  .hero-cut-stat .num { font-size: 26px; }
  .hero-cut-stat .lbl { font-size: 12px; }
}

/* Legacy hero keeps working for subpages if referenced */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

/* Legacy hero keeps working for subpages if referenced */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(0,30,15,0.88) 0%,
    rgba(0,46,26,0.78) 40%,
    rgba(0,46,26,0.45) 70%,
    rgba(0,46,26,0.30) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 720px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 20px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.hero h1 .accent { color: var(--bright-green); }
.hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: rgba(255,255,255,0.92);
}
.hero-stat .num {
  font-size: 36px;
  font-weight: 800;
  color: var(--bright-green);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}

/* ---------- Section general ---------- */
section { padding: 110px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 12px;
}
.section-head {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 {
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-head h2 .accent { color: var(--bright-green); }
.section-head p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

/* ---------- Summary cards (4-up under hero) — flat, borderless ---------- */
.summary-cards {
  padding: 100px 0 80px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.summary-card {
  background: transparent;
  border: none;
  padding: 0 8px;
  transition: transform .2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.summary-card:hover {
  transform: translateY(-2px);
}
.summary-icon {
  width: auto; height: auto;
  background: transparent;
  color: var(--dark-green);
  display: block;
  margin-bottom: 8px;
}
.summary-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.summary-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Story / about split ---------- */
.story {
  background: var(--bg-alt);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.story-art-stack {
  display: grid;
  grid-template-rows: 1fr 1fr auto;
  gap: 16px;
  position: relative;
}
.story-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.story-art-top { aspect-ratio: 5 / 3; }
.story-art-bot { aspect-ratio: 5 / 3; }
.story-art img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-banner {
  background: var(--bright-green);
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 18px;
  box-shadow: var(--shadow);
}
.story-banner .big {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.story-banner .sm {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-body .section-eyebrow { margin-bottom: 10px; }
.story-body h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.story-body p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- Detail service cards (dark patterned) ---------- */
.services-dark {
  background: var(--dark-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.services-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("swirl-bg.svg");
  background-size: 1400px auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
.services-dark .section-head h2 { color: #fff; }
.services-dark .section-head p { color: rgba(255,255,255,0.8); }
.services-dark .section-eyebrow { color: var(--bright-green); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .25s ease;
}
.service-card:hover {
  border-color: var(--bright-green);
  background: rgba(255,255,255,0.06);
  transform: translateY(-4px);
}
.service-card-img {
  aspect-ratio: 16 / 10;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-card-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bright-green);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.service-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-card-body p {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.service-card-link {
  color: var(--bright-green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .2s ease;
}
.service-card-link:hover { gap: 12px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  cursor: pointer;
}
.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,15,0.85) 0%, rgba(0,30,15,0.0) 55%);
  pointer-events: none;
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  color: #fff;
  z-index: 1;
}
.gallery-caption .city {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.gallery-caption .kind {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bright-green);
}

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  aspect-ratio: 1 / 1.1;
}
.why-art .a, .why-art .b, .why-art .c {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  position: relative;
}
.why-art .a { grid-row: 1 / 3; grid-column: 1 / 2; }
.why-art .b { grid-row: 1 / 2; grid-column: 2 / 3; margin-top: 40px; }
.why-art .c { grid-row: 2 / 3; grid-column: 2 / 3; }
.why-art img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 32px; }
.why-item {
  display: flex; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.why-item:last-child { border-bottom: none; padding-bottom: 0; }
.why-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bright-green);
  color: #fff;
  display: grid; place-items: center;
}
.why-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-item p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------- FAQ (dark patterned) ---------- */
.faq {
  background: var(--dark-green);
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("swirl-bg.svg");
  background-size: 1400px auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  z-index: -1;
  pointer-events: none;
}
.faq .section-head h2 { color: #fff; }
.faq .section-head p { color: rgba(255,255,255,0.78); }
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: background .2s;
}
.faq-item:hover { background: rgba(255,255,255,0.08); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bright-green);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  line-height: 1.7;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 26px 22px;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.process-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-deep);
}
.process-img img { width: 100%; height: 100%; object-fit: cover; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: all .2s;
}
.process-step:hover {
  border-color: var(--bright-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.process-step .num {
  position: absolute;
  top: 22px; right: 22px;
  font-size: 36px;
  font-weight: 800;
  color: var(--bg-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--bg-alt); }
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 72px;
  line-height: 0.7;
  color: var(--bright-green);
  opacity: 0.2;
  font-family: Georgia, serif;
}
.testimonial .stars {
  color: var(--bright-green);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial .blurb {
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.testimonial .body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-deep);
  overflow: hidden;
}
.testimonial .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial .author-name {
  font-weight: 700;
  color: var(--dark-green);
  font-size: 15px;
}
.testimonial .author-role {
  color: var(--ink-mute);
  font-size: 13px;
}

/* ---------- Contact strip ---------- */
.contact-strip {
  position: relative;
  overflow: hidden;
  background: var(--dark-green);
  color: #fff;
  padding: 100px 0;
  isolation: isolate;
}
.contact-strip .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-strip .section-eyebrow { color: var(--bright-green); }
.contact-strip h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.contact-methods {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.contact-method {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  flex: 1;
  min-width: 240px;
}
.contact-method .ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bright-green);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-method .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3px;
}
.contact-method .val {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.contact-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.contact-art img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-green-deep);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer .logo { color: #fff; }
.footer-tag {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 340px;
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer ul { display: flex; flex-direction: column; gap: 12px; }
.footer ul li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.footer ul li a:hover { color: var(--bright-green); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--bright-green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-license {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}
.footer-nav {
  display: flex;
  gap: 24px;
}
.footer-nav a:hover { color: var(--bright-green); }

/* ---------- Subpage header ---------- */
.page-header {
  background: var(--dark-green);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("swirl-bg.svg");
  background-size: 1400px auto;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}
.page-header .breadcrumb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 16px;
}
.page-header h1 {
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}
.page-header h1 .accent { color: var(--bright-green); }
.page-header p {
  margin: 20px auto 0;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 700px;
  line-height: 1.65;
}

/* ---------- Placeholder tile (subpage service detail) ---------- */
.image-block {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.image-block img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Tweaks panel ---------- */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  z-index: 1000;
  font-size: 13px;
  display: none;
}
.tweaks-panel.visible { display: block; }
.tweaks-panel h6 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green);
  margin-bottom: 14px;
}
.tweak-row { margin-bottom: 12px; }
.tweak-row:last-child { margin-bottom: 0; }
.tweak-row label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 8px;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-options button {
  padding: 8px 12px;
  background: var(--bg-alt);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.tweak-options button:hover { border-color: var(--bright-green); }
.tweak-options button.active {
  background: var(--dark-green);
  color: #fff;
  border-color: var(--dark-green);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .why-grid, .process-grid, .contact-strip .container { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .topbar-left .topbar-item.hide-sm,
  .topbar-right .topbar-item.hide-sm { display: none; }
  .nav, .header-cta .phone { display: none; }
  .header-inner { height: 72px; }
  .summary-grid, .services-grid, .gallery-grid, .testimonial-grid, .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  section { padding: 80px 0; }
}

/* ---------- Legacy compat (subpages) ---------- */
.ph { background: var(--bg-deep); position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  opacity: 0.55;
  pointer-events: none;
}
.ph.has-img::after { display: none; }

/* section-label alias (older markup) */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 12px;
}
.page-header .section-label { color: var(--bright-green); }
.services-dark .section-label, .faq .section-label, .page-header .section-label { color: var(--bright-green); }

/* about-grid (about page) */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-art {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.about-art .ph-main {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 10;
}
.about-art .ph-sub {
  aspect-ratio: 1 / 1;
}
.about-art .ph-sub:nth-of-type(2) { grid-column: 1 / 2; }
.about-body h2 {
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.about-body p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}
.about-art .ph-badge {
  position: absolute;
  bottom: -14px; right: -14px;
  background: var(--bright-green);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-art .ph-badge .big {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.about-art .ph-badge .sm {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.92;
}

/* Principles (about page) */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.principle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all .2s ease;
}
.principle:hover {
  border-color: var(--bright-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.principle .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--bright-green);
  margin-bottom: 16px;
}
.principle h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.principle p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

/* Override .why background (legacy use) */
.why {
  background: var(--bg-alt);
}

/* Team grid (about page) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .2s;
}
.team-card:hover {
  border-color: var(--bright-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-card .img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: var(--bg-deep);
  border-radius: 0;
}
.team-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card .since {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bright-green);
  padding: 20px 22px 0;
}
.team-card .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  padding: 8px 22px 2px;
  letter-spacing: -0.01em;
}
.team-card .role {
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 0 22px 22px;
}

/* CTA strip (legacy) */
.cta {
  background: var(--dark-green);
  color: #fff;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("swirl-bg.svg");
  background-size: 1400px auto;
  background-position: center;
  opacity: 0.9;
  z-index: -1;
}
.cta h2 {
  font-weight: 800;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  text-wrap: balance;
}
.cta h2 .accent { color: var(--bright-green); }
.cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Service detail rows (services page) */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 100px;
}
.svc-detail:last-child { margin-bottom: 0; }
.svc-detail > .img,
.svc-detail > .ph {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-detail h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.svc-detail p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.svc-detail ul {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-detail ul li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
}
.svc-detail ul li span:last-child {
  color: var(--bright-green);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.contact-info p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.info-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-item .lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.info-item .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-green);
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--bright-green);
  box-shadow: 0 0 0 3px rgba(40,167,69,0.12);
}
.contact-form textarea { resize: vertical; min-height: 120px; }

/* Gallery / Project page */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-bar button {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
  transition: all .15s;
}
.filter-bar button:hover { border-color: var(--dark-green); color: var(--dark-green); }
.filter-bar button.active {
  background: var(--dark-green);
  color: #fff;
  border-color: var(--dark-green);
}
.project-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .2s;
}
.project-card:hover {
  border-color: var(--bright-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.project-card .img {
  aspect-ratio: 16 / 10;
  background: var(--bg-deep);
  overflow: hidden;
  border-radius: 0;
}
.project-card .img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-card .body { padding: 26px 28px 28px; }
.project-card .em {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bright-green);
  margin-bottom: 10px;
}
.project-card .name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.project-card .city {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.project-card .desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}
.project-card .meta {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}
.project-card .meta strong {
  display: block;
  color: var(--dark-green);
  font-size: 14px;
  margin-top: 2px;
}

/* Areas page */
.map-block {
  position: relative;
  aspect-ratio: 16 / 8;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--bright-green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(40,167,69,0.2);
  transform: translate(-50%, -50%);
}
.map-pin .lbl {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-green);
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.region {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}
.region:first-child { border-top: none; padding-top: 0; }
.region h3 {
  font-weight: 800;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark-green);
  margin-bottom: 12px;
  text-wrap: pretty;
}
.region .desc {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.region-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.region-cities li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.region-cities li .zip {
  color: var(--ink-mute);
  font-weight: 500;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .about-grid, .contact-grid, .svc-detail, .region { grid-template-columns: 1fr; gap: 40px; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .project-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .principles-grid, .team-grid { grid-template-columns: 1fr; }
  .contact-form .field-row { grid-template-columns: 1fr; }
}

/* ---------- Global dark tint on project photos ----------
   A subtle ~12–18% dark green overlay for visual consistency and
   to ensure white captions/content read cleanly. Applied to photo
   containers that already use position: relative. */
.gallery-card::before,
.service-card-img::before,
.hero-collage-tile::before,
.story-art::before,
.why-art .a::before,
.why-art .b::before,
.contact-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 30, 18, 0.10) 0%,
    rgba(0, 30, 18, 0.22) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
/* Ensure img stays below the tint, captions stay above */
.gallery-card img,
.service-card-img img,
.story-art img,
.why-art img,
.contact-art img { position: relative; z-index: 0; }
.gallery-caption { z-index: 2; }
.story-badge { z-index: 2; }
/* Containers must be relative so the tint positions correctly */
.why-art .a, .why-art .b, .contact-art { position: relative; }
.story-art { position: relative; }
