/* =============================================
   PINNACLE UNIVERSITY — style.css
   ============================================= */

/* --- CSS Variables --- */
:root {
  --green-dark: #0a3d2e;
  --green-mid: #0f5c42;
  --green-light: #16a06a;
  --teal: #00c9a7;
  --gold: #d4a537;
  --gold-light: #f5c96a;
  --white: #ffffff;
  --off-white: #f8f9f5;
  --light-gray: #eef1ec;
  --text-dark: #12201a;
  --text-mid: #3d5247;
  --text-light: #6b8578;
  --shadow-sm: 0 2px 12px rgba(10,61,46,0.08);
  --shadow-md: 0 8px 32px rgba(10,61,46,0.14);
  --shadow-lg: 0 20px 60px rgba(10,61,46,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(22,160,106,0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--green-light);
}

.section-sub {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green-light), var(--teal));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22,160,106,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,160,106,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-logo .logo-text { color: var(--text-dark); }
.navbar.scrolled .nav-logo .logo-icon { filter: none; }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 24px; filter: brightness(0) invert(1); }
.navbar.scrolled .logo-icon { filter: none; }

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text em {
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}
.navbar.scrolled .logo-text em { color: var(--green-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .nav-links a:hover { background: var(--light-gray); color: var(--green-dark); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #0e7a5c 80%, var(--teal) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0,201,167,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,165,55,0.12) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--off-white));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  padding-top: 100px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 0 60px;
  margin-top: auto;
  animation: fadeUp 0.8s 0.3s ease both;
}

.stat-pill {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: background 0.2s;
}

.stat-pill:hover { background: rgba(255,255,255,0.18); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* =============================================
   ANNOUNCEMENTS
   ============================================= */
.announcements {
  background: var(--white);
  padding: 72px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.news-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-gray);
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.news-card.featured { background: var(--green-dark); color: var(--white); }
.news-card.featured .news-date { color: rgba(255,255,255,0.6); }
.news-card.featured h3 { color: var(--white); }
.news-card.featured .read-more { color: var(--teal); }
.news-card.featured .news-tag { background: var(--gold); color: var(--green-dark); }

.news-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(22,160,106,0.1);
  color: var(--green-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.news-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
  transition: letter-spacing 0.2s;
}
.read-more:hover { letter-spacing: 0.5px; }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--green-dark);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.badge-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--green-light);
}

.hi-icon { font-size: 22px; flex-shrink: 0; }

.highlight-item strong { display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.highlight-item p { margin: 0; font-size: 13px; color: var(--text-light); }

.chancellor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.chancellor-card img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-light);
}

.chancellor-card strong { display: block; font-size: 15px; }
.chancellor-card span { font-size: 13px; color: var(--text-light); }

/* =============================================
   ACADEMICS
   ============================================= */
.academics { background: var(--white); }

.dept-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab {
  padding: 10px 22px;
  border-radius: 50px;
  border: 2px solid var(--light-gray);
  background: transparent;
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.tab.active, .tab:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.program-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.prog-degree {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(22,160,106,0.12);
  color: var(--green-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.program-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--text-dark); }

.prog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
}

.prog-meta span { display: flex; align-items: center; gap: 4px; }

/* =============================================
   ADMISSIONS
   ============================================= */
.admissions { background: var(--off-white); }

.adm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.adm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.adm-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  border-top: 3px solid var(--green-light);
  position: relative;
  transition: transform 0.2s;
}

.adm-step:hover { transform: translateY(-4px); }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(22,160,106,0.12);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.adm-step h3 { font-size: 17px; margin-bottom: 10px; }
.adm-step p { font-size: 14px; color: var(--text-light); }

.fee-table-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.fee-table-wrapper h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 24px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-table th:first-child { border-radius: 8px 0 0 8px; }
.fee-table th:last-child { border-radius: 0 8px 8px 0; }

.fee-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--light-gray);
  color: var(--text-mid);
}

.fee-table tbody tr:hover { background: var(--off-white); }
.fee-table td:first-child { font-weight: 600; color: var(--text-dark); }

/* =============================================
   FACULTY
   ============================================= */
.faculty { background: var(--white); }

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.faculty-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  gap: 0;
  flex-direction: column;
}

.faculty-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.faculty-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.faculty-info {
  padding: 20px;
}

.faculty-info h3 { font-size: 17px; margin-bottom: 4px; }
.faculty-info span { font-size: 13px; color: var(--green-light); font-weight: 600; display: block; margin-bottom: 4px; }
.faculty-info p { font-size: 12px; color: var(--text-light); }

/* =============================================
   CAMPUS LIFE
   ============================================= */
.campus { background: var(--green-dark); }
.campus .section-label { color: var(--teal); background: rgba(0,201,167,0.15); }
.campus .section-title { color: var(--white); }

.campus-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 16px;
  margin-top: 40px;
}

.campus-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.campus-card.large { grid-row: span 2; }

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.campus-card:hover img { transform: scale(1.05); }

.campus-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(10,61,46,0.92), transparent);
  color: var(--white);
  transform: translateY(8px);
  opacity: 0.85;
  transition: all 0.3s;
}

.campus-card:hover .campus-overlay { transform: translateY(0); opacity: 1; }

.campus-overlay h3 { font-size: 17px; margin-bottom: 4px; }
.campus-overlay p { font-size: 13px; color: rgba(255,255,255,0.75); }

/* =============================================
   PLACEMENT
   ============================================= */
.placement { background: var(--off-white); }

.placement-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.p-stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border-bottom: 3px solid var(--green-light);
  box-shadow: var(--shadow-sm);
}

.p-num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--green-dark);
}

.p-label { font-size: 14px; color: var(--text-light); }

.recruiter-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
}

.recruiters-scroll {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 0;
  border: 1px solid var(--light-gray);
}

.recruiters-track {
  display: flex;
  gap: 32px;
  animation: scroll 25s linear infinite;
  width: max-content;
}

.recruiters-track span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
  padding: 4px 20px;
  border-radius: 50px;
  background: var(--light-gray);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testi-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--light-gray);
  position: relative;
}

.testi-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(22,160,106,0.12);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testi-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card footer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-light);
}

.testi-card footer strong { display: block; font-size: 14px; }
.testi-card footer span { font-size: 12px; color: var(--text-light); }

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }

.c-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-item span { font-size: 22px; flex-shrink: 0; }
.c-item strong { display: block; font-size: 14px; margin-bottom: 2px; }
.c-item p { font-size: 14px; color: var(--text-light); margin: 0; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 8px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
}

.form-success {
  font-size: 14px;
  color: var(--green-light);
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text em { color: rgba(255,255,255,0.5); }
.footer-brand .logo-icon { filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 16px; line-height: 1.7; }

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card.featured { grid-column: span 2; }
  .faculty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--green-dark);
    padding: 24px;
    gap: 8px;
    z-index: 999;
  }

  .nav-links.open a { color: var(--white); display: block; padding: 12px 16px; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-image img { height: 300px; }
  .about-badge { bottom: -16px; right: 16px; width: 90px; height: 90px; }

  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }

  .adm-grid { grid-template-columns: 1fr 1fr; }

  .campus-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .campus-card.large { grid-row: span 1; }

  .placement-stats { grid-template-columns: repeat(2, 1fr); }

  .testi-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 24px 32px; }

  .faculty-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .adm-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .placement-stats { grid-template-columns: repeat(2, 1fr); }
}