:root {
  --green-950: #02150e;
  --green-900: #032216;
  --green-850: #052b1d;
  --green-800: #00351f;
  --green-700: #004c2f;
  --green-600: #006b3f;
  --green-100: #edf7f0;
  --green-075: #f4faf6;
  --gold-500: #d4a000;
  --gold-400: #f0bc25;
  --gold-100: #fff7df;
  --red-600: #c70f1b;
  --ink: #13211b;
  --ink-soft: #24342d;
  --muted: #5f6e66;
  --muted-2: #7a8580;
  --line: #e5ebe6;
  --line-strong: #d6e0d8;
  --paper: #ffffff;
  --surface: #f8fbf9;
  --surface-2: #f2f7f3;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(0, 53, 31, 0.055);
  --shadow: 0 18px 45px rgba(0, 53, 31, 0.075);
  --shadow-lg: 0 24px 70px rgba(0, 53, 31, 0.095);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 30px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  color: var(--green-950);
  background: rgba(240, 188, 37, 0.32);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 9999;
  background: var(--green-900);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  outline: 3px solid rgba(240, 188, 37, 0.72);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(240, 188, 37, 0.62);
  outline-offset: 4px;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 76, 47, 0.1);
  box-shadow: 0 10px 28px rgba(0, 40, 25, 0.045);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 260px;
}

.brand-mark,
.footer-brand img,
.cta-card img,
.page-hero-aside img,
.page-logo-showcase img,
.brand-showcase img {
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  image-rendering: auto;
}

.brand-mark {
  width: 62px;
  height: 62px;
  filter: drop-shadow(0 7px 10px rgba(0, 58, 36, 0.1));
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-name {
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--green-800);
}

.brand-line {
  margin-top: 0.18rem;
  color: var(--gold-500);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 800;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: block;
  padding: 0.45rem 0.2rem;
  color: #28352e;
  border-radius: 995px;
  font-weight: 700;
  font-size: 0.90rem;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current='page'] {
  color: var(--green-800);
  background: var(--green-100);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  background: var(--green-800);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 53, 31, 0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--green-700);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--green-700);
  font-weight: 800;
}

.breadcrumb a:hover {
  color: var(--green-900);
}

/* Hero sections */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 92% 18%, rgba(240, 188, 37, 0.13), transparent 32%),
    radial-gradient(circle at 8% 12%, rgba(0, 107, 63, 0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 58%, #f6faf7 100%);
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(0, 76, 47, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 70%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 70%);
  opacity: 0.55;
  z-index: -2;
}

.home-hero {
  padding: 6rem 0 8rem;
}

.home-hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  right: -18%;
  top: -22%;
  width: min(720px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at 42% 42%, rgba(240, 188, 37, 0.1), transparent 44%),
    radial-gradient(circle at 58% 58%, rgba(0, 76, 47, 0.07), transparent 58%);
  filter: blur(18px);
  opacity: 0.48;
  z-index: -1;
}

.hero-grid,
.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 4rem;
}

.hero-copy .eyebrow {
  min-height: 0;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  min-height: clamp(340px, 42vw, 560px);
  isolation: isolate;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -5% -8%;
  background: url("assets/world-map.svg") center center / 110% auto no-repeat;
  opacity: 0.025;
  filter: grayscale(100%);
  pointer-events: none;
  z-index: -3;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: min(86%, 560px);
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 42% 58% 54% 46% / 46% 45% 55% 54%;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(240, 188, 37, 0.08) 0%, rgba(240, 188, 37, 0.035) 34%, transparent 66%),
    radial-gradient(ellipse at 54% 58%, rgba(0, 76, 47, 0.06) 0%, rgba(0, 76, 47, 0.025) 44%, transparent 72%);
  filter: blur(28px);
  transform: translate(4%, -2%) scale(1.02);
  opacity: 0.42;
  z-index: -2;
}

.brand-showcase,
.page-logo-showcase {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 540px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  overflow: visible;
  isolation: isolate;
}

.brand-showcase::before,
.page-logo-showcase::before {
  content: '';
  position: absolute;
  inset: 11% 9% 12%;
  pointer-events: none;
  border-radius: 48% 52% 55% 45% / 46% 48% 52% 54%;
  background:
    radial-gradient(ellipse at 52% 44%, rgba(240, 188, 37, 0.06) 0%, rgba(240, 188, 37, 0.025) 32%, transparent 65%),
    radial-gradient(ellipse at 48% 58%, rgba(0, 76, 47, 0.045) 0%, rgba(0, 76, 47, 0.02) 44%, transparent 74%);
  filter: blur(20px);
  opacity: 0.38;
  z-index: -1;
}

.brand-showcase::after,
.page-logo-showcase::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 14%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 76, 47, 0.08), transparent 72%);
  filter: blur(16px);
  opacity: 0.18;
  z-index: -2;
}

.brand-showcase img,
.page-logo-showcase img {
  width: min(92%, 500px);
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 58, 36, 0.075));
  transform: translateZ(0);
}

.page-hero {
  padding: 5.2rem 0;
}

.page-hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.page-hero-aside {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 76, 47, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.page-hero-aside img {
  margin-inline: auto;
  max-height: 340px;
}

.hero-mark {
  max-height: 280px !important;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--green-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

h1,
h2,
h3 {
  font-family: 'Space Grotesk', Inter, sans-serif;
  line-height: 1.08;
  margin: 0 0 1rem;
  color: var(--green-900);
}

h1 {
  font-size: clamp(2.45rem, 3vw, 2.9rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
}

.hero-lead,
.page-hero p {
  font-size: clamp(1.06rem, 2vw, 1.26rem);
  color: var(--ink-soft);
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 76, 47, 0.52);
  color: var(--green-800);
}

.btn-outline:hover {
  background: var(--white);
  border-color: var(--green-800);
}

.btn-secondary {
  background: var(--green-100);
  color: var(--green-800);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #1b1a09;
  border-color: rgba(212, 160, 0, 0.3);
}

/* Sections and content blocks */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, #fbfdfb 0%, var(--surface) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact-overlap {
  padding: 0;
  margin-top: -4rem;
  position: relative;
  z-index: 3;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-strip article {
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.stat-strip article:last-child {
  border-right: 0;
}

.stat-strip strong {
  display: block;
  color: var(--green-800);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.stat-strip span {
  color: var(--muted);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.section-heading p:not(.eyebrow),
.section-note {
  color: var(--muted);
  font-size: 1.08rem;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
}

.card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.mini-card,
.stat-strip,
.check-panel,
.contact-intro,
.contact-form-card,
.contact-detail-card,
.legal-card,
.privacy-summary,
.timeline-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.65rem;
  min-height: 210px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500), var(--red-600));
}

.card:hover,
.mini-card:hover,
.timeline-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 76, 47, 0.16);
  box-shadow: 0 22px 52px rgba(0, 40, 25, 0.075);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card .card-icon,
.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.sector-card {
  min-height: 230px;
}

.sector-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: var(--green-075);
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.centered-action {
  text-align: center;
  margin-top: 2rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}

.split-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  color: #28352e;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.34rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--gold-400), var(--green-700));
  box-shadow: 0 5px 12px rgba(0, 76, 47, 0.18);
}

.check-list.compact {
  gap: 0.65rem;
}

.logo-card-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.mini-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 1rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  font-weight: 800;
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}

/* Approach timeline */
.approach-timeline {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.timeline,
.big-timeline {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.timeline article,
.timeline-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
}

.timeline span,
.timeline-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-weight: 800;
}

.timeline h3,
.timeline-card h3 {
  margin-bottom: 0.35rem;
}

.timeline p,
.timeline-card p,
.timeline-intro p {
  margin: 0;
  color: var(--muted);
}

/* CTA */
.cta-section {
  padding: 1rem 0 5.5rem;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(0, 76, 47, 0.12);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 35%, rgba(240, 188, 37, 0.14), transparent 24%),
    radial-gradient(circle at 95% 10%, rgba(0, 76, 47, 0.06), transparent 30%);
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card img {
  width: 86px;
  height: 86px;
  opacity: 0.94;
  filter: drop-shadow(0 10px 18px rgba(0, 58, 36, 0.1));
}

.cta-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 3vw, 2.45rem);
}

.cta-card .eyebrow {
  margin-bottom: 0.45rem;
}

/* Contact page */
.contact-form-shell,
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.contact-intro,
.contact-form-card,
.contact-detail-card,
.legal-card,
.privacy-summary {
  border: 1px solid rgba(0, 76, 47, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-intro {
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.contact-intro h2,
.form-card-header h2 {
  margin-top: 0;
  letter-spacing: -0.03em;
}

.contact-intro p:last-child {
  margin-bottom: 0;
}

.support-list,
.privacy-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.support-list li,
.privacy-list li {
  position: relative;
  padding-left: 1.6rem;
  color: #3e4a45;
  line-height: 1.5;
}

.support-list li::before,
.privacy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green-700);
}

.contact-form-card {
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-card-header {
  margin-bottom: 1.25rem;
}

.form-card-header h2 {
  margin-bottom: 0.35rem;
}

.form-card-header p {
  margin: 0;
  color: var(--muted);
}

label {
  display: grid;
  gap: 0.42rem;
  color: var(--green-900);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 34, 28, 0.16);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fbfcfb;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--green-700);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 76, 47, 0.1);
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #8a948e;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 500;
  color: var(--muted);
}

.consent input {
  width: auto;
  margin-top: 0.36rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.25rem;
}

.form-actions p {
  max-width: 340px;
  margin: 0;
  color: var(--muted-2);
  font-size: 0.92rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-detail-list {
  display: grid;
  gap: 0.95rem;
  margin: 0;
}

.contact-detail-list div {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(0, 76, 47, 0.1);
}

.contact-detail-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-detail-list dt {
  margin: 0 0 0.25rem;
  font-weight: 800;
  color: var(--green-900);
}

.contact-detail-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.contact-detail-list a,
.contact-card a {
  color: var(--green-700);
  font-weight: 800;
}

.contact-detail-list a:hover,
.contact-card a:hover {
  color: var(--green-900);
}

/* Privacy / legal page */
.privacy-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.privacy-summary,
.legal-card {
  padding: 2rem;
}

.legal-copy h2,
.legal-card h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.legal-copy h2:first-child,
.legal-card h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-card p {
  color: var(--muted);
}

.legal-copy a,
.legal-card a {
  color: var(--green-700);
  font-weight: 800;
}



/* Shared refinements */
.effective-date {
  color: var(--muted-2) !important;
  font-size: 0.95rem !important;
  font-weight: 700;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.form-status-error {
  color: #7a1e1e;
  background: #fff4f4;
  border: 1px solid rgba(199, 15, 27, 0.18);
}

.form-status a {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Seamless hero logo treatment for pages that use a decorative logo */
.page-hero-aside.logo-blend-aside,
.logo-blend-aside {
  display: grid !important;
  place-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  outline: 0 !important;
  overflow: visible !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.page-hero-aside.logo-blend-aside .page-logo-showcase,
.logo-blend-aside .page-logo-showcase {
  width: min(100%, 420px) !important;
}

.page-hero-aside.logo-blend-aside .page-logo-showcase img,
.logo-blend-aside .page-logo-showcase img {
  width: min(92%, 390px) !important;
  max-height: 340px !important;
}

/* Footer */
.site-footer {
  background: #031b12;
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--white);
  font-family: 'Space Grotesk', Inter, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.footer-brand img {
  width: 58px;
  height: 58px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  transition: color 0.18s ease;
}

.site-footer a:hover {
  color: var(--gold-400);
}

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

.footer-bottom p {
  margin: 0;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

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

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

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

  .btn:hover,
  .card:hover,
  .mini-card:hover,
  .timeline-card:hover,
  .header-cta:hover,
  .site-nav a:hover {
    transform: none;
  }
}

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

@media (max-width: 1050px) {
  .hero-grid,
  .page-hero-inner,
  .split-grid,
  .contact-form-shell,
  .form-shell,
  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-card-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-card {
    grid-template-columns: 80px 1fr;
  }

  .cta-card .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 74px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-line {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(var(--header-height) + 8px) 20px auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.65rem;
    box-shadow: var(--shadow-lg);
    transform-origin: top;
    transform: translateY(-8px) scaleY(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.open {
    transform: translateY(0) scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    display: grid;
    gap: 0.2rem;
  }

  .site-nav a {
    border-radius: 11px;
  }

  .home-hero,
  .page-hero {
    padding: 3.5rem 0 4.5rem;
  }

  .hero-visual {
    min-height: clamp(300px, 58vw, 440px);
  }

  .home-hero::after,
  .page-hero::after {
    inset: auto -24% 6% auto;
    width: 92vw;
  }

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

  .stat-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-strip article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .brand-showcase,
  .page-logo-showcase {
    width: min(100%, 390px);
  }

  .brand-showcase img,
  .page-logo-showcase img {
    width: 92%;
  }

  .page-hero-aside.logo-blend-aside .page-logo-showcase,
  .logo-blend-aside .page-logo-showcase {
    width: min(100%, 360px) !important;
  }

  .page-hero-aside.logo-blend-aside .page-logo-showcase img,
  .logo-blend-aside .page-logo-showcase img {
    max-height: 300px !important;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-actions,
  .form-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .card-grid.three,
  .card-grid.four,
  .form-grid,
  .logo-card-row {
    grid-template-columns: 1fr;
  }

  .page-hero-aside,
  .contact-intro,
  .contact-form-card,
  .contact-detail-card,
  .legal-card,
  .privacy-summary {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .cta-card .btn {
    justify-self: stretch;
  }

  .timeline article,
  .timeline-card {
    grid-template-columns: 1fr;
  }
}
