:root {
    --green-950: #102b22;
    --green-900: #163a2d;
    --green-800: #1b4332;
    --green-700: #245b43;
    --green-500: #4f8b64;
    --sage: #a8c7ad;
    --cream: #f4f0e7;
    --paper: #fbfaf6;
    --ink: #18211d;
    --muted: #667069;
    --gold: #d9ad5b;
    --white: #fff;
    --radius: 20px;
    --shadow: 0 24px 60px rgba(16, 43, 34, .12);
    --container: min(1160px, calc(100% - 40px));
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
    position: fixed;
    z-index: 999;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green-950);
    border-radius: 8px;
    transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.announcement { color: var(--green-950); background: #e3c987; font-size: 14px; }
.announcement-inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 8px 12px; text-align: center; }
.announcement-button { width: var(--container); margin-inline: auto; padding: 0; color: inherit; background: transparent; border: 0; cursor: pointer; }
.announcement-button:hover .announcement-more, .announcement-button:focus-visible .announcement-more { text-decoration-thickness: 2px; }
.announcement-button:focus-visible { outline: 2px solid var(--green-800); outline-offset: -3px; }
.announcement-more { margin-left: 4px; font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.announcement-dot { width: 7px; height: 7px; background: var(--green-800); border-radius: 50%; box-shadow: 0 0 0 4px rgba(27, 67, 50, .12); }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--ink);
    background: rgba(251, 250, 246, .93);
    border-bottom: 1px solid rgba(16, 43, 34, .08);
    backdrop-filter: blur(16px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 14px; line-height: 1.12; letter-spacing: .02em; }
.brand img { width: 38px; height: 50px; object-fit: contain; }
.brand strong { color: var(--green-700); font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { position: relative; text-decoration: none; font-size: 14px; font-weight: 650; }
.main-nav a:not(.nav-contact)::after { content: ""; position: absolute; right: 0; bottom: -7px; left: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.nav-contact { padding: 10px 16px; color: var(--white); background: var(--green-800); border-radius: 999px; }
.header-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 8px; }
.header-facebook { width: 54px; height: 54px; display: grid; flex: 0 0 54px; place-items: center; overflow: hidden; color: var(--white); background: #1877f2; border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 8px 22px rgba(24,119,242,.3); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.header-facebook span { font-family: Arial, Helvetica, sans-serif; font-size: 43px; font-weight: 800; line-height: 1; transform: translateY(6px); }
.header-facebook:hover, .header-facebook:focus-visible { background: #0f66d8; box-shadow: 0 10px 28px rgba(24,119,242,.42); transform: translateY(-2px) scale(1.04); }
.header-facebook:focus-visible { outline: 3px solid rgba(24,119,242,.3); outline-offset: 3px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--green-900); transition: transform .2s, opacity .2s; }

.hero {
    position: relative;
    min-height: min(780px, calc(100svh - 78px));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 36%, rgba(168, 199, 173, .22), transparent 26%),
        linear-gradient(125deg, var(--green-950), var(--green-800) 58%, #2b6048);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, transparent, #000 35%, #000); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding-block: 90px 120px; }
.hero-copy h1 { max-width: 760px; margin: 14px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(62px, 8vw, 118px); font-weight: 400; line-height: .83; letter-spacing: -.055em; }
.hero-copy h1 em { color: var(--sage); font-weight: 400; }
.hero-copy > p { margin: 0 0 34px; font-size: clamp(18px, 2vw, 24px); color: rgba(255,255,255,.78); }
.eyebrow { display: inline-block; color: var(--green-700); font-size: 12px; font-weight: 800; line-height: 1.2; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-light { color: #d9e9dc; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--green-950); background: var(--white); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.04); }
.button-primary { color: var(--white); background: var(--green-800); box-shadow: 0 12px 26px rgba(27,67,50,.18); }
.hero-mark { position: relative; min-height: 500px; display: grid; place-items: center; }
.hero-mark img { position: relative; z-index: 3; width: min(330px, 72%); max-height: 460px; object-fit: contain; filter: drop-shadow(0 28px 32px rgba(0,0,0,.28)); }
.target-rings, .target-rings span { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.target-rings { width: 460px; aspect-ratio: 1; }
.target-rings span:nth-child(1) { inset: 12%; }
.target-rings span:nth-child(2) { inset: 27%; }
.target-rings span:nth-child(3) { inset: 42%; background: rgba(217, 173, 91, .22); border-color: rgba(217, 173, 91, .55); }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.hero-orbit-one { width: 560px; height: 560px; top: -310px; left: -150px; }
.hero-orbit-two { width: 300px; height: 300px; right: -130px; bottom: -80px; }
.scroll-cue { position: fixed; z-index: 90; bottom: max(18px, env(safe-area-inset-bottom)); left: 50%; width: 30px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; background: rgba(16,43,34,.24); box-shadow: 0 8px 24px rgba(0,0,0,.14); backdrop-filter: blur(4px); opacity: 1; transform: translateX(-50%); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; }
.scroll-cue.is-hidden { visibility: hidden; opacity: 0; pointer-events: none; transform: translate(-50%, 10px); }
.scroll-cue span { position: absolute; top: 10px; left: 50%; width: 4px; height: 9px; background: var(--white); border-radius: 4px; transform: translateX(-50%); animation: scroll-cue 1.8s infinite; }
@keyframes scroll-cue { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 16px); } }
.back-to-top { --footer-overlap: 0px; position: fixed; z-index: 95; right: max(12px, env(safe-area-inset-right)); bottom: calc(max(22px, env(safe-area-inset-bottom)) + var(--footer-overlap)); width: 58px; height: 58px; display: grid; place-items: center; visibility: hidden; opacity: 0; color: var(--white); background: var(--green-800); border: 2px solid rgba(255,255,255,.78); border-radius: 50%; box-shadow: 0 14px 34px rgba(16,43,34,.28); transform: translateY(16px) scale(.92); pointer-events: none; transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background .2s ease, bottom .12s linear; }
.back-to-top.is-visible { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.back-to-top:hover, .back-to-top:focus-visible { background: var(--green-700); }
.back-to-top:focus-visible { outline: 3px solid rgba(217,173,91,.65); outline-offset: 3px; }
.back-to-top > span { position: relative; width: 3px; height: 24px; background: linear-gradient(to bottom, transparent 0 5px, currentColor 5px 100%); border-radius: 3px; animation: back-to-top-arrow 1.45s ease-in-out infinite; }
.back-to-top > span::before, .back-to-top > span::after { content: ""; position: absolute; top: 4px; width: 12px; height: 3px; background: currentColor; border-radius: 3px; }
.back-to-top > span::before { right: 1px; transform: rotate(-45deg); transform-origin: right center; }
.back-to-top > span::after { left: 1px; transform: rotate(45deg); transform-origin: left center; }
@keyframes back-to-top-arrow { 0%, 100% { transform: translateY(3px); } 50% { transform: translateY(-3px); } }

.section { padding: clamp(84px, 10vw, 140px) 0; }
.section-cream { background: var(--cream); }
.section-heading { max-width: 720px; margin-bottom: 56px; }
.section-heading h2, .contact-copy h2, .committee-heading h2 { margin: 10px 0 16px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5.4vw, 72px); font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.section-heading p { max-width: 620px; margin: 0; color: var(--muted); }
.section-heading-light { color: var(--white); }
.section-heading-light p { color: rgba(255,255,255,.68); }

.featured-events { margin: -10px 0 38px; }
.featured-events-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.featured-events-heading h3 { margin: 5px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 3.6vw, 42px); font-weight: 400; line-height: 1; }
.featured-events-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 13px; font-weight: 750; }
.featured-events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: 14px; }
.featured-event-card { position: relative; min-height: 275px; display: flex; align-items: end; padding: 0; overflow: hidden; isolation: isolate; color: var(--white); background: radial-gradient(circle at 84% 18%, rgba(217,173,91,.38), transparent 24%), linear-gradient(135deg, var(--green-700), var(--green-950)); border: 0; border-radius: 17px; box-shadow: 0 15px 34px rgba(16,43,34,.16); text-align: left; cursor: pointer; transition: transform .24s ease, box-shadow .24s ease; }
.featured-event-card:hover { transform: translateY(-4px); box-shadow: 0 21px 42px rgba(16,43,34,.24); }
.featured-event-card:focus-visible { outline: 3px solid rgba(36,91,67,.38); outline-offset: 4px; }
.featured-event-card > img { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.featured-event-card:hover > img { transform: scale(1.045); }
.featured-event-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(to top, rgba(7,27,20,.96), rgba(7,27,20,.18) 70%); }
.featured-event-content { width: 100%; display: grid; justify-items: start; padding: 24px; }
.featured-event-date { display: inline-flex; margin-bottom: 10px; padding: 5px 9px; color: var(--green-950); background: #e8cf91; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.featured-event-content strong { max-width: 620px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 3vw, 36px); font-weight: 400; line-height: 1.06; }
.featured-event-meta { margin-top: 9px; color: rgba(255,255,255,.76); font-size: 12px; font-weight: 650; line-height: 1.45; }
.featured-event-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 12px; font-weight: 850; }
.featured-event-more i { font-style: normal; transition: transform .2s ease; }
.featured-event-card:hover .featured-event-more i { transform: translateX(4px); }

.monthly-agenda { overflow: hidden; background: var(--paper); border: 1px solid rgba(27,67,50,.12); border-radius: var(--radius); box-shadow: var(--shadow); }
.monthly-agenda-toolbar { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 22px; color: var(--white); background: var(--green-900); }
.monthly-agenda-navigation { display: flex; align-items: center; gap: 14px; }
.monthly-agenda-navigation h3 { min-width: 220px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(26px, 3vw, 36px); font-weight: 400; line-height: 1; text-align: center; }
.monthly-agenda-nav { width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; padding: 0 0 4px; color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.26); border-radius: 50%; font-family: Georgia, serif; font-size: 34px; line-height: 1; cursor: pointer; transition: background .2s ease, transform .2s ease; }
.monthly-agenda-nav:hover, .monthly-agenda-nav:focus-visible { background: rgba(255,255,255,.18); transform: scale(1.05); }
.monthly-agenda-nav:focus-visible, .monthly-agenda-today:focus-visible { outline: 3px solid rgba(217,173,91,.7); outline-offset: 3px; }
.monthly-agenda-actions { display: flex; align-items: center; gap: 10px; }
.monthly-agenda-today { min-height: 40px; padding: 8px 17px; color: var(--green-950); background: var(--white); border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; }
.monthly-agenda-legend { min-height: 48px; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 24px; padding: 10px 22px; color: var(--muted); background: #edf1eb; border-bottom: 1px solid rgba(27,67,50,.1); font-size: 12px; font-weight: 750; }
.monthly-agenda-legend span { display: inline-flex; align-items: center; gap: 7px; }
.monthly-agenda-legend i { width: 10px; height: 10px; display: block; border-radius: 3px; }
.monthly-agenda-legend-admin { background: var(--green-700); }
.monthly-agenda-legend-google { background: #1a73e8; }
.monthly-agenda-scroll { position: relative; max-height: clamp(430px, 62vh, 600px); overflow: auto; overscroll-behavior: contain; scrollbar-gutter: stable; scrollbar-color: var(--green-500) #e7ebe5; -webkit-overflow-scrolling: touch; }
.monthly-agenda-scroll:focus-visible { outline: 3px solid rgba(36,91,67,.28); outline-offset: -3px; }
.monthly-agenda-weekdays, .monthly-agenda-grid { min-width: 805px; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.monthly-agenda-weekdays { position: sticky; z-index: 6; top: 0; color: var(--green-800); background: var(--paper); border-bottom: 1px solid rgba(27,67,50,.12); box-shadow: 0 5px 12px rgba(16,43,34,.08); }
.monthly-agenda-weekdays span { padding: 11px 8px; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.monthly-agenda-grid { border-left: 1px solid rgba(27,67,50,.1); }
.monthly-agenda-day { position: relative; min-width: 0; min-height: 128px; padding: 9px; background: var(--paper); border-right: 1px solid rgba(27,67,50,.1); border-bottom: 1px solid rgba(27,67,50,.1); }
.monthly-agenda-day:nth-child(7n), .monthly-agenda-day:nth-child(7n - 1) { background: #f7f5ef; }
.monthly-agenda-day.is-outside { color: #9ca49f; background: #efeee9; }
.monthly-agenda-day.is-month-start { box-shadow: inset 3px 0 0 var(--gold); }
.monthly-agenda-month-marker { position: absolute; top: 13px; left: 10px; color: var(--green-700); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.monthly-agenda-day-number { width: 28px; height: 28px; display: grid; place-items: center; margin: 0 0 6px auto; border-radius: 50%; font-size: 12px; font-weight: 850; line-height: 1; }
.monthly-agenda-day.is-today .monthly-agenda-day-number { color: var(--white); background: var(--green-800); box-shadow: 0 0 0 3px rgba(36,91,67,.13); }
.monthly-agenda-day-events { display: grid; gap: 5px; }
.monthly-agenda-event { min-width: 0; width: 100%; display: flex; align-items: baseline; gap: 5px; padding: 6px 7px; overflow: hidden; border: 0; border-left: 3px solid; border-radius: 6px; font-size: 11px; line-height: 1.25; text-align: left; cursor: pointer; transition: filter .2s ease, transform .2s ease, box-shadow .2s ease; }
.monthly-agenda-event-admin { color: #163a2d; background: #dfece2; border-left-color: var(--green-700); }
.monthly-agenda-event-google { color: #174c86; background: #e4efff; border-left-color: #1a73e8; }
.monthly-agenda-event:hover { filter: saturate(1.14); transform: translateY(-1px); box-shadow: 0 5px 12px rgba(16,43,34,.12); }
.monthly-agenda-event:focus-visible { position: relative; z-index: 2; outline: 3px solid rgba(36,91,67,.3); outline-offset: 1px; }
.monthly-agenda-event-time { flex: 0 0 auto; font-weight: 900; }
.monthly-agenda-event-title { min-width: 0; overflow: hidden; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.monthly-agenda-day.is-outside .monthly-agenda-event { opacity: .58; }
.event-source { display: inline-flex; align-items: center; width: max-content; padding: 3px 7px; border-radius: 999px; font-size: 9px; font-weight: 900; line-height: 1.2; letter-spacing: .08em; text-transform: uppercase; }
.event-source-google { color: #1558a6; background: #e4efff; border: 1px solid #c7dcfa; }
.event-source-admin { color: var(--green-800); background: #e1ebe3; border: 1px solid #c8dacd; }

.documents-section { min-height: calc(100vh + 60px); min-height: calc(100svh + 60px); display: grid; align-items: center; color: var(--white); background: var(--green-900); }
.documents-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.document-card { position: relative; min-height: 280px; display: flex; flex-direction: column; padding: 24px; overflow: hidden; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13); border-radius: 16px; text-decoration: none; transition: background .2s ease, transform .2s ease; }
.document-card::after { content: ""; position: absolute; right: -42px; bottom: -52px; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.document-card:hover { background: rgba(255,255,255,.12); transform: translateY(-5px); }
.document-number { color: var(--sage); font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.document-icon { position: relative; width: 45px; height: 56px; display: grid; place-items: end center; margin: 32px 0 20px; padding-bottom: 8px; color: #fff; background: #fff; border-radius: 4px 4px 6px 6px; box-shadow: 0 8px 18px rgba(0,0,0,.18); }
.document-icon::before { content: ""; position: absolute; top: 0; right: 0; width: 14px; height: 14px; background: linear-gradient(225deg, var(--green-900) 49%, #dfdfdf 50%); border-radius: 0 3px 0 2px; }
.document-icon span { position: relative; width: 52px; padding: 3px 4px; color: #fff; background: #dc4545; border-radius: 3px; font-size: 10px; font-weight: 900; line-height: 1; letter-spacing: .08em; text-align: center; box-shadow: 0 3px 8px rgba(0,0,0,.2); }
.document-card strong { font-family: Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.2; }
.document-action { margin-top: auto; padding-top: 28px; color: rgba(255,255,255,.64); font-size: 12px; font-weight: 700; }
.documents-contact-banner { margin-top: 26px; display: flex; align-items: center; gap: 16px; padding: 18px 20px; color: var(--green-950); background: #e3c987; border: 1px solid rgba(255,255,255,.26); border-radius: 16px; box-shadow: 0 16px 38px rgba(0,0,0,.14); }
.documents-contact-icon { width: 42px; height: 42px; display: grid; flex: 0 0 42px; place-items: center; color: var(--white); background: var(--green-800); border-radius: 50%; font-size: 21px; font-weight: 900; }
.documents-contact-banner p { min-width: 0; margin: 0; line-height: 1.35; }
.documents-contact-banner p strong, .documents-contact-banner p span { display: block; }
.documents-contact-banner p strong { margin-bottom: 3px; font-size: 16px; }
.documents-contact-banner p span { color: rgba(16,43,34,.76); font-size: 14px; }
.documents-contact-button { flex: 0 0 auto; margin-left: auto; white-space: nowrap; }

.gallery-section { background: var(--paper); }
.gallery-filters { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: -18px 0 28px; }
.gallery-filter { min-height: 40px; padding: 8px 16px; color: var(--green-800); background: transparent; border: 1px solid rgba(27,67,50,.24); border-radius: 999px; font-size: 13px; font-weight: 800; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.gallery-filter:hover, .gallery-filter:focus-visible { border-color: var(--green-700); transform: translateY(-1px); }
.gallery-filter:focus-visible { outline: 3px solid rgba(36,91,67,.22); outline-offset: 2px; }
.gallery-filter.is-active { color: var(--white); background: var(--green-800); border-color: var(--green-800); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-flow: dense; grid-auto-rows: 170px; gap: 12px; }
.gallery-item { position: relative; min-width: 0; min-height: 0; padding: 0; overflow: hidden; background: #dbe2dc; border: 0; border-radius: 14px; cursor: zoom-in; }
.gallery-item:nth-child(8n+1), .gallery-item:nth-child(8n+6) { grid-row: span 2; }
.gallery-item:nth-child(8n+2), .gallery-item:nth-child(8n+7) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-zoom { position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: rgba(16,43,34,.78); border: 1px solid rgba(255,255,255,.34); border-radius: 50%; opacity: 0; transform: translateY(8px); transition: opacity .2s, transform .2s; }
.gallery-item:hover .gallery-zoom, .gallery-item:focus-visible .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-actions { display: flex; justify-content: center; margin-top: 34px; }
.gallery-complete-button span { padding: 3px 9px; color: var(--green-800); background: rgba(255,255,255,.78); border-radius: 999px; font-size: 11px; }
.gallery-dialog { width: min(1180px, calc(100% - 32px)); max-width: none; max-height: 90vh; padding: 0; overflow: visible; color: var(--ink); background: transparent; border: 0; }
.gallery-dialog::backdrop { background: rgba(5,26,19,.84); backdrop-filter: blur(7px); }
.gallery-dialog-card { max-height: 90vh; overflow: hidden; background: var(--paper); border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.36); }
.gallery-dialog[open] .gallery-dialog-card { animation: popup-enter .24s ease-out; }
.gallery-dialog-heading { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; background: var(--cream); border-bottom: 1px solid rgba(27,67,50,.12); }
.gallery-dialog-heading h2 { margin: 4px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 4vw, 46px); font-weight: 400; line-height: 1; }
.gallery-dialog-heading p { margin: 6px 0 0; color: var(--muted); font-size: 13px; font-weight: 750; }
.gallery-dialog-close { width: 48px; height: 48px; display: grid; flex: 0 0 48px; place-items: center; padding: 0; color: var(--white); background: var(--green-800); border: 0; border-radius: 50%; cursor: pointer; }
.gallery-dialog-close:hover, .gallery-dialog-close:focus-visible { background: var(--green-700); }
.gallery-dialog-close:focus-visible { outline: 3px solid rgba(36,91,67,.3); outline-offset: 3px; }
.gallery-dialog-close span { position: relative; width: 20px; height: 20px; display: block; }
.gallery-dialog-close span::before, .gallery-dialog-close span::after { content: ""; position: absolute; top: 9px; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.gallery-dialog-close span::before { transform: rotate(45deg); }
.gallery-dialog-close span::after { transform: rotate(-45deg); }
.gallery-dialog-scroll { max-height: calc(90vh - 112px); padding: 22px; overflow: auto; overscroll-behavior: contain; }
.gallery-dialog-filters { position: sticky; z-index: 3; top: -22px; margin: -22px -22px 22px; padding: 18px 22px; background: rgba(251,250,246,.96); border-bottom: 1px solid rgba(27,67,50,.1); backdrop-filter: blur(10px); }
.gallery-complete-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery-complete-item { position: relative; aspect-ratio: 1.2; padding: 0; overflow: hidden; background: #dbe2dc; border: 0; border-radius: 12px; cursor: zoom-in; }
.gallery-complete-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-complete-item:hover img { transform: scale(1.05); }
.gallery-complete-item:hover .gallery-zoom, .gallery-complete-item:focus-visible .gallery-zoom { opacity: 1; transform: translateY(0); }
.gallery-actions[hidden], .gallery-item[hidden], .gallery-complete-item[hidden] { display: none; }

.locations-section { color: var(--white); background: #112e24; }
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.location-card { position: relative; min-height: 560px; overflow: hidden; border-radius: var(--radius); }
.location-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,26,20,.94), rgba(8,26,20,.05) 66%); }
.location-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.location-card:hover img { transform: scale(1.035); }
.location-overlay { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: 36px; }
.season { color: #e6cf98; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.location-overlay h3 { margin: 8px 0 10px; font-family: Georgia, serif; font-size: 40px; font-weight: 400; line-height: 1; }
.location-overlay p { margin: 0 0 16px; color: rgba(255,255,255,.72); }
.location-overlay a { font-size: 13px; font-weight: 800; text-decoration: none; }

.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(42px, 8vw, 110px); align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy p { max-width: 440px; color: var(--muted); }
.contact-email { display: inline-block; margin-top: 18px; color: var(--green-700); font-weight: 800; text-underline-offset: 4px; }
.contact-form-wrap { padding: 38px; background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--green-950); font-size: 13px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f7f5ee; border: 1px solid rgba(27,67,50,.16); border-radius: 10px; outline: none; transition: border .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(79,139,100,.13); }
.contact-form textarea { resize: vertical; }
.file-field span { color: var(--muted); font-size: 11px; font-weight: 500; }
.file-field input { padding: 10px; font-size: 12px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-notice { margin-bottom: 18px; padding: 12px 14px; border-radius: 10px; font-size: 14px; }
.form-notice-success { color: #155d37; background: #e1f3e8; }
.form-notice-error { color: #8a2424; background: #f9e2e2; }
.committee { margin-top: clamp(100px, 12vw, 170px); }
.committee-heading { margin-bottom: 42px; }
.committee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member-card { text-align: center; }
.member-portrait { position: relative; width: min(100%, 220px); aspect-ratio: 1; margin: 0 auto 18px; overflow: hidden; background: #e9ede8; border-radius: 50%; box-shadow: 0 16px 38px rgba(27,67,50,.12); }
.member-portrait img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.member-portrait img.is-crop-ready { position: absolute; max-width: none; object-fit: fill; transform: translate(-50%, -50%); }
.member-card h3 { margin: 0; font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.member-card p { margin: 4px 0 0; color: var(--green-700); font-size: 13px; font-weight: 800; }

.site-footer { padding: 30px 0; color: rgba(255,255,255,.7); background: #0c211a; font-size: 13px; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-weight: 700; }
.footer-brand img { width: 30px; height: 38px; object-fit: contain; }
.footer-links { display: flex; gap: 20px; }
.footer-links a, .footer-links button { color: inherit; text-underline-offset: 3px; }
.footer-links button { padding: 0; background: transparent; border: 0; text-decoration: underline; cursor: pointer; }

.analytics-consent[hidden] { display: none; }
.analytics-consent { position: fixed; z-index: 250; right: 20px; bottom: max(20px, env(safe-area-inset-bottom)); left: 20px; width: min(780px, calc(100% - 40px)); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; margin-inline: auto; padding: 22px 24px; color: var(--ink); background: var(--paper); border: 1px solid rgba(27,67,50,.16); border-radius: 18px; box-shadow: 0 24px 70px rgba(7,31,23,.28); }
.analytics-consent-copy h2 { margin: 4px 0 7px; font-family: Georgia, "Times New Roman", serif; font-size: 27px; font-weight: 400; line-height: 1.1; }
.analytics-consent-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.analytics-consent-actions { display: flex; gap: 9px; }
.analytics-consent-actions .button { min-width: 105px; }
.analytics-consent-refuse { color: var(--green-800); background: #e5eee8; border-color: #d2dfd5; }

.event-dialog { width: min(880px, calc(100% - 32px)); max-width: none; max-height: 88vh; padding: 0; overflow: visible; color: var(--ink); background: transparent; border: 0; }
.event-dialog::backdrop { background: rgba(5,26,19,.78); backdrop-filter: blur(7px); }
.event-dialog-card { position: relative; max-height: 88vh; display: grid; grid-template-columns: minmax(250px, .85fr) minmax(0, 1.15fr); overflow: auto; background: var(--paper); border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.34); }
.event-dialog-card-text { grid-template-columns: 1fr; }
.event-dialog-close { position: absolute; z-index: 3; top: 14px; right: 14px; width: 46px; height: 46px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(16,43,34,.9); border: 1px solid rgba(255,255,255,.24); border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,.2); font-size: 29px; line-height: 1; cursor: pointer; }
.event-dialog-close:hover, .event-dialog-close:focus-visible { background: var(--green-700); }
.event-dialog-close:focus-visible { outline: 3px solid rgba(36,91,67,.32); outline-offset: 3px; }
.event-dialog-image { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }
.event-dialog-content { align-self: center; padding: 60px clamp(30px, 5vw, 58px) 48px; }
.event-dialog-kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.event-dialog-date { display: inline-block; color: var(--green-700); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.event-dialog-content h2 { margin: 10px 42px 26px 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 5vw, 56px); font-weight: 400; line-height: 1; letter-spacing: -.035em; }
.event-dialog-meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-bottom: 26px; }
.event-dialog-meta p { margin: 0; padding: 14px; background: var(--cream); border-radius: 12px; }
.event-dialog-meta span { display: block; margin-bottom: 2px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.event-dialog-meta strong { display: block; font-size: 14px; line-height: 1.4; }
.event-dialog-description { color: var(--muted); line-height: 1.7; }
.event-dialog-address { margin: 24px 0 12px; font-size: 14px; font-weight: 750; }
.event-dialog-map { width: max-content; }

.site-popup { width: min(700px, calc(100% - 30px)); max-width: none; max-height: min(86vh, 760px); padding: 0; overflow: visible; background: transparent; border: 0; color: #6f6f6f; }
.site-popup::backdrop { background: rgba(16, 43, 34, .76); backdrop-filter: blur(5px); }
.site-popup-card { position: relative; max-height: min(86vh, 760px); overflow: auto; background: #f9f9f9; border: 0; border-radius: 2px; box-shadow: 1px 1px 3px rgba(2,2,2,.23), 0 28px 80px rgba(0,0,0,.28); }
.site-popup[open] .site-popup-card { animation: popup-enter .24s ease-out; }
.site-popup-close { position: absolute; z-index: 2; top: 0; right: 0; width: 48px; height: 48px; display: grid; place-items: center; padding: 0; color: #fff; background: #00b7cd; border: 0; border-radius: 0; box-shadow: 1px 1px 3px rgba(2,2,2,.23); font-size: 27px; line-height: 1; cursor: pointer; }
.site-popup-close:hover, .site-popup-close:focus-visible { background: #009bb0; }
.site-popup-close:focus-visible { outline: 3px solid rgba(0,183,205,.3); outline-offset: 3px; }
.site-popup-content { padding: 52px clamp(26px, 6vw, 64px) 46px; }
.site-popup-content h2 { margin: 0 34px 28px; color: #222; font-family: Georgia, "Times New Roman", serif; font-size: clamp(27px, 4vw, 40px); font-weight: 400; line-height: 1.15; text-align: center; }
.site-popup-message { color: #707070; font-size: 17px; line-height: 1.75; text-align: center; }
@keyframes popup-enter { from { opacity: 0; transform: translateY(18px) scale(.98); } to { opacity: 1; transform: none; } }

.lightbox { width: min(1100px, calc(100% - 32px)); max-width: none; height: min(86vh, 900px); padding: 0; overflow: visible; background: transparent; border: 0; }
.lightbox::backdrop { background: rgba(5,16,12,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox-close, .lightbox-nav { position: absolute; z-index: 2; display: grid; place-items: center; margin: 0; padding: 0; appearance: none; color: var(--white); background: rgba(16,43,34,.82); border: 1px solid rgba(255,255,255,.34); border-radius: 50%; box-shadow: none; line-height: 0; outline: 0; cursor: pointer; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(36,91,67,.96); }
.lightbox-close:focus-visible, .lightbox-nav:focus-visible { outline: 3px solid rgba(255,255,255,.92); outline-offset: 3px; }
.lightbox-close { top: -16px; right: -10px; width: 46px; height: 46px; }
.lightbox-close > span { position: relative; width: 20px; height: 20px; display: block; }
.lightbox-close > span::before, .lightbox-close > span::after { content: ""; position: absolute; top: 9px; left: 0; width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.lightbox-close > span::before { transform: rotate(45deg); }
.lightbox-close > span::after { transform: rotate(-45deg); }
.lightbox-nav { top: 50%; width: 50px; height: 50px; transform: translateY(-50%); }
.lightbox-nav > span { width: 14px; height: 14px; display: block; border-top: 3px solid currentColor; border-right: 3px solid currentColor; }
.lightbox-prev > span { transform: translateX(2px) rotate(-135deg); }
.lightbox-next > span { transform: translateX(-2px) rotate(45deg); }
.lightbox-prev { left: -18px; }
.lightbox-next { right: -18px; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.revealed { opacity: 1; transform: none; }
.js .reveal-delay { transition-delay: .12s; }

@media (max-width: 1050px) {
    .header-inner { gap: 18px; }
    .main-nav { gap: 18px; }
    .main-nav a { font-size: 13px; }
    .documents-grid { grid-template-columns: repeat(3, 1fr); }
    .document-card { min-height: 240px; }
}

@media (max-width: 820px) {
    :root { --container: min(680px, calc(100% - 28px)); }
    html { scroll-padding-top: 72px; }
    .announcement-inner { padding-block: 8px; flex-wrap: wrap; line-height: 1.3; }
    .header-inner { min-height: 68px; }
    .header-actions { margin-left: auto; }
    .header-facebook { width: 50px; height: 50px; flex-basis: 50px; }
    .header-facebook span { font-size: 40px; }
    .menu-toggle { display: block; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .main-nav { position: fixed; inset: 68px 0 auto; height: calc(100svh - 68px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 28px max(14px, calc((100% - 680px) / 2)); background: var(--paper); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
    .main-nav.open { visibility: visible; transform: translateX(0); }
    .main-nav a { padding: 16px 4px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; border-bottom: 1px solid rgba(27,67,50,.12); }
    .nav-contact { margin-top: 20px; text-align: center; border-bottom: 0 !important; border-radius: 999px; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; padding-block: 76px 100px; }
    .hero-copy h1 { font-size: clamp(58px, 16vw, 90px); }
    .hero-mark { position: absolute; z-index: -1; right: -130px; bottom: 0; min-height: auto; opacity: .18; }
    .hero-mark img { width: 430px; max-height: none; }
    .target-rings { width: 440px; }
    .scroll-cue { bottom: max(14px, env(safe-area-inset-bottom)); }
    .section { padding-block: 84px; }
    .section-heading { margin-bottom: 38px; }
    .featured-events-heading { align-items: start; flex-direction: column; gap: 8px; }
    .monthly-agenda-toolbar { align-items: stretch; flex-direction: column; }
    .monthly-agenda-navigation { justify-content: space-between; }
    .monthly-agenda-actions { justify-content: center; }
    .monthly-agenda-legend { justify-content: center; }
    .documents-grid { grid-template-columns: 1fr 1fr; }
    .documents-contact-banner { flex-wrap: wrap; }
    .documents-contact-button { margin-left: 58px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .gallery-grid .gallery-item { grid-column: span 1; grid-row: span 1; }
    .gallery-complete-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .locations-grid, .contact-grid { grid-template-columns: 1fr; }
    .location-card { min-height: 480px; }
    .contact-copy { position: static; }
    .committee-grid { grid-template-columns: 1fr 1fr; row-gap: 38px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .analytics-consent { grid-template-columns: 1fr; gap: 16px; }
    .analytics-consent-actions { justify-content: flex-end; }
}

@media (max-width: 560px) {
    body { font-size: 16px; }
    .header-inner { gap: 8px; }
    .brand { min-width: 0; flex: 1 1 auto; gap: 7px; font-size: 11px; line-height: 1.05; }
    .brand img { width: 34px; height: 46px; flex: 0 0 34px; }
    .brand span { display: block; white-space: nowrap; }
    .header-actions { gap: 4px; }
    .hero-copy h1 { font-size: clamp(54px, 18vw, 76px); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .featured-events { margin-top: -4px; }
    .featured-event-card { min-height: 250px; }
    .featured-event-content { padding: 21px; }
    .monthly-agenda-toolbar { padding: 15px; }
    .monthly-agenda-navigation { gap: 7px; }
    .monthly-agenda-navigation h3 { min-width: 0; font-size: 26px; }
    .monthly-agenda-nav { width: 40px; height: 40px; flex-basis: 40px; }
    .monthly-agenda-actions { align-items: stretch; flex-direction: column; }
    .monthly-agenda-legend { align-items: flex-start; flex-direction: column; padding-inline: 16px; }
    .monthly-agenda-weekdays, .monthly-agenda-grid { min-width: 735px; }
    .monthly-agenda-scroll { max-height: min(520px, 64svh); }
    .monthly-agenda-day { min-height: 118px; padding: 7px; }
    .documents-grid { grid-template-columns: 1fr; }
    .document-card { min-height: 200px; }
    .document-icon { margin-block: 22px 16px; }
    .documents-contact-banner { align-items: flex-start; padding: 18px; }
    .documents-contact-button { margin-left: 0; }
    .gallery-grid { grid-auto-rows: 130px; }
    .gallery-dialog { width: calc(100% - 16px); }
    .gallery-dialog-heading { min-height: 98px; padding: 18px 20px; }
    .gallery-dialog-heading h2 { font-size: 29px; }
    .gallery-dialog-scroll { max-height: calc(90vh - 98px); padding: 10px; }
    .gallery-filters { gap: 7px; margin-top: -12px; }
    .gallery-filter { min-height: 38px; padding: 7px 13px; font-size: 12px; }
    .gallery-dialog-filters { top: -10px; margin: -10px -10px 14px; padding: 12px 10px; }
    .gallery-complete-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .gallery-complete-item { aspect-ratio: 1; border-radius: 9px; }
    .event-dialog-card { grid-template-columns: 1fr; }
    .event-dialog-image { height: 230px; min-height: 0; }
    .event-dialog-content { padding: 34px 22px 28px; }
    .event-dialog-content h2 { margin-right: 38px; font-size: 36px; }
    .event-dialog-meta { grid-template-columns: 1fr; }
    .location-card { min-height: 420px; }
    .location-overlay { padding: 25px; }
    .location-overlay h3 { font-size: 34px; }
    .contact-form-wrap { padding: 24px 18px; }
    .form-row { grid-template-columns: 1fr; }
    .committee-grid { gap: 30px 12px; }
    .member-card h3 { font-size: 17px; }
    .lightbox-nav { width: 42px; height: 42px; }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
    .back-to-top { right: max(8px, env(safe-area-inset-right)); bottom: calc(max(12px, env(safe-area-inset-bottom)) + var(--footer-overlap)); width: 52px; height: 52px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .analytics-consent { right: 10px; bottom: max(10px, env(safe-area-inset-bottom)); left: 10px; width: calc(100% - 20px); padding: 19px; }
    .analytics-consent-actions { align-items: stretch; flex-direction: column-reverse; }
    .site-popup { width: calc(100% - 20px); }
    .site-popup-content { padding: 52px 20px 32px; }
    .site-popup-content h2 { margin-inline: 26px; font-size: 27px; }
    .site-popup-message { font-size: 15px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .js .reveal { opacity: 1; transform: none; }
}
