:root {
  --evergreen: #0c2d26;
  --evergreen-deep: #071d19;
  --burgundy: #7a0f25;
  --burgundy-deep: #4d0918;
  --gold: #d6ad58;
  --gold-light: #f1d692;
  --ivory: #fbf7ec;
  --ink: #211a17;
  --muted: #746c65;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .96rem;
  line-height: 1.6;
}
a { color: var(--burgundy); }
a:hover { color: var(--burgundy-deep); }
h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: "Pirata One", "Old English Text MT", "Cloister Black", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: .025em;
}

.site-nav {
  background: rgba(7, 29, 25, .97);
  border-bottom: 1px solid rgba(214, 173, 88, .35);
  backdrop-filter: blur(14px);
}
.navbar-brand {
  color: var(--gold-light) !important;
  font-size: clamp(1.55rem, 2.5vw, 1.95rem);
}
.navbar-toggler { color: var(--gold-light); box-shadow: none !important; }
.navbar-toggler-icon {
  filter: invert(88%) sepia(44%) saturate(518%) hue-rotate(354deg) brightness(103%);
}
.site-nav .nav-link {
  color: rgba(255,255,255,.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-nav .nav-link:hover, .site-nav .nav-link.active { color: var(--gold-light); }

.btn {
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .035em;
}
.btn-gold { background: var(--gold); border-color: var(--gold); color: #17110a; }
.btn-gold:hover, .btn-gold:focus { background: var(--gold-light); border-color: var(--gold-light); color: #17110a; }
.btn-outline-gold { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-gold:hover, .btn-outline-gold:focus { background: var(--gold); color: #17110a; }

.hero-section { background: var(--evergreen-deep); color: white; }
.hero-screen { height: calc(100svh - 74px); }
.hero-image-wrap { position: relative; min-height: 0; overflow: hidden; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  position: absolute;
  inset: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(7,29,25,.82) 100%);
  pointer-events: none;
}
.hero-copy-wrap {
  background: radial-gradient(circle at 80% 18%, rgba(214,173,88,.14), transparent 38%), var(--evergreen-deep);
}
.hero-copy { max-width: 36rem; }
.display-title { color: var(--gold-light); font-size: clamp(3.6rem, 6vw, 5.9rem); text-wrap: balance; }
.hero-tagline {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-intro { max-width: 32rem; color: rgba(255,255,255,.78); font-size: 1rem; }
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.text-gold { color: #c99d43 !important; }

.event-section { background: linear-gradient(180deg, #fffdf7, var(--ivory)); }
.py-lg-6 { padding-top: 5rem !important; padding-bottom: 5rem !important; }
.section-title { color: var(--evergreen); font-size: clamp(2.25rem, 4.2vw, 3.6rem); }
.event-card, .profile-card, .contact-form, .admin-card {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(122,15,37,.14);
  box-shadow: 0 18px 60px rgba(33,26,23,.08);
}
.event-card { transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 24px 70px rgba(33,26,23,.13); }
.event-card-link { display: flex; flex-direction: column; color: var(--ink); text-decoration: none; }
.event-card-link:hover { color: var(--ink); }
.event-card-image { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 24%; }
.event-card-body { display: block; }
.event-icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid var(--gold);
  color: var(--burgundy);
  background: #fffaf0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.event-title { color: var(--burgundy); font-size: 1.85rem; }

.page-shell { min-height: calc(100vh - 142px); background: var(--ivory); }
.page-hero {
  color: white;
  background: radial-gradient(circle at 20% 0, rgba(214,173,88,.15), transparent 35%), var(--evergreen-deep);
  border-bottom: 1px solid rgba(214,173,88,.35);
}
.page-title { color: var(--gold-light); font-size: clamp(3rem, 6vw, 5rem); }
.page-lead { max-width: 42rem; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.profile-medallion {
  display: grid;
  place-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--burgundy);
  border: 3px double var(--gold-light);
  color: white;
  font-family: "Pirata One", "Old English Text MT", "Cloister Black", Georgia, serif;
  font-size: 2.2rem;
}
.profile-copy { color: var(--muted); font-size: 1rem; }
.bio-profile { scroll-margin-top: 6rem; }
.bio-photo {
  display: block;
  width: min(100%, 17rem);
  max-height: 20rem;
  margin-inline: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(122,15,37,.16);
}
.bio-subtitle { color: var(--burgundy); font-size: 1.8rem; }
.bio-next-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--burgundy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.bio-next-link:hover, .bio-next-link:focus { color: var(--evergreen); }
.affiliation-list { padding-left: 1.2rem; }
.santa-quote { border-left: 3px solid var(--gold); padding-left: 1rem; color: var(--evergreen); font-style: italic; }
.santa-quote cite { display: block; margin-top: .65rem; color: var(--burgundy); font-size: .9rem; font-style: normal; font-weight: 700; }

.gallery-tabs .nav-link {
  border: 1px solid rgba(12,45,38,.25);
  border-radius: 0;
  color: var(--evergreen);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  padding: .7rem 1.2rem;
}
.gallery-tabs .nav-link.active, .gallery-tabs .nav-link:hover { background: var(--evergreen); color: white; }
.gallery-card {
  overflow: hidden;
  background: white;
  border: 1px solid rgba(33,26,23,.12);
  box-shadow: 0 14px 40px rgba(33,26,23,.08);
}
.gallery-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #f3ede1;
}
.gallery-card figcaption {
  color: var(--burgundy);
  font-family: "Pirata One", "Old English Text MT", "Cloister Black", Georgia, serif;
  font-size: 1.45rem;
}
.empty-gallery { border: 1px dashed rgba(12,45,38,.3); color: var(--muted); }

.form-label, .form-check-label { font-family: Arial, Helvetica, sans-serif; font-weight: 700; }
.form-control, .form-select {
  min-height: 3rem;
  border-radius: 0;
  border-color: rgba(12,45,38,.25);
  background-color: #fffef9;
  font-family: Arial, Helvetica, sans-serif;
}
textarea.form-control { min-height: 10rem; }
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .25rem rgba(214,173,88,.2);
}
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.contact-layout-section {
  background: radial-gradient(circle at 8% 12%, rgba(214,173,88,.1), transparent 28%), var(--ivory);
}
.contact-intro {
  color: white;
  background: radial-gradient(circle at 20% 0, rgba(214,173,88,.18), transparent 38%), var(--evergreen-deep);
  border: 1px solid rgba(214,173,88,.35);
  box-shadow: 0 18px 60px rgba(33,26,23,.12);
}
.contact-intro .page-title { font-size: clamp(3rem, 5vw, 4.6rem); }
.contact-intro .page-lead { color: rgba(255,255,255,.8); font-size: 1rem; }
.contact-divider { width: 4rem; height: 1px; margin: 2rem 0; background: var(--gold); }
.contact-connect-title { color: white; font-size: 2rem; }
.contact-connect-copy { color: rgba(255,255,255,.75); }
.social-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(214,173,88,.7);
  color: var(--gold-light);
  background: rgba(255,255,255,.04);
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.social-link:hover, .social-link:focus {
  color: var(--evergreen-deep);
  background: var(--gold-light);
  transform: translateY(-2px);
}
.social-link svg { width: 1.35rem; height: 1.35rem; fill: currentColor; }

.admin-photo-list { display: grid; gap: .75rem; }
.admin-photo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .75rem;
  border: 1px solid rgba(33,26,23,.12);
}
.admin-photo-row img { width: 64px; height: 64px; object-fit: cover; }
.admin-photo-edit { flex-basis: 100%; border-top: 1px solid rgba(33,26,23,.12); }
.admin-table { font-family: Arial, Helvetica, sans-serif; font-size: .92rem; }
.admin-table th { color: var(--evergreen); }
.inquiry-copy { min-width: 18rem; white-space: normal; }
.narrow-card { max-width: 42rem; }

.site-footer {
  background: #061814;
  color: rgba(255,255,255,.65);
  border-top: 1px solid rgba(214,173,88,.28);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9rem;
}
.footer-login { color: var(--gold-light); text-decoration: none; }

@media (max-width: 991.98px) {
  .site-nav .navbar-collapse { padding: 1rem 0 .5rem; }
  .hero-screen { height: calc(100svh - 69px); }
  .hero-image-wrap { height: 48%; min-height: 0; }
  .hero-copy-wrap { height: 52%; }
  .hero-vignette { background: linear-gradient(180deg, transparent 60%, rgba(7,29,25,.88) 100%); }
  .hero-copy { max-width: none; text-align: center; margin-inline: auto; }
  .hero-copy .d-flex { justify-content: center; }
}

@media (max-width: 575.98px) {
  .hero-image-wrap { height: 46%; }
  .hero-copy-wrap { height: 54%; }
  .display-title { font-size: 3.35rem; }
  .hero-tagline { font-size: .88rem; }
  .hero-intro { font-size: .9rem; }
  .hero-copy .btn { padding: .45rem .8rem; font-size: .9rem; }
  .bio-photo { width: min(100%, 15rem); max-height: 17rem; }
  .py-lg-6 { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
