:root {
  color-scheme: dark;
  --bg: #05060f;
  --surface: rgba(18, 18, 28, 0.92);
  --surface-strong: #11121e;
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.16);
  --text: #f5f5f7;
  --muted: #b3b4c0;
  --border: rgba(212, 175, 55, 0.15);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.07), transparent 25%), var(--bg);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 6, 15, 0.82);
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(240, 190, 79, 0.85));
  color: #06060b;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
}

.site-nav {
  display: none;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.75rem;
  height: 2px;
  background: var(--text);
  display: block;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(5, 6, 15, 0.78), rgba(5, 6, 15, 0.78)), url('images/college.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 0 4rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 36rem;
  margin: 1.5rem auto 2.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #d4af37, #f0c558);
  color: #08101f;
  box-shadow: 0 20px 55px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.section {
  padding: 5rem 0;
}

.section-inner {
  display: grid;
  gap: 2.5rem;
}

.section-label {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.section-heading h2,
.section-text h2,
.location-panel h2,
.contact-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
}

.section-text p {
  max-width: 55ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.program-grid,
.facility-grid,
.feature-grid {
  display: grid;
  gap: 1.75rem;
}

.program-card,
.facility-card,
.feature-card,
.contact-card,
.location-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.program-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.program-card:hover,
.feature-card:hover,
.facility-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
}

.program-card img {
  width: 100%;
  min-height: 17rem;
  object-fit: cover;
}

.card-body,
.feature-card,
.facility-card {
  padding: 1.7rem;
}

.card-body h3,
.feature-card h3,
.facility-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.card-body p,
.facility-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.facility-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.facility-card,
.feature-card {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.facility-icon,
.feature-icon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold);
  font-size: 1.45rem;
}

.feature-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.location-panel {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
}

.map-frame {
  aspect-ratio: 16 / 9;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  display: grid;
  gap: 1.25rem;
  padding: 2rem;
}

.contact-item span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.site-footer {
  padding: 2rem 0;
  background: #07080f;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-content {
    padding: 7rem 0;
  }

  .section-inner {
    gap: 3rem;
  }

  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .facility-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .section-inner {
    gap: 4rem;
  }

  .location-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .hero-content {
    padding: 4rem 0 3rem;
  }

  .section-heading h2,
  .section-text h2,
  .location-panel h2,
  .contact-grid h2 {
    font-size: 2rem;
  }

  .site-nav {
    position: absolute;
    inset: auto 1rem 0 auto;
    right: 0;
    top: 100%;
    margin-top: 0.75rem;
    width: min(16rem, 100vw - 2rem);
    padding: 1.25rem;
    flex-direction: column;
    background: rgba(5, 6, 15, 0.96);
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:last-child {
    border-bottom: none;
  }
}
