:root{
  --bg:#4b5320;
  --surface:rgba(255,255,255,.1);
  --surface2:rgba(255,255,255,.16);
  --text:#ffffff;
  --muted:rgba(255,255,255,.7);
  --border:rgba(255,255,255,.15);
  --gold:#d6b25e;
  --gold2:#b88a2c;
  --accent:#8b1a3a;
  --accent2:#b1143f;
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(60,80,20,.5), transparent 55%),
    radial-gradient(900px 700px at 100% 10%, rgba(120,140,50,.2), transparent 60%),
    var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{width:min(1120px, calc(100% - 40px)); margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(55,65,20,.88);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  max-width:1024px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 22px;
  height:44px;
}

.brand{display:flex; align-items:center; gap:0}
.brand-name{font-family:Cinzel,serif; font-weight:600; letter-spacing:.05em; font-size:17px; color:#fff}

.menu-toggle{
  display:none;
  width:36px; height:36px;
  border-radius:6px;
  background:transparent;
  border:none;
  padding:8px;
}
.menu-toggle-bar{display:block; height:1.5px; background:#fff; margin:4px 0; border-radius:1px}

.nav{display:flex; align-items:center; gap:0}
.nav-link{
  padding:0 12px;
  height:44px;
  display:inline-flex;
  align-items:center;
  color:rgba(255,255,255,.75);
  border:none;
  transition:color .2s ease;
  font-weight:400;
  font-size:12px;
  letter-spacing:.01em;
}
.nav-link:hover{color:#fff}
.nav-link--active{color:#fff}

.page-hero{
  padding:60px 0 40px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.page-hero-inner{display:flex; flex-direction:column; align-items:center; gap:10px}
.page-hero-title{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  letter-spacing:-.03em;
  font-size:48px;
  line-height:1.08;
}
.page-hero-subtitle{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:56ch;
}

.carousel{
  position:relative;
  width:100%;
  background:#000;
  overflow:hidden;
}
.carousel-img{
  width:100%;
  height:80vh;
  object-fit:contain;
  object-position:center;
  background:#000;
  transition: opacity .6s ease;
  display:block;
}
.carousel-img.is-fading{opacity:0}
.carousel-dots{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}

.intro{
  padding:56px 0 48px;
  text-align:center;
  border-bottom:1px solid var(--border);
}
.intro-inner{display:flex; flex-direction:column; align-items:center; gap:14px}
.intro-title{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:700;
  letter-spacing:-.03em;
  font-size:48px;
  line-height:1.08;
}
.intro-subtitle{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
  max-width:56ch;
}
.intro-cta{display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:4px}

.socials{
  padding:20px 0;
  border-bottom:1px solid var(--border);
}
.socials-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}
.socials-label{
  color:var(--muted);
  font-size:13px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.socials-links{display:flex; gap:16px; flex-wrap:wrap}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:600;
  transition:background .2s ease, color .2s ease;
}
.social-link:hover{background:rgba(255,255,255,.15); color:#fff}
.social-link svg{flex-shrink:0}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--border);
  font-weight:700;
  font-size:14px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: #fff;
  border-color: #fff;
  color:#4b5320;
  font-weight:800;
}
.btn-primary:hover{background: rgba(255,255,255,.9)}
.btn-ghost{background: rgba(255,255,255,.1); color:#fff}
.btn-ghost:hover{background: rgba(255,255,255,.18)}

.section{padding:54px 0}
.section-alt{background: rgba(0,0,0,.1)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:22px; flex-wrap:wrap}
.section-title{margin:0; font-family:Cinzel,serif; font-weight:600; letter-spacing:.4px; font-size:30px}
.section-subtitle{margin:0; color:var(--muted); line-height:1.7; max-width:70ch}
.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,.4);
  transition: background .2s ease;
  cursor:pointer;
}
.dot.is-active{background: rgba(255,255,255,.95)}

/* Faculty page styles */
.faculty-founder{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:40px 20px;
  border:1px solid rgba(100,120,50,.35);
  background: rgba(85,100,40,.2);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.faculty-avatar{
  width:160px;
  height:160px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  border:2px solid rgba(255,255,255,.15);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;
}
.faculty-role{
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  margin-bottom:6px;
}
.faculty-name{
  margin:0;
  font-family:Cinzel,serif;
  font-size:32px;
  font-weight:600;
  letter-spacing:.02em;
  color:#fff;
}
.faculty-quote{
  margin:18px 0 22px;
  font-style:italic;
  color:rgba(255,255,255,.6);
  font-size:16px;
  line-height:1.7;
  max-width:50ch;
}
.faculty-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}
.faculty-tag{
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.8);
}

.faculty-pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:10px;
}
.faculty-pillar{
  text-align:center;
  padding:28px 18px;
  border-radius: var(--radius);
  border:1px solid rgba(100,120,50,.3);
  background: rgba(85,100,40,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.faculty-pillar:hover{
  transform:translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.pillar-icon{font-size:32px; margin-bottom:14px}
.pillar-title{margin:0 0 8px; font-size:16px; font-weight:800}
.pillar-text{margin:0; color:var(--muted); font-size:14px; line-height:1.7}

.faculty-support{
  max-width:480px;
  margin:10px auto 0;
}

/* Achievements page styles */
.stats-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  text-align:center;
}
.stat-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  padding:24px 12px;
  border-radius: var(--radius);
  border:1px solid rgba(100,120,50,.3);
  background: rgba(85,100,40,.15);
}
.stat-number{
  font-family:Cinzel,serif;
  font-size:36px;
  font-weight:600;
  color:#fff;
  line-height:1;
}
.stat-label{
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.55);
}

.highlights-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:12px;
  margin-top:10px;
}
.highlight-card{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
  aspect-ratio:4/3;
  cursor:pointer;
}
.highlight-card--wide{
  grid-row: span 2;
  aspect-ratio:auto;
}
.highlight-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .4s ease;
}
.highlight-card:hover img{
  transform:scale(1.06);
}
.highlight-overlay{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  padding:14px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.highlight-label{
  font-size:13px;
  font-weight:700;
  color:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:6px;
  margin-top:10px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  aspect-ratio:1;
  background:rgba(0,0,0,.15);
  cursor:pointer;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-item:hover img{
  transform:scale(1.06);
  opacity:.85;
}

.lightbox{
  display:none;
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(0,0,0,.9);
  align-items:center;
  justify-content:center;
  padding:20px;
}
.lightbox.is-open{display:flex}
.lightbox-close{
  position:absolute;
  top:16px;
  right:20px;
  background:none;
  border:none;
  color:#fff;
  font-size:36px;
  cursor:pointer;
  line-height:1;
  z-index:1000;
  opacity:.7;
  transition:opacity .2s;
}
.lightbox-close:hover{opacity:1}
.lightbox-img{
  max-width:90vw;
  max-height:85vh;
  object-fit:contain;
  border-radius:8px;
}

.cards{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
.card{
  border:1px solid rgba(100,120,50,.35);
  background: rgba(85,100,40,.25);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.card-title{margin:0 0 10px; font-size:16px; font-weight:800}
.card-text{margin:0 0 12px; color:var(--muted); line-height:1.7}
.card-list{margin:0; padding-left:18px; color:var(--text); line-height:1.8}

.ig-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:4px;
}
.ig-item{
  position:relative;
  overflow:hidden;
  aspect-ratio:1;
  background:rgba(0,0,0,.15);
  cursor:pointer;
}
.ig-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform .3s ease, opacity .3s ease;
}
.ig-item:hover img{
  transform:scale(1.05);
  opacity:.85;
}

/* Contact page – info row */
.contact-info-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.contact-info-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:28px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(100,120,50,.3);
  background: rgba(85,100,40,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-info-card:hover{
  transform:translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.contact-info-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.contact-info-title{
  margin:0 0 4px;
  font-size:14px;
  font-weight:800;
  color:#fff;
}
.contact-info-value{
  font-size:13px;
  color:rgba(255,255,255,.7);
  word-break:break-word;
}

/* Contact page – layout */
.contact-layout{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:start;
}
.contact-form-wrap{display:flex; flex-direction:column}
.contact-form-heading{
  margin:0 0 4px;
  font-family:Cinzel,serif;
  font-size:24px;
  font-weight:600;
  color:#fff;
}
.contact-form-sub{
  margin:0 0 20px;
  color:var(--muted);
  font-size:14px;
}

.form{
  border-radius: var(--radius);
  border:1px solid rgba(100,120,50,.3);
  background: rgba(85,100,40,.12);
  padding:22px;
}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
.label{font-weight:800; font-size:13px; color: #fff}
.input,.textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.2);
  color: #fff;
  padding:12px 14px;
  font-size:14px;
  outline:none;
  transition: border-color .2s ease, background .2s ease;
}
.input::placeholder,.textarea::placeholder{color:rgba(255,255,255,.35)}
.input:focus,.textarea:focus{border-color: #fff; background: rgba(0,0,0,.3)}
.textarea{resize:vertical; min-height:120px}
.form-hint{margin:12px 0 0; color: #ffd700; min-height:18px}

/* Contact page – side cards */
.contact-side{display:flex; flex-direction:column; gap:16px}
.contact-side-card{
  border-radius: var(--radius);
  border:1px solid rgba(100,120,50,.3);
  background: rgba(85,100,40,.12);
  padding:22px;
}
.contact-side-title{margin:0 0 6px; font-size:16px; font-weight:800; color:#fff}
.contact-side-text{margin:0 0 16px; color:var(--muted); font-size:14px; line-height:1.6}
.contact-side-note{margin:10px 0 0; color:rgba(255,255,255,.5); font-size:13px; line-height:1.6}

.contact-socials{display:flex; flex-direction:column; gap:10px}
.contact-social-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.85);
  font-size:14px;
  font-weight:600;
  transition: background .2s ease;
}
.contact-social-btn:hover{background:rgba(255,255,255,.12)}

.contact-schedule{display:flex; flex-direction:column; gap:8px; margin-bottom:6px}
.schedule-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 14px;
  border-radius:12px;
  background:rgba(0,0,0,.15);
  border:1px solid rgba(255,255,255,.08);
}
.schedule-day{font-weight:700; font-size:14px; color:#fff}
.schedule-time{font-size:13px; color:rgba(255,255,255,.65)}

.footer{border-top:1px solid rgba(255,255,255,.1); background: rgba(0,0,0,.12)}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:18px 0; flex-wrap:wrap}
.footer-brand{font-family:Cinzel,serif; font-weight:600; letter-spacing:.6px}
.footer-sub{color: var(--muted); font-size:13px; margin-top:6px}
.footer-right{display:flex; gap:12px; flex-wrap:wrap}
.footer-link{color: rgba(255,255,255,.7); font-weight:700; font-size:13px}
.footer-link:hover{color: #fff}

@media (max-width: 940px){
  .carousel-img{height:60vh}
  .intro-title{font-size:38px}
  .cards{grid-template-columns:1fr}
  .faculty-pillars{grid-template-columns:1fr}
  .stats-row{grid-template-columns: repeat(2, 1fr)}
  .highlights-grid{grid-template-columns:1fr}
  .highlight-card--wide{grid-row:span 1; aspect-ratio:16/9}
  .gallery-grid{grid-template-columns: repeat(3, 1fr)}
  .ig-grid{grid-template-columns: repeat(3, 1fr); gap:3px}
  .contact-info-row{grid-template-columns:1fr}
  .contact-layout{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .menu-toggle{display:inline-flex; flex-direction:column; justify-content:center}
  .nav{
    position:absolute;
    left:0; right:0;
    top:68px;
    margin:0 auto;
    width:min(1120px, calc(100% - 24px));
    padding:10px;
    border-radius: 16px;
    border:1px solid var(--border);
    background: rgba(55,65,20,.95);
    backdrop-filter: blur(14px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav-link{height:auto; padding:10px 14px; font-size:14px}
  .carousel-img{height:50vh}
  .intro-title{font-size:30px}
  .intro-subtitle{font-size:16px}
  .faculty-name{font-size:24px}
  .faculty-quote{font-size:14px}
  .stats-row{grid-template-columns: repeat(2, 1fr); gap:10px}
  .stat-number{font-size:28px}
  .gallery-grid{grid-template-columns: repeat(2, 1fr)}
  .contact-form-heading{font-size:20px}
  .ig-grid{grid-template-columns: repeat(3, 1fr); gap:2px}
}
