/* Last Gary on Earth V2.8 — accessible, responsive production theme. */
:root {
    color-scheme: dark;
    --bg: #060606;
    --bg-rgb: 6, 6, 6;
    --surface: #111111;
    --surface-2: #181818;
    --surface-3: #202020;
    --text: #f5f0e6;
    --muted: #d0c7b5;
    --soft: #aaa08e;
    --line: rgba(214, 166, 60, .32);
    --line-strong: rgba(214, 166, 60, .72);
    --gold: #e0b34f;
    --gold-2: #c58a25;
    --gold-dark: #7a5317;
    --danger: #ff8c7b;
    --success: #86d39a;
    --shadow: 0 24px 80px rgba(0, 0, 0, .45);
    --container: 1180px;
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: Impact, "Arial Narrow", "Roboto Condensed", "Franklin Gothic Condensed", sans-serif;
}
html[data-theme="light"] {
    color-scheme: light;
    --bg: #f5f0e6;
    --bg-rgb: 245, 240, 230;
    --surface: #fffaf0;
    --surface-2: #fff4dc;
    --surface-3: #f1e3c8;
    --text: #17130d;
    --muted: #514638;
    --soft: #6b5b47;
    --line: rgba(110, 71, 17, .32);
    --line-strong: rgba(110, 71, 17, .68);
    --gold: #8b5b13;
    --gold-2: #b9781e;
    --gold-dark: #5f3d0e;
    --danger: #9f2519;
    --success: #216f37;
    --shadow: 0 18px 60px rgba(52, 34, 8, .15);
}

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

html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(circle at 70% 8%, rgba(214, 166, 60, .14), transparent 28rem),
        radial-gradient(circle at 10% 35%, rgba(111, 73, 18, .17), transparent 24rem),
        var(--bg);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
[hidden] { display: none !important; }

a { color: inherit; text-decoration-thickness: .09em; text-underline-offset: .18em; }
a:hover { color: var(--gold); }
main p a,
main li a,
main td a { text-decoration-line: underline; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; }
button,
input,
textarea,
select { font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
button:disabled { cursor: progress; opacity: .72; }
::selection { color: #080808; background: #e0b34f; }

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}
main:focus { outline: 0; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2rem, 900px); margin-inline: auto; }

.skip-link {
    position: fixed;
    left: 1rem;
    top: -10rem;
    z-index: 10000;
    padding: .8rem 1rem;
    color: #080808;
    background: #e0b34f;
    font-weight: 900;
}
.skip-link:focus { top: 1rem; }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
code {
    padding: .08rem .28rem;
    color: var(--gold);
    background: rgba(214, 166, 60, .08);
    border: 1px solid rgba(214, 166, 60, .24);
}

/* Typography */
.eyebrow {
    margin-bottom: .8rem;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .28em;
    text-transform: uppercase;
}
h1,
h2,
h3,
h4,
.display-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    line-height: .98;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-wrap: balance;
}
h1 { font-size: clamp(3.3rem, 9vw, 8.6rem); text-shadow: 0 4px 20px rgba(0, 0, 0, .45); }
h2 { font-size: clamp(2.05rem, 5.2vw, 4.1rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 2rem); }
p { margin: 0 0 1rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.32rem); }
.text-muted { color: var(--muted); }
.text-soft { color: var(--soft); }
.gold { color: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: .35rem; min-height: 44px; color: var(--gold); font-weight: 900; }
.text-link:hover { color: var(--text); }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(var(--bg-rgb), .9);
    border-bottom: 1px solid rgba(214, 166, 60, .22);
    backdrop-filter: blur(18px);
}
.header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
}
.logo-image-link { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.logo-image {
    width: 74px;
    height: 74px;
    object-fit: contain;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .46));
}
.logo-image-link:hover .logo-image { transform: scale(1.03); transition: transform .18s ease; }
.nav-toggle {
    display: none;
    min-height: 44px;
    align-items: center;
    gap: .5rem;
    padding: .65rem .8rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line-strong);
    font-weight: 900;
    text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: .15rem; }
.nav-link,
.drop-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: .35rem;
    padding: .75rem .62rem;
    color: var(--text);
    background: none;
    border: 0;
    cursor: pointer;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .055em;
    text-decoration: none;
    text-transform: uppercase;
}
.nav-link:hover,
.drop-button:hover,
.nav-link[aria-current="page"],
.dropdown-panel a[aria-current="page"] { color: var(--gold); }
.nav-link[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--gold); }
.has-dropdown { position: relative; }
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: .55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-panel a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: .65rem .75rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(214, 166, 60, .12);
    font-size: .88rem;
    text-decoration: none;
}
.dropdown-panel a:last-child { border-bottom: 0; }
.dropdown-panel a:hover { color: var(--gold); background: rgba(214, 166, 60, .08); }
.header-actions { display: flex; align-items: center; gap: .65rem; }
.theme-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line-strong);
    cursor: pointer;
}
.theme-toggle:hover { color: var(--gold); border-color: var(--gold); }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; }
.btn-row.compact { gap: .55rem; }
.btn,
button.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .82rem 1.15rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--line-strong);
    cursor: pointer;
    font-weight: 900;
    letter-spacing: .055em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .18s ease, border-color .18s ease, color .18s ease, filter .18s ease;
}
.btn-primary {
    color: #080808;
    background: linear-gradient(135deg, #e2b653, #c88d26);
    border-color: transparent;
    box-shadow: 0 10px 28px rgba(214, 166, 60, .2);
}
.btn:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-1px); }
.btn-primary:hover { color: #080808; filter: brightness(1.06); }
.btn-small { min-height: 44px; padding: .58rem .85rem; font-size: .78rem; }

/* Sections, grids and cards */
.section { padding: clamp(3.5rem, 7vw, 7rem) 0; border-top: 1px solid rgba(214, 166, 60, .14); }
.section-tight { padding: clamp(2.4rem, 5vw, 4.5rem) 0; }
.section-head { max-width: 880px; margin: 0 auto 2.25rem; text-align: center; }
.kicker-line { width: 76px; height: 4px; margin: .8rem auto 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.grid { display: grid; gap: 1.25rem; }
.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 {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .016));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.card-body { padding: clamp(1.1rem, 2.2vw, 1.55rem); }
.card-media { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--line); filter: saturate(.93) contrast(1.04); }
.card h3 { margin-bottom: .55rem; }
.card-link { display: inline-flex; min-height: 44px; align-items: center; color: var(--gold); font-size: .84rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.card-link::after { content: " →"; }
@media (hover: hover) {
    .card:hover { border-color: var(--line-strong); transform: translateY(-2px); transition: transform .18s ease, border-color .18s ease; }
}
.list-check { display: grid; gap: .72rem; padding: 0; margin: 1.25rem 0; list-style: none; }
.list-check li { position: relative; padding-left: 1.5rem; color: var(--muted); }
.list-check li::before { position: absolute; left: 0; color: var(--gold); content: "•"; font-weight: 900; }

/* Hero */
.hero {
    position: relative;
    display: grid;
    min-height: calc(100vh - 88px);
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(214, 166, 60, .2);
}
.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .94) 0%, rgba(0, 0, 0, .78) 40%, rgba(0, 0, 0, .16) 100%);
    content: "";
}
html[data-theme="light"] .hero::before { background: linear-gradient(90deg, rgba(255, 250, 240, .94), rgba(255, 250, 240, .76) 42%, rgba(255, 250, 240, .12)); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: clamp(4rem, 9vw, 7rem) 0; }
.hero-logo-mark { width: clamp(116px, 16vw, 180px); margin: 0 0 1.1rem; filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .65)); }
.hero-subtitle { max-width: 740px; font-size: clamp(1.35rem, 2.6vw, 2.15rem); line-height: 1.18; letter-spacing: .055em; text-transform: uppercase; text-wrap: balance; }
.hero-copy { max-width: 670px; color: var(--muted); font-size: 1.08rem; }
.trust-strip { position: relative; z-index: 3; margin-top: -42px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(var(--bg-rgb), .9); border: 1px solid var(--line); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.trust-item { display: flex; min-width: 0; align-items: center; gap: .9rem; padding: 1.25rem; border-right: 1px solid rgba(214, 166, 60, .18); }
.trust-item:last-child { border-right: 0; }
.trust-mark { flex: 0 0 auto; color: var(--gold); font-family: var(--font-display); font-size: 1.75rem; line-height: 1; }
.trust-label { min-width: 0; }
.trust-label strong { display: block; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.trust-label span { display: block; color: var(--muted); font-size: .79rem; letter-spacing: .04em; text-transform: uppercase; }

/* Interior pages */
.page-hero {
    padding: clamp(4.2rem, 8vw, 7rem) 0 clamp(2.4rem, 5vw, 4rem);
    background: radial-gradient(circle at 80% 0%, rgba(214, 166, 60, .14), transparent 25rem);
    border-bottom: 1px solid rgba(214, 166, 60, .18);
}
.page-hero h1 { font-size: clamp(3rem, 8vw, 7rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.2rem; color: var(--soft); font-size: .9rem; }
.breadcrumbs a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); }
.breadcrumbs span { display: inline-flex; align-items: center; }
.split { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; gap: clamp(1.5rem, 4vw, 4rem); }
.split-top { align-items: start; }
.feature-panel,
.form-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    background: linear-gradient(180deg, rgba(214, 166, 60, .08), rgba(255, 255, 255, .02));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.media-frame { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.media-frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.feature-logo { width: min(260px, 70%); margin: 0 auto 1.5rem; filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .45)); }
.area-links { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.area-links a { display: inline-flex; min-height: 44px; align-items: center; padding: .6rem .85rem; color: var(--muted); border: 1px solid var(--line); text-decoration: none; }
.area-links a:hover { color: var(--gold); border-color: var(--gold); }
.process-list { display: grid; gap: 1rem; padding: 0; margin: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 1rem; padding: 1rem; background: rgba(255, 255, 255, .025); border: 1px solid var(--line); }
.process-list li > span { display: grid; width: 48px; height: 48px; place-items: center; color: #080808; background: var(--gold); font-family: var(--font-display); font-size: 1.5rem; }
.process-list strong { display: block; margin-bottom: .25rem; text-transform: uppercase; }
.process-list p { margin: 0; color: var(--muted); }

/* Event cards */
.events-section { background: radial-gradient(circle at 18% 0%, rgba(214, 166, 60, .12), transparent 24rem); }
.event-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; align-items: stretch; gap: 1.25rem; }
.event-grid-balanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.event-card {
    position: relative;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    overflow: hidden;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.event-card::after { position: absolute; inset: auto -20% -35% 20%; height: 120px; background: radial-gradient(circle, rgba(214, 166, 60, .18), transparent 68%); content: ""; pointer-events: none; }
.event-card-featured { background: linear-gradient(145deg, rgba(214, 166, 60, .16), rgba(255, 255, 255, .024)); border-color: var(--line-strong); }
.event-date {
    display: grid;
    min-height: 92px;
    align-self: start;
    place-items: center;
    color: var(--gold);
    background: rgba(0, 0, 0, .25);
    border: 1px solid var(--line-strong);
    font-family: var(--font-display);
    line-height: .95;
    text-align: center;
}
html[data-theme="light"] .event-date { background: rgba(255, 255, 255, .35); }
.event-date span { display: block; color: var(--muted); font-size: .82rem; letter-spacing: .07em; text-transform: uppercase; }
.event-date strong { display: block; max-width: 82px; overflow-wrap: anywhere; font-size: 1.9rem; }
.event-body { position: relative; z-index: 1; }
.event-body h3 { margin-bottom: .55rem; }
.event-meta { margin-bottom: .35rem; color: var(--text); font-weight: 800; }
.event-facts { display: grid; gap: .75rem; margin-top: 1.25rem; }
.event-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.event-facts strong { color: var(--gold); text-transform: uppercase; }

/* Video */
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 1.25rem; }
.video-card { overflow: hidden; background: linear-gradient(180deg, rgba(255, 255, 255, .052), rgba(255, 255, 255, .018)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.video-title { font-size: clamp(1.65rem, 3vw, 2.6rem); }
.video-lite { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; background: #000; border-bottom: 1px solid var(--line); }
.video-lite > img,
.video-lite > iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .78);
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.65rem;
    transform: translate(-50%, -50%);
}
.video-play:hover { color: #080808; background: var(--gold); border-color: var(--gold); }
.video-booking-card { display: flex; flex-direction: column; justify-content: center; }

/* Forms */
.form-title { font-size: clamp(1.8rem, 4vw, 3rem); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { min-width: 0; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: .4rem; font-size: .82rem; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; }
input,
textarea,
select {
    width: 100%;
    min-height: 48px;
    padding: .85rem 1rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: 0;
}
select option { color: var(--text); background: var(--surface); }
textarea { min-height: 170px; resize: vertical; }
input:focus,
textarea:focus,
select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(214, 166, 60, .18); outline: 0; }
[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 2px color-mix(in srgb, var(--danger), transparent 70%); }
.field-hint { display: block; margin-top: .35rem; color: var(--soft); font-size: .84rem; }
.field-error { display: block; min-height: 1.25rem; margin-top: .3rem; color: var(--danger); font-size: .88rem; font-weight: 800; }
.checkbox-field { display: grid; grid-template-columns: 24px 1fr; gap: .65rem .75rem; align-items: start; }
.checkbox-field input { width: 22px; min-height: 22px; height: 22px; margin-top: .15rem; accent-color: var(--gold); }
.checkbox-field label { margin: 0; font-size: .92rem; letter-spacing: 0; line-height: 1.5; text-transform: none; }
.checkbox-field .field-error { grid-column: 2; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.alert { display: none; margin-top: 1rem; padding: .9rem 1rem; border: 1px solid var(--line-strong); }
.alert:has([data-message]:not(:empty)),
.alert-success,
.alert-error:not([data-validate-error]) { display: block; }
.alert-error { color: var(--text); background: color-mix(in srgb, var(--danger), transparent 88%); border-color: var(--danger); }
.alert-success { color: var(--text); background: color-mix(in srgb, var(--success), transparent 86%); border-color: var(--success); }
.form-status:focus { outline: 0; }
.contact-list { display: grid; gap: 0; padding: 0; margin: 1.25rem 0; list-style: none; border-top: 1px solid var(--line); }
.contact-list li { display: grid; gap: .2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-list strong { color: var(--gold); font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; }

/* FAQ and content */
.faq-list { display: grid; gap: .8rem; }
details { background: rgba(255, 255, 255, .03); border: 1px solid var(--line); }
summary { min-height: 52px; padding: 1rem 1.15rem; cursor: pointer; font-weight: 900; letter-spacing: .035em; text-transform: uppercase; }
details > div { padding: 0 1.15rem 1rem; color: var(--muted); }
.content-sections { display: grid; gap: 2rem; }
.content-sections section { padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.content-sections section:last-child { border-bottom: 0; }
.content-sections h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.content-sections h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
.notice { padding: 1rem 1.1rem; background: rgba(214, 166, 60, .08); border-left: 4px solid var(--gold); }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.gallery-item { margin: 0; background: var(--surface); border: 1px solid var(--line); }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-item figcaption { padding: .75rem .85rem; color: var(--muted); font-size: .88rem; }

/* CTA and footer */
.band-cta {
    background: linear-gradient(90deg, rgba(0, 0, 0, .96), rgba(71, 44, 12, .76)), url("../images/content/private-party.webp") center / cover;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.band-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 2.1rem 0; }
.site-footer { color: #eee4d2; background: #050505; border-top: 1px solid var(--line); }
html[data-theme="light"] .site-footer { color: #fff4df; background: #22190d; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 2rem; padding: 3rem 0; }
.footer-logo { display: inline-flex; }
.footer-logo-image { width: clamp(130px, 14vw, 190px); filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .48)); }
.footer-title { margin-bottom: .8rem; color: #e0b34f; font-family: var(--font-body); font-size: .92rem; font-weight: 900; letter-spacing: .075em; line-height: 1.3; text-transform: uppercase; }
.footer-links { display: grid; gap: .18rem; }
.footer-links a { display: flex; min-height: 40px; align-items: center; color: #d8cebd; font-size: .92rem; text-decoration: none; }
.footer-links a:hover { color: #e0b34f; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding: 1rem 0; color: #b9ad9a; border-top: 1px solid rgba(214, 166, 60, .18); font-size: .88rem; }
.social-links { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.2rem; }
.social-links a { display: grid; width: 44px; height: 44px; place-items: center; color: #fff4df; background: rgba(214, 166, 60, .08); border: 1px solid rgba(224, 179, 79, .65); }
.social-links a:hover { color: #080808; background: #e0b34f; border-color: #e0b34f; }
.social-links svg { width: 21px; height: 21px; fill: currentColor; }
.social-links svg rect,
.social-links svg circle { fill: none; stroke: currentColor; stroke-width: 2; }
.social-links .icon-cutout { fill: #050505; }
.social-links a:hover .icon-cutout { fill: #e0b34f; }

/* Cookie/storage notice */
.cookie-banner { position: fixed; z-index: 9998; left: 1rem; right: 1rem; bottom: 1rem; }
.cookie-box { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1rem; max-width: 980px; margin: 0 auto; padding: 1rem; background: rgba(var(--bg-rgb), .98); border: 1px solid var(--line-strong); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .6rem; }

/* Utilities */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.center { text-align: center; }
.right { text-align: right; }
.anchor-offset { scroll-margin-top: 110px; }
.table-wrap { overflow: auto; border: 1px solid var(--line); }
table { width: 100%; min-width: 700px; border-collapse: collapse; background: rgba(255, 255, 255, .03); }
th,
td { padding: .9rem 1rem; border-bottom: 1px solid rgba(214, 166, 60, .14); text-align: left; }
th { color: var(--gold); font-size: .84rem; letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1100px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: fixed;
        inset: 88px 0 auto;
        display: none;
        max-height: calc(100vh - 88px);
        overflow: auto;
        align-items: stretch;
        flex-direction: column;
        padding: 1rem;
        background: rgba(var(--bg-rgb), .99);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .nav-link,
    .drop-button { width: 100%; justify-content: space-between; text-align: left; }
    .nav-link[aria-current="page"] { box-shadow: inset 4px 0 0 var(--gold); }
    .has-dropdown .dropdown-panel {
        position: static;
        display: none;
        min-width: 0;
        margin: .2rem 0 .8rem;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }
    .has-dropdown.is-open .dropdown-panel { display: block; }
    .header-actions .btn-primary { display: none; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .event-grid,
    .event-grid-balanced { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
    .container,
    .container-narrow { width: min(100% - 1.25rem, var(--container)); }
    .hero { min-height: auto; }
    .hero-content { padding: 3.6rem 0 5rem; }
    h1 { font-size: clamp(3.1rem, 16vw, 5.2rem); }
    .trust-grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .split,
    .footer-grid,
    .form-grid,
    .video-grid { grid-template-columns: 1fr; }
    .trust-strip { margin-top: 0; }
    .trust-item { border-right: 0; border-bottom: 1px solid rgba(214, 166, 60, .18); }
    .trust-item:last-child { border-bottom: 0; }
    .band-cta-inner { align-items: flex-start; flex-direction: column; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .cookie-box { grid-template-columns: 1fr; }
    .btn-row:not(.compact) .btn { width: 100%; }
    .event-facts div { grid-template-columns: 1fr; gap: .2rem; }
}

@media (max-width: 480px) {
    .header-inner { min-height: 76px; }
    .site-nav { inset: 76px 0 auto; max-height: calc(100vh - 76px); }
    .logo-image { width: 62px; height: 62px; }
    .hero-logo-mark { width: 112px; }
    .event-card { grid-template-columns: 76px 1fr; }
    .event-date { min-height: 76px; }
    .event-date strong { max-width: 66px; font-size: 1.5rem; }
    .page-hero h1 { font-size: 2.75rem; overflow-wrap: anywhere; }
    .gallery-grid { grid-template-columns: 1fr; }
    .process-list li { grid-template-columns: 44px 1fr; }
    .process-list li > span { width: 42px; height: 42px; }
}

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

@media print {
    .site-header,
    .band-cta,
    .site-footer,
    .cookie-banner,
    .btn,
    .video-play { display: none !important; }
    body { color: #111; background: #fff; }
    .page-hero,
    .section { padding: 1.5rem 0; border: 0; }
    .card,
    .feature-panel,
    .form-card { box-shadow: none; break-inside: avoid; }
    a { color: #111; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* Final accessibility refinements */
.h3 { font-size: clamp(1.35rem, 2.6vw, 2rem); }
.has-dropdown > .dropdown-panel { visibility: hidden; }
.has-dropdown:hover > .dropdown-panel,
.has-dropdown.is-open > .dropdown-panel { visibility: visible; }
.has-dropdown.is-active > .drop-button { color: var(--gold); }
@media (max-width: 1100px) {
    .has-dropdown > .dropdown-panel { visibility: visible; }
}
