/*
Theme Name: Church
Description: Church venue theme
Version: 1.0.0
Author: Syren Digital
Text Domain: church
*/

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

p {
    font-family: "field-gothic-wide", sans-serif; font-weight: 400; font-style: normal;
}

h1, h2, h3, h4, h5 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--white);
}
h1 { font-size: clamp(29px, 4.2vw, 58px); }
h2 { font-size: clamp(17px, 2.4vw, 34px); }
h3 { font-size: clamp(22px, 3vw, 42px); }
h4 { font-size: clamp(16px, 2vw, 28px); }
h5 { font-size: clamp(13px, 1.4vw, 18px); }

:root {
    --ann-h: 30px;
    --nav-h: 100px;
    --bar-h: 88px;
    --orange: #FF4000;
    --yellow: #e89c03;
    --green:  #3a5408;
    --blue:   #0f4d91;
    --dark:   #292929;
    --white:  #FFF0E8;
    --header-h: calc(var(--ann-h) + var(--nav-h));
}

html { height: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; background: var(--white); font-family: 'Inter', sans-serif; color: var(--dark); display: flex; flex-direction: column; }
#main { flex: 1; }

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
    height: var(--ann-h);
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 80;
    overflow: hidden;
    padding: 0 28px;
}
.announcement-bar p {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
}
.ann-cta {
    background: var(--dark);
    color: var(--white);
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
    flex-shrink: 0;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}
.ann-cta:hover { background: var(--dark); color: var(--yellow); }

/* ── MAIN NAV ── */
.site-nav {
    height: var(--nav-h);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    position: sticky;
    top: var(--ann-h);
    z-index: 70;
    border-bottom: 1px solid var(--white);
}
.nav-home {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-home img { width: 28px; height: auto; }
.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Hamburger / × CLOSE button */
.nav-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 4px 0;
    flex-shrink: 0;
}
.hamburger-bars {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hamburger-bars span {
    display: block;
    width: 35px;
    height: 3px;
    background: var(--white);
    border-radius: 0;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s;
    position: relative;
}
.hamburger-bars.is-open span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}
.hamburger-bars.is-open span:nth-child(2) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    border-top: 1px solid var(--white);
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}
.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}
.footer-logos-label {
    font-size: 11px;
    color: var(--white);
}
.footer-logos-row {
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer-logo { height: 36px; width: auto; display: block; }
.footer-sep { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.footer-signup {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}
.footer-signup-label {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 1vw, 13px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}
.footer-signup-form {
    display: flex;
    border: 1px solid var(--white);
    overflow: hidden;
    width: clamp(280px, 36vw, 520px);
}
.footer-email-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: "field-gothic-wide", sans-serif;
    font-size: 14px;
    color: var(--white);
}
.footer-email-input::placeholder { color: rgba(255,240,232,0.45); }
.footer-subscribe-btn {
    flex-shrink: 0;
    background: var(--orange);
    border: none;
    padding: 14px 28px;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.footer-subscribe-btn:hover { background: var(--white); color: var(--dark); }
.footer-subscribe-btn:disabled { opacity: 0.6; cursor: default; pointer-events: none; }
.footer-signup-msg {
    margin-top: 10px;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.footer-signup-msg--success { color: var(--yellow); }
.footer-signup-msg--error   { color: var(--orange); }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-contact a {
    font-family: "field-gothic-wide", sans-serif;
    font-size: 13px;
    color:var(--white);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-contact span {
    font-family: "field-gothic-wide", sans-serif;
    font-size: 13px;
    color: var(--white);
}
.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}
.footer-legal p, .footer-legal a {
    font-family: "field-gothic-wide", sans-serif;
    font-size: 12px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}
.footer-legal a:hover { color: var(--yellow); }

@media (max-width: 899px) {
    footer { padding: 32px 24px; gap: 28px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 40px; }
    .footer-logos { width: 100%; }
    .footer-logos-row { gap: 20px; justify-content: start; }
    .footer-sep { height: clamp(20px, 5vw, 28px); }
    .footer-signup { align-items: stretch; width: 100%; }
    .footer-contact { gap: 15px; }
    .footer-signup-form { width: 100%; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal { flex-wrap: wrap; margin-top: 15px; gap: 10px; }
    .footer-legal p, .footer-legal a { font-size: 11px; }
}

@media (max-width: 480px) {
    .footer-email-input { min-width: 0; padding-left: 12px; padding-right: 12px; }
    .footer-subscribe-btn { padding-left: 16px; padding-right: 16px; }
}

/* ── SLIDE-OUT MENU ── */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.menu-overlay.active { opacity: 1; pointer-events: all; }

.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(500px, 100vw);
    background: var(--dark);
    z-index: 60;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    padding: calc(var(--header-h) + 6vh) 48px 6vh;
    overflow-y: auto;
    gap: 0;
    height: 100vh;
    border: none !important;
}
.menu-drawer.open { transform: translateX(0); }

.menu-nav-link {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(22px, 3.5vh, 38px);
    color: var(--white);
    text-decoration: none;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 2;
    transition: color 0.15s;
    display: block;
    flex-shrink: 0;
}
.menu-nav-link:hover, .menu-tagline:hover, .menu-contact a:hover { color: var(--yellow); }

.menu-footer {
    margin-top: auto;
    width: 100%;
    padding-top: 4vh;
}
.menu-tagline {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(22px, 3.5vh, 38px);
    color: var(--white);
    text-transform: uppercase;
    text-align: right;
    letter-spacing: 0.02em;
    line-height: 2;
    margin-bottom: 2vh;
    text-decoration: none;
    display: block;
    transition: opacity 0.15s;
}
.menu-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.menu-socials {
    display: flex;
    gap: 18px;
    align-items: center;
}
.menu-socials a { display: flex; align-items: center; color: var(--white); transition: color 0.18s; }
.menu-socials a:hover { color: var(--yellow); }
.menu-socials svg { display: block; }
.menu-contact {
    text-align: right;
    font-family: "field-gothic-wide", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(11px, 1.4vh, 14px);
    line-height: 1.8;
    color: var(--white);
}
.menu-contact a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.15s;
}

/* ── MODAL ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    z-index: 100;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-panel {
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.12);
    width: min(520px, 90vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 36px 36px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.15s;
    font-family: 'Inter', sans-serif;
}
.modal-close:hover { color: var(--white); }
.modal-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--white);
}
.modal-links { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.modal-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    color: var(--white);
    text-decoration: none;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.18s, border-color 0.18s;
}
.modal-link:hover { background: rgba(255,255,255,0.09); border-color: var(--orange); }
.modal-link-arrow { display: flex; align-items: center; flex-shrink: 0; }
.modal-bio {
    margin-top: 28px;
    color: var(--white);
    font-family: 'field-gothic-wide', sans-serif;
    font-size: 15px;
    line-height: 1.65;
}
.modal-bio p { margin: 0 0 1em; }
.modal-bio p:last-child { margin-bottom: 0; }
.modal-bio a { color: inherit; text-decoration: underline; }
.modal-img { margin-bottom: 24px; }
.modal-img img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── ACKNOWLEDGEMENT POPUP ── */
.ack-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.ack-overlay--visible {
    opacity: 1;
    pointer-events: all;
}
.ack-panel {
    max-width: 500px;
    width: 100%;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}
.ack-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}
.ack-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
    margin: 0;
}
.ack-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 16px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
    margin: 0;
}
.ack-btn {
    background: var(--white);
    color: var(--dark);
    border: none;
    padding: 14px 40px;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
}
.ack-btn:hover { background: var(--yellow); }

/* ── LAYOUTS ── */
.layout { width: 100%; }

/* ── FEATURED EVENTS SCROLL DRIVER ── */
.events-wrapper { position: relative; background: var(--white); }
.events-sticky {
    position: sticky;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    z-index: 3;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.events-track {
    flex: 0 0 calc(85vh - var(--header-h));
    height: calc(85vh - var(--header-h));
    display: flex;
    will-change: transform;
    transform: translateX(0);
}
.whats-on-peek {
    flex: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.whats-on-inner {
    width: 100%;
    max-width: 1400px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.whats-on-title { color: var(--dark); }
.whats-on-btn {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(12px, 1.1vw, 15px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    background: none;
    border: 2px solid var(--dark);
    padding: 12px 28px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
    flex-shrink: 0;
}
.whats-on-btn:hover { background: var(--dark); color: var(--white); }

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}
.whats-on-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    animation: bounce-down 1.6s ease-in-out infinite;
    transition: opacity 0.15s;
    flex-shrink: 0;
}
.whats-on-arrow:hover { opacity: 0.5; }
@media (max-width: 899px) { .whats-on-arrow { display: none; } }

/* ── EVENT CARD ── */
.event-card {
    flex: 0 0 30vw;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--white);
}
.event-card:last-child { border-right: 0; }

.card-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}
.card-date {
    position: absolute;
    top: 26px;
    left: 16px;
    right: 16px;
    z-index: 3;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(13px, 1.7vw, 22px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}
.card-img-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: var(--bar-h);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img-masked {
    width: 82%;
    aspect-ratio: 141.8 / 137.4;
    max-height: 100%;
    flex-shrink: 0;
    position: relative;
    margin-top: -20px;
}
.card-img-masked img,
.card-img-masked video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    clip-path: url('#arch');
    display: block;
}
.card-name {
    position: absolute;
    bottom: calc(var(--bar-h) + 18px);
    left: 14px;
    right: 14px;
    z-index: 3;
    font-family: 'Special Gothic Expanded One', sans-serif;
    line-height: 0.93;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    letter-spacing: 0.01em;
}
.card-name--large  { font-size: clamp(22px, 4.6vw, 80px); }
.card-name--medium { font-size: clamp(18px, 3.7vw, 64px); }
.card-name--small  { font-size: clamp(13px, 2.2vw, 38px); }
.event-card.has-support .card-name { bottom: calc(var(--bar-h) + var(--support-h) + 18px); }

/* ── SUPPORT ACTS STRIP ── */
:root { --support-h: 30px; }
.card-support {
    position: absolute;
    bottom: var(--bar-h);
    left: 50%;
    transform: translateX(-50%);
    height: var(--support-h);
    background: var(--yellow);
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    z-index: 3;
    white-space: nowrap;
}
.card-support p {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(9px, 0.8vw, 11px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── CARD BOTTOM BAR ── */
.card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bar-h);
    background: var(--dark);
    display: flex;
    align-items: stretch;
    z-index: 5;
    border-top: 1px solid var(--white);
}
.buy-tix {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0 22px;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(12px, 1.4vw, 17px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.18s;
    white-space: nowrap;
}
.buy-tix:hover { color: var(--orange); }
.buy-tix--two-line {
    white-space: normal;
    text-align: center;
    line-height: 1.1;
    max-width: 7ch;
}
.card-icon-btn {
    flex: 0 0 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
}
.card-icon-btn:hover span { color: var(--orange); }
.card-icon-btn img { width: 28px; height: auto; }
.card-icon-label {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 1.4vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
}
.card-desc {
    flex: 1;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-width: 0;
}
.card-desc p {
    font-size: clamp(10px, 0.9vw, 13px);
    line-height: 1.45;
    color: rgba(255,255,255,0.6);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-family: "field-gothic-wide", sans-serif;
}

/* ── FEATURED POSTER CARD ── */
.card-featured-png {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
}
.card-featured-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 28px 20px;
    text-align: center;
    overflow: hidden;
}
.card-featured-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(20px, 3.6vw, 58px);
    line-height: 0.93;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}
.card-featured-date {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(11px, 1.3vw, 17px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: 10px;
}
.card-featured-label {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 1.1vw, 15px);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    flex-shrink: 0;
    margin-top: auto;
}
.card-featured-artists {
    list-style: none;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: 100%;
    padding: 8px 0 0;
}
.card-featured-artists li {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(13px, 1.8vw, 26px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.card-featured-cta {
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    z-index: 5;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(11px, 1.1vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 32px;
    margin-top: auto;
    transition: opacity 0.18s;
}
.card-featured-cta:hover { opacity: 0.75; }

@media (max-width: 899px) {
    .card-featured-title { font-size: clamp(26px, 9vw, 58px); }
    .card-featured-date  { font-size: clamp(12px, 3.5vw, 17px); }
    .card-featured-label { font-size: clamp(11px, 3vw, 15px); }
    .card-featured-artists li { font-size: clamp(16px, 5.5vw, 26px); }
    .card-featured-cta { font-size: clamp(12px, 3vw, 14px); padding: 12px 28px; }
}

/* ── GENERIC CARD ── */
.event-card--generic .card-generic-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.event-card--generic img,
.event-card--generic video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ── MOBILE: stacked cards ── */
@media (max-width: 899px) {
    .events-wrapper { height: auto !important; }
    .events-sticky { position: static; height: auto; overflow: visible; display: block; }
    .events-track  { flex: none; flex-direction: column; height: auto; transform: none !important; }
    .whats-on-peek { height: auto; padding: 32px 24px; justify-content: flex-start; }
    .whats-on-inner { padding: 0; }
    .event-card {
        flex: none;
        width: 100%;
        height: 70vh;
        border-right: none;
        border-bottom: 1px solid var(--white);
    }
    .event-card:last-child { border-bottom: none; }
    .card-date { font-size: clamp(13px, 3.5vw, 18px); }
    .card-name--large  { font-size: clamp(32px, 12vw, 80px); }
    .card-name--medium { font-size: clamp(28px, 10vw, 64px); }
    .card-name--small  { font-size: clamp(20px,  7vw, 38px); }
    .buy-tix { font-size: clamp(12px, 3vw, 16px); padding: 0 18px; }
    .card-desc p { font-size: clamp(10px, 2.5vw, 13px); }
}

.container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

/* ── TEXT LAYOUT ── */
.layout-text { padding: 80px 0; }

/* WYSIWYG content styles */
.wysiwyg { color: var(--dark); font-family: "field-gothic-wide", sans-serif; }
.wysiwyg > * + * { margin-top: 1.25em; }
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3,
.wysiwyg h4, .wysiwyg h5, .wysiwyg h6 { color: var(--dark); margin-top: 1.5em; }
.wysiwyg h1:first-child, .wysiwyg h2:first-child,
.wysiwyg h3:first-child, .wysiwyg h4:first-child { margin-top: 0; }
.wysiwyg p { font-size: 17px; line-height: 1.7; color: var(--dark); }
.wysiwyg a { color: var(--orange); text-decoration: underline; transition: opacity 0.15s; }
.wysiwyg a:hover { opacity: 0.75; }
.wysiwyg ul, .wysiwyg ol { padding-left: 1.4em; }
.wysiwyg ul { list-style: disc; }
.wysiwyg ol { list-style: decimal; }
.wysiwyg li { font-size: 17px; line-height: 1.7; color: var(--dark); }
.wysiwyg li + li { margin-top: 0.4em; }
.wysiwyg strong { font-weight: 700; }
.wysiwyg em { font-style: italic; }
.wysiwyg blockquote {
    border-left: 3px solid var(--orange);
    padding-left: 1.25em;
    margin-left: 0;
    font-style: italic;
    color: rgba(41,41,41,0.7);
}
.wysiwyg img { max-width: 100%; height: auto; display: block; }
.wysiwyg hr { border: none; border-top: 1px solid rgba(41,41,41,0.15); margin: 2em 0; }

@media (max-width: 899px) {
    .container { padding-left: 24px; padding-right: 24px; }
    .layout-text { padding: 48px 0; }
}

/* ── WHAT'S ON LAYOUT ── */
.layout-whats-on { padding: 0 0 60px 0; scroll-margin-top: calc(var(--header-h) + 120px); }

/* Search bar */
.wo-search-wrap { margin-bottom: 40px; }
.wo-search-form { width: 50%; }
.wo-search-inner {
    display: flex;
    align-items: center;
    border: 1px solid var(--dark);
    background: transparent;
    overflow: hidden;
}
.wo-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 18px;
    font-family: "field-gothic-wide", sans-serif;
    font-size: 15px;
    color: var(--dark);
}
.wo-search-input::placeholder { color: rgba(41,41,41,0.4); }
.wo-search-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    border-left: 1px solid var(--dark);
    padding: 0 16px;
    height: 100%;
    min-height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--dark);
    transition: background 0.15s;
}
.wo-search-btn:hover { background: rgba(41,41,41,0.06); }

/* Grid */
.wo-grid {
    display: grid;
    gap: 1px;
}
.wo-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.wo-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.wo-card {
    display: flex;
    flex-direction: column;
    background: var(--dark);
    overflow: hidden;
    position: relative;
}
.wo-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}
.wo-card__img img,
.wo-card__img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.wo-card:hover .wo-card__img img,
.wo-card:hover .wo-card__img video { transform: scale(1.03); }

/* CTA badge */
.wo-card__cta {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 0.9vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    line-height: 1;
    z-index: 2;
}
.wo-card__cta--selling_fast { background: var(--orange); color: var(--dark); }
.wo-card__cta--free_event   { background: var(--blue);   color: var(--white); }

/* Card body */
.wo-card__body {
    padding: 18px 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.wo-card__name {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--white);
}
.wo-card__date {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 0.9vw, 13px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,240,232,0.6);
    line-height: 1;
}
.wo-card__supports {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.wo-card__support-pill {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(9px, 0.75vw, 11px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    line-height: 1;
    white-space: nowrap;
}
.wo-card__excerpt {
    font-family: "field-gothic-wide", sans-serif;
    font-size: clamp(11px, 0.9vw, 13px);
    line-height: 1.5;
    color: rgba(255,240,232,0.6);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card bar */
.wo-card__bar {
    display: flex;
    align-items: stretch;
    padding: 8px 0;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}
.wo-card__bar-spacer { flex: 1; }

/* No results */
.wo-no-results {
    font-family: "field-gothic-wide", sans-serif;
    color: rgba(41,41,41,0.5);
    padding: 40px 0;
}

@media (max-width: 1024px) {
    .wo-grid--cols-4 { grid-template-columns: repeat(3, 1fr); }
    .wo-search-form  { width: 70%; }
}
@media (max-width: 767px) {
    .wo-grid--cols-3,
    .wo-grid--cols-4 { grid-template-columns: repeat(2, 1fr); }
    .wo-search-form  { width: 100%; }
    .layout-whats-on { padding: 40px 0; }
}
@media (max-width: 480px) {
    .wo-grid--cols-3,
    .wo-grid--cols-4 { grid-template-columns: 1fr; }
}

/* ── FEATURED EVENT SINGLE PAGE ── */

/* Hero */
.fp-hero { min-height: 440px; }
.fp-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: stretch;
    min-height: 440px;
}
.fp-hero-content {
    flex: 1;
    min-width: 0;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}
.fp-hero-featuring {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(13px, 1.3vw, 17px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}
.fp-hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
}
.fp-cta {
    display: inline-block;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(12px, 1.1vw, 15px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    line-height: 1;
    transition: opacity 0.18s;
    cursor: pointer;
    white-space: nowrap;
}
.fp-cta:hover { opacity: 0.75; }
.fp-cta--primary { border: 2px solid currentColor; background: transparent; }
.fp-cta--secondary { background: var(--orange); color: var(--white); border: 2px solid var(--orange); }
.fp-hero-img-wrap {
    flex: 0 0 40%;
    aspect-ratio: 141.8 / 137.4;
    align-self: flex-end;
    position: relative;
    margin-top: 10px;
}
.fp-hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    clip-path: url('#arch');
}

/* Body */
.fp-body {
    background: var(--white);
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding: 56px 48px;
    max-width: 1400px;
    margin: 0 auto;
}
.fp-body-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Ticketing sections */
.fp-tick-heading { color: var(--dark); margin-bottom: 16px; }
.fp-tick-content { margin-top: 0; }

/* Video */
.fp-video { width: 100%; aspect-ratio: 16 / 9; }
.fp-video iframe,
.fp-video embed,
.fp-video object { display: block; width: 100%; height: 100%; }

/* Event info sidebar */
.fp-event-info { flex: 0 0 40%; }
.fp-info-box {
    background: var(--dark);
    padding: 28px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.fp-info-box-title {
    color: var(--white);
    margin-bottom: 8px;
}
.fp-info-row {
    padding: 14px 0;
    border-top: 1px solid rgba(255,240,232,0.15);
}
.fp-info-label {
    display: block;
    font-family: "field-gothic-wide", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,240,232,0.55);
    margin-bottom: 4px;
}
.fp-info-value {
    display: block;
    font-family: "field-gothic-wide", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--white);
}

/* Mobile */
@media (max-width: 899px) {
    .fp-hero { min-height: unset; }
    .fp-hero-inner { flex-direction: column; min-height: unset; padding: 0 24px; }
    .fp-hero-content { order: 2; padding: 36px 0 48px; justify-content: flex-start; }
    .fp-hero-img-wrap {
        order: 1;
        flex: none;
        width: 100%;
        aspect-ratio: 141.8 / 137.4;
        align-self: center;
        margin-top: 32px;
    }
    .fp-body { flex-direction: column; padding: 40px 24px; gap: 32px; }
    .fp-body-main { order: 2; width: 100%; }
    .fp-event-info { order: 1; flex: none; width: 100%; }
    .fp-info-box { position: static; }
}

/* ── Support Acts ── */
.fp-support { padding: 60px 0; }
.fp-support-heading { color: var(--dark); margin-bottom: 32px; }
.fp-support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.fp-support-card {
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 0;
}
.fp-support-card:hover .fp-support-img img { transform: scale(1.04); }
.fp-support-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 16px;
}
.fp-support-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.fp-support-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.fp-support-name {
    color: var(--dark);
}
.fp-support-plus {
    flex-shrink: 0;
    color: var(--dark);
    transition: transform 0.2s ease;
}
.fp-support-card:hover .fp-support-plus { transform: rotate(90deg); }
@media (max-width: 899px) {
    .fp-support { padding: 40px 0; }
    .fp-support-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 479px) {
    .fp-support-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT BANNER ── */
/*
 * Uses CSS border-image to apply the ornate SVG frame.
 * border-image slices the SVG into 9 regions: the 4 corners stay fixed,
 * the 4 edges stretch, and 'fill' paints the coloured centre — so the
 * box grows freely with its content without squishing the corner ornaments.
 * The SVG fill colour is substituted inline via PHP before encoding as a data URI.
 */
.ab-banner { padding: 47px 0 0; }

.ab-banner__inner {
    /* border-image-source is set via inline style (colour-swapped data URI) */
    border-style: solid;
    border-color: transparent;
    border-width: 40px;
    border-image-slice: 40;
    border-image-width: 40px;
    border-image-outset: 0;
    border-image-repeat: stretch;
}

.ab-banner__content {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 24px 32px;
}

.ab-banner__media {
    flex: 0 0 44%;
}

.ab-banner__fig {
    position: relative;
    margin: 0;
    line-height: 0;
}

.ab-banner__photo {
    width: 100%;
    height: auto;
    display: block;
}

.ab-banner__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32%;
    animation: ab-spin 14s linear infinite;
}

.ab-banner__icon img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes ab-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.ab-banner__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.ab-banner__title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(26px, 3.6vw, 52px);
    text-transform: uppercase;
    line-height: 1.05;
    color: var(--dark);
    margin: 0;
}

.ab-banner__subtitle {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(13px, 1.5vw, 20px);
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--dark);
    margin: 0;
}

.ab-banner__body {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.65;
    color: var(--dark);
}

.ab-banner__cta {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(11px, 0.9vw, 14px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 28px;
    border: 2px solid var(--dark);
    color: var(--dark);
    background: transparent;
    line-height: 1;
    transition: opacity 0.18s;
}

.ab-banner__cta:hover { opacity: 0.65; }

@media (max-width: 900px) {
    .ab-banner { padding: 32px 0; }
    .ab-banner__inner { border-width: 24px; border-image-slice: 40 fill; border-image-width: 24px; }
    .ab-banner__content { flex-direction: column; gap: 28px; padding: 16px 20px; }
    .ab-banner__media { flex: none; width: 100%; }
    .ab-banner__title { font-size: clamp(24px, 6vw, 36px); }
    .ab-banner__subtitle { font-size: clamp(13px, 3vw, 17px); }
}

/* ── MESSAGE BOX ── */
.mb-box { padding: 32px 0 64px; }

.mb-box__list {
    display: flex;
    align-items: stretch;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1.5px solid var(--white);
}

.mb-box__item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 28px;
    container-type: inline-size;
}

/* vertical divider between items */
.mb-box__divider {
    flex-shrink: 0;
    width: 1px;
    background: var(--white);
}

.mb-box__icon {
    height: 1.4em;
    width: auto;
    flex-shrink: 0;
    display: block;
}

.mb-box__text {
    font-family: 'Special Gothic Expanded One', sans-serif;
    /* cqi = % of the item's own inline size, so text scales with column width */
    font-size: clamp(11px, 5cqi, 40px);
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 680px) {
    .mb-box__list { flex-direction: column; }
    .mb-box__divider { width: auto; height: 1px; }
    .mb-box__item { justify-content: center; padding: 16px 20px; }
    .mb-box__text { font-size: clamp(14px, 5vw, 24px); white-space: normal; text-align: center; }
}

/* ── SUBSCRIBE ── */
.sub-section {
    background: var(--white);
    padding: 64px 0 80px;
}

.sub-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.sub-pre {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(12px, 1.3vw, 18px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0;
}

/* Hero: icon behind big text */
.sub-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sub-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(200px, 55vw, 500px);
    height: clamp(200px, 55vw, 500px);
    color: var(--orange);
    pointer-events: none;
}

.sub-graphic svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sub-big {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(56px, 17vw, 180px);
    text-transform: uppercase;
    line-height: 0.88;
    color: var(--dark);
    margin: 0;
    position: relative;
    z-index: 1;
    padding: clamp(32px, 5vw, 64px) 0;
}

.sub-message {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(16px, 2.4vw, 30px);
    text-transform: uppercase;
    color: var(--dark);
    max-width: 620px;
    margin: 0;
    line-height: 1.2;
}

.sub-body {
    font-size: clamp(13px, 1vw, 15px);
    color: var(--dark);
    max-width: 380px;
    margin: 0;
    line-height: 1.65;
}

/* Form */
.sub-form {
    display: flex;
    align-items: stretch;
    max-width: 480px;
    width: 100%;
}

.sub-email {
    flex: 1;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--dark);
    border-right: none;
    background: transparent;
    color: var(--dark);
    outline: none;
}

.sub-email::placeholder { color: #999; }
.sub-email:focus { border-color: var(--dark); }

.sub-btn {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(11px, 0.9vw, 13px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 24px;
    background: var(--orange);
    color: var(--dark);
    border: 2px solid var(--dark);
    cursor: pointer;
    transition: opacity 0.18s;
    white-space: nowrap;
    line-height: 1;
}

.sub-btn:hover { opacity: 0.8; }
.sub-btn:disabled { opacity: 0.6; cursor: wait; }

.sub-msg {
    font-size: 13px;
    margin: 0;
}

.sub-msg--success { color: var(--green); }
.sub-msg--error   { color: var(--orange); }

@media (max-width: 680px) {
    .sub-section { padding: 48px 0 64px; }
    .sub-inner { gap: 20px; }
    .sub-form { max-width: 100%; flex-direction: column; }
    .sub-email { border-right: 2px solid var(--dark); border-bottom: none; }
    .sub-message { font-size: clamp(16px, 5vw, 24px); }
}

/* ── PAGE HEADER ── */
.ph-header {
    padding: 48px 0 0;
    overflow: hidden;
}

.ph-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.ph-header__text {
    flex: 1;
    padding-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ph-header__title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(32px, 5.5vw, 76px);
    text-transform: uppercase;
    line-height: 0.93;
    margin: 0;
    color: currentColor;
}

.ph-header__sub {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.65;
    margin: 0;
    color: currentColor;
}

.ph-header__sub a {
    color: currentColor;
    text-decoration: underline;
}

.ph-header__media {
    flex: 0 0 38%;
    align-self: flex-end;
}

.ph-header__img-wrap {
    aspect-ratio: 141.8 / 137.4;
    position: relative;
    width: 100%;
}

.ph-header__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    clip-path: url('#arch');
}

@media (max-width: 760px) {
    .ph-header { padding: 40px 0 0; }
    .ph-header__inner { flex-direction: column; align-items: stretch; gap: 24px; }
    .ph-header__text { padding-bottom: 0; }
    .ph-header__media { flex: none; width: 60%; align-self: flex-end; }
}

/* ── QUICK LINKS ── */
.ql-section {
    background: var(--dark);
    padding: 0;
    position: sticky;
    top: var(--header-h);
    z-index: 60;
}

.ql-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 12px 0;
}

.ql-label {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 0.85vw, 13px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    flex-shrink: 0;
}

.ql-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ql-btn {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(10px, 0.85vw, 12px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid var(--white);
    background: transparent;
    padding: 8px 16px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.ql-btn:hover,
.ql-btn--active {
    background: var(--ql-hover, var(--white));
    color: var(--white);
    border-color: var(--white);
}

@media (max-width: 680px) {
    .ql-inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px 0; }
    .ql-nav { gap: 6px; }
    .ql-btn { font-size: 11px; padding: 8px 14px; }
}

/* ── FAQs ── */
.faq-section {
    padding: 56px 0 72px;
    scroll-margin-top: calc(var(--header-h) + 92px);
}

.faq-heading {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    text-transform: uppercase;
    color: currentColor;
    margin: 0 0 32px;
    line-height: 1;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 1px solid currentColor;
    margin-top: -1px;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q__text {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-size: clamp(12px, 1.2vw, 16px);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: currentColor;
    line-height: 1.2;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: currentColor;
}

.faq-icon::before { content: '+'; }
details[open] .faq-icon::before { content: '−'; }

.faq-a {
    padding: 4px 20px 24px;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.65;
    color: currentColor;
}

.faq-a a { color: currentColor; text-decoration: underline; }

/* Override wysiwyg hardcoded dark colours inside FAQ answers */
.faq-a.wysiwyg,
.faq-a.wysiwyg p,
.faq-a.wysiwyg li,
.faq-a.wysiwyg h1,
.faq-a.wysiwyg h2,
.faq-a.wysiwyg h3,
.faq-a.wysiwyg h4,
.faq-a.wysiwyg h5,
.faq-a.wysiwyg h6 { color: currentColor; }

@media (max-width: 680px) {
    .faq-section { padding: 40px 0 56px; }
    .faq-heading { margin-bottom: 24px; }
    .faq-q { padding: 14px 16px; }
    .faq-a { padding: 4px 16px 20px;}
    .faq-a p {font-size: 14px;}
}
