/* stylelint-disable */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400&family=Cormorant+Garamond:wght@300;400;500;600&display=swap');

:root {
  --orange: #C85A00;
  --orange-light: #E87220;
  --orange-pale: #FFF3E8;
  --dark: #1A0A00;
  --text: #2C1A0A;
  --gray: #6B5A4E;
  --light: #FAF7F4;
  --gold: #D4A017;
  --border: #E8D5C0;
}

/* ── RESET & BASE ── */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, ul, ol, li,
nav, header, footer, section, article, aside, main,
img, button, input, textarea, select, label, form,
strong, em, small, code {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Crimson Text', Georgia, serif;
  background: #FAF7F4; /* var(--light) */
  color: #2C1A0A; /* var(--text) */
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #1A0800 0%, #3D1200 50%, #5C2000 100%);
  color: #fff;
  text-align: center;
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
}
@media(min-width: 560px) {
  .hero { padding: 55px 28px; }
}
@media(min-width: 960px) {
  .hero { padding: 70px 40px 60px; }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(200,90,0,.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,160,23,.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(212,160,23,.6);
  color: #D4A017;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 2vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero h1 span { color:#E87220 }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(.9rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.6);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-theme {
  max-width: 620px;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(.9rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  padding: 0 8px;
}
.hero-meta {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  flex-wrap: wrap;
  padding: 0 8px;
}
.hero-meta span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 2vw, 14px);
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
}
.hero-meta strong { color:#D4A017 }

/* ── NAV ── */
nav {
  background: var(--dark);
  position: sticky; top: 0; z-index: 100;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
nav::-webkit-scrollbar { display: none }
nav a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 1.8vw, 13px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: clamp(10px, 2vw, 14px) clamp(10px, 2vw, 18px);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover, nav a:active { color: var(--orange-light); border-bottom-color: var(--orange-light) }

/* ── SECTION WRAPPERS ── */
.section-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 24px);
}
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: clamp(20px, 4vw, 32px);
  line-height: 1.2;
}

/* ── PROGRAM ── */
.prog-header {
  background: var(--orange-pale);
  border-left: 3px solid var(--orange);
  padding: 10px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.prog-block { margin-bottom: 40px }
.prog-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
@media(max-width: 560px) {
  .prog-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 12px }
}
.prog-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 1.8vw, 13px);
  letter-spacing: 1px;
  color: var(--gray);
  font-style: italic;
  padding-top: 2px;
}
.prog-person { font-weight: 600; color: var(--dark); font-size: clamp(13px, 2vw, 15px) }
.prog-detail { font-size: clamp(12px, 1.8vw, 14px); color: var(--gray); margin-top: 2px }

/* ── SPEAKER ── */
.speaker-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  padding: clamp(20px, 4vw, 40px);
  border-radius: 3px;
}
@media(max-width: 520px) { .speaker-card { grid-template-columns: 1fr } }
.speaker-icon {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--orange-pale), var(--border));
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--orange); opacity: .5;
}
.speaker-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700; color: var(--dark); margin-bottom: 6px;
}
.speaker-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 1.8vw, 13px);
  letter-spacing: 2px; color: var(--orange);
  text-transform: uppercase; margin-bottom: 12px;
}
.speaker-office { font-size: clamp(13px, 2vw, 15px); color: var(--gray); line-height: 1.7 }

/* ── GALLERY SLIDER ── */
.gallery-bg {
  background: #F0E8DF;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 24px);
}
.gallery-inner {
  max-width: 960px;
  margin: 0 auto;
}
.slider-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.slider-viewport {
  /* Portrait frame: width < height */
  width: 300px;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  flex-shrink: 0;
  position: relative;
}
.slider-track {
  display: flex;
  flex-direction: row;
  height: 100%;
  /* Total width = number of slides × viewport width */
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  /* Each slide must be exactly viewport width */
  width: 300px;
  min-width: 300px;
  height: 450px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 300px;
  height: 450px;
  object-fit: cover;
  object-position: center top;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  image-rendering: auto;
  will-change: auto;
}
.slide .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.80));
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  padding: 32px 14px 12px;
  letter-spacing: 1px;
}
.sl-nav {
  background: rgba(26,10,0,.60);
  border: none;
  color: #fff;
  font-size: 26px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
}
.sl-nav:hover, .sl-nav:active { background: var(--orange) }
.sl-nav:disabled { opacity: .25; cursor: default }
.sl-counter {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 16px;
}
.sl-dots { display: none; }

.sl-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.sl-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}
@media(max-width: 480px) {
  .slider-viewport {
    width: 260px;
    height: 390px;
  }
  .slide {
    width: 260px;
    min-width: 260px;
    height: 390px;
  }
  .slide img {
    width: 260px;
    height: 390px;
  }
  .sl-nav {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 20px;
  }
}

/* ── GRADUATES ── */
.strand-head {
  background: var(--dark); color: #fff;
  padding: clamp(14px, 3vw, 20px) clamp(16px, 3vw, 28px);
  border-radius: 3px; margin-bottom: 16px; margin-top: 36px;
}
.strand-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  color: var(--orange-light);
}
.strand-head p {
  font-size: clamp(11px, 1.8vw, 13px);
  color: rgba(255,255,255,.45);
  margin-top: 4px;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}
.grad-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(190px, 100%), 1fr));
  gap: 8px; margin-bottom: 8px;
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}
@media(max-width: 768px) {
  .grad-grid { grid-template-columns: repeat(2, 1fr) }
}
@media(max-width: 400px) {
  .grad-grid { grid-template-columns: 1fr }
}
.grad-chip {
  background: #fff; border: 1px solid var(--border);
  padding: 10px 14px; border-radius: 3px;
  font-size: clamp(12px, 1.8vw, 13px); color: var(--text);
  transition: border-color .2s, background .2s;
  contain: content;
}
.grad-chip:hover { border-color: var(--orange); background: var(--orange-pale) }
.grad-chip strong { display: block; font-size: clamp(12px, 1.8vw, 13px); color: var(--dark); font-weight: 600 }
.grad-chip span { font-size: clamp(10px, 1.5vw, 11px); color: var(--gray) }

/* ── AWARDS ── */
.award-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(.95rem, 2.5vw, 1.1rem);
  font-weight: 700; color: var(--dark);
  border-bottom: 2px solid var(--orange);
  padding-bottom: 6px; margin-bottom: 16px; margin-top: 32px;
}
.award-strand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; margin-top: 20px; display: block;
}
.award-list { columns: 2; column-gap: 24px; list-style: none }
@media(max-width: 480px) { .award-list { columns: 1 } }
.award-list li {
  font-size: clamp(13px, 2vw, 15px);
  padding: 5px 0; border-bottom: 1px dotted var(--border);
  color: var(--text); break-inside: avoid;
}
.award-list li::before { content: '✦'; color: var(--orange); font-size: 10px; margin-right: 8px }

/* ── MESSAGES ── */
.msg-card {
  background: #fff; border: 1px solid var(--border);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: 24px; border-radius: 3px; position: relative;
}
.msg-card::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5rem); color: var(--orange); opacity: .12;
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.msg-from {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.msg-card p { font-size: clamp(14px, 2.2vw, 16px); color: var(--text); margin-bottom: 12px; line-height: 1.8 }
.msg-sig {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-style: italic; color: var(--dark);
  font-size: clamp(13px, 2vw, 15px);
}
.msg-sig small {
  display: block; font-family: 'Crimson Text', serif;
  font-style: normal; font-size: clamp(11px, 1.8vw, 13px);
  color: var(--gray); margin-top: 4px;
}

/* ── SONGS ── */
.song-card {
  background: #fff; border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 32px);
  border-radius: 3px; margin-bottom: 16px;
}
.song-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-style: italic; color: var(--dark); margin-bottom: 4px;
}
.song-by {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px; font-size: clamp(11px, 1.8vw, 13px);
  color: var(--orange); text-transform: uppercase; margin-bottom: 12px;
}
.song-note {
  font-size: clamp(12px, 1.8vw, 14px); color: var(--gray); font-style: italic;
  padding: 12px 16px; background: var(--orange-pale);
  border-radius: 3px; border-left: 3px solid var(--orange);
}

/* ── PLEDGE ── */
.pledge-box {
  background: var(--dark); color: #fff;
  padding: clamp(28px, 5vw, 50px) clamp(20px, 5vw, 40px);
  border-radius: 3px; text-align: center; margin-bottom: 20px;
}
.pledge-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--gold); margin-bottom: 20px; letter-spacing: 2px;
}
.pledge-box p {
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.9; max-width: 560px;
  margin: 0 auto 16px; color: rgba(255,255,255,.85);
}
.pledge-name { color: var(--orange-light); font-style: italic }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(255,255,255,.4);
  text-align: center;
  padding: clamp(24px, 4vw, 32px) clamp(16px, 4vw, 24px);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(11px, 1.8vw, 13px); letter-spacing: 1.5px;
  line-height: 1.9;
}
footer strong { color: var(--orange-light) }