:root {
  --paper: #f4f0e8;
  --paper-deep: #e9e1d4;
  --ink: #171715;
  --ink-soft: #484641;
  --red: #a62d22;
  --red-deep: #702019;
  --gold: #b9975b;
  --white: #fffdf8;
  --line: rgba(23, 23, 21, 0.14);
  --shadow: 0 24px 70px rgba(28, 23, 18, 0.13);
  --radius: 1.25rem;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 6%, rgba(166, 45, 34, 0.06), transparent 30rem),
    linear-gradient(180deg, #faf7f0 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.4rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 23, 21, 0.09);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.8rem;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 3.25rem;
  height: 3.25rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.brand-text {
  display: grid;
  line-height: 1.14;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.015em;
}

.brand-text span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.65rem 0.72rem;
  border-radius: 999px;
  font-size: 0.89rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--red-deep);
  background: rgba(166, 45, 34, 0.09);
}

.nav-list .nav-cta {
  margin-left: 0.35rem;
  color: white;
  background: var(--red);
}

.nav-list .nav-cta:hover,
.nav-list .nav-cta[aria-current="page"] {
  color: white;
  background: var(--red-deep);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before { transform: translateY(-0.4rem); }
.menu-icon::after { transform: translateY(0.4rem); }
.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { transform: rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  min-height: min(800px, calc(100vh - 5rem));
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: stretch;
}

.hero-copy {
  display: flex;
  padding: clamp(4rem, 9vw, 8rem) clamp(2.5rem, 7vw, 7rem) clamp(3.5rem, 7vw, 6rem) max(1.25rem, calc((100vw - var(--max)) / 2));
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.2rem;
  align-items: center;
  gap: 0.7rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.4rem;
  height: 2px;
  background: var(--red);
  content: "";
}

.hero h1,
.page-hero h1,
.section-title,
.feature-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7.8vw, 7.4rem);
}

.hero h1 em {
  color: var(--red);
  font-weight: inherit;
}

.hero-lead {
  max-width: 45rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.button-row {
  display: flex;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.78rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid var(--ink);
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-deep);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.button.secondary:hover {
  color: white;
  background: var(--ink);
}

.hero-meta {
  display: grid;
  max-width: 39rem;
  margin: 3rem 0 0;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hero-meta strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.hero-meta span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.52));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.03);
}

.hero-seal {
  position: absolute;
  z-index: 2;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: 9.2rem;
  height: 9.2rem;
  padding: 1.1rem;
  color: white;
  background: rgba(166, 45, 34, 0.92);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: center;
  transform: rotate(-6deg);
}

.hero-seal span {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.45rem;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section.dark {
  color: var(--white);
  background: var(--ink);
}

.section.red {
  color: white;
  background: var(--red-deep);
}

.section-head {
  display: grid;
  margin-bottom: 2.6rem;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: 2rem;
}

.section-title {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.section-intro {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.dark .section-intro,
.red .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.discipline-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.discipline-card {
  position: relative;
  display: flex;
  min-height: 30rem;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  color: white;
  background: #222;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.discipline-card:nth-child(1),
.discipline-card:nth-child(2) {
  grid-column: span 6;
}

.discipline-card:nth-child(n+3) {
  min-height: 24rem;
  grid-column: span 4;
}

.discipline-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,0.82));
  content: "";
}

.discipline-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.discipline-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.discipline-card-content {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}

.discipline-card small {
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discipline-card h3 {
  margin: 0.3rem 0 0.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.05;
}

.discipline-card p {
  max-width: 34rem;
  margin: 0.55rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.video-layout,
.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.video-frame,
.map-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame {
  min-height: 30rem;
}

.feature-title {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.prose {
  max-width: 50rem;
  color: var(--ink-soft);
}

.prose.large {
  font-size: 1.12rem;
}

.dark .prose,
.red .prose {
  color: rgba(255,255,255,0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.3rem);
}

.dark .text-link,
.red .text-link {
  color: #e2c58b;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.schedule-card,
.info-card,
.news-card,
.archive-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.45);
  border-radius: var(--radius);
}

.schedule-card {
  display: grid;
  grid-template-columns: minmax(9rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 1.2rem;
}

.schedule-card h3,
.info-card h3,
.news-card h3,
.archive-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
}

.schedule-card p,
.info-card p,
.news-card p,
.archive-card p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.schedule-times {
  display: grid;
  gap: 0.25rem;
  font-weight: 700;
}

.schedule-times span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.note {
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--red);
  color: var(--ink-soft);
  background: rgba(166, 45, 34, 0.07);
}

.news-grid,
.info-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.news-card time,
.info-card small {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  color: white;
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,15,14,0.92) 0%, rgba(15,15,14,0.68) 48%, rgba(15,15,14,0.18) 100%);
  content: "";
}

.page-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 34rem;
  padding-block: 5rem;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.page-hero p {
  max-width: 47rem;
  margin: 1.2rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.12rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: inherit;
}

.photo-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.check-list,
.link-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--red);
  content: "●";
}

.link-list a {
  display: flex;
  padding: 0.8rem 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.link-list a::after {
  color: var(--red);
  content: "↗";
}

.quote-block {
  margin: 0;
  padding: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-style: italic;
  line-height: 1.28;
  text-align: center;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.8rem;
}

.gallery-item {
  min-height: 18rem;
  overflow: hidden;
  grid-column: span 4;
  border-radius: 1rem;
}

.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.timeline {
  display: grid;
  max-width: 54rem;
  margin: 2rem auto 0;
  gap: 0;
}

.timeline-item {
  position: relative;
  padding: 0 0 2.4rem 3rem;
  border-left: 1px solid var(--line);
}

.timeline-item::before {
  position: absolute;
  top: 0.3rem;
  left: -0.46rem;
  width: 0.85rem;
  height: 0.85rem;
  background: var(--red);
  border: 3px solid var(--paper);
  border-radius: 50%;
  content: "";
}

.timeline-item time {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin: 0.3rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.timeline-item p {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.contact-strip {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  color: white;
  background: var(--red-deep);
  border-radius: var(--radius);
}

.contact-strip h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.contact-strip p {
  margin: 0.8rem 0 0;
  color: rgba(255,255,255,0.78);
}

.contact-strip .button {
  color: var(--ink);
  background: white;
  border-color: white;
}

.contact-strip .button:hover {
  color: white;
  background: var(--ink);
}

.site-footer {
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.76);
  background: #11110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.footer-grid h3 {
  margin: 0 0 0.7rem;
  color: white;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid ul {
  margin: 0;
}

.footer-grid ul {
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 0.35rem;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  padding-top: 1.5rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1050px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 5rem;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 5rem);
    padding: 1.2rem;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(250,247,240,0.985);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  }

  .site-nav.open { display: block; }

  .nav-list {
    width: min(100%, var(--max));
    margin-inline: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-list a {
    padding: 0.85rem 1rem;
    border-radius: 0.65rem;
    font-size: 1rem;
  }

  .nav-list .nav-cta {
    margin: 0.5rem 0 0;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .video-layout,
  .split-layout,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding: 5rem 1.25rem 3.5rem;
  }

  .hero-media {
    min-height: 36rem;
  }

  .discipline-card:nth-child(n) {
    min-height: 25rem;
    grid-column: span 6;
  }

  .discipline-card:last-child {
    grid-column: span 12;
  }

  .schedule-grid,
  .news-grid,
  .info-grid,
  .archive-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .brand-text span { display: none; }

  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-media { min-height: 30rem; }
  .hero-seal { width: 7.7rem; height: 7.7rem; font-size: 0.82rem; }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .hero-meta div {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
  }

  .discipline-card:nth-child(n),
  .gallery-item,
  .gallery-item.wide {
    min-height: 23rem;
    grid-column: 1 / -1;
  }

  .schedule-grid,
  .news-grid,
  .info-grid,
  .archive-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 30rem;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(15,15,14,0.28), rgba(15,15,14,0.9));
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
