:root {
  --ink: #0e2427;
  --ink-soft: #42585a;
  --paper: #f6f8f3;
  --white: #ffffff;
  --line: rgba(14, 36, 39, 0.14);
  --green: #79c64a;
  --green-bright: #9bea5e;
  --green-dark: #4f9a2f;
  --teal: #168ca3;
  --teal-deep: #0d5f67;
  --red: #ee252e;
  --shadow: 0 32px 80px rgba(11, 49, 53, 0.12);
  --radius: 26px;
  --container: min(1180px, calc(100vw - 48px));
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link:focus {
  transform: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--green-bright));
}

.topline {
  display: flex;
  align-items: center;
  height: 34px;
  color: #dff5d0;
  background: var(--teal-deep);
  overflow: hidden;
}

.topline-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding-inline: 24px;
  white-space: nowrap;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topline i {
  width: 4px;
  height: 4px;
  background: var(--green-bright);
  border-radius: 50%;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 86px;
  border-bottom: 1px solid transparent;
  transition: background 420ms var(--ease-soft), border-color 420ms var(--ease-soft),
    box-shadow 420ms var(--ease-soft), backdrop-filter 420ms var(--ease-soft);
}

.site-header.is-scrolled {
  background: rgba(246, 248, 243, 0.9);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(14, 36, 39, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
}

.brand img {
  width: 54px;
  height: 54px;
  background: var(--white);
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.08;
}

.brand strong {
  font-size: 0.94rem;
  letter-spacing: -0.01em;
}

.brand small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-inline: auto;
}

.primary-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 0.86rem;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease-out);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 360ms var(--ease-out), background 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft);
}

.header-cta:hover {
  background: var(--teal-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 360ms var(--ease-out), background 300ms ease;
}

.hero {
  position: relative;
  padding: 58px 0 0;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -140px;
  left: -180px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(121, 198, 74, 0.18), transparent 67%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  align-items: center;
  gap: 70px;
  min-height: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  color: var(--teal-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--green);
}

.eyebrow-light {
  color: #d8efe7;
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7.2vw, 7.1rem);
}

.hero h1 em,
.section h2 em {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.72em;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-soft),
    background 420ms var(--ease-soft), border-color 420ms var(--ease-soft);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 420ms var(--ease-out);
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  color: var(--white);
  background: var(--teal-deep);
  box-shadow: 0 12px 28px rgba(13, 95, 103, 0.2);
}

.button-primary:hover {
  background: var(--ink);
  box-shadow: 0 18px 36px rgba(13, 95, 103, 0.24);
}

.button-ghost {
  border-color: var(--line);
}

.button-ghost:hover {
  background: var(--white);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.trust-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.trust-mark span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--teal-deep);
  border: 1px solid var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.trust-mark small,
.hero-trust p {
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.3;
}

.hero-trust p {
  margin: 0;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.hero-image-wrap > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: translate(-0.85%, -0.55%) scale(1.081) scaleX(0.961);
}

.hero-signal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(8, 36, 39, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}

.signal-dot {
  width: 10px;
  height: 10px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(155, 234, 94, 0.15);
  animation: signal-breathe 3.2s ease-in-out infinite;
}

.hero-signal p {
  display: grid;
  margin: 0;
  line-height: 1.25;
}

.hero-signal strong {
  font-size: 0.9rem;
}

.hero-signal small {
  margin-top: 4px;
  color: #cde1e1;
  font-size: 0.73rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(14, 36, 39, 0.05);
}

.hero-stats article {
  min-height: 154px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

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

.hero-stats strong {
  display: block;
  color: var(--teal-deep);
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.45;
}

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

.editorial-grid {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(350px, 0.78fr);
  gap: 44px;
  align-items: start;
}

.section-index {
  color: var(--green-dark);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.section-heading h2,
.section-top h2,
.operations-copy h2,
.partners-intro h2,
.contact-main h2 {
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
}

.section-heading h2 em {
  display: block;
}

.about-copy {
  padding-top: 48px;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-copy .lead-paragraph {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.belief-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 18px;
  margin-top: 86px;
}

.belief-card {
  position: relative;
  min-height: 360px;
  padding: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}

.belief-card.vision {
  color: var(--white);
  background: var(--teal-deep);
}

.belief-card.mission {
  background: var(--green-bright);
}

.belief-card > div {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.belief-card h3 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.25;
}

.card-label {
  margin: 0;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.belief-number {
  position: absolute;
  right: 18px;
  bottom: -68px;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
  font-size: 18rem;
  line-height: 1;
}

.mission .belief-number {
  color: rgba(14, 36, 39, 0.08);
}

.capabilities {
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.capabilities::before,
.partners::before {
  position: absolute;
  top: -240px;
  right: -200px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(121, 198, 74, 0.16), transparent 68%);
  content: "";
}

.section-top {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  gap: 80px;
  align-items: end;
}

.section-top > p {
  margin: 0 0 8px;
  color: #9eb4b5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 420ms var(--ease-soft), color 420ms var(--ease-soft),
    transform 520ms var(--ease-out), box-shadow 420ms var(--ease-soft);
}

.capability-card:hover {
  z-index: 1;
  color: var(--ink);
  background: var(--green-bright);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(3, 18, 20, 0.24);
}

.capability-card svg {
  width: 46px;
  margin-top: 48px;
  fill: none;
  stroke: var(--green-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.capability-card:hover svg {
  stroke: var(--teal-deep);
}

.cap-number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #789091;
  font-family: Georgia, serif;
  font-size: 0.85rem;
}

.capability-card h3 {
  margin: 24px 0 11px;
  font-size: 1.25rem;
}

.capability-card p {
  margin: 0;
  color: #9eb4b5;
  font-size: 0.9rem;
}

.capability-card:hover p,
.capability-card:hover .cap-number {
  color: rgba(14, 36, 39, 0.72);
}

.operations {
  background: #eef4eb;
}

.operations-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
  gap: 90px;
  align-items: center;
}

.operations-visual {
  position: relative;
}

.operations-visual::before {
  position: absolute;
  inset: -18px auto 40px -18px;
  width: 58%;
  background: var(--green-bright);
  border-radius: var(--radius) 0 0 var(--radius);
  content: "";
}

.operations-visual img {
  position: relative;
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-caption {
  position: absolute;
  right: -26px;
  bottom: 26px;
  display: grid;
  width: min(290px, 74%);
  padding: 22px 24px;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 15px;
}

.image-caption span {
  color: #bbd7d8;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-caption strong {
  margin-top: 4px;
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.operations-copy h2 {
  margin-bottom: 26px;
}

.operations-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.operations-list {
  margin: 40px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.operations-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.operations-list li > span {
  color: var(--green-dark);
  font-family: Georgia, serif;
}

.operations-list strong {
  font-size: 1rem;
}

.operations-list p {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.human-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 130px;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: var(--radius);
  overflow: hidden;
}

.human-strip img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.human-strip-copy {
  align-self: center;
  padding: 56px;
}

.human-strip h3 {
  margin: 16px 0 20px;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
}

.human-strip-copy > p:last-child {
  color: #bdd3d4;
}

.partners {
  color: var(--white);
  background: var(--teal-deep);
  overflow: hidden;
}

.partners-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  column-gap: 80px;
}

.partners-intro .eyebrow {
  grid-column: 1 / -1;
}

.partners-intro p:last-child {
  align-self: end;
  margin: 0 0 8px;
  color: #c5d9da;
}

.partner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.partner-card {
  min-height: 380px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 20px;
  transition: transform 520ms var(--ease-out), box-shadow 420ms var(--ease-soft);
}

.partner-card:hover {
  box-shadow: 0 22px 50px rgba(3, 24, 26, 0.28);
  transform: translateY(-7px);
}

.partner-logo {
  display: grid;
  place-items: center;
  height: 164px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(14, 36, 39, 0.07);
  border-radius: 13px;
}

.partner-logo img {
  max-width: 84%;
  max-height: 98px;
  object-fit: contain;
}

.partner-card > div:last-child {
  padding: 24px 8px 12px;
}

.partner-card span {
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.partner-card h3 {
  margin: 7px 0 8px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.partner-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.83rem;
  line-height: 1.5;
}

.journey {
  background: var(--white);
}

.journey-top > p {
  color: var(--ink-soft);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
}

.timeline::before {
  position: absolute;
  top: 70px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  padding-right: 38px;
}

.timeline-year {
  color: var(--teal-deep);
  font-family: Georgia, serif;
  font-size: 2.6rem;
}

.timeline-item i {
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin: 14px 0 33px;
  background: var(--white);
  border: 4px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--white);
}

.timeline-item:last-child i {
  background: var(--red);
  border-color: var(--red);
}

.timeline-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.adr {
  color: var(--white);
  background: #101313;
  overflow: hidden;
}

.adr::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(121, 198, 74, 0.13), transparent 69%);
  content: "";
}

.adr-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.58fr;
  gap: 80px;
  align-items: end;
}

.adr-intro .eyebrow {
  grid-column: 1 / -1;
}

.adr-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.6rem);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.adr-intro h2 em {
  color: var(--green-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.adr-definition h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
  font-weight: 500;
}

.adr-definition p {
  margin: 0 0 8px;
  color: #aebabb;
}

.adr-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 70px;
}

.adr-panel {
  position: relative;
  min-height: 510px;
  padding: 46px;
  background: #191d1d;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.adr-panel-serious {
  background: #151919;
}

.adr-panel h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.2;
}

.adr-panel > p,
.adr-panel-wide > div > p {
  color: #aebabb;
}

.adr-panel ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.adr-panel li {
  position: relative;
  padding-left: 24px;
  color: #d8dfdf;
}

.adr-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--green-bright);
  border-right: 2px solid var(--green-bright);
  content: "";
  transform: rotate(45deg);
}

.adr-panel-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 70px;
  align-items: center;
  min-height: 320px;
  background: var(--teal-deep);
}

.adr-panel-wide h3 {
  margin-top: 0;
}

.adr-reporters strong {
  color: var(--white);
}

.adr-reporting {
  display: grid;
  padding: 32px;
  background: rgba(5, 32, 35, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.adr-reporting span {
  margin-bottom: 20px;
  color: #b9d1d2;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.adr-reporting a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  overflow-wrap: anywhere;
  transition: color 300ms ease, padding 360ms var(--ease-out);
}

.adr-reporting a:last-child {
  border-bottom: 0;
}

.adr-reporting small {
  margin: -4px 0 10px;
  color: var(--green-bright);
  font-size: 0.72rem;
  line-height: 1.45;
}

.adr-reporting a:hover {
  padding-left: 8px;
  color: var(--green-bright);
}

.contact {
  padding-top: 80px;
  background: var(--white);
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 72px;
  padding: clamp(40px, 6vw, 82px);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-deep), #073f45);
  border-radius: 34px;
  overflow: hidden;
}

.contact-shell::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(155, 234, 94, 0.1);
  border-radius: 50%;
  content: "";
}

.contact-main,
.contact-directory,
.contact-address {
  position: relative;
  z-index: 1;
}

.contact-main h2 {
  max-width: 680px;
}

.contact-main > p:not(.eyebrow) {
  max-width: 580px;
  margin: 25px 0 32px;
  color: #c9dddd;
}

.button-white {
  color: var(--ink);
  background: var(--green-bright);
}

.button-white:hover {
  background: var(--white);
}

.contact-directory {
  align-self: start;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-directory a {
  display: grid;
  padding: 16px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: padding 360ms var(--ease-out), color 300ms ease;
}

.contact-directory a:hover {
  padding-left: 10px;
  color: var(--green-bright);
}

.contact-directory span,
.contact-address span {
  color: #94b6b9;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-directory strong {
  margin-top: 4px;
  font-size: clamp(0.78rem, 1.15vw, 0.92rem);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-address {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: 72px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-style: normal;
}

.contact-address strong {
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.55;
}

.site-footer {
  padding: 36px 0 44px;
  background: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-grid > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  text-align: center;
}

.footer-grid .copyright {
  text-align: right;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #20b95a;
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(15, 89, 47, 0.28);
  animation: whatsapp-breathe 4.2s ease-in-out infinite;
  transition: transform 420ms var(--ease-out), box-shadow 420ms var(--ease-soft);
}

.whatsapp-float:hover {
  box-shadow: 0 17px 38px rgba(15, 89, 47, 0.36);
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-float svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.993);
  transition: opacity 920ms var(--ease-soft), transform 980ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

@keyframes signal-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 6px rgba(155, 234, 94, 0.14);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(155, 234, 94, 0.04);
    transform: scale(1.08);
  }
}

@keyframes whatsapp-breathe {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(15, 89, 47, 0.28);
  }
  50% {
    box-shadow: 0 16px 38px rgba(15, 89, 47, 0.38);
  }
}

@media (max-width: 1050px) {
  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.86fr;
    gap: 44px;
  }

  .hero-stats article {
    padding: 24px;
  }

  .editorial-grid {
    grid-template-columns: 55px 1fr;
  }

  .about-copy {
    grid-column: 2;
    max-width: 760px;
    padding-top: 5px;
  }

  .operations-grid {
    gap: 58px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .topline-track span:nth-of-type(2),
  .topline-track span:nth-of-type(3),
  .topline-track i:nth-of-type(2),
  .topline-track i:nth-of-type(3) {
    display: none;
  }

  .site-header {
    height: 76px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 110px 16px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(246, 248, 243, 0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -16px, 0) scale(0.985);
    transition: opacity 320ms var(--ease-soft), transform 420ms var(--ease-out),
      visibility 0s linear 420ms;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 14vw, 6.2rem);
  }

  .hero-visual {
    min-height: 540px;
    margin-top: 10px;
  }

  .hero-image-wrap {
    width: min(100%, 540px);
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats article:nth-child(2) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 95px 0;
  }

  .editorial-grid,
  .section-top,
  .partners-intro,
  .adr-intro,
  .operations-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .section-index {
    display: none;
  }

  .about-copy {
    grid-column: auto;
  }

  .belief-grid {
    grid-template-columns: 1fr;
  }

  .belief-card {
    min-height: 300px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operations-visual {
    max-width: 540px;
    margin-inline: auto;
  }

  .human-strip {
    grid-template-columns: 1fr;
  }

  .human-strip img {
    min-height: 300px;
  }

  .partners-intro .eyebrow {
    grid-column: auto;
  }

  .adr-intro .eyebrow {
    grid-column: auto;
  }

  .adr-panel-wide {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 54px;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item {
    padding-right: 28px;
  }

  .timeline-item i {
    margin-bottom: 19px;
  }

  .contact-address {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid .copyright,
  .footer-grid > p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  .topline-track {
    justify-content: flex-start;
    font-size: 0.62rem;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .brand small {
    font-size: 0.61rem;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-mark {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-wrap {
    width: min(100%, 430px);
    border-radius: 50%;
  }

  .hero-signal {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats article,
  .hero-stats article:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats article:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .section-top h2,
  .operations-copy h2,
  .partners-intro h2,
  .contact-main h2 {
    font-size: clamp(2.55rem, 13.5vw, 4rem);
  }

  .adr-intro h2 {
    font-size: clamp(2.15rem, 10.4vw, 3.25rem);
    overflow-wrap: anywhere;
  }

  .adr-intro .eyebrow {
    align-items: flex-start;
    font-size: 0.64rem;
    letter-spacing: 0.11em;
    line-height: 1.5;
  }

  .adr-intro .eyebrow span {
    flex: 0 0 26px;
    margin-top: 0.7em;
  }

  .belief-card {
    min-height: 330px;
    padding: 34px;
  }

  .capability-grid,
  .partner-grid,
  .adr-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .adr-panel,
  .adr-panel-wide {
    grid-column: auto;
    min-height: auto;
    padding: 34px 28px;
  }

  .adr-reporting {
    padding: 24px;
  }

  .capability-card {
    min-height: 290px;
  }

  .operations-visual img {
    height: 530px;
  }

  .image-caption {
    right: 14px;
  }

  .human-strip {
    margin-top: 88px;
  }

  .human-strip-copy {
    padding: 36px 28px;
  }

  .contact-shell {
    gap: 50px;
    padding: 42px 25px;
    border-radius: 24px;
  }

  .contact-address {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
