:root {
  --bg: #f7f2e8;
  --surface: #fffdf8;
  --surface-strong: #f0e6d3;
  --ink: #1f1d1a;
  --muted: #61594f;
  --accent: #a52a2a;
  --accent-dark: #7f1f1f;
  --line: #d8cbb3;
  --shadow: 0 18px 40px rgba(44, 28, 10, 0.12);
  --radius: 22px;
  --content: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(165, 42, 42, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf7f0 0%, var(--bg) 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--accent);
}

.site-header,
.page-shell,
.site-footer {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem 0 1rem;
}

.site-brand {
  display: grid;
  grid-template-columns: fit-content(clamp(13rem, 28vw, 18rem)) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(216, 203, 179, 0.7);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-mark {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

.brand-mark img {
  width: auto;
  max-width: min(100%, 17rem);
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.brand-copy {
  padding: 1rem 1.25rem 1rem 0;
}

.brand-copy p,
.page-summary,
.hero-summary,
.event-date {
  color: var(--muted);
}

.brand-title {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  display: inline-flex;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff7f0;
}

.page-shell {
  padding: 1rem 0 3rem;
}

.home-hero,
.home-highlight,
.page,
.site-footer {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(216, 203, 179, 0.7);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}

.home-hero,
.home-highlight {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
}

.home-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  align-items: center;
}

.home-copy h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 0.95;
}

.hero-subtitle {
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

.hero-summary {
  max-width: 36rem;
  font-size: 1.05rem;
}

.hero-visual img,
.highlight-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #fff7f0;
}

.button.secondary {
  color: var(--accent-dark);
}

.home-highlight,
.contact-panel,
.event-card,
.footer-top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-highlight {
  margin-top: 1.25rem;
  align-items: stretch;
}

.home-body,
.page-content.prose {
  max-width: 52rem;
}

.home-body {
  padding: 1.5rem 0 0;
}

.page {
  padding: 1.75rem;
}

.page-header {
  margin-bottom: 1.5rem;
}

.page-header h1,
.highlight-copy h2,
.event-copy h2,
.downloads h2,
.contact-panel h2,
.site-footer h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prose p:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.2rem;
}

.events,
.downloads,
.contact-panel {
  margin-top: 2rem;
}

.event-card,
.contact-panel,
.footer-top {
  display: grid;
  gap: 1.5rem;
}

.event-card {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
}

.event-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.event-gallery {
  display: grid;
  gap: 0.75rem;
}

.event-gallery.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery figure {
  margin: 0;
}

.event-gallery img,
.contact-card,
.download-list li {
  border-radius: 18px;
}

.event-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.download-list {
  list-style: none;
  padding: 0;
}

.download-list li {
  margin: 0 0 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.contact-card {
  padding: 1.25rem;
  background: linear-gradient(135deg, rgba(165, 42, 42, 0.08), rgba(240, 230, 211, 0.95));
  border: 1px solid var(--line);
}

.site-footer {
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.footer-links li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

@media (max-width: 800px) {
  .site-brand,
  .home-hero,
  .home-highlight,
  .contact-panel,
  .event-card,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .brand-copy {
    padding: 0 1rem 1rem;
  }

  .footer-links {
    columns: 1;
  }
}
