:root {
  --wks-blue: #00335b;
  --wks-blue-dark: #002240;
  --wks-orange: #e54a0a;
  --wks-orange-dark: #c33e08;
  --wks-gold: #c9a227;
  --ink: #172033;
  --muted: #637083;
  --line: #dfe6ef;
  --soft: #f4f6f9;
  --sand: #f4f1e6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 51, 91, 0.14);
  --shadow-soft: 0 14px 35px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --radius-lg: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  background: var(--wks-orange);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem max(20px, calc((100vw - 1120px) / 2));
  background: var(--wks-blue);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 650;
}

.topline a {
  color: var(--white);
}

.nav {
  min-height: 82px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

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

.brand strong {
  color: var(--wks-blue);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  padding: 0.45rem 0;
}

.nav-links a:hover {
  color: var(--wks-orange);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--wks-orange);
  padding: 0.7rem 1.05rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(229, 74, 10, 0.25);
}

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

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--wks-blue);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 180px 0 90px;
  color: var(--white);
  overflow: hidden;
}

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

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

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(0, 28, 51, 0.94), rgba(0, 51, 91, 0.74) 55%, rgba(229, 74, 10, 0.35)),
    radial-gradient(circle at 78% 15%, rgba(201, 162, 39, 0.28), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--wks-orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb08d;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--wks-blue);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--wks-blue);
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wks-orange), #fa5c18);
  box-shadow: 0 14px 28px rgba(229, 74, 10, 0.32);
}

.button-primary:hover {
  background: var(--wks-orange-dark);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  max-width: 850px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  padding: 1rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:first-child {
  padding-left: 0;
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.45rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
}

.quick-strip {
  position: relative;
  z-index: 2;
  margin-top: -46px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.quick-grid div {
  padding: 1.35rem;
  border-right: 1px solid var(--line);
}

.quick-grid div:last-child {
  border-right: 0;
}

.quick-grid span,
.quick-grid strong {
  display: block;
}

.quick-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-grid strong {
  color: var(--wks-blue);
  line-height: 1.25;
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

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

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

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

.card {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--wks-orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.15rem;
  color: var(--white);
  background: var(--wks-blue);
  border-radius: var(--radius);
  font-weight: 850;
}

.card p,
.topic-grid p,
.timeline p,
.admission p,
.faq-list p,
.cta-card p {
  color: var(--muted);
}

.split-section,
.faq-section {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.text-link {
  color: var(--wks-orange);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  position: relative;
  padding: 1.3rem 1.5rem 1.3rem 2rem;
  background: var(--white);
  border-left: 5px solid var(--wks-orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.timeline span {
  color: var(--wks-orange);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.timeline h3 {
  margin: 0.2rem 0 0.35rem;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.topic-grid article {
  min-height: 190px;
  padding: 1.45rem;
  background: linear-gradient(180deg, var(--white), #fbfcfe);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.topic-grid article:nth-child(2n) {
  border-top: 4px solid var(--wks-gold);
}

.topic-grid article:nth-child(2n + 1) {
  border-top: 4px solid var(--wks-blue);
}

.admission {
  background: linear-gradient(135deg, var(--wks-blue), var(--wks-blue-dark));
}

.admission h2,
.admission p {
  color: var(--white);
}

.admission .eyebrow {
  color: #ffb08d;
}

.check-panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}

.check-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-panel li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.check-panel li:last-child {
  border-bottom: 0;
}

.check-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wks-orange);
  box-shadow: 0 0 0 5px rgba(229, 74, 10, 0.18);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 860px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  padding: 1.2rem 1.3rem;
  color: var(--wks-blue);
  font-weight: 850;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 1.3rem 1.3rem;
}

.cta-section {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(244, 241, 230, 0.92), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 20% 10%, rgba(229, 74, 10, 0.12), transparent 26%);
}

.cta-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--wks-blue);
  font-weight: 800;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(229, 74, 10, 0.18);
  border-color: var(--wks-orange);
  background: var(--white);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.form-note a {
  color: var(--wks-orange);
  font-weight: 850;
}

.footer {
  padding: 2.4rem 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--wks-blue-dark);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

address {
  font-style: normal;
  text-align: right;
}

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

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 126px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
  }

  .nav-cta {
    text-align: center;
  }

  .hero-facts,
  .quick-grid,
  .card-grid.three,
  .topic-grid,
  .split,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
  }

  .quick-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .topline {
    display: none;
  }

  .nav {
    min-height: 74px;
  }

  .brand small {
    max-width: 180px;
  }

  .nav-links {
    top: 86px;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts div {
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section,
  .cta-section {
    padding: 64px 0;
  }

  .footer-inner,
  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  address {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
