:root {
  --ink: #10201d;
  --muted: #60726d;
  --paper: #f5f3ed;
  --paper-strong: #ebe7dc;
  --surface: #ffffff;
  --line: #d7ddd7;
  --line-dark: rgba(255, 255, 255, 0.18);
  --green-950: #071d18;
  --green-900: #0c2a24;
  --green-700: #0e5e4d;
  --teal: #0b7d82;
  --coral: #d95f45;
  --gold: #c99637;
  --shadow: 0 22px 54px rgba(15, 32, 29, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(245, 243, 237, 0.94);
  border-bottom: 1px solid rgba(16, 32, 29, 0.09);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--green-700);
  color: white;
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 34px);
  color: #40524e;
  font-size: 14px;
  font-weight: 650;
}

.site-nav li,
.footer-links li {
  list-style: none;
}

.site-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--green-700);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary {
  background: var(--coral);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  min-height: calc(84svh - 70px);
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 56px) clamp(46px, 6vw, 72px);
  background: var(--green-950);
  color: white;
}

.hero-content,
.route-visual {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 38px 0 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-metrics div {
  padding: 18px 18px 18px 0;
}

.hero-metrics div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.hero-metrics dt {
  margin: 0;
  color: white;
  font-size: 32px;
  font-weight: 850;
  line-height: 1;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.route-visual {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--green-900);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.23);
}

.route-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line-dark);
}

.route-header small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.route-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0 22px;
  list-style: none;
}

.route-steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 22px 0;
}

.route-steps li + li {
  border-top: 1px solid var(--line-dark);
}

.route-steps span {
  color: var(--gold);
  font-weight: 850;
}

.route-steps strong {
  display: block;
  margin-bottom: 5px;
}

.route-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.language-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line-dark);
}

.language-row span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.section {
  padding: clamp(66px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 780px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  max-width: none;
}

.section-heading.split > p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 17px;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4.7vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro {
  background: var(--paper);
}

.intro-grid,
.service-grid,
.trust-grid,
.audience-list {
  display: grid;
  gap: 16px;
}

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

.intro-grid article,
.service-card,
.trust-grid article,
.audience-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.intro-grid article {
  padding: 28px;
}

.mini-icon,
.icon,
.audience-list span {
  display: inline-grid;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 850;
}

.mini-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  background: rgba(14, 94, 77, 0.1);
  color: var(--green-700);
}

.intro-grid h3,
.service-card h3,
.trust-grid h3,
.audience-list h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.intro-grid p,
.service-card p,
.trust-grid p,
.audience-list p,
.timeline p,
.community-copy p,
.contact-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.services {
  background: var(--paper-strong);
}

.service-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.91fr) minmax(0, 0.91fr);
  align-items: stretch;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(22px, 3vw, 34px);
}

.service-card.featured {
  background: var(--green-900);
  color: white;
  border-color: var(--green-900);
}

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.icon {
  width: 48px;
  height: 36px;
  margin-bottom: 26px;
  background: rgba(11, 125, 130, 0.12);
  color: var(--teal);
}

.service-card.featured .icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #33413e;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.community {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.community-copy {
  position: sticky;
  top: 94px;
}

.community-copy p {
  margin-top: 20px;
  font-size: 18px;
}

.audience-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.audience-list article {
  padding: 26px;
}

.audience-list span {
  width: 58px;
  height: 34px;
  margin-bottom: 22px;
  background: rgba(217, 95, 69, 0.1);
  color: var(--coral);
  font-size: 13px;
}

.process {
  background: var(--green-950);
  color: white;
}

.process .section-heading.split > p,
.process .timeline p {
  color: rgba(255, 255, 255, 0.7);
}

.process .timeline span {
  color: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  list-style: none;
}

.timeline li {
  padding: 26px;
  background: var(--green-900);
}

.timeline li:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.timeline li:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.timeline span {
  display: block;
  margin-bottom: 48px;
  font-size: 18px;
  font-weight: 850;
}

.trust {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 64px);
}

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

.trust-grid article {
  padding: 26px;
}

.contact {
  padding-top: 0;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 18px;
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--coral);
  background: #f8f6f0;
}

.contact-note strong {
  color: var(--green-700);
}

.contact-note span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #34413f;
  font-size: 14px;
  font-weight: 760;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fbfaf6;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #101b19;
  color: white;
}

.site-footer p {
  max-width: 520px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .community,
  .trust,
  .contact-card,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .route-visual {
    max-width: 720px;
  }

  .community-copy {
    position: static;
  }

  .service-grid,
  .timeline,
  .intro-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card.featured {
    grid-column: 1 / -1;
  }

  .timeline li:first-child,
  .timeline li:last-child {
    border-radius: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .hero {
    gap: 30px;
    padding: 54px 16px 40px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .timeline,
  .intro-grid,
  .service-grid,
  .trust-grid,
  .audience-list {
    grid-template-columns: 1fr;
  }

  .hero-metrics div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .route-steps li {
    grid-template-columns: 1fr;
  }

  .language-row span {
    flex: 1 1 auto;
  }

  .contact-card,
  .intro-grid article,
  .service-card,
  .audience-list article,
  .trust-grid article {
    padding: 20px;
  }
}
