/* ═══════════════════════════════════════════════════════════════════════
   THE HELICON INSTITUTE — stylesheet.css
   Palette: Navy #0B1628 | Gold #C9A84C | Parchment #F5F0E8 | Deep #070D17
   Type: Playfair Display (display) | EB Garamond (body) | Cormorant SC (labels)
═══════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:        #0B1628;
  --navy-mid:    #1E2A3A;
  --navy-light:  #243347;
  --gold:        #C9A84C;
  --gold-light:  #E8CA7A;
  --gold-dark:   #8B6914;
  --parchment:   #F5F0E8;
  --parchment-dark: #E8E0D0;
  --cream:       #FAF7F2;
  --deep:        #070D17;
  --text-dark:   #1A1A2E;
  --text-mid:    #3A3A5C;
  --text-light:  #F5F0E8;

  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'EB Garamond', Georgia, serif;
  --ff-label:    'Cormorant SC', 'Playfair Display', serif;

  --max-w: 1280px;
  --section-pad: 7rem 2rem;
  --radius: 2px;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ─────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── SELECTION ─────────────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--deep);
}

/* ── UTILITY CLASSES ──────────────────────────────────────────────── */
.gold { color: var(--gold); }

/* ── BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85rem 2.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(201, 168, 76, 0.5);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 3rem;
  font-size: 0.85rem;
}

/* ── ORNAMENTS ────────────────────────────────────────────────────── */
.ornament {
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  text-align: center;
  margin: 1.2rem auto;
  opacity: 0.75;
}


/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 13, 23, .5);
  border-bottom: 1px solid rgba(201, 168, 76, 0);
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  padding: 0.9rem 0;
}

.site-header.scrolled {
  background: rgba(7, 13, 23, 0.97);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  padding: 0.6rem 0;
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.header-crest {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav-crest {
  width: 48px;
  height: 48px;
  object-fit: contain;
  transition: width var(--transition), height var(--transition);
}

.site-header.scrolled .nav-crest {
  width: 36px;
  height: 36px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.8);
  padding: 0.5rem 1rem;
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { width: 60%; }

.nav-brand {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--parchment);
  text-transform: none;
  white-space: nowrap;
}
.nav-brand:hover { color: var(--gold); }
.nav-brand::after { display: none; }

.nav-divider {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.6rem;
  padding: 0 0.5rem;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--parchment);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 400px;
}

.mobile-menu ul {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu a {
  font-family: var(--ff-label);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--parchment);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  display: block;
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-menu a:hover {
  color: var(--gold);
  padding-left: 0.8rem;
}


/* ═══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(7, 13, 23, 0.55) 0%,
    rgba(7, 13, 23, 0.45) 40%,
    rgba(7, 13, 23, 0.75) 85%,
    rgba(7, 13, 23, 1) 100%
  );
}

/* Gold shimmer scan line — the signature element */
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(201, 168, 76, 0.04) 45%,
    rgba(201, 168, 76, 0.09) 50%,
    rgba(201, 168, 76, 0.04) 55%,
    transparent 100%
  );
  animation: shimmer 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes shimmer {
  0%   { left: -60%; }
  50%  { left: 120%; }
  100% { left: -60%; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
  width: 100%;
}

.hero-crest-wrap {
  margin: 1rem 0;
  animation: fadeDown 1.2s ease both;
}

.hero-crest-img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.3));
  transition: transform 0.4s ease;
}

.hero-crest-img:hover {
  transform: scale(1.03);
}

.hero-text {
  animation: fadeUp 1.2s 0.3s ease both;
}

.hero-eyebrow {
  font-family: var(--ff-label);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--parchment);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: var(--ff-label);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1.5s 1.5s ease both;
}

.hero-scroll-hint span {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.6);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ═══════════════════════════════════════════════════════════════════
   PILLARS BAR
═══════════════════════════════════════════════════════════════════ */
.pillars-bar {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem 2.5rem;
}

.pillar-num {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pillar-label {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 0.35rem;
}

.pillar-sep {
  color: var(--gold-dark);
  opacity: 0.5;
  font-size: 0.8rem;
}


/* ═══════════════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-eyebrow {
  font-family: var(--ff-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

/* alternate dark sections */
.section.dark-section {
  background: var(--navy);
}
.section.dark-section .section-title { color: var(--parchment); }
.section.dark-section .section-desc  { color: rgba(245,240,232,0.65); }
.section.dark-section .section-eyebrow { color: var(--gold); }


/* ═══════════════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════════════ */
.about-section {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}

.about-quote {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
}

.about-quote p {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.about-quote cite {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  z-index: 1;
}

.about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-img {
  transform: scale(1.03);
}

.img-caption-bar {
  background: var(--navy);
  padding: 0.6rem 1rem;
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 1.5rem;
  background: var(--navy);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 1rem;
  text-align: center;
}

.stat-val {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-desc {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.2);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   QUOTE BREAK
═══════════════════════════════════════════════════════════════════ */
.quote-break {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qb-bg {
  position: absolute;
  inset: 0;
}

.qb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) saturate(0.6);
}

.qb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,13,23,0.85) 0%,
    rgba(11,22,40,0.7) 100%
  );
}

.qb-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
}

.qb-content blockquote p {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.4;
  margin: 1rem 0;
}


/* ═══════════════════════════════════════════════════════════════════
   FRATERNITIES
═══════════════════════════════════════════════════════════════════ */
.frat-section {
  background: var(--navy);
}

.frat-section .section-title { color: var(--parchment); }
.frat-section .section-eyebrow { color: var(--gold); }
.frat-section .section-desc { color: rgba(245,240,232,0.65); }
.frat-section .ornament { color: var(--gold); }

.frat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}

.frat-card {
  background: var(--deep);
  transition: background var(--transition);
  overflow: hidden;
}

.frat-card:hover {
  background: var(--navy-mid);
}

.frat-card-inner {
  padding: 3.5rem 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}

.frat-pantheon .frat-card-inner { border-top-color: var(--gold); }
.frat-pantheon:hover .frat-card-inner { border-top-color: var(--gold-light); }

.frat-carthego .frat-card-inner { border-top-color: #7B8FBC; }
.frat-carthego:hover .frat-card-inner { border-top-color: #A0B2D4; }

.frat-argona .frat-card-inner { border-top-color: #8A8A8A; }
.frat-argona:hover .frat-card-inner { border-top-color: #B0B0B0; }

.frat-rank {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(245,240,232,0.2);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.frat-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  opacity: 0.7;
}

.frat-name {
  font-family: var(--ff-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.4rem;
}

.frat-tagline {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 1.8rem;
}

.frat-divider {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.3);
  margin-bottom: 1.8rem;
}

.frat-desc {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.65);
  flex-grow: 1;
}

.frat-residence {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.res-label {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.res-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
}


/* ═══════════════════════════════════════════════════════════════════
   ACADEMICS
═══════════════════════════════════════════════════════════════════ */
.academics-section {
  background: var(--parchment);
}

.academics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.acad-img-wrap {
  position: relative;
  overflow: hidden;
}

.acad-img-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
  z-index: 1;
}

.acad-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.acad-img-wrap:hover .acad-img {
  transform: scale(1.03);
}

.acad-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(11,22,40,0.1);
}

.acad-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.acad-block-title {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.acad-block p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════════
   SPORTS
═══════════════════════════════════════════════════════════════════ */
.sports-section {
  background: var(--cream);
}

.sports-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(11,22,40,0.1);
}

.sport-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
}

.sport-feature:first-child {
  border-bottom: 1px solid rgba(11,22,40,0.1);
}

.sport-img-wrap {
  overflow: hidden;
  position: relative;
}

.sport-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sport-feature:hover .sport-img {
  transform: scale(1.04);
}

.sport-img-right {
  order: 2;
}

.sport-text {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy);
}

.sport-baseball .sport-text {
  background: var(--deep);
}

.sport-eyebrow {
  font-family: var(--ff-label);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.sport-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.sport-colors {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.5);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.color-swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.sport-text p {
  font-size: 0.98rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.sport-sub-team {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sub-label {
  font-family: var(--ff-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.sub-name {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

.sub-colors {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(245,240,232,0.4);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════════
   CAMPUS LIFE
═══════════════════════════════════════════════════════════════════ */
.campus-section {
  background: var(--parchment);
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(11,22,40,0.1);
}

.campus-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(11,22,40,0.08);
  border-bottom: 1px solid rgba(11,22,40,0.08);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}

.campus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.campus-card:hover { background: rgba(201,168,76,0.04); }
.campus-card:hover::before { width: 100%; }

.campus-card:nth-child(3n) { border-right: none; }

.campus-card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.campus-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.campus-card p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.off-campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.off-card {
  padding: 2.5rem;
  background: var(--navy);
  transition: transform var(--transition);
}

.off-card:hover {
  transform: translateY(-4px);
}

.off-card h4 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.off-card p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════════
   HELLSITE SECTION
═══════════════════════════════════════════════════════════════════ */
.hellsite-section {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  padding: 7rem 2rem;
}

.hs-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hellsite-section .section-title {
  color: var(--parchment);
  text-align: left;
}

.hellsite-section .section-eyebrow {
  text-align: left;
  display: block;
}

.hellsite-section .ornament {
  text-align: left;
  margin-left: 0;
}

.hs-text p {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
}

/* Hellsite mock UI */
.hs-mock {
  background: #0D1A2E;
  border: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hs-mock-header {
  background: var(--navy-mid);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.hs-logo {
  font-family: var(--ff-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.hs-tagline-sm {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}

.hs-feed {
  display: flex;
  flex-direction: column;
}

.hs-post {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(245,240,232,0.05);
  transition: background var(--transition);
}

.hs-post:hover {
  background: rgba(201,168,76,0.04);
}

.hs-post:last-child {
  border-bottom: none;
}

.hs-anon {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.4rem;
}

.hs-post p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.6;
  font-family: var(--ff-body);
  margin-bottom: 0.5rem;
}

.hs-time {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
}


/* ═══════════════════════════════════════════════════════════════════
   ADMISSIONS
═══════════════════════════════════════════════════════════════════ */
.admissions-section {
  background: var(--cream);
}

.admission-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(11,22,40,0.12);
  margin-bottom: 4rem;
}

.adm-path {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(11,22,40,0.08);
  transition: background var(--transition);
  position: relative;
}

.adm-path:last-child { border-right: none; }

.adm-path::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.adm-path:hover { background: rgba(201,168,76,0.03); }
.adm-path:hover::after { width: 100%; }

.adm-path-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

.adm-path h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.adm-path p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.adm-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.adm-list li {
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}

.adm-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.adm-cta {
  text-align: center;
  padding-top: 2rem;
}

.adm-cta-text {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════ */
.contact-section {
  background: var(--navy);
}

.contact-section .section-title { color: var(--parchment); }
.contact-section .section-eyebrow { color: var(--gold); }
.contact-section .ornament { color: var(--gold); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-block {
  margin-bottom: 2.5rem;
}

.contact-block h4 {
  font-family: var(--ff-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.contact-block p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.8;
}

.contact-block em {
  font-style: italic;
  opacity: 0.75;
}

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--parchment);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-group select {
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,232,0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(255,255,255,0.06);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--parchment);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.8rem;
}

.form-note {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  text-align: center;
  margin-top: 1.2rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5rem;
  align-items: start;
}

.footer-crest-img {
  width: 120px;
  height: auto;
  opacity: 0.85;
  filter: saturate(0.7);
  transition: opacity var(--transition), filter var(--transition);
}

.footer-crest-img:hover {
  opacity: 1;
  filter: saturate(1);
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col h5 {
  font-family: var(--ff-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col li a {
  font-family: var(--ff-body);
  font-size: 0.88rem;
  color: rgba(245,240,232,0.45);
  transition: color var(--transition);
}

.footer-col li a:hover {
  color: var(--parchment);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 2rem;
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-inst-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
}

.footer-motto {
  font-family: var(--ff-label);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
}

.footer-copy {
  font-family: var(--ff-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.22);
  margin-top: 0.3rem;
}


/* ═══════════════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--deep);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
}


/* ═══════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .about-grid,
  .academics-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .frat-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-pad: 5rem 1.5rem;
  }

  .admission-paths,
  .campus-grid {
    grid-template-columns: 1fr;
  }

  .adm-path,
  .campus-card {
    border-right: none;
  }

  .campus-card:nth-child(3n) {
    border-right: none;
  }

  .sport-feature {
    grid-template-columns: 1fr;
  }

  .sport-img-wrap {
    height: 260px;
  }

  .sport-img-right {
    order: unset;
  }

  .hs-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .off-campus-grid {
    grid-template-columns: 1fr;
  }

  .pillars-inner {
    gap: 0.5rem;
  }

  .pillar {
    padding: 0.6rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-crest-img {
    width: 130px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 11vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-img {
    height: 300px;
  }

  .acad-img {
    height: 320px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    padding: 3rem 1.5rem 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-crest-img { width: 100px; }
  .pillars-bar .pillar-sep { display: none; }
  .pillars-inner { justify-content: start; }
  .footer-nav-cols { grid-template-columns: 1fr; }
  .back-to-top { bottom: 1rem; right: 1rem; }
}

/* ── REDUCED MOTION ────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero::after { display: none; }
}