:root {
  color-scheme: light;
  --ink: #13201d;
  --muted: #5a6662;
  --paper: #f4f6f3;
  --surface: #ffffff;
  --forest: #173c2f;
  --forest-dark: #0a211a;
  --gold: #c59b49;
  --wine: #8a3d55;
  --line: #d8dfdb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px 5vw;
  background: var(--forest-dark);
  color: #fff;
}

.brand {
  font-weight: 850;
  text-decoration: none;
}

.language-select {
  width: 160px;
  max-width: 100%;
  min-width: 130px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.hero {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 64px 6vw;
  background: var(--forest-dark) url("/assets/academy-hero.webp") center / cover no-repeat;
  box-shadow: inset 0 0 0 9999px rgba(5, 18, 14, 0.62);
  color: #fff;
}

.hero h1 {
  max-width: 900px;
  margin: 16px 0;
  font-size: 64px;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.5;
}

.eyebrow {
  color: #f1d69c;
  font-weight: 850;
  letter-spacing: 0;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-strip > div {
  min-height: 116px;
  padding: 24px 6vw;
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: var(--forest);
  font-size: 17px;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 64px 6vw;
}

.section h2 {
  margin: 0 0 14px;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card > :not(img) {
  margin-right: 24px;
  margin-left: 24px;
}

.card .level {
  margin-top: 24px;
}

.card .academy-checkout-status {
  margin-bottom: 20px;
}

.level {
  color: var(--wine);
  font-weight: 850;
}

.card h3 {
  margin-top: 13px;
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: 0;
}

.card p {
  color: var(--muted);
  line-height: 1.55;
}

.price {
  margin-top: auto;
  padding-top: 20px;
  font-size: 40px;
  font-weight: 900;
}

.included {
  margin-top: 24px;
  padding: 20px;
  border-left: 5px solid var(--gold);
  background: #fff;
  line-height: 1.55;
}

.full {
  width: 100%;
  max-width: none;
  padding-right: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  padding-left: max(6vw, calc((100vw - 1200px) / 2 + 6vw));
  background: var(--forest-dark);
  color: #fff;
}

.full p {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.6;
}

.special {
  color: #f1d69c !important;
  font-size: 22px !important;
  font-weight: 800;
}

.contact {
  max-width: 820px;
  margin: auto;
}

.form {
  display: grid;
  gap: 15px;
  margin-top: 28px;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid #aab6b0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

button {
  min-height: 48px;
  border: 0;
  background: var(--forest);
  color: #fff;
  padding: 0 22px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.status {
  min-height: 24px;
  color: var(--forest);
  font-weight: 700;
}

.safety,
.legal {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.footer {
  padding: 28px 6vw;
  background: #061510;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.footer a {
  color: #fff;
}

.legal-page {
  width: min(880px, 100%);
  min-height: 70vh;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: 46px;
  letter-spacing: 0;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: 25px;
  letter-spacing: 0;
}

.legal-page p,
.legal-page li {
  color: #34423d;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 390px;
    padding: 48px 24px;
  }

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

  .hero p {
    font-size: 18px;
  }

  .trust-strip,
  .grid,
  .row {
    grid-template-columns: 1fr;
  }

  .trust-strip > div {
    min-height: 0;
    padding: 20px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 48px 24px;
  }

  .section h2,
  .legal-page h1 {
    font-size: 36px;
  }
}
