@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink: #11211c;
  --ink-soft: #4f5f58;
  --forest-950: #071d16;
  --forest-900: #0b2c21;
  --forest-800: #123d2f;
  --forest-700: #1d5a45;
  --leaf: #79a936;
  --leaf-bright: #9acb4b;
  --lime-wash: #eaf2dc;
  --gold: #d1a43c;
  --cream: #f5f6f0;
  --white: #ffffff;
  --line: #dce4dd;
  --shadow-sm: 0 10px 30px rgba(8, 35, 26, 0.08);
  --shadow-lg: 0 24px 70px rgba(8, 35, 26, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(154, 203, 75, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-900);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section--compact {
  padding: 76px 0;
}

.section--cream {
  background: var(--cream);
}

.section--forest {
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
}

.section--forest::before {
  position: absolute;
  width: 420px;
  height: 420px;
  top: -260px;
  right: -110px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: '';
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--forest-700);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--leaf);
  content: '';
}

.eyebrow--light {
  color: var(--leaf-bright);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 750;
}

p {
  margin: 0;
}

.lead {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  transition: 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--forest-950);
  background: var(--leaf-bright);
  box-shadow: 0 12px 24px rgba(121, 169, 54, 0.24);
}

.btn--primary:hover {
  background: #a8d65e;
}

.btn--dark {
  color: var(--white);
  background: var(--forest-900);
}

.btn--dark:hover {
  background: var(--forest-700);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-700);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

/* Header */
.topbar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--forest-950);
  font-size: 0.79rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__tag {
  display: flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.02em;
}

.topbar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 0 5px rgba(154, 203, 75, 0.12);
}

.topbar__links {
  display: flex;
  gap: 22px;
}

.topbar__links a:hover {
  color: var(--leaf-bright);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(17, 33, 28, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand__wordmark strong {
  color: var(--forest-900);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand__wordmark small {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.primary-nav a {
  position: relative;
  padding: 14px 14px;
  border-radius: 999px;
  color: #3b4b45;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--forest-800);
  background: var(--lime-wash);
}

.nav-cta {
  min-height: 46px;
  padding-inline: 19px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-900);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

/* Home hero */
.home-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  transform: scale(1.015);
  animation: heroZoom 12s ease-out both;
}

.home-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 22, 16, 0.96) 0%, rgba(4, 22, 16, 0.72) 45%, rgba(4, 22, 16, 0.18) 78%),
    linear-gradient(0deg, rgba(4, 22, 16, 0.78) 0%, transparent 44%);
  content: '';
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 760px;
  align-items: center;
  padding: 84px 0 138px;
}

.home-hero__content {
  max-width: 840px;
}

.home-hero h1 {
  max-width: 900px;
}

.home-hero h1 span {
  color: var(--leaf-bright);
}

.home-hero__copy {
  max-width: 670px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-pills {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(calc(100% - 40px), var(--container));
  grid-template-columns: repeat(3, 1fr);
  transform: translate(-50%, 50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: var(--forest-800);
  box-shadow: var(--shadow-lg);
}

.hero-pill {
  display: flex;
  min-height: 116px;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-pill:last-child {
  border-right: 0;
}

.hero-pill__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid rgba(154, 203, 75, 0.5);
  border-radius: 50%;
  color: var(--leaf-bright);
}

.hero-pill__icon svg {
  width: 23px;
  height: 23px;
}

.hero-pill strong {
  display: block;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.35;
}

.hero-pill small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.35;
}

/* Intro split */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 86px;
  align-items: center;
}

.image-composition {
  position: relative;
  min-height: 600px;
}

.image-composition__main {
  position: absolute;
  width: 82%;
  height: 85%;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-composition__main img,
.image-composition__small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-composition__small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 45%;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.image-composition__badge {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: 3%;
  max-width: 190px;
  padding: 19px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--forest-800);
  box-shadow: var(--shadow-sm);
}

.image-composition__badge strong {
  display: block;
  color: var(--leaf-bright);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.05rem;
}

.image-composition__badge span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.intro-copy h2 {
  margin-bottom: 24px;
}

.intro-copy .lead {
  margin-bottom: 26px;
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #3f514a;
  font-weight: 600;
}

.check-list__mark {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  color: var(--forest-900);
  background: var(--lime-wash);
  font-size: 0.75rem;
  font-weight: 900;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 40px rgba(8, 35, 26, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card__media {
  position: relative;
  height: 175px;
  flex: 0 0 175px;
  margin: -32px -32px 24px;
  overflow: hidden;
  background: var(--forest-900);
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 30, 22, 0.44));
  content: '';
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.055);
}

.service-card:hover {
  border-color: rgba(121, 169, 54, 0.5);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card__number {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  min-width: 46px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 30, 22, 0.72);
  text-align: center;
  backdrop-filter: blur(8px);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card__icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  color: var(--forest-800);
  background: var(--lime-wash);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 13px;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.service-card .text-link {
  margin-top: auto;
}

.service-card--feature {
  color: var(--white);
  border-color: var(--forest-800);
  background: var(--forest-800);
}

.service-card--feature::before {
  position: absolute;
  width: 210px;
  height: 210px;
  right: -65px;
  bottom: -80px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: '';
}

.service-card--feature p,
.service-card--feature .text-link {
  color: rgba(255, 255, 255, 0.74);
}

.service-card--feature .service-card__icon {
  color: var(--leaf-bright);
  background: rgba(154, 203, 75, 0.12);
}

.service-card--feature .service-card__number {
  color: var(--white);
}

.service-card--new {
  border-color: rgba(121, 169, 54, 0.68);
  box-shadow: 0 18px 50px rgba(8, 35, 26, 0.1);
}

.service-card--new::after {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--forest-950);
  background: var(--leaf-bright);
  content: 'New service';
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}

.process-step {
  position: relative;
  padding: 34px 28px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.process-step::before {
  position: absolute;
  width: 13px;
  height: 13px;
  top: -7px;
  left: 28px;
  border: 3px solid var(--forest-900);
  border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 0 1px rgba(154, 203, 75, 0.7);
  content: '';
}

.process-step__num {
  display: block;
  margin-bottom: 14px;
  color: var(--leaf-bright);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

/* Leadership quote */
.leader-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest-800);
  box-shadow: var(--shadow-lg);
}

.leader-card__photo {
  min-height: 580px;
  background: #f2f2ef;
}

.leader-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-card__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 94px);
}

.leader-card__quote-mark {
  position: absolute;
  top: 34px;
  right: 48px;
  color: rgba(255, 255, 255, 0.09);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.leader-card blockquote {
  position: relative;
  max-width: 650px;
  margin: 0 0 34px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.15rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.leader-card__name strong,
.leader-card__name span {
  display: block;
}

.leader-card__name strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1rem;
}

.leader-card__name span {
  margin-top: 4px;
  color: var(--leaf-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background: var(--forest-950);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: '';
}

.cta-band::before {
  width: 360px;
  height: 360px;
  top: -230px;
  left: -70px;
}

.cta-band::after {
  width: 270px;
  height: 270px;
  right: 8%;
  bottom: -200px;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.cta-band h2 span {
  color: var(--leaf-bright);
}

/* Interior page hero */
.page-hero {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 22, 16, 0.96), rgba(4, 22, 16, 0.54));
  content: '';
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 450px;
  flex-direction: column;
  justify-content: center;
  padding: 74px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: var(--leaf-bright);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
}

.page-hero p {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
}

/* About */
.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.purpose-grid h2 {
  position: sticky;
  top: 140px;
}

.purpose-copy {
  display: grid;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.value-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.value-card__num {
  display: block;
  margin-bottom: 34px;
  color: var(--leaf-bright);
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.leadership-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.leadership-split__image {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.leadership-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.leadership-split__copy h2 {
  margin-bottom: 24px;
}

.leadership-split__copy .lead {
  margin-bottom: 28px;
}

.signature-line {
  width: 70px;
  height: 3px;
  margin: 34px 0 18px;
  background: var(--leaf);
}

.signature-name strong,
.signature-name span {
  display: block;
}

.signature-name strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.04rem;
}

.signature-name span {
  color: var(--ink-soft);
  font-size: 0.87rem;
}

/* Services detail */
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 76px;
  align-items: start;
}

.service-main h2 {
  margin-bottom: 24px;
}

.service-main > p {
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-main__image {
  height: 440px;
  overflow: hidden;
  margin: 42px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.service-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.scope-item {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.scope-item strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.98rem;
}

.scope-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.service-sidebar {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 22px;
}

.sidebar-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.sidebar-card h3 {
  margin-bottom: 18px;
  font-size: 1.16rem;
}

.service-menu {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  color: #52625c;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-menu a:hover,
.service-menu a.is-active {
  color: var(--white);
  background: var(--forest-800);
}

.sidebar-card--dark {
  color: var(--white);
  border-color: var(--forest-900);
  background: var(--forest-900);
}

.sidebar-card--dark p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.9rem;
}

.sidebar-card--dark .btn {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 38px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 750;
}

.faq-question span:last-child {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-800);
  background: var(--lime-wash);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded='true'] span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-question[aria-expanded='true'] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-copy .lead {
  margin-bottom: 38px;
}

.contact-points {
  display: grid;
  gap: 16px;
}

.contact-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

a.contact-point {
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

a.contact-point:hover {
  border-color: rgba(121, 169, 54, 0.55);
  box-shadow: 0 12px 32px rgba(8, 35, 26, 0.08);
  transform: translateY(-2px);
}

.contact-point__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--forest-800);
  background: var(--lime-wash);
}

.contact-point strong,
.contact-point span {
  display: block;
}

.contact-point strong {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 0.9rem;
}

.contact-point span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.contact-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  background: var(--forest-900);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.6rem;
}

.contact-form__intro {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.form-group select option {
  color: var(--ink);
}

.form-group textarea {
  min-height: 132px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--leaf-bright);
  box-shadow: 0 0 0 3px rgba(154, 203, 75, 0.14);
}

.form-group [aria-invalid='true'] {
  border-color: #ff8f83;
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #ffb3aa;
  font-size: 0.74rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 10px;
  color: #eaf6d7;
  background: rgba(154, 203, 75, 0.14);
  font-size: 0.83rem;
}

.form-status.is-visible {
  display: block;
}

.form-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.73rem;
}

.whatsapp-submit {
  width: 100%;
  color: #041b12;
  background: #25d366;
}

.whatsapp-submit:hover {
  background: #43df7c;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #061812;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.9fr 1fr;
  gap: 54px;
  padding: 76px 0 56px;
}

.footer-brand .brand__wordmark strong {
  color: var(--white);
}

.footer-brand .brand__wordmark small {
  color: rgba(255, 255, 255, 0.48);
}

.footer-brand > p {
  max-width: 320px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.88rem;
}

.footer-col h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--leaf-bright);
}

.footer-contact-item {
  display: grid;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 0.82rem;
}

.footer-contact-item strong {
  color: var(--white);
  font-size: 0.79rem;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.62);
  overflow-wrap: anywhere;
}

.footer-contact-item a:hover {
  color: var(--leaf-bright);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--leaf-bright);
}

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--forest-950);
  background: var(--leaf-bright);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  transition: 180ms ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .primary-nav a { padding-inline: 10px; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.2fr repeat(3, 0.8fr); gap: 30px; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed;
    z-index: 1200;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 4px;
    max-height: calc(100vh - var(--header-height));
    padding: 22px 20px 34px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    transition: 180ms ease;
    pointer-events: none;
  }
  .primary-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .primary-nav a { padding: 14px 18px; border-radius: 10px; }
  .nav-cta { display: inline-flex; width: 100%; margin-top: 8px; }
  .home-hero,
  .home-hero__inner { min-height: 680px; }
  .home-hero__inner { padding-bottom: 90px; }
  .home-hero__media::after {
    background: linear-gradient(90deg, rgba(4, 22, 16, 0.94), rgba(4, 22, 16, 0.46));
  }
  .hero-pills { position: relative; left: auto; bottom: auto; width: 100%; grid-template-columns: 1fr; transform: none; border-radius: 0; }
  .hero-pill { min-height: 92px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); padding: 18px 20px; }
  .hero-pill:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .intro-split,
  .purpose-grid,
  .leadership-split,
  .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .purpose-grid h2 { position: static; }
  .image-composition { min-height: 560px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .leader-card { grid-template-columns: 0.8fr 1.2fr; }
  .leader-card__photo { min-height: 520px; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .service-layout { grid-template-columns: 1fr; gap: 54px; }
  .service-sidebar { position: static; grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section--compact { padding: 60px 0; }
  .brand img { width: 50px; height: 50px; }
  .brand__wordmark strong { font-size: 0.86rem; }
  .brand__wordmark small { font-size: 0.51rem; }
  .home-hero,
  .home-hero__inner { min-height: 620px; }
  .home-hero__inner { align-items: flex-end; padding: 80px 0 64px; }
  .home-hero__media::after { background: linear-gradient(0deg, rgba(4, 22, 16, 0.98), rgba(4, 22, 16, 0.34)); }
  .home-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .home-hero__copy { font-size: 1rem; }
  .home-hero__actions { align-items: stretch; flex-direction: column; }
  .home-hero__actions .btn { width: 100%; }
  .hero-pill__icon { width: 43px; height: 43px; flex-basis: 43px; }
  .services-grid,
  .value-grid,
  .scope-grid,
  .service-sidebar,
  .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 470px; }
  .service-card__media { height: 165px; flex-basis: 165px; }
  .image-composition { min-height: 470px; }
  .image-composition__main { width: 92%; height: 80%; }
  .image-composition__small { width: 60%; height: 40%; border-width: 6px; }
  .image-composition__badge { top: 51%; left: 0; max-width: 165px; padding: 15px; }
  .process-grid { grid-template-columns: 1fr; gap: 26px; }
  .process-step { padding-inline: 18px; }
  .process-step::before { left: 18px; }
  .leader-card { grid-template-columns: 1fr; }
  .leader-card__photo { min-height: 460px; }
  .leader-card__copy { padding: 42px 28px 50px; }
  .leader-card__quote-mark { top: 14px; right: 22px; font-size: 7rem; }
  .page-hero,
  .page-hero__inner { min-height: 390px; }
  .page-hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .leadership-split__image { min-height: 500px; }
  .service-main__image { height: 310px; }
  .contact-form { border-radius: var(--radius-md); }
  .footer-main { grid-template-columns: 1fr; gap: 38px; padding: 62px 0 44px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .back-to-top { right: 16px; bottom: 16px; }
}
