/* =============================================
   BBY OF CHICAGO — STYLESHEET
   Color palette: warm cream + deep burgundy/maroon
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================= */

:root {
  --cream:       #F7F0E8;
  --cream-dark:  #EDE3D5;
  --cream-mid:   #F2EAE0;
  --maroon:      #5C1A2E;
  --maroon-deep: #3E1020;
  --maroon-mid:  #7A2640;
  --maroon-light:#A64D6A;
  --gold:        #B8892A;
  --gold-light:  #D4A84B;
  --text:        #2A1A20;
  --text-light:  #6B4A55;
  --white:       #FFFFFF;
  --shadow:      0 4px 24px rgba(60,20,30,0.10);
  --shadow-lg:   0 8px 48px rgba(60,20,30,0.14);
  --radius:      4px;
  --transition:  0.3s ease;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--maroon); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--maroon-light); }
address { font-style: normal; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--maroon-deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
em { font-style: italic; }

/* LAYOUT UTILS */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 5rem 0; }
.bg-cream { background: var(--cream-dark); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--maroon-deep);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 680px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--maroon-deep);
  border-bottom: 2px solid var(--maroon-mid);
  box-shadow: 0 2px 16px rgba(30,5,15,0.25);
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; flex-shrink: 0; }
.logo-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-top {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.main-nav { display: flex; align-items: center; gap: 0.5rem; }
.main-nav ul { list-style: none; display: flex; gap: 0.1rem; }
.main-nav ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(247,240,232,0.8);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-transform: uppercase;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { color: var(--cream); background: rgba(255,255,255,0.08); }
.btn-apply {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--maroon-deep);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  margin-left: 0.5rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-apply:hover { background: var(--gold-light); color: var(--maroon-deep); }
.btn-apply.active { background: var(--gold-light); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO (homepage)
   ============================================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(62,16,32,0.72) 0%, rgba(40,10,20,0.45) 60%, rgba(20,5,10,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1160px;
  padding: 0 2rem;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-tagline {
  font-size: 1.05rem;
  color: rgba(247,240,232,0.82);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(247,240,232,0.4);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--maroon-deep);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--gold-light); color: var(--maroon-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(184,137,42,0.35); }
.btn-ghost {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(247,240,232,0.45);
  transition: all var(--transition);
}
.btn-ghost:hover { background: rgba(247,240,232,0.12); color: var(--cream); border-color: rgba(247,240,232,0.7); }
.btn-secondary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--maroon);
  padding: 0.8rem 1.8rem;
  border-radius: 2px;
  border: 1.5px solid var(--maroon-mid);
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--maroon); color: var(--cream); }
.full-width { width: 100%; text-align: center; }

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--maroon);
  padding: 0.9rem 2rem;
}
.announcement-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.announcement-bar .tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--maroon-deep);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
}
.announcement-bar p {
  font-size: 0.88rem;
  color: var(--cream);
  margin: 0;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar strong { color: var(--cream); }

/* =============================================
   PILLARS
   ============================================= */
.pillars { background: var(--cream); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--maroon);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pillar-card h3 {
  font-size: 1.25rem;
  color: var(--maroon-deep);
  margin-bottom: 0.6rem;
}
.pillar-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

/* =============================================
   QUICK LINKS
   ============================================= */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ql-card {
  display: block;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}
.ql-apply  { background: var(--maroon-deep); }
.ql-news   { background: var(--maroon); }
.ql-gallery{ background: var(--maroon-mid); }
.ql-contact{ background: var(--maroon-light); }
.ql-inner { position: relative; z-index: 1; }
.ql-icon { font-size: 1.8rem; display: block; margin-bottom: 0.8rem; }
.ql-card h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-family: 'Cormorant Garamond', serif;
}
.ql-card p { font-size: 0.85rem; color: rgba(247,240,232,0.75); margin-bottom: 1rem; }
.ql-arrow {
  font-size: 1.3rem;
  color: var(--gold-light);
  transition: transform var(--transition);
  display: block;
}
.ql-card:hover .ql-arrow { transform: translateX(6px); }
.ql-card:hover { opacity: 0.92; }

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  margin-top: 2.5rem;
}
.leader-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 4px solid var(--maroon);
  box-shadow: var(--shadow);
}
.leader-card.featured { background: linear-gradient(135deg, #FFF9F4, #FFF3EC); }
.leader-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,137,42,0.10);
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  border: 1px solid rgba(184,137,42,0.3);
}
.leader-card h3 {
  font-size: 2rem;
  color: var(--maroon-deep);
  margin-bottom: 0.3rem;
}
.leader-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.leader-cred {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.leader-bio { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 1rem; }
.leader-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--maroon-mid);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin-top: 1.2rem;
  line-height: 1.6;
}
.leader-advisory {
  background: var(--cream-dark);
  padding: 2rem;
  border-top: 4px solid var(--gold);
}
.leader-advisory h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.advisor {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(92,26,46,0.12);
}
.advisor:last-child { border-bottom: none; }
.advisor strong { font-size: 0.95rem; color: var(--maroon-deep); font-weight: 600; }
.advisor span { font-size: 0.78rem; color: var(--text-light); font-style: italic; margin-top: 0.1rem; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--maroon-deep);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon-mid), var(--gold), var(--maroon-mid));
}
.page-hero-content {
  max-width: 1160px;
  margin: 0 auto;
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { color: var(--cream); font-weight: 300; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1rem; color: var(--text-light); line-height: 1.8; }
.about-image-block {
  position: relative;
}
.about-image-block img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.value-item { padding: 1.5rem 0; border-top: 2px solid var(--maroon-mid); }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--maroon-light);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-item h3 { font-size: 1.2rem; color: var(--maroon-deep); margin-bottom: 0.5rem; }
.value-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* =============================================
   NEWS PAGE
   ============================================= */
.news-section { background: var(--cream); }
.news-card {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-top: 4px solid var(--maroon);
  box-shadow: var(--shadow);
  position: relative;
}
.news-card.featured-news { border-top-color: var(--gold); background: linear-gradient(135deg, #FFFAF4, #FFF5EB); }
.news-card.event-news { border-top-color: var(--maroon-mid); }
.news-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,137,42,0.10);
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(184,137,42,0.3);
}
.news-meta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.news-card h2 { font-size: 1.9rem; color: var(--maroon-deep); margin-bottom: 1rem; }
.news-card p { color: var(--text-light); margin-bottom: 0.85rem; line-height: 1.8; }
.news-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--maroon);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1.2rem;
  margin: 1.5rem 0;
  background: rgba(184,137,42,0.05);
  line-height: 1.6;
}
.news-card-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.news-signatories {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(92,26,46,0.12);
  flex-wrap: wrap;
}
.signatory { display: flex; flex-direction: column; }
.signatory strong { font-size: 0.88rem; color: var(--maroon-deep); }
.signatory em { font-size: 0.78rem; color: var(--text-light); }
/* Poster card */
.poster-card {
  background: var(--cream-dark);
  border: 1px solid var(--maroon-light);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.poster-card h3 {
  font-size: 1.6rem;
  color: var(--maroon-deep);
  margin-bottom: 0.5rem;
}
.poster-cred { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1.2rem; }
.poster-divider {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.5rem;
}
.poster-card h4 { font-size: 1.3rem; color: var(--maroon); margin-bottom: 0.4rem; }
.poster-card > p { font-size: 0.85rem; color: var(--text-light); }
/* Event details */
.event-details {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.event-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.event-detail span { font-size: 1.3rem; }
.event-detail h4 { font-size: 0.88rem; font-weight: 600; color: var(--maroon-deep); margin-bottom: 0.2rem; }
.event-detail p { font-size: 0.85rem; color: var(--text-light); }

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-section { background: var(--cream); }
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--text-light);
  border: 1.5px solid var(--cream-dark);
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--maroon-mid); color: var(--maroon); }
.tab-btn.active { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }

.gallery-event-header { margin-bottom: 2rem; }
.gallery-event-header.hidden { display: none; }
.event-header-inner {
  background: var(--maroon-deep);
  color: var(--cream);
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
}
.event-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}
.event-header-inner h2 { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.4rem; }
.event-header-inner p { font-size: 0.88rem; color: rgba(247,240,232,0.75); }

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.photo-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}
.photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(62,16,32,0);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  transition: background var(--transition);
}
.photo-item:hover .photo-overlay { background: rgba(62,16,32,0.45); }
.photo-overlay span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}
.photo-item:hover .photo-overlay span { opacity: 1; transform: translateY(0); }
.photo-item.hidden { display: none; }

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,5,12,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 8px 64px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247,240,232,0.12);
  border: none;
  color: var(--cream);
  font-size: 2.5rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(247,240,232,0.25); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* =============================================
   APPLY PAGE
   ============================================= */
.apply-section { background: var(--cream); }
.apply-intro {
  max-width: 680px;
  margin-bottom: 3rem;
}
.apply-intro h2 { margin-bottom: 1rem; }
.apply-intro p { color: var(--text-light); line-height: 1.8; margin-bottom: 0.8rem; }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.apply-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 4px solid var(--maroon-mid);
  box-shadow: var(--shadow);
}
.apply-card.primary-card { border-top-color: var(--gold); background: linear-gradient(135deg, #FFFAF5, #FFF5EC); }
.apply-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.apply-card h3 { margin-bottom: 0.75rem; }
.apply-card p { color: var(--text-light); margin-bottom: 1.2rem; line-height: 1.75; font-size: 0.92rem; }
.apply-phone { margin-top: 1rem; }
.apply-phone a { font-size: 1.1rem; font-weight: 500; color: var(--maroon); }

.apply-steps { background: var(--cream-dark); padding: 2.5rem; }
.apply-steps h3 { font-size: 1.6rem; margin-bottom: 2rem; color: var(--maroon-deep); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step { position: relative; padding-top: 1rem; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--maroon-light);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h4 { font-size: 1.05rem; color: var(--maroon-deep); margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--text-light); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(92,26,46,0.12);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail h4 { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.35rem; }
.contact-detail p, .contact-detail address p { font-size: 0.92rem; color: var(--text); margin-bottom: 0; }
.contact-detail a { color: var(--maroon); }

.contact-form-wrap { background: var(--white); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 1.5rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 2px;
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--maroon-mid); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
  background: rgba(184,137,42,0.12);
  border: 1.5px solid var(--gold);
  color: var(--maroon-deep);
  padding: 1rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(247,240,232,0.75);
  padding-top: 4rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand { display: flex; align-items: flex-start; gap: 1rem; }
.footer-logo {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.6; color: rgba(247,240,232,0.6); }
.footer-links h5, .footer-contact h5 {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a {
  font-size: 0.88rem;
  color: rgba(247,240,232,0.7);
  transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--cream); }
.footer-contact address p {
  font-size: 0.88rem;
  color: rgba(247,240,232,0.7);
  line-height: 1.8;
}
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(247,240,232,0.1);
  padding: 1.2rem 2rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(247,240,232,0.4); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card-inner { grid-template-columns: 1fr; }
  .news-poster { max-width: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .leadership-grid { grid-template-columns: 1fr; }
  .leader-advisory { max-width: 500px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 3.5rem 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--maroon-deep);
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav ul li a { display: block; padding: 0.8rem 0; font-size: 0.9rem; }
  .btn-apply { margin: 1rem 0 0; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .about-image-block img { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .apply-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links { grid-template-columns: 1fr 1fr; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-dots { bottom: 1.5rem; right: 1.5rem; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .quick-links { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .hero { height: 80vh; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: center; }
  .news-signatories { flex-direction: column; gap: 1rem; }
}
