﻿@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("fonts/WorkSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171717;
  --muted: #5f646b;
  --line: #dadde1;
  --paper: #f6f6f3;
  --white: #ffffff;
  --red: #c91821;
  --red-dark: #96151b;
  --steel: #29333d;
  --yellow: #f0b629;
  --max: 1180px;
  --radius: 6px;
  --font-body: "Work Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: min(250px, 48vw);
  height: auto;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(14px, 2.4vw, 28px);
  color: var(--steel);
  font-size: 0.98rem;
  font-weight: 700;
}

.top-nav a {
  white-space: nowrap;
}

.top-nav a,
.phone-link {
  text-decoration: none;
}

.phone-link {
  color: var(--red);
  font-weight: 800;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  margin: 0;
  padding: 14px 10px 10px;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 2px;
  width: max-content;
  max-width: 90vw;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(23, 23, 23, 0.16);
}

.nav-dropdown.wide {
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 2px 16px;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  display: block;
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  white-space: normal;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--paper);
  text-decoration: none;
}

.top-nav > a.active,
.nav-item.active > a {
  position: relative;
  color: var(--red);
}

.top-nav > a.active::after,
.nav-item.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: clamp(520px, 74vh, 760px);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--steel);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(13, 18, 24, 0.84), rgba(13, 18, 24, 0.48) 52%, rgba(13, 18, 24, 0.16));
}

.hero-content {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: clamp(52px, 9vw, 110px) clamp(18px, 4vw, 48px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.3;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 10px 24px rgba(201, 24, 33, 0.32);
  transform: translateY(-2px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.button.outline {
  border-color: var(--red);
  color: var(--red-dark);
}

.button.outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.notice {
  max-width: var(--max);
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  padding: 18px clamp(18px, 3vw, 28px);
  background: var(--white);
  border-left: 6px solid var(--yellow);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.section,
.quote-section,
.contact,
.feature-band {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(62px, 8vw, 100px) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.intro p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.strength-grid,
.course-grid,
.quote-grid {
  display: grid;
  gap: 18px;
}

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

.strength-grid article,
.strength-grid a {
  display: block;
  min-height: 184px;
  padding: 24px;
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: 0 1px 0 var(--line);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.strength-grid article:hover,
.strength-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(23, 23, 23, 0.1);
}

.strength-grid p,
.course-card p,
.quote-grid figcaption,
.contact p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.course-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.course-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(23, 23, 23, 0.12);
}

.course-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.course-card div {
  padding: 22px;
}

.course-card h3 {
  margin-bottom: 8px;
}

.quote-section {
  padding: clamp(58px, 8vw, 94px) 0;
  border-top: 1px solid var(--line);
}

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

.quote-grid figure {
  margin: 0;
  padding: 26px;
  background: var(--steel);
  color: var(--white);
}

.quote-grid blockquote {
  margin: 0 0 18px;
  font-size: 1.12rem;
  font-style: italic;
}

.quote-grid figcaption {
  color: #d8dde3;
  font-size: 0.92rem;
  font-weight: 700;
  font-style: normal;
}

.partners {
  padding-top: 24px;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.partner-strip img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  padding: clamp(54px, 8vw, 94px) clamp(22px, 4vw, 52px);
  margin-bottom: 56px;
  background: var(--red);
  color: var(--white);
}

.contact .eyebrow,
.contact p {
  color: #ffe4e4;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-size: 1.08rem;
}

address a {
  color: var(--white);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 4vw, 48px);
  color: #f0f1f2;
  font-size: 0.92rem;
  background: #111418;
}

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

  .top-nav {
    justify-content: flex-start;
  }

  .nav-dropdown {
    display: none !important;
  }

  .intro,
  .feature-band,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .top-nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .phone-link {
    justify-self: start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(13, 18, 24, 0.44), rgba(13, 18, 24, 0.9));
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .notice {
    width: calc(100% - 28px);
  }

  .strength-grid,
  .course-grid,
  .quote-grid,
  .partner-strip {
    grid-template-columns: 1fr;
  }

  .contact {
    width: calc(100% - 28px);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: #f0f1f2;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.top-nav a:hover,
.top-nav a:focus-visible,
.phone-link:hover,
.phone-link:focus-visible,
address a:hover,
address a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible {
  text-decoration: underline;
}

.legal-page {
  background: var(--paper);
}

.legal-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 clamp(28px, 5vw, 48px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 960px;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  hyphens: auto;
  text-wrap: balance;
  overflow-wrap: normal;
}

.legal-hero p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) 0 clamp(68px, 9vw, 112px);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 22px;
}

.legal-content p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-content ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content li {
  margin-top: 6px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--red-dark);
  font-weight: 700;
}

.legal-content .hero-actions {
  margin-top: 22px;
}

.page-photo {
  margin: 0 0 8px;
}

.page-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.legal-updated {
  padding-top: 18px;
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.top-nav a,
.phone-link,
.footer-links a,
address a,
.legal-content a {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button:focus-visible,
.top-nav a:focus-visible,
.phone-link:focus-visible,
.footer-links a:focus-visible,
address a:focus-visible,
.legal-content a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}



