:root {
  --ink: #2a241c;
  --muted: #6a5e50;
  --paper: #f6f1e6;
  --cream: #fbf7ef;
  --line: #ddd2c0;
  --yew: #3d4a36;
  --yew-deep: #2a3326;
  --gold: #b08a4a;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Serif 4", "Georgia", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--yew); }
h1, h2, h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--yew-deep);
}
.wrap { width: min(920px, calc(100% - 2.2rem)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(251,247,239,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .65rem 0;
}
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--yew-deep); }
.brand img { width: 72px; height: auto; }
.brand strong { display: block; font-size: .95rem; letter-spacing: .04em; }
.brand span { display: block; font-size: .72rem; color: var(--muted); }
.nav-toggle { display: none; }
.nav-btn {
  display: none; border: 1px solid var(--line); background: #fff;
  width: 42px; height: 42px; border-radius: 4px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-btn span { display: block; width: 18px; height: 2px; background: var(--yew); }
nav { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; align-items: center; }
nav a { text-decoration: none; font-size: .9rem; font-family: "Source Sans 3", sans-serif; }
nav a[aria-current="page"] { color: var(--gold); }
.lang { font-size: .78rem; border: 1px solid var(--line); padding: .15rem .45rem; border-radius: 999px; text-decoration: none; }
.hero {
  padding: 3.6rem 0 2.8rem;
  background:
    linear-gradient(180deg, rgba(246,241,230,.2), var(--paper)),
    #e8e0d0 url("../img/banner.jpg") right 12% / 280px no-repeat;
}
.hero .kicker { letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; color: var(--muted); margin: 0 0 .6rem; font-family: "Source Sans 3", sans-serif; }
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 .7rem; max-width: 16ch; }
.hero .lede { max-width: 38rem; font-size: 1.08rem; }
.quote {
  font-size: 1.15rem; font-style: italic; max-width: 40rem; margin: 1.4rem 0 0;
  border-left: 2px solid var(--gold); padding-left: 1rem;
}
.quote cite { display: block; font-style: normal; font-size: .85rem; color: var(--muted); margin-top: .5rem; font-family: "Source Sans 3", sans-serif; }
section { padding: 2.6rem 0; }
.note { color: var(--muted); font-size: .92rem; }
.events { list-style: none; padding: 0; margin: 0; }
.events li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.events time {
  display: block; font-family: "Source Sans 3", sans-serif;
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem; margin-top: 1.2rem;
}
.facts div { background: var(--cream); border: 1px solid var(--line); padding: .85rem 1rem; }
.facts dt { font-family: "Source Sans 3", sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.facts dd { margin: .2rem 0 0; }
.site-footer { background: var(--yew-deep); color: #d7ddd0; padding: 2rem 0; font-size: .88rem; font-family: "Source Sans 3", sans-serif; }
.site-footer a { color: #fff; }
figure { margin: 1rem 0 0; }
figure img { width: 100%; height: auto; border: 1px solid var(--line); }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: .7rem;
  margin-top: 1.2rem;
}
.gallery figure { margin: 0; }
.gallery figcaption {
  font-family: "Source Sans 3", sans-serif;
  font-size: .75rem;
  color: var(--muted);
  padding: .35rem 0 0;
}
.placeholder {
  border: 1px dashed var(--line); padding: 2rem 1rem; text-align: center; color: var(--muted);
  background: var(--cream);
}
@media (max-width: 800px) {
  .hero { background-size: 160px; background-position: right top; }
  .site-header .wrap { flex-wrap: wrap; }
  .nav-btn { display: flex; }
  nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: .35rem; padding: .3rem 0 .7rem; }
  nav a { display: block; padding: .4rem 0; }
  .nav-toggle:checked ~ nav { display: flex; }
}
