*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

:root {
  --red:      #8b0f14;
  --red-dark: #5f090d;
  --white:    #ffffff;
  --off:      #f7f6f4;
  --ink:      #1c1c1c;
  --mid:      #4a4540;
  --muted:    #888;
  --border:   #e2ddd8;
}

html { scroll-behavior: smooth; }

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

/* ═══ HEADER ══════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 16px;
  min-height: 64px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.header-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.header-text h1 {
  font-family: Georgia, serif;
  font-size: clamp(13px, 2vw, 20px);
  color: var(--red);
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .4px;
  margin-top: 1px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.site-nav a {
  color: var(--mid);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 3px !important;
  border-bottom-color: transparent !important;
  margin-left: 6px;
  padding: 8px 14px !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .22s, opacity .22s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ HERO ════════════════════════════════ */
.hero {
  min-height: clamp(420px, 65vh, 700px);
  background:
    linear-gradient(rgba(10,5,5,.42), rgba(10,5,5,.74)),
    url("images/hero-assembly.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 6%;
  color: var(--white);
}

.hero-inner {
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,.6);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: Georgia, serif;
  font-size: clamp(36px, 7vw, 80px);
  line-height: 1;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,.75);
}

.hero-desc {
  font-size: clamp(14px, 1.8vw, 17px);
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══ BUTTONS ═════════════════════════════ */
.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: var(--red);
  color: var(--white);
  padding: 13px 26px;
  border: 1.5px solid var(--red);
  border-radius: 3px;
  min-height: 44px;
  transition: background .15s;
}
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--white);
  padding: 13px 26px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 3px;
  min-height: 44px;
  transition: border-color .15s;
}
.btn-outline:hover { border-color: var(--white); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  background: var(--white);
  color: var(--red);
  padding: 13px 26px;
  border: 1.5px solid var(--white);
  border-radius: 3px;
  min-height: 44px;
  transition: background .15s;
}
.btn-white:hover { background: var(--off); }

/* ═══ SECTION SHARED ══════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-label.light { color: rgba(255,255,255,.55); }

.section-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(22px, 3.5vw, 36px);
  color: var(--ink);
  font-weight: normal;
  line-height: 1.15;
}

.section-sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
}

/* ═══ PILLARS / ABOUT ═════════════════════ */
.pillars {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.pillar {
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; }

.pillar-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.pillar-body {
  padding: 24px 22px 28px;
  border-top: 2px solid var(--red);
}

.pillar-body h3 {
  font-family: Georgia, serif;
  font-size: 16px;
  color: var(--red);
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 10px;
}

.pillar-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* ═══ CAMPUS LIFE ═════════════════════════ */
.campus-life {
  background: var(--off);
  padding: 64px 5%;
  border-bottom: 1px solid var(--border);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.campus-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.campus-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.campus-body {
  padding: 20px 22px 24px;
  border-top: 2px solid var(--red);
}

.campus-body h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--red);
  margin-bottom: 6px;
}

.campus-body p {
  font-size: 14px;
  color: var(--mid);
}

/* ═══ PROGRAMS ════════════════════════════ */
.programs {
  background: var(--white);
  padding: 64px 5%;
  border-bottom: 1px solid var(--border);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.program-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
}

.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.program-body {
  padding: 24px 24px 28px;
  border-top: 2px solid var(--red);
}

.program-body h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  color: var(--ink);
  font-weight: normal;
  margin-bottom: 14px;
  line-height: 1.2;
}

.program-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.program-body li {
  font-size: 14px;
  color: var(--mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.program-body li:last-child { border-bottom: none; }

.prog-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--red);
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
  line-height: 44px;
}
.prog-link:hover { color: var(--red-dark); }

/* ═══ WHY + DIRECTOR ══════════════════════ */
.why-director {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off);
  border-bottom: 1px solid var(--border);
}

.why-col {
  padding: 56px 5%;
  border-right: 1px solid var(--border);
}

.director-col {
  padding: 56px 5%;
}

.why-col h2,
.director-col h2 {
  font-family: Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink);
  font-weight: normal;
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.why-list {
  border: 1px solid var(--border);
}

.why-item {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid var(--red);
  background: var(--white);
}
.why-item:last-child { border-bottom: none; }

.why-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--red);
  margin-bottom: 3px;
}

.why-item span {
  font-size: 13px;
  color: var(--mid);
}

/* Director */
.director-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.director-card blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
  border-left: 2px solid var(--red);
  padding-left: 16px;
}

.director-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: var(--red);
}

.director-title {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* ═══ STATS ═══════════════════════════════ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.stat {
  padding: 36px 12px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat strong {
  display: block;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--red);
  font-weight: normal;
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  font-weight: 700;
}

/* ═══ CTA ═════════════════════════════════ */
.cta {
  background: var(--red);
  padding: 72px 6%;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(24px, 4.5vw, 44px);
  color: var(--white);
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cta p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ═══ FOOTER ══════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 5%;
  font-size: 12px;
  border-top: 2px solid var(--red);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  opacity: .65;
  border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}

.footer-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 2px;
}

.footer-right { text-align: right; }

/* ═══ TABLET ≤ 900px ══════════════════════ */
@media (max-width: 900px) {
  .pillars-grid,
  .campus-grid,
  .program-grid,
  .why-director {
    grid-template-columns: 1fr;
  }

  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }

  .why-col { border-right: none; border-bottom: 1px solid var(--border); }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .site-footer { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
}

/* ═══ MOBILE ≤ 600px ══════════════════════ */
@media (max-width: 600px) {

  /* Header: compact, single row */
  .site-header { padding: 0 4%; min-height: 58px; }
  .header-logo { width: 36px; height: 36px; }
  .header-text h1 { font-size: 13px; }
  .header-sub { display: none; }  /* hide on mobile — already in hero eyebrow */

  /* Show hamburger, hide nav by default */
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 2px solid var(--red);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    z-index: 99;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    min-height: 50px;
    border-bottom-color: var(--border) !important;
    color: var(--ink);
  }

  .site-nav a:hover { color: var(--red); }

  .nav-cta {
    margin: 10px 16px 14px !important;
    border-radius: 3px !important;
    justify-content: center;
    min-height: 46px;
    color: var(--white) !important;
  }

  /* Hero: shorter, stacked buttons */
  .hero { min-height: 400px; padding: 44px 5%; }
  .hero-headline { font-size: clamp(32px, 10vw, 52px); }
  .hero-desc { font-size: 14px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .hero-actions .btn-red,
  .hero-actions .btn-outline { width: 100%; max-width: 300px; }

  /* Pillars */
  .pillar-img img { height: 180px; }
  .pillar-body { padding: 18px 18px 22px; }

  /* Campus */
  .campus-life { padding: 44px 4%; }
  .campus-grid img { height: 200px; }

  /* Programs */
  .programs { padding: 44px 4%; }
  .program-card img { height: 190px; }

  /* Why + director */
  .why-col, .director-col { padding: 36px 4%; }
  .director-card img { height: 220px; }

  /* Stats */
  .stat { padding: 24px 8px; }

  /* CTA */
  .cta { padding: 52px 5%; }

  /* Footer */
  .site-footer { padding: 20px 4%; gap: 14px; }
  .footer-brand { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle span, .site-nav a, .btn-red, .btn-outline, .btn-white { transition: none; }
}
