:root {
  --forest: #10451f;
  --green: #2f7130;
  --leaf: #7ead39;
  --navy: #06192e;
  --gold: #d2a642;
  --paper: #fbfcf7;
  --soft: #f1f5ef;
  --white: #fff;
  --ink: #243027;
  --muted: #667166;
  --line: #dce4d9;
  --shadow: 0 16px 40px rgba(6, 25, 46, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.55;
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
  height: 104px;
  padding: 12px clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e9eee7;
  box-shadow: 0 4px 18px rgba(16, 69, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 142px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.8vw, 42px);
  color: #58655c;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  color: var(--forest);
  border-color: var(--gold);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.primary,
.header-cta {
  color: var(--white);
  background: var(--forest);
}

.ghost {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(6, 25, 46, 0.35);
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--forest);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 86px clamp(28px, 5vw, 72px) 38px;
  color: var(--white);
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 25, 46, 0.98) 0%, rgba(6, 25, 46, 0.9) 30%, rgba(16, 69, 31, 0.55) 56%, rgba(6, 25, 46, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 25, 46, 0.7), transparent 36%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -34%;
  width: 72%;
  height: 45%;
  border-top: 2px solid rgba(126, 173, 57, 0.35);
  background: linear-gradient(8deg, rgba(126, 173, 57, 0.18), transparent 62%);
  transform: rotate(-5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 118px);
  letter-spacing: 0;
}

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

.tagline {
  margin: 4px 0 24px;
  color: #bfe48e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  border-bottom: 2px solid rgba(126, 173, 57, 0.72);
  width: fit-content;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1040px;
  margin-top: 46px;
}

.hero-stats article {
  display: grid;
  grid-template-columns: 60px auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(13, 39, 64, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero-stats svg,
.topic-grid svg,
.circle-icon svg,
.impact-section svg,
.contact-copy svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-stats svg {
  width: 48px;
  height: 48px;
  color: var(--leaf);
}

.hero-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 45px;
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(56px, 7vw, 88px) clamp(28px, 5vw, 72px);
}

.training-paths {
  background: var(--white);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.training-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(16, 69, 31, 0.08);
}

.training-card > img {
  width: 100%;
  height: 286px;
  object-fit: cover;
}

.training-card-body {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 28px 34px 34px;
}

.circle-icon,
.journey-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--forest);
  background: #edf4eb;
}

.circle-icon svg {
  width: 38px;
  height: 38px;
}

.training-card h2,
.section-title h2,
.contact-copy h2 {
  color: var(--forest);
  font-size: clamp(31px, 3vw, 42px);
}

.training-card p {
  margin: 12px 0 20px;
  color: var(--muted);
}

.text-link {
  color: var(--green);
  font-weight: 900;
}

.text-link::after { content: "  ->"; }

.section-title {
  margin: 0 auto 34px;
  text-align: center;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--gold);
}

.topics-section {
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.topic-grid article {
  min-height: 222px;
  padding: 30px 22px 26px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 69, 31, 0.04);
}

.topic-grid svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: var(--forest);
}

.topic-grid h3 {
  color: var(--forest);
  font-size: 25px;
}

.topic-grid p {
  margin: 10px 0 0;
  color: #4f5d52;
  font-size: 14px;
}

.impact-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.4fr;
  align-items: center;
  gap: 42px;
  overflow: hidden;
  padding: 58px clamp(28px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(126, 173, 57, 0.18), transparent 30%),
    linear-gradient(90deg, #06192e, #08243a 45%, #06192e);
}

.impact-section::before,
.impact-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(126, 173, 57, 0.28);
  border-radius: 45% 55% 50% 50%;
  transform: rotate(34deg);
}

.impact-section::before { left: -70px; bottom: -80px; }
.impact-section::after { right: -70px; bottom: -60px; }

.impact-lead,
.impact-equation,
.impact-note {
  position: relative;
  z-index: 1;
}

.impact-lead p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-lead h2 {
  color: var(--white);
  font-size: clamp(42px, 5vw, 68px);
}

.impact-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr;
  align-items: center;
  gap: 22px;
}

.impact-equation article {
  display: grid;
  justify-items: center;
  text-align: center;
}

.impact-equation svg {
  width: 78px;
  height: 78px;
  padding: 16px;
  margin-bottom: 16px;
  color: var(--gold);
  border: 2px solid rgba(126, 173, 57, 0.65);
  border-radius: 50%;
}

.impact-equation strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
}

.impact-equation span {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.impact-equation small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.impact-equation b {
  color: var(--gold);
  font-size: 40px;
}

.impact-note {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.history-section,
.testimonials-section {
  background: var(--white);
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.journey::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 53px;
  height: 2px;
  background: var(--gold);
}

.journey article {
  position: relative;
  z-index: 1;
}

.journey-icon {
  width: 106px;
  height: 106px;
  margin: 0 auto 18px;
  border: 2px solid rgba(47, 113, 48, 0.45);
  background: var(--paper);
}

.journey-icon svg {
  width: 54px;
  height: 54px;
  color: var(--forest);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-icon.text {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
}

.journey-icon img {
  width: 82px;
  height: 62px;
  object-fit: contain;
}

.journey h3 {
  color: var(--forest);
  font-size: 22px;
}

.journey strong {
  display: block;
  margin-top: 2px;
  color: #4f5d52;
}

.journey p {
  max-width: 230px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonials-section {
  background: linear-gradient(180deg, var(--white), #edf4ed);
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.round-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 34px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

blockquote {
  position: relative;
  min-height: 220px;
  margin: 0;
  padding: 34px 32px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(16, 69, 31, 0.05);
}

blockquote::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 22px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
}

blockquote p {
  margin: 18px 0 24px;
  color: #334037;
  font-style: italic;
  font-weight: 700;
}

blockquote footer {
  display: grid;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

blockquote footer span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5c8;
}

.dots span:first-child { background: var(--green); }

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: 62px clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
    radial-gradient(circle at 0 30%, rgba(126, 173, 57, 0.2), transparent 28%);
}

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

.contact-copy p {
  max-width: 460px;
  color: var(--muted);
}

.contact-copy ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #4e5d51;
  font-weight: 800;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-copy svg {
  width: 23px;
  height: 23px;
  color: var(--green);
  flex: 0 0 auto;
}

.proposal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proposal-form select,
.proposal-form textarea,
.proposal-form button {
  grid-column: 1 / -1;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea { resize: vertical; }

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(126, 173, 57, 0.22);
  border-color: var(--green);
}

.proposal-form .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(120px, 0.6fr));
  gap: 36px;
  padding: 46px clamp(28px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, #0b4a23, #0e5a2a);
}

.site-footer img {
  width: 150px;
  height: 78px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 12px 0 0;
  font-size: 12px;
}

.site-footer nav,
.social {
  display: grid;
  align-content: start;
  gap: 6px;
  font-size: 13px;
}

.site-footer strong {
  margin-bottom: 8px;
  color: var(--white);
}

.social {
  grid-template-columns: repeat(4, 34px);
}

.social strong {
  grid-column: 1 / -1;
}

.social span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 160px auto;
    height: auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
  }

  .site-header.nav-open .header-cta {
    display: inline-flex;
    grid-column: 1 / -1;
  }

  .path-grid,
  .contact-section,
  .impact-section {
    grid-template-columns: 1fr;
  }

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

  .impact-equation {
    grid-template-columns: 1fr;
  }

  .impact-equation b {
    text-align: center;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 10px 18px;
  }

  .hero {
    min-height: auto;
    padding: 64px 18px 28px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-stats,
  .path-grid,
  .training-card-body,
  .topic-grid,
  .journey,
  .testimonial-wrap,
  .testimonial-grid,
  .proposal-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-stats article {
    grid-template-columns: 48px auto;
  }

  .hero-stats span {
    grid-column: 2;
  }

  .training-card > img {
    height: 220px;
  }

  .journey::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
  }

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

  .round-button {
    display: none;
  }
}
