:root {
  --bg: #f5f1e8;
  --paper: rgba(255, 252, 247, 0.92);
  --paper-strong: #fffdfa;
  --ink: #1f1b18;
  --muted: #625852;
  --line: rgba(54, 42, 36, 0.14);
  --brand: #6f1d1b;
  --brand-deep: #421110;
  --gold: #caa15a;
  --shadow: 0 20px 50px rgba(29, 19, 13, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Source Sans 3', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: linear-gradient(180deg, #efe8dc 0%, #f7f3ec 25%, #f2eee8 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1.1rem; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { max-width: 42rem; }
.section { padding: 2rem 0; }
.section-tint { background: linear-gradient(180deg, rgba(111,29,27,.08), rgba(111,29,27,.03)); }
.surface {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.eyebrow, .section-label {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--brand);
  margin-bottom: .85rem;
}
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.08;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
.lead, .prose-large p { font-size: 1.18rem; color: var(--muted); }
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 247, 240, 0.86);
  border-bottom: 1px solid rgba(54,42,36,.08);
}
.header-wrap { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding: .9rem 0; }
.brand img { width: 270px; max-width: 52vw; }
.site-nav { display:flex; gap:1.1rem; flex-wrap:wrap; align-items:center; }
.site-nav a {
  font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 600; color: var(--muted);
}
.site-nav a:hover, .site-nav a.active { color: var(--brand); }
.menu-toggle { display:none; }
.home-hero { position: relative; min-height: 86vh; display:grid; align-items:end; }
.hero-image-wrap { position:absolute; inset:0; overflow:hidden; }
.hero-image { width:100%; height:100%; object-fit:cover; object-position:center 24%; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(90deg, rgba(29,17,13,.84) 0%, rgba(29,17,13,.55) 40%, rgba(29,17,13,.18) 100%); }
.hero-content { position:relative; z-index:1; display:grid; grid-template-columns:minmax(0, 1.3fr) 340px; gap:1.5rem; align-items:end; padding: 9rem 0 4rem; }
.hero-card, .next-event-panel {
  color: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card {
  background: rgba(30, 19, 15, .56); border:1px solid rgba(255,255,255,.12); padding: 2.1rem;
}
.hero-card .eyebrow, .hero-card .lead { color: rgba(255,255,255,.86); }
.hero-card h1 { max-width: 12ch; }
.hero-actions { display:flex; flex-wrap:wrap; gap: .9rem; margin-top: 1.8rem; }
.button {
  display:inline-flex; align-items:center; justify-content:center; border-radius:999px; padding: .9rem 1.2rem;
  background: var(--brand); color:#fff; font-family:'Montserrat', sans-serif; font-weight:700; border:1px solid transparent;
}
.button:hover { background: var(--brand-deep); }
.button.ghost { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.button.ghost.dark { background: transparent; border-color: rgba(111,29,27,.28); color: var(--brand-deep); }
.next-event-panel { background: rgba(111,29,27,.82); padding: 1.6rem; align-self:end; }
.next-event-panel h2 { font-size: 1rem; margin-bottom: .3rem; color: rgba(255,255,255,.8); }
.next-event-panel h3 { font-size: 1.65rem; color: #fff; }
.event-kicker { color: #f2d7a6; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; }
.text-link { color: var(--brand); font-weight: 700; }
.next-event-panel .text-link { color: #fff; }
.mission-grid, .split-showcase, .media-grid { display:grid; gap: 1.4rem; }
.mission-grid { grid-template-columns: 1fr 1.05fr; align-items:start; }
.mission-grid .surface { padding: 1.8rem; }
.cards-three { display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; }
.split-showcase { grid-template-columns: .9fr 1.1fr; align-items:center; }
.showcase-media img { border-radius: var(--radius); box-shadow: var(--shadow); min-height: 460px; width:100%; object-fit:cover; }
.media-grid { grid-template-columns: repeat(2, 1fr); }
.media-callout { padding: 1.6rem; }
.page-hero { padding: 5.5rem 0 2rem; background: linear-gradient(180deg, rgba(111,29,27,.12), rgba(111,29,27,.03)); }
.page-hero-inner { display:grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items:center; }
.simple-hero { grid-template-columns: 1fr; }
.page-hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); object-fit:cover; min-height: 260px; width:100%; }
.page-body > :first-child { margin-top: 0; }
.event-meta-strip { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:1rem; }
.event-meta-strip span {
  background: rgba(111,29,27,.1); color: var(--brand-deep); border:1px solid rgba(111,29,27,.12);
  border-radius:999px; padding:.45rem .8rem; font-weight:600;
}
.map-embed iframe { width:100%; min-height:420px; border:0; border-radius:18px; }
.info-grid { display:grid; grid-template-columns: 1.15fr .85fr; gap: 1.4rem; }
.dual-cards { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.bio-list { display:grid; gap: 1.4rem; }
.bio-card {
  display:grid; grid-template-columns: minmax(220px, 290px) minmax(0, 1fr); gap: 1.4rem; padding: 1.2rem;
  align-items: start;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden;
}
.bio-card > div { min-width: 0; }
.bio-card img {
  width:100%;
  height:auto;
  min-height: 280px;
  object-fit: cover;
  object-position: center top;
  border-radius: 18px;
}
.bio-role { color: var(--brand); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.divider { height:1px; background: var(--line); margin: 2rem 0; }
.event-list { display:grid; gap: 1rem; }
.event-card {
  display:grid; grid-template-columns: 170px 1fr; gap:1.2rem; align-items:start;
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding:1.2rem;
}
.event-date {
  background: linear-gradient(180deg, var(--brand), var(--brand-deep)); color:#fff; border-radius: 20px; padding: 1rem; text-align:center;
}
.event-date .month { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; opacity:.8; }
.event-date .day { font-family:'Montserrat',sans-serif; font-size: 3rem; line-height: 1; }
.embed-frame, .video-embed iframe { width:100%; border:0; border-radius: 18px; box-shadow: var(--shadow); background:#fff; }
.embed-frame { min-height: 700px; }
.video-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.video-embed { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.video-embed iframe { aspect-ratio: 16/9; min-height: 0; }
.gallery-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-grid figure { margin:0; background: var(--paper); border:1px solid var(--line); border-radius: 18px; overflow:hidden; box-shadow: var(--shadow); }
.gallery-grid a { display:block; }
.gallery-grid img { width:100%; height:280px; object-fit:cover; transition: transform .25s ease, filter .25s ease; }
.gallery-grid a:hover img { transform: scale(1.02); filter: brightness(1.04); }
.gallery-grid figcaption { padding: .85rem 1rem 1rem; color: var(--muted); font-size: .98rem; }
.lightbox-open { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 12, 10, .9);
  display: grid; grid-template-columns: 72px minmax(0, 1fr) 72px; align-items: center;
  gap: 1rem; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox-figure { margin: 0; display: grid; gap: .85rem; justify-items: center; }
.lightbox-image { max-width: min(1200px, 92vw); max-height: 82vh; width: auto; height: auto; border-radius: 18px; box-shadow: 0 25px 60px rgba(0,0,0,.45); background: #111; }
.lightbox-caption { color: rgba(255,255,255,.82); text-align: center; }
.lightbox-close,
.lightbox-nav {
  border: 0; cursor: pointer; color: #fff; background: rgba(255,255,255,.12);
  width: 56px; height: 56px; border-radius: 999px; font-size: 2rem; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 52px; height: 52px; font-size: 2.2rem;
}
.contact-grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: 1.4rem; }
.contact-card, .contact-form-wrap { padding: 1.5rem; }
.contact-list { list-style:none; padding:0; margin:1rem 0 0; }
.contact-list li { margin-bottom:.7rem; }
.contact-form { display:grid; gap: .95rem; }
.contact-form label { font-family:'Montserrat',sans-serif; font-size:.9rem; font-weight:600; display:grid; gap:.35rem; }
.contact-form input, .contact-form textarea {
  width:100%; border:1px solid rgba(54,42,36,.18); border-radius: 14px; padding:.85rem 1rem; background:#fffdfa; font: inherit;
}
.contact-form textarea { min-height: 180px; resize: vertical; }
.helper { color: var(--muted); font-size: .95rem; }
.site-footer { margin-top: 2rem; color: #f9f2ea; background: #241714; }
.footer-band { height: 12px; background: linear-gradient(90deg, var(--gold), var(--brand), var(--gold)); }
.footer-grid { display:grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 2rem; padding: 2.4rem 0 1.2rem; }
.footer-logo { width: 240px; max-width: 100%; margin-bottom: 1rem; filter: brightness(1.05); }
.site-footer h2 { font-size: 1rem; margin-bottom: .8rem; color: #fff; }
.site-footer ul { list-style:none; padding:0; margin:0; }
.site-footer li { margin-bottom: .55rem; color: rgba(255,255,255,.8); }
.footer-copy { color: rgba(255,255,255,.76); max-width: 42ch; }
.footer-bottom { padding: 0 0 1.6rem; color: rgba(255,255,255,.56); font-size:.95rem; }
@media (max-width: 1024px) {
  .hero-content, .mission-grid, .split-showcase, .page-hero-inner, .info-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .cards-three, .media-grid, .dual-cards, .video-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .menu-toggle {
    display:inline-flex; border:1px solid var(--line); background:#fff; border-radius:999px; padding:.7rem 1rem; font:inherit; font-weight:600;
  }
  .site-nav { display:none; position:absolute; top:100%; left:1rem; right:1rem; background:rgba(255,252,247,.98); border:1px solid var(--line); border-radius:20px; padding:1rem; box-shadow: var(--shadow); }
  .site-nav.open { display:grid; }
  .brand img { width: 220px; }
  .hero-content { padding-top: 7rem; grid-template-columns: 1fr; }
  .hero-card { padding: 1.4rem; }
  .cards-three, .media-grid, .dual-cards, .video-grid, .gallery-grid { grid-template-columns: 1fr; }
  .bio-card, .event-card { grid-template-columns: 1fr; }
  .bio-card img {
    min-height: 0;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .embed-frame { min-height: 560px; }
  .lightbox { grid-template-columns: 1fr; padding: 1rem; }
  .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
  }
  .lightbox-prev { left: .75rem; }
  .lightbox-next { right: .75rem; }
}
