/* ============================================================
   SUPERBLOOM — Enhancements (refined editorial design)
   Layered on top of styles.css. Keeps brand vars.
   ============================================================ */

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--green-dark, #0b3d2e), var(--green-mid, #3a7d44), #d97a3a);
  z-index: 1300;
  pointer-events: none;
  will-change: width;
  transition: width 0.08s linear;
}

/* ============================================================
   TOPBAR — transparent over hero (HOMEPAGE only)
   ============================================================ */
body.home-page .topbar:not(.topbar--scrolled) {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.home-page .topbar:not(.topbar--scrolled) .nav-links a:not(.btn-small) {
  color: rgba(255, 255, 255, 0.92) !important;
}
body.home-page .topbar:not(.topbar--scrolled) .brand { color: #fff; }
body.home-page .topbar:not(.topbar--scrolled) .nav-toggle { color: #fff; }
body.home-page .topbar:not(.topbar--scrolled) .nav-utils {
  border-left-color: rgba(255, 255, 255, 0.28) !important;
}
body.home-page .topbar:not(.topbar--scrolled) .theme-toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
}
body.home-page .topbar:not(.topbar--scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}
body.home-page .topbar:not(.topbar--scrolled) .lang-switcher__flags {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}
body.home-page .topbar:not(.topbar--scrolled) .btn-small {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
}
body.home-page .topbar:not(.topbar--scrolled) .btn-small:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.active,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO — editorial, single-column, no tree logo
   ============================================================ */
.hero--editorial {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: 8rem;
  padding-bottom: 5rem;
  margin-top: 0;
}
.hero--editorial .hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--editorial .hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
  filter: saturate(0.82) brightness(0.5) contrast(1.05);
}
.hero--editorial .hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,22,18,0.78) 0%, rgba(11,22,18,0.22) 30%, rgba(11,22,18,0.55) 70%, rgba(11,22,18,0.92) 100%),
    radial-gradient(ellipse at 15% 50%, rgba(11,61,46,0.55), transparent 60%);
}
.hero--editorial .hero__grain {
  position: absolute; inset: 0;
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero--editorial .hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.hero--editorial .hero__eyebrow {
  margin-bottom: 1.7rem;
  color: var(--green-light, #a7d7a9);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero--editorial .hero__title {
  font-family: var(--font-display, "Syne"), system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: #fff;
  margin: 0 0 2rem;
  text-wrap: balance;
  max-width: 17ch;
}
.hero--editorial .hero__title span {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 70%, rgba(255,255,255,0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero--editorial .hero__lead {
  font-size: clamp(1.08rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.86);
  max-width: 44rem;
  margin: 0 0 2.4rem;
  text-wrap: pretty;
  font-weight: 400;
}
.hero--editorial .hero__cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.hero--editorial .btn .arrow {
  display: inline-block;
  margin-left: 0.5rem;
  font-style: normal;
  transition: transform 0.4s cubic-bezier(0.33,1,0.38,1);
}
.hero--editorial .btn:hover .arrow { transform: translateX(4px); }

/* Right ghost button on dark hero */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.72);
}

@media (max-width: 720px) {
  .hero--editorial { padding-top: 7rem; padding-bottom: 4rem; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: #0b1612;
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(58, 125, 68, 0.22), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(217, 122, 58, 0.12), transparent 60%);
  pointer-events: none;
}
.stats-strip__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.6rem;
}
.stats-strip__item { text-align: center; }
.stats-strip__num {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.55rem;
}
.stats-strip__label {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.04em;
  max-width: 28ch;
  margin: 0 auto;
  line-height: 1.45;
}
.stats-strip__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
}
@media (max-width: 720px) {
  .stats-strip__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-strip__divider { display: none; }
}

/* ============================================================
   APPROACH — copy + 3D image collage
   ============================================================ */
.approach-section { background: var(--surface, #fff); }

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.approach-copy { max-width: 540px; }
.approach-copy .section-title { margin-bottom: 1.3rem; }
.approach-copy .section-lead { margin-bottom: 2.2rem; }

.approach-pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.approach-pillars li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line, rgba(11,61,46,0.12));
}
.approach-pillars li:last-child { border-bottom: 1px solid var(--line, rgba(11,61,46,0.12)); }
.approach-pillars__num {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-mid, #3a7d44);
  letter-spacing: 0.08em;
  padding-top: 3px;
}
.approach-pillars li strong {
  display: block;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--green-dark, #0b3d2e);
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
body.theme-dark .approach-pillars li strong { color: #fff; }
.approach-pillars li p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text);
  opacity: 0.82;
  line-height: 1.55;
}
.approach-actions { margin-top: 0.5rem; }

/* 3D collage */
.approach-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  perspective: 1400px;
  min-height: 600px;
}
.tilt {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-alt);
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  filter: saturate(0.92);
}
.tilt:hover img { transform: scale(1.06); }
.tilt figcaption {
  position: absolute;
  bottom: 1rem; left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(11, 22, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
}
.tilt__num {
  font-size: 0.7rem;
  color: var(--green-light, #a7d7a9);
}
.tilt--a { grid-column: 1 / 2; grid-row: 1 / 3; }
.tilt--b { grid-column: 2 / 3; grid-row: 1 / 2; }
.tilt--c { grid-column: 2 / 3; grid-row: 2 / 3; }

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-media { min-height: 0; }
  .approach-media { grid-template-rows: 200px 200px; }
}

/* ============================================================
   WHO — split copy + list
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.who-copy { max-width: 500px; }
.who-tagline {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-mid, #3a7d44);
  letter-spacing: -0.01em;
  margin: 1.6rem 0 0;
  padding-left: 1.2rem;
  border-left: 2px solid var(--green-mid, #3a7d44);
}
body.theme-dark .who-tagline { color: var(--green-light, #a7d7a9); border-left-color: var(--green-light, #a7d7a9); }
.who-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line, rgba(11,61,46,0.12));
}
.who-aside__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line, rgba(11,61,46,0.12));
  transition: padding-left 0.4s cubic-bezier(0.22,1,0.36,1);
}
.who-aside__row:hover { padding-left: 0.6rem; }
.who-aside__row span {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--green-dark, #0b3d2e);
  letter-spacing: -0.02em;
}
body.theme-dark .who-aside__row span { color: #fff; }
.who-aside__row i {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  font-family: var(--font-body), sans-serif;
}
@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES with imagery
   ============================================================ */
.services-section .section-head--center { margin-bottom: 4rem; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.svc-card {
  display: block;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.55s ease, border-color 0.4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -22px rgba(11, 22, 18, 0.22);
  border-color: rgba(11,61,46,0.32);
}
.svc-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.svc-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover .svc-card__media img { transform: scale(1.08); }
.svc-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 22, 18, 0.5));
}
.svc-card__index {
  position: absolute;
  top: 1.1rem; left: 1.2rem;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #fff;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}
.svc-card__body { padding: 1.8rem 1.9rem 2rem; }
.svc-card__body h3 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--green-dark, #0b3d2e);
  margin: 0 0 0.8rem;
}
body.theme-dark .svc-card__body h3 { color: #fff; }
.svc-card__body > p {
  font-size: 0.95rem;
  margin: 0 0 1.2rem;
  line-height: 1.55;
  color: var(--text);
  opacity: 0.85;
}
.svc-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.svc-card__bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.85;
}
.svc-card__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 6px; height: 1px;
  background: var(--green-mid, #3a7d44);
}
.svc-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid, #3a7d44);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s ease;
}
.svc-card:hover .svc-card__link { gap: 0.7rem; }
body.theme-dark .svc-card__link { color: var(--green-light, #a7d7a9); }

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

/* ============================================================
   PROCESS — zigzag + scroll-driven rail (centered)
   ============================================================ */
.process-section .section-head--center { margin-bottom: 4rem; }

.process-track {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.process-rail {
  position: absolute;
  top: 1rem; bottom: 1rem;
  left: 50%;
  width: 2px;
  background: var(--line, rgba(11,61,46,0.16));
  transform: translateX(-50%);
  overflow: hidden;
}
.process-rail__fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--green-mid, #3a7d44), var(--green-dark, #0b3d2e));
  transition: height 0.18s linear;
  will-change: height;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}
.process-step {
  position: relative;
  width: calc(50% - 3.5rem);
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, box-shadow 0.5s ease;
}
.process-step:hover {
  transform: translateY(-3px);
  border-color: rgba(11,61,46,0.3);
  box-shadow: 0 28px 56px -22px rgba(11,22,18,0.18);
}
.process-step:nth-child(odd) {
  margin-right: auto;
  text-align: right;
}
.process-step:nth-child(even) {
  margin-left: auto;
}
.process-step__inner { padding: 1.9rem 2rem; }
.process-step:nth-child(odd) .process-step__head { justify-content: flex-end; }
.process-step:nth-child(odd) .process-step__phase {
  border-left: none;
  border-right: 1px solid var(--line, rgba(11,61,46,0.18));
  padding-left: 0; padding-right: 0.8rem;
  order: -1;
}
.process-step:nth-child(odd) ul li {
  padding-left: 0; padding-right: 1rem;
}
.process-step:nth-child(odd) ul li::before {
  left: auto; right: 0;
}
.process-step__dot {
  position: absolute;
  top: 2rem;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-dark, #0b3d2e);
  border: 3px solid var(--surface, #fff);
  box-shadow: 0 0 0 1px var(--line, rgba(11,61,46,0.22));
  z-index: 3;
  transition: transform 0.35s ease, background 0.35s ease;
}
.process-step:nth-child(odd) .process-step__dot {
  right: -3.6rem;
  transform: translateX(50%);
}
.process-step:nth-child(even) .process-step__dot {
  left: -3.6rem;
  transform: translateX(-50%);
}
.process-step.active .process-step__dot {
  background: #d97a3a;
}
.process-step:nth-child(odd).active .process-step__dot { transform: translateX(50%) scale(1.18); }
.process-step:nth-child(even).active .process-step__dot { transform: translateX(-50%) scale(1.18); }

.process-step__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
.process-step__num {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
  color: #d97a3a;
  line-height: 1;
}
.process-step__phase {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  border-left: 1px solid var(--line, rgba(11,61,46,0.18));
  padding-left: 0.8rem;
}
.process-step h3 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--green-dark, #0b3d2e);
  margin: 0 0 0.7rem;
}
body.theme-dark .process-step h3 { color: #fff; }
.process-step p {
  color: var(--text);
  opacity: 0.86;
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.process-step ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.process-step ul li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.86;
}
.process-step ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6rem;
  width: 6px; height: 1px;
  background: var(--green-mid, #3a7d44);
}

@media (max-width: 880px) {
  .process-rail { left: 12px; transform: none; }
  .process-step {
    width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }
  .process-step__inner { padding-left: 3rem !important; }
  .process-step__head { justify-content: flex-start !important; }
  .process-step__phase {
    border-left: 1px solid var(--line, rgba(11,61,46,0.18)) !important;
    border-right: none !important;
    padding-left: 0.8rem !important; padding-right: 0 !important;
    order: 0 !important;
  }
  .process-step ul li { padding-left: 1rem !important; padding-right: 0 !important; }
  .process-step ul li::before { left: 0 !important; right: auto !important; }
  .process-step__dot {
    left: 12px !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
  .process-step.active .process-step__dot {
    transform: translateX(-50%) scale(1.18) !important;
  }
}

/* ============================================================
   WHY / KNOWLEDGE
   ============================================================ */
.why-section .section-head { max-width: 740px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.why-card {
  position: relative;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 10px;
  padding: 2.2rem 2rem 2.4rem;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green-mid, #3a7d44), #d97a3a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(11,61,46,0.3);
  box-shadow: 0 28px 56px -22px rgba(11,22,18,0.18);
}
.why-card:hover::before { transform: scaleX(1); }

.why-card__num {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #d97a3a;
  display: block;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--green-dark, #0b3d2e);
  margin: 0 0 0.8rem;
}
body.theme-dark .why-card h3 { color: #fff; }
.why-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.86;
  line-height: 1.6;
}

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

/* ============================================================
   ASSET TYPES
   ============================================================ */
.asset-types__head { max-width: 760px; margin: 0 0 3.5rem; }
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.asset-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 5/4;
  cursor: default;
  background: var(--surface-alt);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.asset-tile:hover { transform: translateY(-4px); }
.asset-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.85) brightness(0.82);
  transition: transform 0.9s cubic-bezier(0.4,0,0.2,1), filter 0.4s ease;
}
.asset-tile:hover img { transform: scale(1.06); filter: saturate(1) brightness(0.92); }
.asset-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(11,22,18,0.88));
  pointer-events: none;
}
.asset-tile p {
  position: absolute;
  bottom: 1.2rem; left: 1.3rem; right: 1.3rem;
  margin: 0;
  color: #fff;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  z-index: 2;
  line-height: 1.3;
}
@media (max-width: 900px) {
  .asset-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .asset-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURED PROJECTS
   ============================================================ */
.projects-feature__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}
.projects-feature__filters {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.proj-chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(11,61,46,0.14));
  background: transparent;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  font-family: inherit;
}
.proj-chip:hover {
  border-color: var(--green-mid, #3a7d44);
  color: var(--green-dark, #0b3d2e);
}
body.theme-dark .proj-chip:hover { color: #fff; }
.proj-chip.is-active {
  background: var(--green-dark, #0b3d2e);
  color: #fff;
  border-color: var(--green-dark, #0b3d2e);
}

.projects-feature__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
}
.proj-card {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface, #fff);
  border: 1px solid var(--line-soft, rgba(11,61,46,0.06));
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.55s ease;
  min-height: 280px;
}
.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px -22px rgba(11, 22, 18, 0.3);
}
.proj-card--lg { grid-column: span 4; min-height: 380px; }
.proj-card--md { grid-column: span 3; min-height: 320px; }
.proj-card--sm { grid-column: span 2; min-height: 260px; }

.proj-card__img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.proj-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.proj-card:hover .proj-card__img img { transform: scale(1.06); }
.proj-card__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,0.82) 100%);
}
.proj-card__status {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--green-dark, #0b3d2e);
  font-weight: 600;
  z-index: 2;
}
.proj-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.6rem 1.7rem;
  color: #fff;
  z-index: 2;
}
.proj-card__kicker {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 0.5rem;
}
.proj-card__title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}
.proj-card--lg .proj-card__title { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.proj-card__meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.proj-card__open {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  display: grid;
  place-items: center;
  color: var(--green-dark, #0b3d2e);
  z-index: 3;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
}
.proj-card:hover .proj-card__open {
  background: #fff;
  transform: rotate(-45deg) scale(1.1);
}
@media (max-width: 900px) {
  .projects-feature__grid { grid-template-columns: 1fr; }
  .proj-card--lg, .proj-card--md, .proj-card--sm { grid-column: span 1; min-height: 280px; }
}

/* ============================================================
   LEADERSHIP — horizontal cards
   ============================================================ */
.leadership-section .section-head--center { margin-bottom: 4rem; }
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.lead-card {
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.55s ease, border-color 0.4s ease;
}
.lead-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11,61,46,0.3);
  box-shadow: 0 36px 70px -22px rgba(11,22,18,0.2);
}
.lead-card__photo {
  position: relative;
  background: var(--surface-alt);
  overflow: hidden;
}
.lead-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.02);
  transition: filter 0.55s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.lead-card:hover .lead-card__photo img { filter: none; transform: scale(1.04); }
.lead-card__body {
  padding: 1.9rem 1.9rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-card__body .eyebrow { margin-bottom: 0.8rem; }
.lead-card__body h3 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.32rem;
  letter-spacing: -0.02em;
  color: var(--green-dark, #0b3d2e);
  margin: 0 0 0.7rem;
}
body.theme-dark .lead-card__body h3 { color: #fff; }
.lead-card__body p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--text);
  opacity: 0.85;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .lead-grid { grid-template-columns: 1fr; }
  .lead-card { grid-template-columns: 1fr; }
  .lead-card__photo { aspect-ratio: 4/3; }
}

/* ============================================================
   PROJECT MODAL
   ============================================================ */
.proj-modal {
  position: fixed; inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.proj-modal.is-open { display: flex; }
.proj-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(11, 22, 18, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: pmFade 0.4s cubic-bezier(0.22,1,0.36,1);
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
.proj-modal__panel {
  position: relative;
  width: min(1260px, 100%);
  max-height: 92vh;
  background: var(--surface, #fff);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: pmIn 0.55s cubic-bezier(0.33,1,0.38,1);
  box-shadow: 0 80px 140px -20px rgba(0,0,0,0.55);
}
@keyframes pmIn {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.proj-modal__close {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 10;
  color: var(--green-dark, #0b3d2e);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), background 0.3s ease;
}
.proj-modal__close:hover { background: #fff; transform: rotate(90deg); }

.proj-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  height: 100%;
  overflow: hidden;
}

/* Gallery */
.pm-gallery {
  background: #0b1612;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pm-gallery__main {
  position: relative;
  flex: 1;
  min-height: 380px;
  overflow: hidden;
}
.pm-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: pmSlide 0.5s cubic-bezier(0.22,1,0.36,1);
}
@keyframes pmSlide {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}
.pm-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--green-dark, #0b3d2e);
  transition: transform 0.35s ease, background 0.3s ease;
  z-index: 2;
}
.pm-gallery__btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.pm-gallery__btn--prev { left: 1rem; }
.pm-gallery__btn--next { right: 1rem; }
.pm-gallery__counter {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(11, 22, 18, 0.78);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  z-index: 2;
}
.pm-gallery__thumbs {
  display: flex;
  gap: 0.45rem;
  padding: 0.8rem;
  overflow-x: auto;
  background: rgba(0,0,0,0.5);
  scrollbar-width: thin;
}
.pm-gallery__thumbs::-webkit-scrollbar { height: 5px; }
.pm-gallery__thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.25); border-radius: 5px; }
.pm-gallery__thumb {
  flex-shrink: 0;
  width: 92px; height: 62px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  background: none;
  padding: 0;
  transition: opacity 0.35s ease, border-color 0.3s ease, transform 0.3s ease;
}
.pm-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pm-gallery__thumb:hover { opacity: 0.9; }
.pm-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--green-light, #a7d7a9);
}

/* Info */
.pm-info {
  padding: 2.6rem 2.4rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  background: var(--surface, #fff);
}
.pm-info__head {
  border-bottom: 1px solid var(--line, rgba(11,61,46,0.12));
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
}
.pm-info__title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  letter-spacing: -0.025em;
  color: var(--green-dark, #0b3d2e);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
body.theme-dark .pm-info__title { color: #fff; }
.pm-info__sub {
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.72;
  margin: 0 0 1.1rem;
}
.pm-info__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.pm-info__pill {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  color: var(--green-dark, #0b3d2e);
  font-weight: 600;
}
body.theme-dark .pm-info__pill { color: var(--green-light, #a7d7a9); }

.pm-info__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line, rgba(11,61,46,0.12));
}
.pm-info__tab {
  background: none;
  border: none;
  padding: 0.75rem 1.05rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  opacity: 0.65;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease, color 0.3s ease;
  font-family: inherit;
}
.pm-info__tab:hover { opacity: 1; }
.pm-info__tab.is-active {
  opacity: 1;
  color: var(--green-dark, #0b3d2e);
  font-weight: 600;
}
body.theme-dark .pm-info__tab.is-active { color: #fff; }
.pm-info__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--green-dark, #0b3d2e);
}
body.theme-dark .pm-info__tab.is-active::after { background: var(--green-light, #a7d7a9); }

.pm-info__panel { flex: 1; }
.pm-info__panel.is-hidden { display: none; }
.pm-info__panel p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.3rem;
}
.pm-info__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.pm-info__stat {
  padding: 1rem 1.1rem;
  background: var(--surface-alt);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 7px;
}
.pm-info__stat dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.65;
  margin-bottom: 0.3rem;
}
.pm-info__stat dd {
  margin: 0;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dark, #0b3d2e);
  letter-spacing: -0.01em;
}
body.theme-dark .pm-info__stat dd { color: #fff; }
.pm-info__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pm-info__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  padding: 0.95rem 1.05rem;
  background: var(--surface-alt);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 7px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.pm-info__list li::before {
  content: "";
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-mid, #3a7d44);
  margin-top: 0.5rem;
}
.pm-info__list li strong {
  color: var(--green-dark, #0b3d2e);
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  display: block;
  margin-bottom: 0.15rem;
}
body.theme-dark .pm-info__list li strong { color: #fff; }
.pm-info__list li span { color: var(--text); opacity: 0.85; }

.pm-info__cta {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(11,61,46,0.12));
}
.pm-info__disc {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.65;
  margin: 0.95rem 0 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .proj-modal { padding: 0.6rem; }
  .proj-modal__layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 40vh) 1fr;
  }
  .pm-info { padding: 1.8rem 1.4rem; }
}


/* ============================================================
   GLOBAL — universal page refinements (apply to ALL pages)
   ============================================================ */

/* Smoother button hover globally */
.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.btn-ghost,
.btn-small {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}
.btn-primary:hover,
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -10px rgba(11, 22, 18, 0.28);
}

/* ============================================================
   PAGE HERO — subpages (about, services, projects, contact, team)
   Cleaner editorial treatment shared across pages.
   ============================================================ */
body:not(.home-page) .page-hero,
body:not(.home-page) .team-hero,
body:not(.home-page) .contact-hero,
body:not(.home-page) .service-hero,
body:not(.home-page) .projects-hero {
  position: relative;
  padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 6rem) !important;
  background:
    linear-gradient(180deg, rgba(11, 22, 18, 0.05), transparent 60%),
    var(--surface-alt, #f5f6f5);
  overflow: hidden;
}
body:not(.home-page) .page-hero::before,
body:not(.home-page) .team-hero::before,
body:not(.home-page) .contact-hero::before,
body:not(.home-page) .service-hero::before,
body:not(.home-page) .projects-hero::before {
  content: "";
  position: absolute;
  inset: -10% -20% auto auto;
  width: 60%; height: 80%;
  background:
    radial-gradient(circle at 70% 30%, rgba(58, 125, 68, 0.12), transparent 65%),
    radial-gradient(circle at 90% 80%, rgba(217, 122, 58, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body.theme-dark:not(.home-page) .page-hero,
body.theme-dark:not(.home-page) .team-hero,
body.theme-dark:not(.home-page) .contact-hero,
body.theme-dark:not(.home-page) .service-hero,
body.theme-dark:not(.home-page) .projects-hero {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25), transparent 60%),
    var(--surface-alt);
}
.page-hero .container,
.team-hero__inner,
.page-hero-inner,
.contact-hero__inner,
.service-hero__inner {
  position: relative;
  z-index: 1;
}

/* Display headings on hero pages */
body:not(.home-page) .page-hero h1,
body:not(.home-page) .team-hero h1,
body:not(.home-page) .contact-hero h1,
body:not(.home-page) .service-hero h1 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem) !important;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
  margin: 0.5rem 0 1.3rem;
  color: var(--green-deep, #06281e);
}
body.theme-dark:not(.home-page) .page-hero h1,
body.theme-dark:not(.home-page) .team-hero h1,
body.theme-dark:not(.home-page) .contact-hero h1,
body.theme-dark:not(.home-page) .service-hero h1 {
  color: #fff;
}

/* ============================================================
   TEAM PAGE — refined feature card + roster strip
   ============================================================ */
.team-page .team-hero { text-align: left; }
.team-page .team-hero__title {
  max-width: 18ch;
}
.team-page .team-hero__lead {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.6;
  color: var(--text);
  opacity: 0.85;
  margin: 0;
}

.team-page .team-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line, rgba(11,61,46,0.12));
}
.team-page .team-toolbar__head { max-width: 480px; }
.team-page .team-toolbar__head .subsection-title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--green-deep, #06281e);
  margin: 0 0 0.5rem;
}
body.theme-dark .team-page .team-toolbar__head .subsection-title { color: #fff; }
.team-page .team-toolbar__hint {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  opacity: 0.7;
}
.team-page .team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.team-page .team-filter {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(11,61,46,0.14));
  background: transparent;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  font-family: inherit;
}
.team-page .team-filter:hover {
  border-color: var(--green-mid, #3a7d44);
  color: var(--green-deep, #06281e);
}
.team-page .team-filter.is-active {
  background: var(--green-dark, #0b3d2e);
  color: #fff;
  border-color: var(--green-dark, #0b3d2e);
}

/* Featured team card */
.team-page .team-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: 3rem;
}
.team-page .team-feature__visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--surface-alt);
  box-shadow: 0 50px 100px -30px rgba(11, 22, 18, 0.25);
}
.team-page .team-feature__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 22, 18, 0.35));
  z-index: 1;
  pointer-events: none;
}
.team-page .team-feature__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.05) contrast(1.03);
  transition: filter 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.9s cubic-bezier(0.4,0,0.2,1),
              opacity 0.45s ease;
}
.team-page .team-feature__visual:hover img { filter: none; transform: scale(1.03); }

.team-page .team-feature__copy { padding-right: 1rem; }
.team-page .team-feature__dept {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d97a3a;
  font-weight: 600;
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.team-page .team-feature__dept::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.team-page .team-feature__name {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 3rem) !important;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--green-deep, #06281e);
  margin: 0 0 0.7rem !important;
}
body.theme-dark .team-page .team-feature__name { color: #fff; }
.team-page .team-feature__role {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--green-mid, #3a7d44);
  margin: 0 0 1.4rem;
  letter-spacing: -0.005em;
}
body.theme-dark .team-page .team-feature__role { color: var(--green-light, #a7d7a9); }
.team-page .team-feature__bio {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.88;
  max-width: 56ch;
  margin: 0;
  text-wrap: pretty;
}

/* Roster strip */
.team-page .team-strip-wrap {
  border-top: 1px solid var(--line, rgba(11,61,46,0.12));
  padding-top: 2rem;
  margin-top: 1.5rem;
}
.team-page .team-strip-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.team-page .team-strip {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

@media (max-width: 880px) {
  .team-page .team-feature { grid-template-columns: 1fr; }
  .team-page .team-feature__visual { max-width: 420px; margin: 0 auto; }
}

/* Team CTA */
.team-cta-band__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.team-cta-band__inner .section-title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 auto 1.6rem;
  text-wrap: balance;
}

/* ============================================================
   GENERIC CARDS / SECTIONS — universal hover polish
   ============================================================ */
.service-card,
.svc-card,
.svc,
.value-block,
.positioning-card {
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.5s ease, border-color 0.4s ease !important;
}
.service-card:hover,
.value-block:hover,
.positioning-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px -22px rgba(11,22,18,0.18) !important;
}

/* ============================================================
   FOOTER refinements (consistent across pages)
   ============================================================ */
.footer--new {
  background: var(--green-deep, #06281e);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 5rem;
  padding-bottom: 1.8rem;
}
.footer--new .brand { color: #fff; }
.footer--new .footer-label {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}
.footer--new a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer--new a:hover { color: #fff; }
.footer--new .footer-links a:hover { padding-left: 0.3rem; }

/* ============================================================
   IMAGES — subtle lazy fade-in
   ============================================================ */
img[loading="lazy"] {
  transition: opacity 0.5s ease;
}

/* Page reveal effects on subpages */
body:not(.home-page) .section { position: relative; }
body:not(.home-page) .section:not(.section-alt)::before {
  content: none;
}


/* Team roster — portrait previews (role/cargo só no destaque) */
.team-page .team-strip {
  gap: 0.85rem;
  padding-bottom: 1rem;
}
.team-page .team-chip {
  flex: 0 0 clamp(140px, 13vw, 172px);
  text-align: center;
}
.team-page .team-chip__avatar img {
  filter: grayscale(0.15) contrast(1.02);
  transition: filter 0.35s ease;
}
.team-page .team-chip:hover .team-chip__avatar img,
.team-page .team-chip.is-active .team-chip__avatar img {
  filter: none;
}
.team-page .team-chip__name {
  font-size: 0.84rem;
  color: var(--text);
}
body.theme-dark .team-page .team-chip,
body.theme-dark .team-page .team-chip__name {
  color: #fff !important;
}


/* ============================================================
   FIX — page-hero text contrast on light bg (subpages)
   ============================================================ */
body:not(.home-page) .page-hero .prose,
body:not(.home-page) .page-hero .page-hero-lead,
body:not(.home-page) .page-hero .page-hero-lead span,
body:not(.home-page) .page-hero p,
body:not(.home-page) .page-hero .eyebrow,
body:not(.home-page) .service-hero p,
body:not(.home-page) .contact-hero p,
body:not(.home-page) .projects-hero p {
  color: var(--text, #2a3330) !important;
  opacity: 0.88;
}
body:not(.home-page) .page-hero .eyebrow,
body:not(.home-page) .service-hero .eyebrow,
body:not(.home-page) .contact-hero .eyebrow,
body:not(.home-page) .projects-hero .eyebrow {
  color: var(--green-mid, #3a7d44) !important;
  opacity: 1;
}
body.theme-dark:not(.home-page) .page-hero .prose,
body.theme-dark:not(.home-page) .page-hero .page-hero-lead,
body.theme-dark:not(.home-page) .page-hero .page-hero-lead span,
body.theme-dark:not(.home-page) .page-hero p,
body.theme-dark:not(.home-page) .service-hero p,
body.theme-dark:not(.home-page) .contact-hero p,
body.theme-dark:not(.home-page) .projects-hero p {
  color: rgba(255,255,255,0.85) !important;
}
body.theme-dark:not(.home-page) .page-hero .eyebrow,
body.theme-dark:not(.home-page) .service-hero .eyebrow,
body.theme-dark:not(.home-page) .contact-hero .eyebrow,
body.theme-dark:not(.home-page) .projects-hero .eyebrow {
  color: var(--green-light, #a7d7a9) !important;
}

/* Also the team-hero eyebrow on light bg */
.team-page .team-hero .eyebrow {
  color: var(--green-mid, #3a7d44) !important;
}
body.theme-dark .team-page .team-hero .eyebrow {
  color: var(--green-light, #a7d7a9) !important;
}


/* Ensure h1 on page-hero also flips to dark on light bg */
body:not(.home-page) .page-hero h1,
body:not(.home-page) .page-hero .display-heading,
body:not(.home-page) .page-hero-title,
body:not(.home-page) .service-hero h1,
body:not(.home-page) .contact-hero h1,
body:not(.home-page) .projects-hero h1 {
  color: var(--green-deep, #06281e) !important;
}
body.theme-dark:not(.home-page) .page-hero h1,
body.theme-dark:not(.home-page) .page-hero .display-heading,
body.theme-dark:not(.home-page) .page-hero-title,
body.theme-dark:not(.home-page) .service-hero h1,
body.theme-dark:not(.home-page) .contact-hero h1,
body.theme-dark:not(.home-page) .projects-hero h1 {
  color: #fff !important;
}


/* ============================================================
   PROJECTS LIST (projects/index.html)
   ============================================================ */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.projects-list__item {
  display: grid;
  grid-template-columns: 48px 220px 1fr auto;
  gap: 1.6rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.1));
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, box-shadow 0.5s ease;
}
.projects-list__item:hover {
  transform: translateY(-3px);
  border-color: rgba(11,61,46,0.28);
  box-shadow: 0 30px 60px -22px rgba(11,22,18,0.2);
}
.projects-list__num {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #d97a3a;
  letter-spacing: 0.08em;
  align-self: start;
  padding-top: 0.5rem;
}
.projects-list__img {
  width: 220px; height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-alt);
}
.projects-list__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.projects-list__item:hover .projects-list__img img { transform: scale(1.06); }
.projects-list__kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid, #3a7d44);
  font-weight: 600;
  margin: 0 0 0.45rem;
}
body.theme-dark .projects-list__kicker { color: var(--green-light, #a7d7a9); }
.projects-list__title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  color: var(--green-deep, #06281e);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}
body.theme-dark .projects-list__title { color: #fff; }
.projects-list__meta {
  font-size: 0.88rem;
  color: var(--text);
  opacity: 0.72;
  margin: 0 0 0.9rem;
}
.projects-list__facts {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.projects-list__facts span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.projects-list__facts i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
}
.projects-list__facts b {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-deep, #06281e);
  letter-spacing: -0.01em;
}
body.theme-dark .projects-list__facts b { color: #fff; }

.projects-list__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  align-self: stretch;
  justify-content: space-between;
  padding: 0.5rem 0;
}
.projects-list__status {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--green-light, #a7d7a9);
  color: var(--green-deep, #06281e);
  font-weight: 700;
}
.projects-list__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-mid, #3a7d44);
  transition: gap 0.3s ease;
}
.projects-list__item:hover .projects-list__arrow { gap: 0.85rem; }
body.theme-dark .projects-list__arrow { color: var(--green-light, #a7d7a9); }

@media (max-width: 880px) {
  .projects-list__item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .projects-list__img { width: 100%; height: 180px; }
  .projects-list__num { display: none; }
  .projects-list__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */
.proj-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  padding: 12rem 0 4rem;
}
.proj-hero__media {
  position: absolute; inset: 0;
}
.proj-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
  filter: brightness(0.55) saturate(0.92);
}
.proj-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,22,18,0.4) 0%, rgba(11,22,18,0.15) 40%, rgba(11,22,18,0.85) 100%),
    radial-gradient(ellipse at 15% 60%, rgba(11,61,46,0.4), transparent 60%);
}
.proj-hero__inner {
  position: relative;
  z-index: 2;
}
.proj-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 1.6rem;
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}
.proj-hero__back:hover { gap: 0.8rem; color: #fff; }
.proj-hero__title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(2.3rem, 5.5vw, 4.6rem) !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
  color: #fff !important;
  margin: 0.5rem 0 1.1rem !important;
  max-width: 18ch;
  text-wrap: balance;
}
.proj-hero__location {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.4rem;
  letter-spacing: 0.01em;
}
.proj-hero__pills {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.proj-hero__pill {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 600;
}

/* Facts strip */
.proj-facts {
  background: var(--surface, #fff);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}
.proj-facts__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.proj-fact dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.55;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.proj-fact dd {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--green-deep, #06281e);
  letter-spacing: -0.02em;
  margin: 0;
}
body.theme-dark .proj-fact dd { color: #fff; }

/* Body layout */
.proj-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.proj-info {
  position: sticky;
  top: 110px;
}
.proj-info__summary {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  opacity: 0.9;
  margin: 0.6rem 0 2rem;
  text-wrap: pretty;
}
.proj-info__tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.proj-info__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line, rgba(11,61,46,0.14));
  background: transparent;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
  font-family: inherit;
}
.proj-info__tab:hover { border-color: var(--green-mid, #3a7d44); color: var(--green-deep); }
body.theme-dark .proj-info__tab:hover { color: #fff; }
.proj-info__tab.is-active {
  background: var(--green-dark, #0b3d2e);
  color: #fff;
  border-color: var(--green-dark, #0b3d2e);
}
.proj-info__panel.is-hidden { display: none; }
.proj-info__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.proj-info__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  background: var(--surface-alt);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.proj-info__bullet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-mid, #3a7d44);
  margin-top: 0.55rem;
  display: block;
}
.proj-info__list li strong {
  color: var(--green-deep, #06281e);
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
body.theme-dark .proj-info__list li strong { color: #fff; }
.proj-info__list li span { color: var(--text); opacity: 0.86; }

.proj-info__cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(11,61,46,0.12));
}
.proj-info__cta .btn .arrow { margin-left: 0.5rem; transition: transform 0.4s cubic-bezier(0.33,1,0.38,1); }
.proj-info__cta .btn:hover .arrow { transform: translateX(4px); }
.proj-info__disc {
  font-size: 0.78rem;
  color: var(--text);
  opacity: 0.6;
  margin: 1rem 0 0;
  line-height: 1.5;
}

/* Gallery */
.proj-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proj-gallery__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proj-gallery__counter {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--text);
  opacity: 0.65;
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
}
.proj-gallery__main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--surface-alt);
  cursor: pointer;
  box-shadow: 0 36px 70px -28px rgba(11,22,18,0.25);
}
.proj-gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: galSlide 0.55s cubic-bezier(0.22,1,0.36,1);
}
@keyframes galSlide {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.proj-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94);
  border: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--green-deep, #06281e);
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}
.proj-gallery__btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.proj-gallery__btn--prev { left: 1rem; }
.proj-gallery__btn--next { right: 1rem; }

.proj-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 0.6rem;
}
.proj-gallery__thumb {
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  padding: 0;
  aspect-ratio: 4/3;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.proj-gallery__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.proj-gallery__thumb:hover { opacity: 1; }
.proj-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--green-mid, #3a7d44);
}

@media (max-width: 880px) {
  .proj-hero { padding: 9rem 0 3rem; min-height: 56vh; }
  .proj-body__grid { grid-template-columns: 1fr; }
  .proj-info { position: static; }
}

/* Next project */
.proj-next-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
  margin-top: 1.5rem;
}
.proj-next-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 70px -25px rgba(11,22,18,0.2);
}
.proj-next-card__img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.proj-next-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.proj-next-card:hover .proj-next-card__img img { transform: scale(1.05); }
.proj-next-card__kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid, #3a7d44);
  font-weight: 600;
  margin: 0 0 0.7rem;
}
body.theme-dark .proj-next-card__kicker { color: var(--green-light); }
.proj-next-card__title {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  letter-spacing: -0.025em;
  color: var(--green-deep, #06281e);
  margin: 0 0 1.4rem;
  line-height: 1.05;
}
body.theme-dark .proj-next-card__title { color: #fff; }
.proj-next-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-mid, #3a7d44);
  transition: gap 0.3s ease;
}
.proj-next-card:hover .proj-next-card__link { gap: 0.8rem; }

@media (max-width: 880px) {
  .proj-next-card { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.4rem; }
}

/* ============================================================
   OUR VALUES (home + about)
   ============================================================ */
.values-section .section-head { max-width: 720px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}
.value-tile {
  position: relative;
  padding: 2rem 1.6rem 1.8rem;
  background: var(--surface, #fff);
  border: 1px solid var(--line, rgba(11,61,46,0.12));
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1),
              border-color 0.4s ease, box-shadow 0.5s ease;
  overflow: hidden;
}
.value-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid, #3a7d44), #d97a3a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.value-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(11,61,46,0.32);
  box-shadow: 0 28px 56px -22px rgba(11,22,18,0.18);
}
.value-tile:hover::after { transform: scaleX(1); }
.value-tile__icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(58,125,68,0.12), rgba(217,122,58,0.08));
  color: var(--green-dark, #0b3d2e);
  margin-bottom: 1.2rem;
}
body.theme-dark .value-tile__icon {
  background: linear-gradient(145deg, rgba(58,125,68,0.18), rgba(217,122,58,0.1));
  color: var(--green-light, #a7d7a9);
}
.value-tile__icon svg { width: 24px; height: 24px; }
.value-tile h3 {
  font-family: var(--font-display, "Syne"), sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--green-deep, #06281e);
  margin: 0 0 0.6rem;
}
body.theme-dark .value-tile h3 { color: #fff; }
.value-tile p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.85;
  line-height: 1.55;
}

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

/* ============================================================
   FOOTER refresh (social icons, layout)
   ============================================================ */
.footer--new .footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer--new .footer-social .footer-label { margin-bottom: 1.2rem; }
.footer--new .footer-social .social-row {
  display: flex;
  gap: 0.6rem;
}
.footer--new .footer-social .social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.footer--new .footer-social .social-icon:hover {
  background: var(--green-light, #a7d7a9);
  color: var(--green-deep, #06281e);
  border-color: var(--green-light, #a7d7a9);
  transform: translateY(-2px);
}
.footer--new .footer-social .social-icon svg { width: 18px; height: 18px; }
.footer--new .social-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

/* Footer label icons */
.footer-label__row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-label__row svg {
  width: 14px; height: 14px;
  opacity: 0.85;
}

/* Section icons accent (used in services, process, etc.) */
.icon-pill {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(58,125,68,0.12), rgba(217,122,58,0.08));
  color: var(--green-dark, #0b3d2e);
  margin-bottom: 1rem;
}
.icon-pill svg { width: 20px; height: 20px; }
body.theme-dark .icon-pill {
  background: linear-gradient(145deg, rgba(58,125,68,0.18), rgba(217,122,58,0.1));
  color: var(--green-light, #a7d7a9);
}


/* ============================================================
   ICONS in why-cards — tighten layout
   ============================================================ */
.why-card .icon-pill { margin-bottom: 1rem; }
.why-card .why-card__num {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}


/* ============================================================
   LANGUAGE SWITCHER — country flag icons
   ============================================================ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}
.lang-switcher__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.lang-switcher__flags {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.22rem 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 61, 46, 0.2);
  background: rgba(255, 255, 255, 0.95);
}
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.lang-switcher__btn img {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  object-fit: cover;
}
.lang-switcher__btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
}
.lang-switcher__btn.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--green-mid, #3a7d44);
}
body.theme-dark .lang-switcher__flags {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}
body.theme-dark .lang-switcher__btn.is-active {
  box-shadow: 0 0 0 2px var(--green-light, #a7d7a9);
}
.lang-switcher::after { display: none !important; }

@media (max-width: 719px) {
  .lang-switcher__flags {
    display: none !important;
  }
  .lang-switcher__native {
    position: static !important;
    width: 2.85rem !important;
    height: 2.85rem !important;
    min-height: 2.85rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    opacity: 1 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(11, 61, 46, 0.22) !important;
    background-color: rgba(255, 255, 255, 0.95) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: 1.5rem !important;
    color: transparent !important;
    font-size: 0 !important;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
  }
  body.theme-dark .lang-switcher__native {
    border-color: rgba(255, 255, 255, 0.38) !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
  }
}

/* —— Static service cards (no broken subpages) —— */
.service-link-card--static,
.svc-card--static {
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.service-link-card--static:hover,
.svc-card--static:hover {
  transform: translateY(-4px);
}

/* —— Subcontractor prequalification form —— */
.subcontractors-form-section .subcontractor-form {
  max-width: 920px;
  margin: 0 auto;
}
.subcontractor-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}
@media (max-width: 720px) {
  .subcontractor-form__grid {
    grid-template-columns: 1fr;
  }
}
.subcontractors-form-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

/* —— Dark theme readability (site-wide) —— */
body.theme-dark {
  color: var(--text);
}
body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark .section-title,
body.theme-dark .subsection-title,
body.theme-dark .display-heading {
  color: #f2f6f3;
}
body.theme-dark .prose,
body.theme-dark p,
body.theme-dark li,
body.theme-dark label,
body.theme-dark .team-feature__bio,
body.theme-dark .team-toolbar__hint,
body.theme-dark .team-strip-label,
body.theme-dark .service-link-card__desc,
body.theme-dark .svc-card__body p,
body.theme-dark .svc-card__bullets li {
  color: #d4ddd8;
}
body.theme-dark .team-page .team-feature__name,
body.theme-dark .team-page .team-toolbar__head .subsection-title {
  color: #fff !important;
}
body.theme-dark .team-page .team-feature__bio {
  color: #d4ddd8 !important;
  opacity: 1;
}
body.theme-dark .team-page .team-filter {
  color: #d4ddd8;
  background: var(--surface-alt);
  border-color: var(--line);
}
body.theme-dark .team-page .team-filter:hover {
  color: #fff;
  border-color: var(--green-mid);
}
body.theme-dark .team-page .team-filter.is-active {
  color: #fff;
  background: var(--green-mid);
  border-color: var(--green-mid);
}
body.theme-dark .team-page .team-chip {
  background: var(--surface-alt);
  border-color: var(--line);
}
body.theme-dark .team-page .team-chip__name {
  color: #fff;
}
body.theme-dark .team-page .team-hero__title,
body.theme-dark .team-page .team-hero__lead {
  color: #fff;
}
body.theme-dark .team-page .team-hero .eyebrow {
  color: var(--green-light);
}
body.theme-dark .contact-form input,
body.theme-dark .contact-form select,
body.theme-dark .contact-form textarea {
  background: var(--surface);
  color: #f2f6f3;
  border-color: var(--line);
}
body.theme-dark .contact-form input::placeholder,
body.theme-dark .contact-form textarea::placeholder {
  color: rgba(212, 221, 216, 0.45);
}
body.theme-dark .form-note {
  color: #b8c5be;
}
body.theme-dark .service-link-card,
body.theme-dark .svc-card {
  background: var(--surface);
  border-color: var(--line);
}
body.theme-dark .service-link-card__title,
body.theme-dark .svc-card__body h3 {
  color: #fff;
}

/* Honeypot — hidden from users, visible to naive bots */
.sb-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
