@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #17221e;
  --muted: #62706a;
  --paper: #f4f0e8;
  --lime: #d6f25f;
  --line: rgba(23, 34, 30, 0.18);
  --orange: #ef734c;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
.section-wrap, .site-header { max-width: var(--max); margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; color: var(--ink); background: var(--lime); font-size: 11px; letter-spacing: 0; }
.brand-dot { color: var(--orange); }
nav { display: flex; align-items: center; gap: 25px; color: var(--muted); font-size: 13px; font-weight: 700; }
nav a { transition: color .2s ease; }
nav a:hover, .text-link:hover { color: var(--orange); }
.nav-button, .primary-button { color: var(--ink); background: var(--lime); padding: 11px 16px; }
.hero { display: grid; grid-template-columns: .95fr 1.05fr; gap: 8%; align-items: center; padding-top: 88px; padding-bottom: 112px; }
.eyebrow { margin: 0 0 20px; color: var(--orange); font: 500 11px/1.2 'DM Mono', monospace; letter-spacing: .08em; text-transform: uppercase; }
h1, h2 { margin: 0; font-weight: 700; letter-spacing: -.065em; line-height: 1.02; }
h1 { max-width: 570px; font-size: clamp(46px, 7vw, 86px); }
h2 { font-size: clamp(38px, 5vw, 65px); }
em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 410px; margin: 28px 0 34px; color: var(--muted); font-size: 17px; }
.primary-button { display: inline-flex; align-items: center; gap: 25px; font-size: 13px; font-weight: 800; transition: background .2s ease, transform .2s ease; }
.primary-button:hover { background: var(--orange); transform: translateY(-2px); }
.image-frame { position: relative; overflow: hidden; background: #d8d2c6; }
.image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-image { height: 560px; }
.image-label { position: absolute; bottom: 14px; left: 14px; padding: 6px 9px; color: var(--paper); background: var(--ink); font: 11px 'DM Mono', monospace; }
.statement { padding-bottom: 120px; }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; padding: 34px 0 55px; border-top: 1px solid var(--line); }
.statement-grid p, .course-copy > p { max-width: 410px; margin: 0 0 17px; color: var(--muted); font-size: 16px; }
.wide-image { height: 360px; }
.purpose { display: grid; grid-template-columns: .75fr 1.25fr; align-items: end; gap: 9%; padding-bottom: 130px; }
.purpose-heading { padding-bottom: 8px; }
.purpose-image { height: 480px; }
.course { display: grid; grid-template-columns: 1fr 1fr; gap: 10%; align-items: center; padding-bottom: 130px; }
.course-copy > p { margin-top: 27px; }
.course-image { height: 520px; }
.text-link { display: inline-flex; gap: 18px; margin-top: 12px; color: var(--orange); font-size: 13px; font-weight: 800; }
.contact { padding-top: 110px; padding-bottom: 120px; border-top: 1px solid var(--line); }
.contact h2 { margin-bottom: 35px; }
.site-footer { display: flex; justify-content: space-between; padding-top: 22px; padding-bottom: 25px; border-top: 1px solid var(--line); color: var(--muted); font: 11px 'DM Mono', monospace; }

@media (max-width: 700px) {
  .section-wrap, .site-header { padding-left: 20px; padding-right: 20px; }
  .site-header { align-items: flex-start; }
  nav { gap: 13px; font-size: 11px; }
  nav a:not(.nav-button) { display: none; }
  .nav-button { padding: 9px 10px; }
  .hero, .statement-grid, .purpose, .course { display: block; }
  .hero { padding-top: 60px; padding-bottom: 78px; }
  h1 { font-size: 49px; }
  .hero-image { height: 390px; margin-top: 48px; }
  .statement { padding-bottom: 80px; }
  .statement-grid { padding: 25px 0 35px; }
  .statement-grid > div { margin-top: 28px; }
  .wide-image { height: 270px; }
  .purpose { padding-bottom: 85px; }
  .purpose-image { height: 350px; margin-top: 35px; }
  .course { padding-bottom: 85px; }
  .course-image { height: 380px; margin-top: 40px; }
  .contact { padding-top: 78px; padding-bottom: 85px; }
  .site-footer { gap: 20px; align-items: flex-start; flex-direction: column; }
}
