﻿/*
 * Self-hosted Playlist Script.
 * Place your font files in /assets/fonts/ and uncomment/adjust the formats
 * you have. At minimum, provide a .woff2 for best compression.
 */
@font-face {
    font-family: "Playlist Script";
    src: url("/assets/fonts/Playlist%20Script.woff2") format("woff2"),
         url("/assets/fonts/Playlist%20Script.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

/* Brand: use Playlist Script with robust fallbacks */
.brand {
    font-family: "Playlist Script", Georgia, serif;
}

:root {
    --bg: #fdfbf7;
    --bg-contrast: #f7f2ea;
    --text: #0f0f0f;
    --muted: #4c4c4c;
    --card: #ffffff;
    --border: #0f0f0f;
    --accent: #8c1127;
    --accent-strong: #700d20;
    --radius: 14px;
    --header-height: 96px;
    --section-scroll-offset: var(--header-height);
    color-scheme: light;
}

    :root.dark {
        --bg: #0f0f0f;
        --bg-contrast: #151515;
        --text: #f5f1ea;
        --muted: #b8b3aa;
        --card: #111111;
        --border: #f5f1ea;
        --accent: #cf3051;
        --accent-strong: #e94a68;
        color-scheme: dark;
    }

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: calc(var(--radius) - 4px);
    border: 1px solid var(--border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
}

/* ── Skip link ───────────────────────────────────────────── */
.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    font-weight: 600;
}

    .skip-link:focus {
        left: 18px;
    }

/* ── Site header ─────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(247, 242, 234, 0.95);
    border-bottom: 1px solid var(--border);
    transition: transform 200ms ease;
}

:root.dark .site-header {
    background: rgba(21, 21, 21, 0.92);
}

:root.dark .brand {
    color: var(--text);
    -webkit-text-stroke: 0;
    text-stroke: 0;
    text-shadow: none;
}

:root.dark .tagline {
    color: var(--muted);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 14px;
    flex-wrap: wrap;
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    flex: 0 0 auto;
}

.brand {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: clamp(1.8rem, 8vw, 4.0rem);
    line-height: 1.80;
    margin-bottom: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    color: #470106;
    -webkit-text-stroke: 0.2px #000;
    text-stroke: 0.2px #000;
    text-shadow: -0.22px -0.22px 0 #000, 0.22px -0.22px 0 #000, -0.22px 0.22px 0 #000, 0.22px 0.22px 0 #000;
}

.tagline {
    font-size: 1rem;
    color: #470106;
    letter-spacing: 0.01em;
    line-height: 1.3;
    margin-top: -25px;
    margin-bottom: 5px;
    transform: translateZ(0);
    font-style: italic;
    text-shadow: 0 0 1px #111111;
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 1 1 auto;
    row-gap: 8px;
}

    .nav > * {
        flex-shrink: 0;
    }

    .nav a,
    .nav button {
        padding: 10px 12px;
        border-radius: 12px;
        border: 1px solid transparent;
        font-weight: 600;
        white-space: nowrap;
    }

        .nav a:hover,
        .nav a:focus-visible {
            border-color: var(--border);
            background: var(--card);
        }

/* ── Social icons ────────────────────────────────────────── */
.social-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    padding: 10px;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

    .icon-button:hover,
    .icon-button:focus-visible {
        background: var(--bg-contrast);
        box-shadow: var(--shadow);
        transform: translateY(-1px);
        outline: none;
    }

    .icon-button svg {
        width: 48px;
        height: 48px;
        fill: currentColor;
    }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    padding: 42px 0 42px;
    position: relative;
}

/*
 * Background overlay opacity — adjust per mode & breakpoint:
 *   --bg-overlay-opacity  (light mobile)   → base value
 *   dark mobile           → :root.dark override
 *   light desktop         → @media (min-width: 720px)
 *   dark desktop          → @media + :root.dark
 */
:root {
    --bg-overlay-opacity: 0.40;          /* light mobile */
}

:root.dark {
    --bg-overlay-opacity: 0.50;          /* dark mobile */
}

@media (min-width: 720px) {
    :root {
        --bg-overlay-opacity: 0.30;      /* light desktop */
    }
    :root.dark {
        --bg-overlay-opacity: 0.075;      /* dark desktop */
    }
}

/* Translucent background-image overlays for lighter sections */
.hero::before,
.section#services::before,
.section#about::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: var(--bg-overlay-opacity);
    pointer-events: none;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before        { background-image: url("/assets/img/Misc/bg_white00.jpg"); }
.section#services::before { background-image: url("/assets/img/Misc/bg_white00a.jpg"); }
.section#about::before    { background-image: url("/assets/img/Misc/bg_white00b.jpg"); }

:root.dark .hero::before        { background-image: url("/assets/img/Misc/bg_black00.jpg"); }
:root.dark .section#services::before { background-image: url("/assets/img/Misc/bg_black00a.jpg"); }
:root.dark .section#about::before    { background-image: url("/assets/img/Misc/bg_black00b.jpg"); }

/* Ensure section content sits above the overlay */
.hero > .container,
.section#services > .container,
.section#about > .container {
    position: relative;
    z-index: 1;
}

.section#services,
.section#about {
    position: relative;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    margin: 0 0 8px;
    color: var(--muted);
}

/* ── Typography ──────────────────────────────────────────── */
h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: -0.015em;
}

h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 3vw, 2rem);
    letter-spacing: -0.01em;
}

h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
}

h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.lead {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 70ch;
    margin: 0 0 20px;
}

/* ── Sections ────────────────────────────────────────────── */
.section {
    padding: 42px 0;
    border-top: 1px solid var(--border);
}

.section-contrast {
    background: var(--bg-contrast);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.about-header {
    margin-bottom: 0;
}

.muted {
    color: var(--muted);
    margin: 0;
}

/* ── Shared flex rows ────────────────────────────────────── */
.hero-actions,
.link-row,
.footer-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.panel-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.inline-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.85rem;
}

    .inline-list li {
        padding: 3px 9px;
        border: 1px solid var(--border);
        border-radius: 999px;
        background: var(--bg-contrast);
    }

/* ── Button ──────────────────────────────────────────────── */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    background: #470106;
    color: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

    .button:hover,
    .button:focus-visible {
        background: #2f0104;
        box-shadow: var(--shadow);
        transform: translateY(-1px);
        outline: none;
    }

    :root.dark .button:not(.button-secondary) {
        background: #470106;
    }

    :root.dark .button:not(.button-secondary):hover,
    :root.dark .button:not(.button-secondary):focus-visible {
        background: #5e0a10;
    }

    .button.button-secondary {
        background: var(--card);
        color: var(--text);
        border: 1px solid var(--border);
    }

        .button.button-secondary:hover,
        .button.button-secondary:focus-visible {
            background: var(--card);
        }

/* ── Events ──────────────────────────────────────────────── */
.section#events .events-list {
    display: grid;
    gap: 14px;
}

.event-card {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}

.event-date {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0 0 4px;
}

.event-location {
    margin: 4px 0 0;
    color: var(--muted);
}

/* ── Accordion ───────────────────────────────────────────── */
.accordion {
    display: grid;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: transparent;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text);
}

    .accordion-trigger:hover,
    .accordion-trigger:focus-visible {
        background: var(--bg-contrast);
        outline: 1px solid var(--border);
    }

.chevron {
    font-size: 1.1rem;
    transition: transform 160ms ease;
}

.accordion-item[open] .chevron,
.accordion-trigger[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.accordion-panel {
    border-top: 1px solid var(--border);
    padding: 16px 18px;
}

    .accordion-panel[hidden] {
        display: none;
    }

/* ── Panel layout (service cards) ────────────────────────── */
/*
 *  Desktop grid areas:
 *  ┌─────────────┬──────────┐
 *  │  content    │  photo   │
 *  ├─────────────┤          │
 *  │  menus      │          │
 *  └─────────────┴──────────┘
 *
 *  Mobile: stacks as content → photo → meta
 */
.panel-layout {
    display: grid;
    grid-template-areas:
        "content"
        "photo"
        "meta";
    gap: 0;
}

.panel-left {
    display: contents;
}

.panel-content {
    grid-area: content;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .panel-content p {
        margin: 0;
        line-height: 1.6;
        font-size: 0.95rem;
    }

.panel-right {
    grid-area: photo;
}

.panel-meta {
    grid-area: meta;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    display: grid;
    gap: 4px;
    font-size: 0.9rem;
}

    .panel-meta .muted {
        font-size: 0.85rem;
    }

.lightbox-trigger {
    cursor: pointer;
}

/* ── Menus list ──────────────────────────────────────────── */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

    .menu-list a {
        text-decoration: underline;
        text-decoration-thickness: 1.5px;
        text-underline-offset: 3px;
    }

/* ── About section (uses panel-grid) ─────────────────────── */
.panel-grid {
    display: grid;
    gap: 0;
    row-gap: 14px;
}

/*
 * Mobile ordering: header (1) → photo (2) → bio (3)
 * Natural HTML order already matches, so no explicit order needed.
 */
.section#about .card {
    align-self: start;
    max-width: 375px;
}

    .section#about .card img {
        width: 100%;
        height: auto;
        max-height: 420px;
        object-fit: cover;
    }

/* ── Contact ─────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: var(--shadow);
}

    .contact-grid h3 {
        margin: 0;
    }

    .contact-grid p {
        margin: 0 0 20px;
    }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 26px 0;
    margin-top: 0;
    background: var(--bg-contrast);
}

.site-footer small {
    color: #470106;
}

:root.dark .site-footer small {
    color: var(--muted);
}

.footer-row {
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Utilities ───────────────────────────────────────────── */
.top-space {
    margin-top: 16px;
}

.divider {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}

/* ── Lightbox overlay ────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, 0.92);
    z-index: 2000;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-img-wrap {
    position: relative;
    display: inline-flex;
    max-width: min(90vw, 960px);
    max-height: 85vh;
    border-radius: var(--radius);
    overflow: hidden;
    z-index: 1;
}

/* gradient scrim that only appears when a caption is present */
.lightbox-img-wrap:has(.lightbox-caption:not(:empty))::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
    border-radius: 0 0 var(--radius) var(--radius);
    pointer-events: none;
}

.lightbox-img {
    max-width: min(90vw, 960px);
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    user-select: none;
    transition: oppacity 200ms ease;
}

.lightbox-img.is-loading {
    opacity: .70;
}

/* Spinner shown on the image wrap while a new image is loading */
.lightbox-img-wrap.is-loading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.18);
    border-top-color: rgba(255, 255, 255, 0.9);
    animation: lb-spin 0.7s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes lb-spin {
    to { transform: rotate(360deg); }
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 150ms ease;
    z-index: 3;
}

    .lightbox-close:hover,
    .lightbox-close:focus-visible {
        background: rgba(255, 255, 255, 0.15);
    }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.8rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms ease;
    z-index: 3;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

    .lightbox-prev:hover,
    .lightbox-prev:focus-visible,
    .lightbox-next:hover,
    .lightbox-next:focus-visible {
        background: rgba(255, 255, 255, 0.25);
    }

.lightbox-caption {
    position: absolute;
    bottom: 14px;
    left: 16px;
    right: 16px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ── Video modal overlay ──────────────────────────────────── */
.video-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, 0.92);
    z-index: 2000;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-wrap {
    position: relative;
    width: min(90vw, 960px);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-modal-player {
    width: 100%;
    max-height: 80vh;
    border-radius: var(--radius);
    background: #000;
    box-shadow: var(--shadow);
}

.video-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 150ms ease;
    z-index: 1;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
    background: rgba(255, 255, 255, 0.15);
}

.video-modal-caption {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
    letter-spacing: 0.01em;
}

.video-modal-caption:empty {
    display: none;
}

/* ── Portfolio thumbnail ─────────────────────────────────── */
.portfolio-thumb {
    position: relative;
    margin: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    height: 100%;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border: none;
    transition: transform 300ms ease;
}

.portfolio-thumb:hover img,
.portfolio-thumb:focus-visible img {
    transform: scale(1.03);
}

.portfolio-thumb::after {
    content: "Click to view portfolio";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12px;
    white-space: nowrap;
    padding: 2px 10px;
    border-radius: 12px;
    text-align: center;
    font-size: clamp(0.75rem, 3.5cqi, 1rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0f0f0f;
    background: rgba(245, 241, 234, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

:root.dark .portfolio-thumb::after {
    color: #fff;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ── Accent inline link ──────────────────────────────────── */
.link-accent {
    color: #470106;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
    font-weight: 600;
}

    .link-accent:hover,
    .link-accent:focus-visible {
        color: #2f0104;
    }

:root.dark .link-accent {
    color: #8a2b35;
}

    :root.dark .link-accent:hover,
    :root.dark .link-accent:focus-visible {
        color: #bf6b72;
    }

/* ── Responsive ──────────────────────────────────────────── */
@media (min-width: 720px) {
    .hero {
        padding: 48px 0 48px;
    }

    .panel-layout {
        grid-template-columns: 1fr minmax(0, 30%);
        grid-template-rows: 1fr auto;
        grid-template-areas:
            "content photo"
            "meta    photo";
        column-gap: 20px;
        row-gap: 0;
    }

    .panel-content {
        align-self: stretch;
        padding-bottom: 16px;
    }

    .panel-right {
        align-self: stretch;
    }

    .portfolio-thumb {
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: 100%;
    }

    .panel-grid {
        grid-template-columns: 1.1fr 1fr;
        grid-template-rows: auto 1fr;
        align-items: start;
    }

    /* Desktop: text spans the left column, photo the right */
    .panel-grid > .about-header { grid-area: 1 / 1 / 2 / 2; }
    .panel-grid > .about-body   { grid-area: 2 / 1 / 3 / 2; margin-top: 0; }
    .panel-grid > .card          { grid-area: 1 / 2 / 3 / 3; justify-self: end; align-self: start; margin-top: calc(clamp(1.6rem, 3vw, 2rem) * 1.6 + 10px); }
}

@media (min-width: 881px) and (max-width: 1400px) {
    .header-row {
        align-items: flex-start;
    }

    .nav {
        flex: 1 1 100%;
        justify-content: flex-start;
        margin-left: -12px;
    }
}

@media (max-width: 880px) {
    :root {
        --section-scroll-offset: 0px;
    }

    .header-row {
        align-items: flex-start;
        padding: 8px 6px 10px;
    }

    .brand-block {
        padding-left: 8px;
        max-width: 100%;
    }

    .brand {
        line-height: 1.4;
        font-size: clamp(2.8rem, 10vw, 3.2rem);
    }

    .tagline {
        margin-top: -8px;
        font-size: 0.85rem;
    }

    .nav {
        justify-content: flex-start;
        gap: 8px;
    }

    #themeToggle {
        margin-left: 10px;
    }

        .nav a,
        .nav button {
            padding: 8px 10px;
        }

    .social-links {
        gap: 4px;
    }

    .icon-button {
        width: 52px;
        height: 52px;
        padding: 8px;
    }

        .icon-button svg {
            width: 40px;
            height: 40px;
        }

    .site-header.is-hidden {
        transform: translateY(calc(-100% - 1px));
    }
}

@media (max-width: 719px) {
    .panel-content {
        padding-bottom: 0;
    }

    .panel-layout {
        gap: 16px;
    }
}

@media (max-width: 800px) {
    .accordion-trigger {
        align-items: flex-start;
    }

    .event-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Scroll offset for fixed header ─────────────────────── */
.section,
.hero {
    scroll-margin-top: var(--section-scroll-offset);
}
