:root {
  --orange: #f47621;
  --orange-dark: #d95b0a;
  --ink: #111214;
  --muted: #65676b;
  --paper: #f5f3ee;
  --white: #fff;
  --line: #dedbd3;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(17,18,20,.1);
  backdrop-filter: blur(14px);
}
.brand img { width: 136px; height: 60px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 600; }
.main-nav a:not(.nav-cta):hover { color: var(--orange-dark); }
.nav-cta { padding: 12px 18px; color: white; background: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; font-weight: 700; }

.hero {
  position: relative;
  min-height: 790px;
  padding-top: 82px;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #121212;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; filter: saturate(.85); transform: scale(1.04); }
.hero-shade { background: linear-gradient(90deg, rgba(8,8,8,.94) 0%, rgba(8,8,8,.77) 46%, rgba(8,8,8,.2) 82%), linear-gradient(0deg, rgba(8,8,8,.45), transparent 55%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding-bottom: 90px; }
.eyebrow { margin: 0 0 15px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Barlow Condensed", Impact, sans-serif; line-height: .98; margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 25px; font-size: clamp(62px, 8vw, 112px); letter-spacing: -.025em; text-transform: uppercase; }
h1 span { color: var(--orange); }
.hero-lead { max-width: 610px; margin: 0 0 34px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 52px; padding: 14px 22px; border: 1px solid transparent; font-size: 14px; font-weight: 800; }
.button-primary { background: var(--orange); color: var(--ink); }
.button-primary:hover { background: #ff8a38; }
.button-ghost { color: white; border-color: rgba(255,255,255,.45); }
.button-ghost:hover { border-color: white; }
.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(760px, 64vw);
  color: var(--ink);
  background: var(--orange);
}
.hero-stats div { padding: 20px 24px; border-left: 1px solid rgba(17,18,20,.16); }
.hero-stats strong { display: block; font: 700 34px/1 "Barlow Condensed", sans-serif; }
.hero-stats span { font-size: 11px; font-weight: 700; text-transform: uppercase; }

.section { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 780px; margin-bottom: 55px; }
.section-heading h2, .method h2, .registration h2, .business h2 { margin-bottom: 0; font-size: clamp(48px, 6vw, 76px); text-transform: uppercase; letter-spacing: -.015em; }
.heading-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.heading-row > p { width: 380px; margin: 0 0 6px; color: var(--muted); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }

.results-banner { background: white; }
.results-grid {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 70px;
  align-items: center;
}
.results-poster {
  width: 100%;
  height: auto;
  box-shadow: 0 25px 60px rgba(17,18,20,.18);
}
.results-copy h2 { margin-bottom: 20px; font-size: clamp(40px, 5vw, 64px); }
.results-copy .lead { max-width: 480px; margin-bottom: 30px; font-size: 19px; color: var(--muted); }

@media (max-width: 980px) {
  .results-grid { grid-template-columns: 1fr; gap: 40px; }
  .results-poster { max-width: 420px; margin: 0 auto; }
}

.intro-copy .lead { font-size: 22px; line-height: 1.55; }
.intro-copy > p:not(.lead) { color: var(--muted); }
.recognition { display: flex; align-items: center; gap: 15px; margin-top: 32px; padding-top: 25px; border-top: 1px solid var(--line); }
.recognition-icon { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: var(--ink); border-radius: 50%; }
.recognition strong, .recognition span { display: block; }
.recognition span { color: var(--muted); font-size: 13px; }
.photo-stack { position: relative; min-height: 520px; }
.photo-main { width: 78%; height: 440px; object-fit: cover; image-rendering: auto; }
.photo-small { position: absolute; right: 0; bottom: 0; width: 50%; height: 270px; object-fit: cover; border: 10px solid var(--paper); }
.orange-card { position: absolute; left: 5%; bottom: 24px; padding: 20px 24px; background: var(--orange); }
.orange-card strong, .orange-card span { display: block; }
.orange-card strong { font: 700 28px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.orange-card span { font-size: 11px; font-weight: 700; text-transform: uppercase; }

.courses-section { width: 100%; max-width: none; padding-left: max(24px, calc((100vw - var(--max)) / 2)); padding-right: max(24px, calc((100vw - var(--max)) / 2)); background: white; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter { padding: 10px 16px; border: 1px solid var(--line); background: white; font-size: 12px; font-weight: 700; }
.filter.active, .filter:hover { border-color: var(--ink); color: white; background: var(--ink); }
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.course-card { position: relative; min-height: 470px; display: flex; flex-direction: column; padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: transform .2s, box-shadow .2s; }
.course-card:hover { z-index: 2; transform: translateY(-4px); box-shadow: 0 20px 40px rgba(17,18,20,.12); }
.course-card.featured { background: #fff7f0; }
.course-card.dark { color: white; background: var(--ink); }
.course-card.hidden { display: none; }
.course-number { position: absolute; right: 28px; top: 25px; color: rgba(17,18,20,.12); font: 800 54px/1 "Barlow Condensed", sans-serif; }
.dark .course-number { color: rgba(255,255,255,.14); }
.course-type { color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.course-card h3 { max-width: 280px; margin: 50px 0 18px; font-size: 39px; text-transform: uppercase; }
.course-card p { color: var(--muted); font-size: 14px; }
.dark p { color: rgba(255,255,255,.65); }
.course-card ul { padding: 18px 0 0; margin: 10px 0 28px; list-style: none; border-top: 1px solid var(--line); }
.dark ul { border-color: rgba(255,255,255,.14); }
.course-card li { padding: 5px 0; font-size: 13px; }
.course-card li::before { content: "—"; color: var(--orange); margin-right: 8px; }
.course-apply { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding: 14px 0 0; color: inherit; border: 0; border-top: 1px solid var(--ink); background: none; font-weight: 800; text-align: left; }
.dark .course-apply { border-color: rgba(255,255,255,.55); }
.course-apply span { color: var(--orange); font-size: 22px; }
.course-card.wide { min-height: 270px; grid-column: span 3; flex-direction: row; align-items: end; justify-content: space-between; gap: 70px; color: white; background: linear-gradient(115deg, #1b1b1d, #35302d); }
.course-card.wide h3 { max-width: none; margin-top: 34px; font-size: 48px; }
.course-card.wide p { max-width: 700px; color: rgba(255,255,255,.67); }
.course-card.wide .course-apply { flex: 0 0 260px; border-color: rgba(255,255,255,.5); }

.method { display: grid; grid-template-columns: 1.06fr .94fr; min-height: 760px; color: white; background: var(--ink); }
.method-visual { min-height: 760px; background: #252525; }
.method-visual video { width: 100%; height: 100%; object-fit: cover; }
.method-copy { padding: 105px max(40px, calc((100vw - var(--max)) / 2)); padding-left: 7vw; }
.method-copy > p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.steps { padding: 20px 0 0; margin: 30px 0 0; list-style: none; border-top: 1px solid rgba(255,255,255,.15); }
.steps li { display: flex; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.steps li > span { color: var(--orange); font: 700 18px/1.5 "Barlow Condensed", sans-serif; }
.steps strong { display: block; font-size: 15px; text-transform: uppercase; }
.steps p { margin: 3px 0 0; color: rgba(255,255,255,.55); font-size: 13px; }

.business-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; padding: 70px; background: #eae6dd; }
.business-card p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.business-card .button { margin-top: 20px; }
.business-list { display: flex; flex-direction: column; justify-content: center; }
.business-list span { padding: 16px 0; border-bottom: 1px solid #c8c2b7; font-weight: 700; }
.business-list span::before { content: "↗"; margin-right: 12px; color: var(--orange-dark); }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 240px 240px; gap: 12px; }
.gallery-grid img, .gallery-grid video { width: 100%; height: 100%; object-fit: cover; background: #222; }
.gallery-grid > :first-child { grid-row: span 2; }

.registration { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--ink); color: white; }
.registration-copy { padding: 100px 7vw max(80px, 7vw) max(24px, calc((100vw - var(--max)) / 2)); background: linear-gradient(145deg, #18191b, #25211e); }
.registration-copy > p:not(.eyebrow) { color: rgba(255,255,255,.62); }
.contact-mini { display: grid; gap: 15px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-mini span { color: rgba(255,255,255,.68); font-size: 13px; }
.contact-mini strong { display: block; color: white; text-transform: uppercase; }
.registration-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 100px max(24px, calc((100vw - var(--max)) / 2)) 100px 6vw; background: white; color: var(--ink); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full, .full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 800; text-transform: uppercase; }
input, select, textarea { width: 100%; padding: 14px 12px; border: 1px solid #ccc8c0; border-radius: 0; background: white; color: var(--ink); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--orange-dark); box-shadow: 0 0 0 2px rgba(244,118,33,.16); }
textarea { resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; text-transform: none; font-weight: 500; }
.consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--orange); }
.submit-button { border: 0; justify-content: space-between; }
.form-note { margin: -6px 0 0; color: var(--muted); font-size: 11px; }
.form-fallback {
  margin-top: 4px;
  padding: 18px;
  border: 1px solid #ead4c2;
  background: #fff7f0;
  color: var(--ink);
  font-size: 13px;
}
.form-fallback strong, .form-fallback span { display: block; }
.form-fallback span { margin-top: 4px; color: var(--muted); }
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 13px; }
.fallback-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  font-size: 12px;
}
.fallback-actions a:last-child { background: #1f8f4d; }
.hidden-field { position: absolute; left: -9999px; }

footer { color: white; background: #090a0b; }
.footer-main { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; display: grid; grid-template-columns: 1.3fr .7fr 1fr .7fr; gap: 55px; padding: 75px 0; }
.footer-brand img { width: 160px; padding: 5px; background: white; }
.footer-brand p, .footer-main p { color: rgba(255,255,255,.52); font-size: 13px; }
.footer-main strong { display: block; margin-bottom: 16px; color: var(--orange); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a { display: block; padding: 4px 0; font-size: 13px; }
.footer-bottom { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; display: flex; justify-content: space-between; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: 11px; }

.enrollment-posters { background: var(--paper); }
.posters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.posters-grid img {
  width: 100%;
  height: auto;
  box-shadow: 0 15px 40px rgba(17,18,20,.15);
  transition: transform .2s;
}
.posters-grid img:hover { transform: translateY(-6px); }

@media (max-width: 980px) {
  .posters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .posters-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 81px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 24px 26px; background: white; border-bottom: 1px solid var(--line); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero-stats { width: 100%; }
  .intro-grid, .method, .registration { grid-template-columns: 1fr; }
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card.wide { grid-column: span 2; }
  .method-visual { min-height: 500px; height: 65vw; }
  .business-card { grid-template-columns: 1fr; gap: 40px; }
  .registration-copy, .registration-form { padding: 75px max(24px, calc((100vw - 720px)) / 2); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .posters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-header { height: 70px; }
  .brand img { width: 112px; height: 48px; }
  .main-nav { top: 69px; }
  .hero { min-height: 760px; padding-top: 70px; align-items: flex-start; }
  .hero-content { padding-top: 100px; padding-bottom: 185px; }
  h1 { font-size: 58px; }
  .hero-lead { font-size: 16px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats div { padding: 15px 18px; }
  .hero-stats strong { font-size: 28px; }
  .section { width: min(100% - 32px, var(--max)); padding: 80px 0; }
  .section-heading { margin-bottom: 38px; }
  .heading-row { align-items: flex-start; flex-direction: column; gap: 18px; }
  .heading-row > p { width: auto; }
  .intro-grid { gap: 45px; }
  .photo-stack { min-height: 400px; }
  .photo-main { height: 330px; }
  .photo-small { height: 190px; }
  .orange-card { left: 0; bottom: 0; }
  .courses-section { padding-left: 16px; padding-right: 16px; }
  .course-grid { grid-template-columns: 1fr; }
  .course-card { min-height: 430px; padding: 28px; }
  .course-card.wide { grid-column: auto; flex-direction: column; align-items: stretch; }
  .course-card.wide .course-apply { flex: auto; width: 100%; }
  .method-copy { padding: 75px 24px; }
  .method-visual { min-height: 380px; height: 70vh; }
  .business-card { padding: 40px 25px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 280px); }
  .gallery-grid > :first-child { grid-row: auto; }
  .registration-form { grid-template-columns: 1fr; }
  .registration-copy, .registration-form { padding: 70px 24px; }
  .field, .field.full, .full { grid-column: 1; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .posters-grid { grid-template-columns: 1fr; }
}
