:root {
    --bg: #0d1117;
    --bg-soft: #141b24;
    --card: #161f2a;
    --card-alt: #1c2734;
    --line: rgba(255,255,255,0.08);
    --text: #edf2f7;
    --muted: #a9b7c8;
    --accent: #7dd3fc;
    --accent-2: #93c5fd;
    --danger: #ef4444;
    --success-bg: #d9fbe3;
    --success-text: #121212;
    --error-bg: #f3b7b7;
    --error-text: #ffffff;
    --radius: 24px;
    --radius-sm: 18px;
    --shadow: 0 20px 60px rgba(0,0,0,0.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top, #17212d 0%, #0d1117 55%);
    color: var(--text);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video, iframe { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1120px, calc(100% - 24px)); margin: 0 auto; }
.site-main { padding-bottom: 110px; }
.site-header {
    position: sticky; top: 0; z-index: 40;
    backdrop-filter: blur(14px);
    background: rgba(13,17,23,0.82);
    border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 78px; }
.brand { display:flex; flex-direction:column; gap:2px; }
.brand-mark, .footer-brand {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.04em;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 700;
}
.brand-sub { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 18px; }
.desktop-nav a { color: var(--muted); font-weight: 600; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--text); }
.nav-pill, .btn {
    position: relative;
    isolation: isolate;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.nav-pill::before, .btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.02));
    z-index: -1;
    opacity: 0.7;
}
.nav-pill:hover, .btn:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0,0,0,0.22); }
.nav-pill, .btn-primary {
    background: linear-gradient(135deg, #7dd3fc 0%, #9bd7ff 55%, #bfdcff 100%);
    color: #03131d !important;
    border-color: rgba(125,211,252,0.45);
}
.btn-secondary {
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
}
.btn-secondary:hover { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)); }
.hero {
    padding: 72px 0 40px;
}
.hero-grid { display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 30px; align-items:center; }
.hero-copy h1, .page-hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.02; margin: 0 0 16px; }
.hero-copy p.lead, .lead { font-size: 1.1rem; color: var(--muted); line-height: 1.8; }
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.82rem; font-weight: 800; }
.hero-actions, .button-row { display:flex; gap: 14px; flex-wrap:wrap; margin-top: 28px; }
.stat-row { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.stat-card, .card, .feature, .quote-card, .media-card, .timeline-card, .support-card, .contact-card, .admin-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.stat-card { padding: 22px; }
.stat-card strong { display:block; font-size: 1.9rem; margin-bottom: 8px; }
.stat-card span { color: var(--muted); }
.hero-panel { padding: 26px; }
.panel-stack { display:grid; gap: 14px; }
.pill { display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background:rgba(125,211,252,0.12); color:var(--accent); font-weight:700; }
.section { padding: 28px 0 56px; }
.grid-2, .grid-3, .grid-4 { display:grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card, .feature, .quote-card, .support-card, .contact-card, .timeline-card, .admin-box { padding: 24px; }
.feature h3, .card h3, .contact-card h3, .timeline-card h3 { margin-top: 0; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.5rem); margin: 0 0 12px; }
.section-subtitle { color: var(--muted); max-width: 760px; line-height: 1.8; }
.page-hero { padding: 48px 0 18px; }
.narrow { max-width: 740px; }
.highlight-box { padding: 20px; border-left: 4px solid var(--accent); background: rgba(125,211,252,0.08); border-radius: 18px; }
.inline-link { color: inherit; text-decoration: none; font-weight: 800; }
.inline-link:hover { color: #d9f3ff; }
.contact-points { margin-bottom: 30px; }
.contact-alert-box { margin-top: 26px; }
.image-shell { overflow:hidden; border-radius: 30px; border: 1px solid var(--line); background: #0f1722; min-height: 420px; display:flex; align-items:center; justify-content:center; }
.image-shell img { width: 100%; height: 100%; object-fit: cover; }
.cta-band { padding: 28px; display:flex; justify-content:space-between; gap:20px; align-items:center; }
.site-footer {
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(2,6,12,0.18), rgba(2,6,12,0.5));
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 24px;
    padding: 40px 0 20px;
}
.footer-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}
.footer-brand-card { padding-right: 28px; }
.footer-copy { color: var(--text); max-width: 34ch; line-height: 1.6; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer-badges span {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(125,211,252,0.1);
    border: 1px solid rgba(125,211,252,0.2);
    color: #c9ecff;
    font-size: 0.86rem;
    font-weight: 700;
}
.footer-links {
    padding: 0;
    list-style: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.footer-links li { margin: 0; }
.footer-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: var(--text);
    font-weight: 600;
}
.footer-links a:hover { border-color: rgba(125,211,252,0.25); background: rgba(125,211,252,0.07); }
.footer-alert-card p { margin: 0 0 12px; line-height: 1.7; }
.footer-support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
    font-weight: 700;
}
.footer-support-link:hover { background: rgba(125,211,252,0.08); }
.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 16px 0 100px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer-legal-links { display: flex; gap: 12px; flex-wrap: wrap; }
.legal-link {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    color: var(--muted);
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}
.legal-link:hover { color: var(--text); border-color: rgba(125,211,252,0.25); }
.footer-copyline { color: var(--muted); font-weight: 600; }
.mobile-nav {
    position: fixed; left: 12px; right: 12px; bottom: max(12px, env(safe-area-inset-bottom)); z-index: 45;
    display:none; grid-template-columns: repeat(5, 1fr); gap: 8px; padding: 10px;
    background: rgba(10,15,23,0.96); border:1px solid rgba(255,255,255,0.08); border-radius: 28px; backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}
.mobile-nav a {
    text-align:center; font-size: 0.7rem; color: var(--muted); font-weight:700;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
    min-height:58px; padding:8px 4px; border-radius:18px;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--text); background: rgba(255,255,255,0.04); }
.mobile-nav-icon {
    width: 32px; height: 32px; border-radius: 12px; display:grid; place-items:center;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-icon svg { width: 18px; height: 18px; display:block; }
.flash-wrap { padding-top: 18px; }
.flash-message { border-radius: 18px; padding: 16px 18px; font-weight: 800; }
.flash-message.success { background: var(--success-bg); color: var(--success-text); }
.flash-message.error { background: var(--error-bg); color: var(--error-text); }
.form-grid { display:grid; gap: 16px; }
.field { display:grid; gap: 8px; }
label { font-weight: 700; }
input[type="text"], input[type="email"], input[type="datetime-local"], input[type="file"], input[type="password"], input[type="number"], textarea, select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
textarea { min-height: 140px; resize: vertical; }
.switch-row, .segmented { display:flex; gap:10px; flex-wrap:wrap; }
.segmented input { display:none; }
.segmented label {
    padding: 12px 16px; border-radius: 999px; border:1px solid var(--line); cursor:pointer; font-weight:700; color: var(--muted);
}
.segmented input:checked + label { background: rgba(125,211,252,0.12); color: var(--text); border-color: rgba(125,211,252,0.45); }
.gallery-controls { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.filter-btn {
    border:1px solid var(--line); background:rgba(255,255,255,0.04); color:var(--muted); padding:11px 16px; border-radius:999px; cursor:pointer; font-weight:700;
}
.filter-btn.active { color:#07131d; background:linear-gradient(135deg,var(--accent),var(--accent-2)); }
.media-grid { display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.media-card { overflow:hidden; position:relative; cursor:pointer; }
.media-card .thumb-wrap { aspect-ratio: 1 / 1; background:#0b1016; position:relative; }
.media-card img, .media-card video, .event-flyer img { width:100%; height:100%; object-fit:cover; }
.media-meta { padding: 16px; }
.badge-row { display:flex; gap:8px; flex-wrap:wrap; }
.badge { display:inline-flex; padding:7px 10px; border-radius:999px; background:rgba(255,255,255,0.08); color:var(--muted); font-size:0.82rem; font-weight:700; }
.play-badge {
    position:absolute; top:12px; right:12px; background:rgba(0,0,0,0.72); color:#fff; width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.modal { position: fixed; inset:0; z-index:100; display:none; }
.modal.open { display:block; }
.modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,0.72); }
.modal-panel {
    position:relative; z-index:2; width:min(960px, calc(100% - 20px)); margin: 20px auto; background:#0f1720; border:1px solid var(--line); border-radius:28px; padding: 22px; box-shadow:var(--shadow);
    max-height: calc(100vh - 40px); overflow:auto;
}
.media-modal-panel { width:min(1100px, calc(100% - 20px)); }
.modal-close {
    position:sticky; top:0; margin-left:auto; display:flex; align-items:center; justify-content:center; width:46px; height:46px; border-radius:50%; background:var(--danger); color:#fff; border:0; cursor:pointer; font-size:1.2rem;
}
.legal-content, .modal-panel { scrollbar-width: thin; scrollbar-color: var(--accent) rgba(255,255,255,0.06); }
.legal-content::-webkit-scrollbar, .modal-panel::-webkit-scrollbar { width: 10px; }
.legal-content::-webkit-scrollbar-thumb, .modal-panel::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }
.legal-panel { width:min(900px, calc(100% - 20px)); }
.legal-doc h2 { margin-top:0; }
.cookie-banner {
    position: fixed; left: 12px; right: 12px; bottom: 92px; z-index: 60;
    background: #0e1620; border:1px solid var(--line); border-radius:24px; padding: 18px; display:flex; gap:18px; justify-content:space-between; align-items:center; box-shadow:var(--shadow);
}
.cookie-banner.hidden { display:none; }
.cookie-actions { display:flex; gap:10px; flex-wrap:wrap; }
.contact-grid, .story-grid, .event-list { display:grid; gap: 20px; }
.contact-grid { grid-template-columns: 1fr 1fr; }
.story-grid { grid-template-columns: 0.95fr 1.05fr; align-items:stretch; }
.story-photo { min-height: 100%; background: linear-gradient(180deg, rgba(125,211,252,0.1), rgba(255,255,255,0.03)); border-radius: var(--radius); border:1px solid var(--line); overflow:hidden; }
.story-photo img { width:100%; height:100%; object-fit:cover; }
.event-card { display:grid; grid-template-columns: 290px 1fr; gap: 28px; padding: 22px; align-items: stretch; }
.event-flyer-shell { display:flex; }
.event-flyer { width:100%; border-radius: 26px; overflow:hidden; border:1px solid rgba(255,255,255,0.09); background:linear-gradient(180deg,#121b26,#0d141d); min-height: 390px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.03); }
.event-flyer img { object-fit: contain; background: #fff; }
.event-flyer-empty { min-height:100%; padding:24px; text-align:center; }
.event-card .event-meta { display:grid; gap: 16px; align-content:start; padding: 8px 2px; }
.event-date { font-size:1.02rem; font-weight:800; color: var(--accent); letter-spacing: 0.01em; }
.event-summary { margin: 0; max-width: 54ch; }
.event-description { line-height: 1.9; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 22px; padding: 18px 20px; }
.event-detail-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 560px; }
.event-detail-pill { padding: 14px 16px; border-radius: 18px; border:1px solid rgba(255,255,255,0.07); background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)); }
.event-detail-pill span { display:block; font-size:0.76rem; letter-spacing:0.14em; text-transform:uppercase; color: var(--muted); margin-bottom: 6px; }
.event-detail-pill strong { font-size:1rem; color: var(--text); }
.badge-price { color: #dff6ff; background: rgba(125,211,252,0.16); border: 1px solid rgba(125,211,252,0.18); }
.hidden-field { display:none !important; }
.center-box { display:grid; place-items:center; min-height: 60vh; }
.login-box { width:min(520px, calc(100% - 20px)); }
.admin-nav { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:20px; }
.tablet-split { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.list-clean { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.list-clean li { padding-left: 18px; position:relative; color:var(--muted); line-height:1.7; }
.list-clean li::before { content:''; width:8px; height:8px; border-radius:50%; background: var(--accent); position:absolute; left:0; top:11px; }
.muted { color:var(--muted); }
.loading-state { padding: 30px 0; color:var(--muted); text-align:center; }
.no-results { padding: 30px; text-align:center; border:1px dashed var(--line); border-radius: 24px; color:var(--muted); }
@media (max-width: 980px) {
    .hero-grid, .grid-3, .grid-4, .story-grid, .contact-grid, .tablet-split { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .grid-2, .media-grid, .event-card, .event-detail-grid { grid-template-columns: 1fr; }
    .desktop-nav { display:none; }
    .mobile-nav { display:grid; }
    .site-main { padding-bottom: 130px; }
    .event-flyer { min-height: 300px; }
    .event-meta { padding: 0; }
}
@media (max-width: 720px) {
    .hero { padding-top: 44px; }
    .stat-row { grid-template-columns: 1fr; }
    .site-header { position: static; }
    .cookie-banner { bottom: 110px; flex-direction:column; align-items:flex-start; }
    .footer-grid { gap: 16px; }
    .footer-card { padding: 20px; border-radius: 22px; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .footer-bottom { padding-bottom: 108px; }
    .footer-legal-links { width: 100%; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
    .legal-link { width: 100%; padding: 12px 10px; font-size: 0.82rem; }
    .footer-copyline { width: 100%; text-align: center; }
    .btn, .nav-pill { width: 100%; }
    .contact-points { margin-bottom: 22px; }
    .hero-actions .btn, .button-row .btn { width: auto; }
    .modal-panel { margin: 10px auto; max-height: calc(100vh - 20px); border-radius: 24px; }
}


/* ===== Visual refresh: brighter, more welcoming front-end ===== */
:root {
    --bg: #f4fbf3;
    --bg-soft: #eaf8f7;
    --card: rgba(255,255,255,0.86);
    --card-alt: rgba(255,255,255,0.76);
    --line: rgba(38, 85, 58, 0.10);
    --text: #1d2a1f;
    --muted: #4f6155;
    --accent: #56c271;
    --accent-2: #7fd8ff;
    --accent-3: #ffe27a;
    --accent-deep: #2d6b3c;
    --shadow: 0 24px 60px rgba(40, 74, 53, 0.14);
}
body {
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(127,216,255,0.35) 0%, rgba(127,216,255,0) 28%),
        radial-gradient(circle at top right, rgba(86,194,113,0.20) 0%, rgba(86,194,113,0) 34%),
        linear-gradient(180deg, #f9fffb 0%, #eef9f6 48%, #f8fbff 100%);
}
.site-header {
    background: rgba(255,255,255,0.70);
    border-bottom: 1px solid rgba(45,107,60,0.10);
    box-shadow: 0 12px 40px rgba(65, 106, 76, 0.08);
}
.header-row { min-height: 96px; }
.brand-image { display: inline-flex; align-items: center; }
.brand-image img {
    width: min(100%, 430px);
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 18px rgba(53, 92, 63, 0.10));
}
.desktop-nav a { color: #405246; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--accent-deep); }
.nav-pill, .btn {
    border: 0;
    box-shadow: 0 18px 34px rgba(76, 137, 93, 0.16);
}
.nav-pill::before, .btn::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.08));
}
.nav-pill, .btn-primary {
    background: linear-gradient(135deg, #7fd878 0%, #59c85c 38%, #7fd8ff 100%);
    color: #12331b !important;
    text-shadow: none;
}
.btn-secondary {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(237,255,245,0.92));
    color: #21472c;
    border: 1px solid rgba(45,107,60,0.12);
}
.btn-secondary:hover { background: linear-gradient(135deg, #ffffff, #f1fff5); }
.site-main > .hero,
.site-main > .page-hero,
.site-main > .section {
    position: relative;
    overflow: clip;
}
.site-main > .hero::before,
.site-main > .page-hero::before,
.site-main > .section::before {
    content: '';
    position: absolute;
    inset: 16px 0 0;
    z-index: -1;
    border-radius: 38px;
}
.site-main > .hero::before {
    background:
        linear-gradient(135deg, rgba(127,216,255,0.20), rgba(86,194,113,0.16)),
        linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.45));
}
.site-main > .page-hero::before {
    background: linear-gradient(135deg, rgba(86,194,113,0.12), rgba(255,226,122,0.16), rgba(127,216,255,0.14));
}
.site-main > .section:nth-of-type(odd)::before {
    background: linear-gradient(135deg, rgba(255,255,255,0.84), rgba(255,255,255,0.56)), radial-gradient(circle at top right, rgba(127,216,255,0.18), rgba(127,216,255,0));
}
.site-main > .section:nth-of-type(even)::before {
    background: linear-gradient(135deg, rgba(234,255,238,0.92), rgba(255,249,225,0.62)), radial-gradient(circle at bottom left, rgba(86,194,113,0.16), rgba(86,194,113,0));
}
.hero { padding: 86px 0 48px; }
.hero-copy p.lead, .lead, .section-subtitle, .muted, .list-clean li, .footer-copyline { color: var(--muted); }
.eyebrow { color: var(--accent-deep); }
.hero-copy h1, .page-hero h1, .section-title { color: #17301c; }
.stat-card, .card, .feature, .quote-card, .media-card, .timeline-card, .support-card, .contact-card, .admin-box,
.footer-card, .cookie-banner, .event-flyer, .event-detail-pill, .event-description, .mobile-nav, .legal-link, .footer-links a {
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,255,251,0.72));
    border: 1px solid rgba(55, 112, 74, 0.10);
    box-shadow: 0 18px 45px rgba(40,74,53,0.10);
}
.hero-panel.card {
    background:
        radial-gradient(circle at top right, rgba(127,216,255,0.22), rgba(127,216,255,0)),
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(244,255,247,0.74));
}
.pill {
    background: linear-gradient(135deg, rgba(86,194,113,0.16), rgba(127,216,255,0.18));
    color: #255536;
    border: 1px solid rgba(86,194,113,0.18);
}
.highlight-box {
    background: linear-gradient(135deg, rgba(127,216,255,0.18), rgba(86,194,113,0.14));
    border-left-color: #56c271;
}
.image-shell, .story-photo {
    background: linear-gradient(180deg, rgba(236,255,242,0.75), rgba(245,252,255,0.80));
    border-color: rgba(55,112,74,0.10);
}
.footer-copy { color: #2d4234; }
.footer-badges span {
    background: linear-gradient(135deg, rgba(127,216,255,0.24), rgba(86,194,113,0.18));
    color: #255536;
    border-color: rgba(86,194,113,0.18);
}
.footer-links a:hover, .footer-support-link:hover, .legal-link:hover {
    background: linear-gradient(135deg, rgba(127,216,255,0.20), rgba(86,194,113,0.12));
    border-color: rgba(86,194,113,0.20);
}
.footer-support-link {
    background: linear-gradient(135deg, #56c271, #7fd8ff);
    color: #103019;
    border: 0;
}
.footer-logo {
    width: min(100%, 370px);
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 8px 18px rgba(53, 92, 63, 0.10));
}
.mobile-nav {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(55,112,74,0.10);
    box-shadow: 0 18px 40px rgba(41,72,52,0.14);
}
.mobile-nav a { color: #526356; }
.mobile-nav a:hover, .mobile-nav a.active {
    color: #183620;
    background: linear-gradient(135deg, rgba(127,216,255,0.18), rgba(86,194,113,0.14));
}
.mobile-nav-icon {
    background: linear-gradient(180deg, rgba(127,216,255,0.20), rgba(86,194,113,0.12));
    border: 1px solid rgba(86,194,113,0.16);
}
.filter-btn { background: rgba(255,255,255,0.72); color: #516555; border-color: rgba(55,112,74,0.10); }
.filter-btn.active { color:#103019; background:linear-gradient(135deg,#7fd8ff,#7fdd7a); }
.badge {
    background: linear-gradient(135deg, rgba(127,216,255,0.20), rgba(86,194,113,0.14));
    color: #2e5a39;
    border: 1px solid rgba(86,194,113,0.10);
}
.play-badge { background: linear-gradient(135deg, rgba(86,194,113,0.92), rgba(127,216,255,0.92)); color: #103019; }
.modal-backdrop { background: rgba(16, 28, 22, 0.56); }
.modal-panel { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,255,250,0.92)); }
input[type="text"], input[type="email"], input[type="datetime-local"], input[type="file"], input[type="password"], input[type="number"], textarea, select {
    background: rgba(255,255,255,0.85);
    color: #1d2a1f;
    border: 1px solid rgba(55,112,74,0.14);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.6);
}
input:focus, textarea:focus, select:focus {
    border-color: #56c271;
    box-shadow: 0 0 0 4px rgba(86,194,113,0.12);
}
.segmented label {
    background: rgba(255,255,255,0.72);
    color: #546457;
    border-color: rgba(55,112,74,0.10);
}
.segmented input:checked + label {
    background: linear-gradient(135deg, rgba(127,216,255,0.24), rgba(86,194,113,0.18));
    color: #17311d;
    border-color: rgba(86,194,113,0.22);
}
.cookie-banner { color: #203224; }
.no-results {
    background: rgba(255,255,255,0.76);
    border-color: rgba(55,112,74,0.16);
}
.event-flyer { background: linear-gradient(180deg,#f5fff6,#eef8ff); }
.event-description { background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(245,255,248,0.72)); }
.event-date { color: #2d6b3c; }
.badge-price { color: #11411e; background: linear-gradient(135deg, rgba(255,226,122,0.44), rgba(127,216,255,0.22)); }
.flash-message.success { background: #dff8e6; color: #12321a; }
.flash-message.error { background: #f8d6d6; color: #7a1414; }
.site-footer {
    background: linear-gradient(180deg, rgba(225,245,232,0.42), rgba(247,255,250,0.90));
    border-top: 1px solid rgba(55,112,74,0.10);
}
@media (max-width: 980px) {
    .header-row {
        min-height: 86px;
        justify-content: center;
    }
    .brand-image img { width: min(100%, 330px); }
}
@media (max-width: 720px) {
    .hero { padding-top: 56px; }
    .brand-image img { width: 100%; max-width: 285px; }
    .site-main > .hero::before,
    .site-main > .page-hero::before,
    .site-main > .section::before {
        inset: 10px 0 0;
        border-radius: 28px;
    }
    .footer-logo { max-width: 280px; }
    .footer-grid { gap: 14px; }
}



/* Testimonials refresh */
.section-tight { padding: 22px 0 26px; }
.testimonials-shell { padding-inline: clamp(16px, 2vw, 24px); }
.testimonials-hero { padding-top: 34px; }
.testimonials-hero::before,
.testimonials-content::before,
.testimonials-home-section::before { inset: 0 !important; border-radius: 34px !important; }
.testimonials-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: 22px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: 34px;
    border: 1px solid rgba(45,107,60,0.10);
    background:
        radial-gradient(circle at top left, rgba(127,216,255,0.22), rgba(127,216,255,0) 42%),
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(240,255,244,0.88) 45%, rgba(255,248,227,0.86));
    box-shadow: 0 26px 54px rgba(58, 103, 70, 0.10);
}
.testimonials-hero-copy h1 {
    margin: 10px 0 14px;
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #16311c;
    max-width: 9ch;
}
.testimonials-hero-copy .lead { max-width: 34rem; font-size: 1.12rem; line-height: 1.8; }
.testimonials-hero-side {
    align-self: stretch;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(233,248,255,0.56));
    border: 1px solid rgba(45,107,60,0.10);
    display: grid;
    gap: 12px;
    align-content: start;
}
.testimonials-side-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(127,216,255,0.22), rgba(86,194,113,0.18));
    color: #275038;
    font-weight: 700;
}
.testimonials-hero-side h2 { margin: 0; font-size: clamp(1.45rem, 2vw, 2.1rem); line-height: 1.08; color: #183620; }
.testimonials-hero-side p { margin: 0; color: #4e6556; line-height: 1.8; }
.testimonials-content { padding-top: 8px; padding-bottom: 44px; }
.testimonials-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}
.testimonials-section-head .section-title { margin-bottom: 8px; }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.testimonial-card {
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,255,248,0.94));
    border: 1px solid rgba(45,107,60,0.10);
    box-shadow: 0 24px 48px rgba(53,96,63,0.09);
}
.testimonial-card-inner { padding: 22px; display:grid; gap:18px; height:100%; }
.testimonial-badges { margin-bottom: 2px; }
.testimonial-badges .badge { background: linear-gradient(135deg, rgba(127,216,255,0.20), rgba(86,194,113,0.12)); color:#33553d; }
.testimonial-quote-mark { font-family:'Cinzel',serif; font-size:4rem; line-height:0.8; color:rgba(86,194,113,0.28); margin-bottom:-8px; }
.testimonial-text { margin:0; font-size:1.04rem; line-height:1.9; color:#274434; }
.testimonial-media { border-radius:24px; overflow:hidden; background:linear-gradient(180deg,#effaf1,#eef9ff); border:1px solid rgba(45,107,60,0.10); }
.testimonial-image-shell { aspect-ratio: 4 / 4.7; }
.testimonial-image-shell img, .testimonial-video-shell video { width:100%; height:100%; display:block; object-fit:cover; }
.testimonial-video-shell video { aspect-ratio:4 / 5; background:#dcefe3; }
.testimonial-footer { margin-top:auto; display:flex; gap:12px; align-items:center; justify-content:space-between; padding-top:8px; border-top:1px solid rgba(45,107,60,0.10); }
.testimonial-name { font-size:1.02rem; color:#17301c; }
.testimonial-date { color:#5c7062; font-size:0.92rem; }
.testimonials-home-section .testimonials-home-grid { align-items: stretch; }
.testimonial-cta-card { display:grid; place-items:center; text-align:center; min-height: 260px; }
.mobile-nav { grid-template-columns: repeat(5, 1fr); }
.mobile-nav a span:last-child { display:none; }
.mobile-nav a { min-height:56px; padding:6px 2px; }
.mobile-nav-icon { width:36px; height:36px; border-radius:14px; }
.mobile-nav a.active .mobile-nav-icon, .mobile-nav a:hover .mobile-nav-icon { background:linear-gradient(135deg, rgba(127,216,255,0.28), rgba(86,194,113,0.28)); border-color:rgba(45,107,60,0.16); color:#23462c; }
@media (max-width: 1180px) { .testimonials-grid { grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (max-width: 980px) {
    .testimonials-hero-card { grid-template-columns: 1fr; }
    .testimonials-section-head { align-items: start; flex-direction: column; }
    .testimonials-grid { grid-template-columns:1fr; }
}
@media (max-width: 720px) {
    .header-row { min-height:88px; }
    .brand-image img { width:min(100%,310px); }
    .testimonials-shell { padding-inline: 14px; }
    .testimonials-hero { padding-top: 18px; }
    .testimonials-hero-card { padding:18px; border-radius:26px; gap:16px; }
    .testimonials-hero::before,
    .testimonials-content::before,
    .testimonials-home-section::before { border-radius: 26px !important; }
    .testimonials-hero-copy h1 { font-size: 2.4rem; max-width: 10ch; }
    .testimonials-hero-side { padding:18px; border-radius:22px; }
    .testimonial-card-inner { padding:18px; }
    .mobile-nav { gap: 8px; }
}


.gallery-controls-links .filter-btn { text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.gallery-grid-paged { min-height: 120px; }
.gallery-empty-message {
    grid-column: 1 / -1;
    padding: 46px 28px;
    border-style: solid;
    background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(242,255,245,0.78));
}
.pagination-bar {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(249,255,251,0.72));
    border: 1px solid rgba(55, 112, 74, 0.10);
    box-shadow: 0 18px 45px rgba(40,74,53,0.10);
}
.pagination-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; min-height: 46px; }
.pagination-actions-end { justify-content: flex-end; }
.pagination-status {
    font-weight: 800;
    color: #2f4d37;
    padding: 0 8px;
    white-space: nowrap;
}
.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    color: #17321c;
    background: linear-gradient(135deg, rgba(127,216,255,0.34), rgba(127,221,122,0.45));
    border: 1px solid rgba(86,194,113,0.18);
    box-shadow: 0 12px 24px rgba(76, 137, 93, 0.14);
}
.pagination-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(76, 137, 93, 0.18);
}
.thumb-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-action-row { display: flex; justify-content: flex-end; margin: 8px 0 14px; }
.modal-fullscreen-btn { width: auto; min-width: 154px; }
.modal-media-wrap { border-radius: 24px; overflow: hidden; }
.modal-media { width: 100%; display: block; border-radius: 24px; border: 1px solid rgba(55,112,74,0.12); }
@media (max-width: 720px) {
    .pagination-bar { padding: 16px; gap: 12px; }
    .pagination-status { width: 100%; text-align: center; order: -1; }
    .pagination-actions, .pagination-actions-end { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
    .mobile-nav {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        align-items: stretch;
    }

    .mobile-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-decoration: none;
        min-height: 64px;
        padding: 8px 4px;
    }

    .mobile-nav a span:last-child {
        display: block;
        font-size: 11px;
        line-height: 1.2;
        font-weight: 600;
        text-align: center;
        color: inherit;
        white-space: nowrap;
    }

    .mobile-nav-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
    }

    .mobile-nav-icon svg {
        width: 18px;
        height: 18px;
        display: block;
    }
}