/*
|--------------------------------------------------------------------------
| Event Organiser / David Homepage Theme
|--------------------------------------------------------------------------
|
| Bespoke Event Organiser theme.
| Colours are supplied by the active theme/admin settings through the
| CSS variables created in header.blade.php.
|
*/


/* ==========================================================================
   GLOBAL THEME
   ========================================================================== */

/* Disable text selection across the site */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Ensure form fields and editable areas allow text selection */
input, 
textarea, 
[contenteditable="true"],
.allow-select {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.event_organiser-homepage {
    width: 100%;
    overflow: hidden;
}

.event-header,
.event-header *,
.event-mobile-menu,
.event-mobile-menu * {
    box-sizing: border-box;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.event-header {
    position: relative;
    width: 100%;
    z-index: 1050;
    background: var(--event-header-bg);
}

.event-header-main {
    position: relative;
    width: 100%;
    background: var(--event-header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-header-container {
    width: min(1380px, calc(100% - 48px));
    margin: 0 auto;
}

.event-header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 30px;
}


/* ==========================================================================
   LOGO
   ========================================================================== */

.event-header-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.event-header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.event-header-logo img {
    display: block;
    width: auto;
    max-width: 230px;
    max-height: 66px;
    object-fit: contain;
}


/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */

.event-header-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.event-header-navigation nav {
    width: auto;
}

.event-navigation {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.event-navigation > li {
    position: relative;
    list-style: none;
}

.event-navigation > li > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 34px 13px;
    color: var(--event-menu-colour);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.02em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.event-navigation > li > a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 23px;
    height: 1px;
    background: var(--event-hover-colour);
    transform: scaleX(0);
    transform-origin: centre;
    transition: transform 0.25s ease;
}

.event-navigation > li:hover > a,
.event-navigation > li:focus-within > a {
    color: var(--event-hover-colour);
}

.event-navigation > li:hover > a::after,
.event-navigation > li:focus-within > a::after {
    transform: scaleX(1);
}

.event-navigation > li > a i {
    font-size: 11px;
}


/* ==========================================================================
   DROPDOWNS
   ========================================================================== */

.event-submenu {
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 230px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: var(--event-dropdown-bg);
    border-radius: 4px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
    z-index: 1100;
}

.event-navigation > li:hover > .event-submenu,
.event-navigation > li:focus-within > .event-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.event-submenu li {
    display: block;
    width: 100%;
    list-style: none;
}

.event-submenu li a {
    display: block;
    padding: 11px 18px;
    color: var(--event-dropdown-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.event-submenu li a:hover,
.event-submenu li a:focus {
    color: var(--event-dropdown-hover);
    padding-left: 22px;
}


/* ==========================================================================
   HEADER ACTIONS
   ========================================================================== */

.event-header-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
}

.event-header-icon-btn,
.event-header-cart,
.event-header-account {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--event-menu-colour);
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.event-header-icon-btn:hover,
.event-header-cart:hover,
.event-header-account:hover {
    color: var(--event-hover-colour);
    background: rgba(255, 255, 255, 0.06);
}


/* ==========================================================================
   SOCIAL ICONS
   ========================================================================== */

.event-header-social {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 2px;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.event-header-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--event-social-colour);
    text-decoration: none;
    font-size: 13px;
    border-radius: 50%;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.event-header-social a:hover {
    color: var(--event-social-hover);
    transform: translateY(-2px);
}

.event-header-social img {
    width: 11px;
    height: 11px;
    object-fit: contain;
}


/* ==========================================================================
   CART COUNT
   ========================================================================== */

.event-cart-count {
    position: absolute;
    top: 1px;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--event-accent-bg);
    color: var(--event-accent-text);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}


/* ==========================================================================
   LOGIN / REGISTER
   ========================================================================== */

.event-header-auth {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
}

.event-login-link,
.event-register-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 9px 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--event-menu-colour);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-login-link:hover,
.event-register-link:hover {
    background: transparent;
    border-color: transparent;
    color: var(--event-hover-colour);
}

.event-register-link::before {
    content: "";
    width: 1px;
    height: 13px;
    margin-right: 10px;
    background: var(--event-menu-colour);
    opacity: 0.3;
}

/* ==========================================================================
   BOOK A READING BUTTON
   ========================================================================== */

.event-header-booking {
    display: flex;
    align-items: center;
    margin-left: 4px;
}

.event-booking-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: 1px solid var(--event-booking-bg);
    border-radius: 3px;
    background: var(--event-booking-bg);
    color: var(--event-booking-text);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.025em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.event-booking-btn:hover {
    background: transparent;
    color: var(--event-hover-colour);
    border-color: var(--event-hover-colour);
    transform: translateY(-1px);
}


/* ==========================================================================
   MOBILE TOGGLE
   ========================================================================== */

.event-mobile-toggle {
    width: 42px;
    height: 42px;
    display: none;
    align-items: centre;
    justify-content: centre;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.event-mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--event-menu-colour);
    transition: background 0.2s ease;
}

.event-mobile-toggle:hover span {
    background: var(--event-hover-colour);
}


/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */

.event-search-panel {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 110px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.event-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.event-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(5px);
}

.event-search-box {
    position: relative;
    z-index: 2;
    width: min(680px, calc(100% - 40px));
    padding: 38px;
    border-radius: 16px;
    background: var(--event-navigation-bg);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
}

.event-search-heading {
    margin-bottom: 20px;
    color: #06234b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
}

.event-search-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #06234b;
    font-size: 18px;
    cursor: pointer;
}

.event-search-close:hover {
    color: var(--event-hover-colour);
}

.event-search-form {
    position: relative;
    display: flex;
    align-items: stretch;
}

.event-search-form input {
    width: 100%;
    height: 56px;
    padding: 0 58px 0 18px;
    border: 1px solid rgba(6, 35, 75);
    border-radius: 0;
    outline: none;
    background: #06234b;
    color: #fff;
    font-size: 15px;
}

.event-search-form input::placeholder {
    color: var(--event-menu-colour);
    opacity: 0.65;
}

.event-search-form input:focus {
    border-color: var(--event-hover-colour);
}

.event-search-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: var(--event-accent-bg);
    color: var(--event-accent-text);
    cursor: pointer;
}


/* ==========================================================================
   STICKY HEADER
   ========================================================================== */

.event-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    background: var(--event-header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.event-sticky-header.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.event-sticky-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.event-sticky-logo {
    flex: 0 0 auto;
}

.event-sticky-logo a {
    display: flex;
    align-items: center;
}

.event-sticky-logo img {
    display: block;
    width: auto;
    max-width: 185px;
    max-height: 50px;
    object-fit: contain;
}

.event-sticky-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.event-sticky-header .event-navigation > li > a {
    padding-top: 27px;
    padding-bottom: 27px;
}

.event-sticky-header .event-navigation > li > a::after {
    bottom: 18px;
}

.event-sticky-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}


/* ==========================================================================
   MOBILE OFFCANVAS
   ========================================================================== */

.event-mobile-menu {
    width: min(400px, 92vw) !important;
    background: var(--event-navigation-bg);
    color: var(--event-menu-colour);
}

.event-mobile-menu .offcanvas-header {
    min-height: 82px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.event-mobile-menu .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.event-mobile-logo {
    display: inline-flex;
    align-items: center;
}

.event-mobile-logo img {
    width: auto;
    max-width: 190px;
    max-height: 52px;
    object-fit: contain;
}

.event-mobile-menu .offcanvas-body {
    padding: 22px;
}


/* Mobile booking */

.event-mobile-booking {
    margin-bottom: 22px;
}

.event-mobile-booking-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 18px;
    border: 1px solid var(--event-booking-bg);
    border-radius: 3px;
    background: var(--event-booking-bg);
    color: var(--event-booking-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


/* Mobile navigation */

.event-mobile-navigation,
.event-mobile-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-mobile-navigation > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.event-mobile-nav-row {
    display: flex;
    align-items: center;
}

.event-mobile-nav-row > a {
    flex: 1;
    padding: 15px 0;
    color: var(--event-menu-colour);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}

.event-mobile-nav-row > button {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--event-menu-colour);
}

.event-mobile-submenu {
    padding: 0 0 12px 14px;
}

.event-mobile-submenu li a {
    display: block;
    padding: 9px 0;
    color: var(--event-dropdown-text);
    font-size: 14px;
    text-decoration: none;
    opacity: 0.85;
}


/* Mobile account */

.event-mobile-account,
.event-mobile-basket,
.event-mobile-social,
.event-mobile-language {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.event-mobile-account-btn,
.event-mobile-basket > a {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--event-menu-colour);
    text-decoration: none;
}

.event-mobile-auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.event-mobile-login,
.event-mobile-register {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--event-menu-colour);
    text-decoration: none;
}

.event-mobile-register {
    background: var(--event-register-bg);
    color: var(--event-register-text);
}

.event-mobile-cart-count {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--event-accent-bg);
    color: var(--event-accent-text);
    font-size: 10px;
}


/* Mobile social */

.event-mobile-social-title,
.event-mobile-language-title {
    margin-bottom: 12px;
    color: var(--event-menu-colour);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-mobile-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-mobile-social-links a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--event-social-colour);
    text-decoration: none;
}

.event-mobile-social-links a:hover {
    color: var(--event-social-hover);
    border-color: var(--event-social-hover);
}

.event-mobile-social-links img {
    width: 11px;
    height: 11px;
}


/* Mobile language */

.event-mobile-language-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.event-mobile-language-options form {
    margin: 0;
}

.event-mobile-language-options button {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    color: var(--event-menu-colour);
    font-size: 12px;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {

    .event-header-container {
        width: min(100% - 36px, 1180px);
    }

    .event-header-navigation {
        display: none;
    }

    .event-header-social {
        display: none;
    }

    .event-mobile-toggle {
        display: flex;
    }

    .event-sticky-navigation {
        display: none;
    }

    .event-sticky-actions .event-mobile-toggle {
        display: flex;
    }

}


@media (max-width: 767px) {

    .event-header-container {
        width: calc(100% - 28px);
    }

    .event-header-inner {
        min-height: 76px;
        gap: 15px;
    }

    .event-header-logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .event-header-logo img {
        max-width: 180px;
        max-height: 52px;
    }

    .event-header-actions {
        gap: 5px;
    }

    .event-header-icon-btn,
    .event-header-cart,
    .event-header-account {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .event-header-auth {
        display: none;
    }

    .event-header-booking {
        display: none;
    }

    .event-search-panel {
        padding-top: 80px;
    }

    .event-search-box {
        width: calc(100% - 28px);
        padding: 28px 22px;
    }

    .event-search-heading {
        font-size: 26px;
    }

    .event-sticky-inner {
        min-height: 64px;
    }

    .event-sticky-logo {
        flex: 1 1 auto;
    }

    .event-sticky-logo img {
        max-width: 155px;
        max-height: 44px;
    }

    .event-sticky-actions .event-booking-btn {
        display: none;
    }

}


@media (max-width: 480px) {

    .event-header-logo img {
        max-width: 155px;
    }

    .event-header-actions {
        gap: 2px;
    }

    .event-header-icon-btn {
        display: none;
    }

    .event-mobile-menu .offcanvas-body {
        padding: 20px;
    }

}
/* ==========================================================================
   EVENT ORGANISER - TABLET / MOBILE HEADER FINAL OVERRIDES
   ========================================================================== */

@media (max-width: 1200px) {

    /* Main header */
    .event-header-inner {
        min-height: 78px;
    }

    .event-header-navigation,
    .event-header-social,
    .event-header-auth,
    .event-header-icon-btn,
    .event-header-booking {
        display: none !important;
    }

    .event-header-logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .event-header-logo img {
        width: auto;
        max-width: 220px;
        max-height: 56px;
    }

    .event-header-actions {
        flex: 0 0 auto;
        gap: 10px;
    }

    /* Keep basket available */
    .event-header-cart {
        display: inline-flex !important;
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    /* Hamburger */
    .event-mobile-toggle {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
    }

    .event-mobile-toggle span {
        display: block;
        width: 25px;
        height: 1px;
        margin: 0;
        background: var(--event-menu-colour);
    }

    /* Offcanvas */
.offcanvas.event-mobile-menu {
    width: min(390px, 90vw) !important;
    max-width: 90vw !important;
    background: var(--event-header-bg) !important;
    color: var(--event-menu-colour) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.10) !important;
    border-radius: 0 !important;
}

    .event-mobile-menu .offcanvas-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 82px !important;
        padding: 15px 22px !important;
        background: var(--event-header-bg) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .event-mobile-logo {
        display: flex !important;
        align-items: center !important;
        max-width: 210px !important;
    }

    .event-mobile-logo img {
        display: block !important;
        width: auto !important;
        max-width: 200px !important;
        max-height: 52px !important;
        object-fit: contain !important;
    }

    .event-mobile-menu .btn-close {
        position: static !important;
        display: block !important;
        flex: 0 0 34px !important;
        width: 34px !important;
        height: 34px !important;
        margin: 0 !important;
        padding: 8px !important;
        opacity: 1 !important;
        filter: invert(1) grayscale(1) brightness(2) !important;
        box-shadow: none !important;
    }

.event-mobile-menu .offcanvas-body {
    display: block !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 22px 28px !important;
    overflow-y: auto !important;
    background: var(--event-header-bg) !important;
    color: var(--event-menu-colour) !important;
}

    /* Mobile navigation */
    .event-mobile-navigation {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .event-mobile-navigation > li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .event-mobile-nav-row {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 52px !important;
    }

    .event-mobile-nav-row > a {
        display: flex !important;
        flex: 1 1 auto !important;
        align-items: center !important;
        min-height: 52px !important;
        padding: 0 !important;
        color: var(--event-menu-colour) !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        line-height: 1.3 !important;
        text-decoration: none !important;
    }

    .event-mobile-nav-row > a:hover {
        color: var(--event-hover-colour) !important;
    }

    .event-mobile-nav-row > button {
        display: flex !important;
        width: 42px !important;
        height: 42px !important;
        flex: 0 0 42px !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--event-menu-colour) !important;
    }

    .event-mobile-submenu {
        position: static !important;
        display: none;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 0 12px 14px !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .event-mobile-submenu.show {
        display: block !important;
    }

    .event-mobile-submenu li {
        display: block !important;
        width: 100% !important;
    }

    .event-mobile-submenu li a {
        display: block !important;
        padding: 9px 0 !important;
        color: var(--event-dropdown-text) !important;
        font-size: 14px !important;
        text-decoration: none !important;
    }

    /* Login / Register */
    .event-mobile-account {
        display: block !important;
        margin: 22px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .event-mobile-auth-grid {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        width: 100% !important;
    }

    .event-mobile-login,
    .event-mobile-register {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: auto !important;
        min-height: auto !important;
        margin: 0 !important;
        padding: 5px 12px !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        color: var(--event-menu-colour) !important;
        font-size: 14px !important;
        font-weight: 400 !important;
        text-decoration: none !important;
    }

    .event-mobile-login {
        padding-left: 0 !important;
    }

    .event-mobile-register {
        position: relative !important;
    }

    .event-mobile-register::before {
        content: "";
        width: 1px;
        height: 14px;
        margin-right: 12px;
        background: var(--event-menu-colour);
        opacity: 0.3;
    }

    .event-mobile-login:hover,
    .event-mobile-register:hover {
        color: var(--event-hover-colour) !important;
    }

    /* Basket inside menu */
    .event-mobile-basket {
        display: block !important;
        margin: 20px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .event-mobile-basket > a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 40px !important;
        gap: 10px !important;
        color: var(--event-menu-colour) !important;
        text-decoration: none !important;
    }

    /* Socials */
    .event-mobile-social {
        display: block !important;
        margin: 20px 0 0 !important;
        padding: 18px 0 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.10) !important;
    }

    .event-mobile-social-links {
        display: flex !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    /* Sticky tablet/mobile */
    .event-sticky-navigation {
        display: none !important;
    }

    .event-sticky-actions .event-booking-btn {
        display: none !important;
    }
}


@media (max-width: 767px) {

    .event-header-container {
        width: calc(100% - 28px) !important;
    }

    .event-header-inner {
        min-height: 76px !important;
    }

    .event-header-logo img {
        max-width: 175px !important;
        max-height: 50px !important;
    }

    .event-header-actions {
        gap: 5px !important;
    }

    .offcanvas.event-mobile-menu {
        width: 88vw !important;
        max-width: 360px !important;
    }

    .event-mobile-logo img {
        max-width: 175px !important;
    }
}


@media (max-width: 420px) {

    .event-header-logo img {
        max-width: 155px !important;
    }

    .event-header-cart {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
    }

    .event-mobile-toggle {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }
}
/* ==========================================================================
   MOBILE SOCIAL ICON POLISH
   ========================================================================== */

.event-mobile-social-links a {
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: var(--event-social-colour) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.event-mobile-social-links a:hover {
    color: var(--event-hover-colour) !important;
    border-color: var(--event-hover-colour) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-2px);
}

.event-mobile-social-links a img {
    width: 11px !important;
    height: 11px !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.event-mobile-social-links a:hover img {
    filter: none !important;
}
/* ==========================================================================
   MOBILE ACCOUNT POLISH
   ========================================================================== */

/* Navigation already provides the dividing line */
.event-mobile-account {
    border-top: 0 !important;
    margin-top: 22px !important;
    padding-top: 8px !important;
}

/* Even Login | Register spacing */
.event-mobile-login,
.event-mobile-register {
    padding: 5px 12px !important;
}

.event-mobile-login {
    padding-left: 0 !important;
}

.event-mobile-register::before {
    content: "";
    width: 1px;
    height: 14px;
    margin-right: 12px;
    background: var(--event-menu-colour);
    opacity: 0.3;
}
/* ==========================================================================
   MOBILE BASKET / WISHLIST
   ========================================================================== */

.event-mobile-basket {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
}

.event-mobile-basket > a {
    flex: 1 1 50%;
    min-width: 0;
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    padding: 10px 12px !important;
    color: var(--event-menu-colour) !important;
    text-decoration: none !important;
}

.event-mobile-basket > a:first-child {
    padding-left: 0 !important;
}

.event-mobile-basket > a + a {
    border-top: 0 !important;
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.event-mobile-basket .fa-heart {
    color: var(--event-hover-colour);
}

.event-mobile-cart-count,
.event-mobile-wishlist-count {
    margin-left: auto;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--event-accent-bg);
    color: var(--event-accent-text);
    font-size: 10px;
    line-height: 1;
}
/* ==========================================================================
   TABLET / MOBILE WISHLIST ICON
   ========================================================================== */

.event-header-wishlist {
    position: relative;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 36px;
    border-radius: 50%;
    background: transparent;
    color: var(--event-hover-colour);
    font-size: 16px;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease;
}

.event-header-wishlist:hover {
    color: var(--event-menu-colour);
    background: rgba(255, 255, 255, 0.06);
}

.event-wishlist-count {
    position: absolute;
    top: 0;
    right: -3px;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--event-accent-bg);
    color: var(--event-accent-text);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

/* Keep desktop cleaner */
@media (min-width: 1201px) {
    .event-header-wishlist {
        display: none;
    }
}

@media (max-width: 1200px) {
    .event-header-wishlist {
        display: inline-flex;
    }
}
/* ==========================================================================
   FIX MOBILE / TABLET WISHLIST COUNT POSITION
   ========================================================================== */

.event-mobile-basket .event-mobile-wishlist-count {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;

    margin-left: auto !important;

    min-width: 20px !important;
    height: 20px !important;
    padding: 0 5px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px !important;

    background: var(--event-accent-bg) !important;
    color: var(--event-accent-text) !important;

    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* ==========================================================================
   EVENT ORGANISER / DAVID FOOTER
   ========================================================================== */

.event-footer {
    position: relative;
    width: 100%;
    background: var(--event-footer-bg);
    color: var(--event-footer-text);
}

.event-footer,
.event-footer * {
    box-sizing: border-box;
}

.event-footer-container {
    width: min(1420px, calc(100% - 56px));
    margin: 0 auto;
}


/* ==========================================================================
   MAIN FOOTER
   ========================================================================== */

.event-footer-main {
    padding: 38px 0 30px;
    background: var(--event-footer-bg);
}

.event-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr 1fr;
    gap: 34px;
    align-items: start;
}


/* ==========================================================================
   BRAND / ABOUT
   ========================================================================== */

.event-footer-about {
    max-width: 340px;
}

.event-footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    text-decoration: none;
}

.event-footer-logo img {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 60px;
    object-fit: contain;
}

.event-footer-about-text {
    margin: 0;
    max-width: 320px;
    color: var(--event-footer-text);
    font-size: 12px;
    line-height: 1.55;
    opacity: 0.8;
}


/* ==========================================================================
   TITLES
   ========================================================================== */

.event-footer-title {
    position: relative;
    margin-bottom: 13px;
    padding-bottom: 8px;
    color: var(--event-footer-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 1px;
    background: var(--event-footer-accent);
}


/* ==========================================================================
   LINKS
   ========================================================================== */

.event-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.event-footer-links li {
    margin: 0;
    padding: 0;
}

.event-footer-links li + li {
    margin-top: 5px;
}

.event-footer-links a {
    display: inline-block;
    color: var(--event-footer-text);
    font-size: 12px;
    line-height: 1.35;
    text-decoration: none;
    opacity: 0.8;
    transition:
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.event-footer-links a:hover {
    color: var(--event-footer-accent);
    opacity: 1;
    transform: translateX(2px);
}


/* ==========================================================================
   SOCIALS
   ========================================================================== */

.event-footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 36px !important;
}

.event-footer-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: transparent;
    color: var(--event-footer-text);
    font-size: 11px;
    text-decoration: none;
    opacity: 0.85;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        opacity 0.2s ease;
}

.event-footer-social a:hover {
    color: var(--event-footer-accent);
    border-color: var(--event-footer-accent);
    opacity: 1;
    transform: translateY(-1px);
}

.event-footer-social img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}


/* ==========================================================================
   ACCOUNT
   ========================================================================== */

.event-footer-account {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 26px !important;
}

.event-footer-account a {
    color: var(--event-footer-text);
    font-size: 11px;
    line-height: 1;
    text-decoration: none;
    opacity: 0.72;
}

.event-footer-account a:hover {
    color: var(--event-footer-accent);
    opacity: 1;
}

.event-footer-account span {
    width: 1px;
    height: 12px;
    background: var(--event-footer-text);
    opacity: 0.22;
    margin-top: 2px !important;
}


/* ==========================================================================
   STAY CONNECTED
   ========================================================================== */

.event-footer-connect-text {
    margin: 0 0 12px;
    max-width: 230px;
    color: var(--event-footer-text);
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.78;
}

.event-footer-newsletter-btn {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 13px;
    border: 1px solid var(--event-footer-accent);
    border-radius: 3px;
    background: transparent;
    color: var(--event-footer-accent);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.event-footer-newsletter-btn:hover {
    background: var(--event-footer-accent);
    color: var(--event-footer-button-text);
    transform: translateY(-1px);
}


/* ==========================================================================
   CONTACT
   ========================================================================== */

.event-footer-contact {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.event-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--event-footer-text);
    font-size: 11px;
    line-height: 1.4;
    opacity: 0.75;
}

.event-footer-contact i {
    width: 14px;
    flex: 0 0 14px;
    margin-top: 2px;
    color: var(--event-footer-accent);
    text-align: center;
}

.event-footer-contact a {
    color: inherit;
    text-decoration: none;
}

.event-footer-contact a:hover {
    color: var(--event-footer-accent);
}


/* ==========================================================================
   BOTTOM BAR
   ========================================================================== */

.event-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: var(--event-footer-bg);
}

.event-footer-bottom-inner {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.event-footer-copyright,
.event-footer-legal {
    color: var(--event-footer-text);
    font-size: 10px;
    line-height: 1.4;
    opacity: 0.62;
}

.event-footer-legal a {
    color: inherit;
    text-decoration: none;
}

.event-footer-legal a:hover {
    color: var(--event-footer-accent);
}


/* ==========================================================================
   LARGE TABLET
   ========================================================================== */

@media (max-width: 1200px) {

    .event-footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .event-footer-grid > .event-footer-column:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
    }

}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 900px) {

    .event-footer-container {
        width: calc(100% - 32px);
    }

    .event-footer-main {
        padding: 28px 0 24px;
    }

    .event-footer-grid {
        grid-template-columns:
            minmax(150px, 1.2fr)
            repeat(4, minmax(105px, 1fr));
        gap: 18px;
        align-items: start;
    }

    .event-footer-grid > .event-footer-column:last-child {
        grid-column: auto;
        max-width: none;
    }

    .event-footer-about {
        max-width: none;
    }

    .event-footer-logo img {
        max-width: 150px;
        max-height: 46px;
    }

    .event-footer-about-text {
        font-size: 11px;
        line-height: 1.55;
    }

    .event-footer-column h4,
    .event-footer-column-title {
        font-size: 11px;
    }

    .event-footer-column a,
    .event-footer-column li,
    .event-footer-column p {
        font-size: 11px;
    }

}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 400px) {

    .event-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .event-footer-about,
    .event-footer-grid > .event-footer-column:last-child {
        grid-column: auto;
    }

    .event-footer-newsletter-btn {
        width: 100%;
    }

}

/* ==========================================================================
   EVENT ORGANISER / DAVID HERO
   ========================================================================== */

.event-home-hero {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    background: #07111f;
    color: #ffffff;
    isolation: isolate;
}

.event-home-hero,
.event-home-hero * {
    box-sizing: border-box;
}


/* ==========================================================================
   BACKGROUND
   ========================================================================== */

.event-home-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.event-home-hero-slide {
    position: absolute;
    inset: -2%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transform: scale(1.025);
    transition:
        opacity 1.1s ease,
        transform 8s ease;
}

.event-home-hero-slide.is-active {
    opacity: 1;
    transform: scale(1.07);
}


/* ==========================================================================
   OVERLAYS
   ========================================================================== */

.event-home-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(3, 12, 24, 0.96) 0%,
            rgba(3, 12, 24, 0.90) 23%,
            rgba(3, 12, 24, 0.68) 43%,
            rgba(3, 12, 24, 0.22) 68%,
            rgba(3, 12, 24, 0.10) 100%
        );
    pointer-events: none;
}

.event-home-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.14) 0%,
            rgba(0, 0, 0, 0) 26%,
            rgba(0, 0, 0, 0) 72%,
            rgba(0, 0, 0, 0.28) 100%
        );
}

.event-home-hero-glow {
    position: absolute;
    top: -160px;
    right: -70px;
    z-index: 2;
    width: 520px;
    height: 520px;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 164, 92, 0.20) 0%,
            rgba(201, 164, 92, 0.07) 36%,
            rgba(201, 164, 92, 0) 72%
        );
}


/* ==========================================================================
   GOLD FRAME
   ========================================================================== */

.event-home-hero::before,
.event-home-hero::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 6;
    background: var(--event-hover-colour);
    opacity: 0.75;
}

.event-home-hero::before {
    top: 0;
}

.event-home-hero::after {
    bottom: 0;
}


/* ==========================================================================
   CONTAINER
   ========================================================================== */

.event-home-hero-container {
    position: relative;
    z-index: 4;
    width: min(1420px, calc(100% - 80px));
    min-height: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.event-home-hero-content {
    width: min(620px, 52%);
    padding: 74px 0 80px;
}


/* ==========================================================================
   ORNAMENT
   ========================================================================== */

.event-home-hero-ornament {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 200px;
    margin-bottom: 16px;
    color: var(--event-hover-colour);
}

.event-home-hero-ornament span {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: var(--event-hover-colour);
    opacity: 0.7;
}

.event-home-hero-ornament i {
    flex: 0 0 auto;
    font-size: 14px;
}


/* ==========================================================================
   TITLE
   ========================================================================== */

.event-home-hero-title {
    margin: 0;
    max-width: 620px;
    color: var(--event-hero-title-colour, #ffffff);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    text-wrap: balance;
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.22);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}

.event-home-hero-title strong,
.event-home-hero-title em {
    color: var(--event-hover-colour);
    font-style: normal;
    font-weight: inherit;
}


/* ==========================================================================
   CAPTION
   ========================================================================== */

.event-home-hero-caption {
    margin: 22px 0 0;
    max-width: 540px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.005em;
    opacity: 0.92;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


/* ==========================================================================
   ROLES
   ========================================================================== */

.event-home-hero-roles {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    color: var(--event-hover-colour);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-home-hero-role-divider {
    width: auto !important;
    height: auto !important;
    flex: 0 0 auto !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: var(--event-hover-colour);
    font-size: 8px;
    font-style: normal;
    line-height: 1;
    opacity: 0.9;
}

.event-home-hero-caption {
    margin-top: 18px;
}


/* ==========================================================================
   ACTIONS
   ========================================================================== */

.event-home-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.event-home-hero-primary {
    min-width: 178px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 22px;
    border: 1px solid var(--event-hero-button-bg);
    border-radius: 3px;
    background: var(--event-hero-button-bg);
    color: var(--event-hero-button-text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.45s ease;
}

.event-home-hero-primary:hover {
    background: var(--event-hero-button-hover-bg);
    color: var(--event-hero-button-text);
    border-color: var(--event-hero-button-hover-bg);
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.20);
}

.event-home-hero-primary i {
    font-size: 11px;
    animation: eventHeroArrowNudge 2.4s ease-in-out infinite;
}

.event-home-hero-primary:hover i {
    animation: none;
    transform: translateX(5px);
}

@keyframes eventHeroArrowNudge {
    0%,
    65%,
    100% {
        transform: translateX(0);
    }

    78% {
        transform: translateX(5px);
    }

    88% {
        transform: translateX(2px);
    }
}


/* ==========================================================================
   SLIDE NAVIGATION
   ========================================================================== */

.event-home-hero-navigation {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.event-home-hero-nav {
    width: 34px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.event-home-hero-nav span {
    width: 100%;
    height: 2px;
    display: block;
    background: rgba(255, 255, 255, 0.34);
    transition:
        background 0.25s ease,
        width 0.25s ease;
}

.event-home-hero-nav.is-active span {
    background: var(--event-hover-colour);
}


/* ==========================================================================
   SCROLL DETAIL
   ========================================================================== */

.event-home-hero-scroll {
    position: absolute;
    right: 34px;
    bottom: 28px;
    z-index: 6;
    width: 1px;
    height: 62px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

.event-home-hero-scroll span {
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--event-hover-colour);
    animation: eventHeroScroll 2.2s ease-in-out infinite;
}

@keyframes eventHeroScroll {
    0% {
        top: -100%;
    }

    55% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}


/* ==========================================================================
   DESKTOP WIDE
   ========================================================================== */

@media (min-width: 1500px) {

    .event-home-hero,
    .event-home-hero-container {
        min-height: 680px;
    }

    .event-home-hero-content {
        width: min(650px, 50%);
    }

}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-hero {
        min-height: 590px;
    }

    .event-home-hero-container {
        width: calc(100% - 56px);
        min-height: 590px;
    }

    .event-home-hero-content {
        width: 58%;
        padding: 62px 0 72px;
    }

    .event-home-hero-title {
        font-size: clamp(44px, 6vw, 62px);
    }

    .event-home-hero-caption {
        max-width: 480px;
        font-size: 15px;
    }

    .event-home-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 12, 24, 0.96) 0%,
                rgba(3, 12, 24, 0.87) 36%,
                rgba(3, 12, 24, 0.48) 62%,
                rgba(3, 12, 24, 0.16) 100%
            );
    }

}


/* ==========================================================================
   MOBILE / PORTRAIT
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-hero {
        min-height: 620px;
    }

    .event-home-hero-container {
        width: calc(100% - 34px);
        min-height: 620px;
        align-items: flex-end;
    }

    .event-home-hero-slide {
        inset: 0;
        background-position: center top;
        transform: scale(1);
    }

    .event-home-hero-slide.is-active {
        transform: scale(1.04);
    }

    .event-home-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 12, 23, 0.10) 0%,
                rgba(4, 12, 23, 0.20) 28%,
                rgba(4, 12, 23, 0.76) 60%,
                rgba(4, 12, 23, 0.97) 100%
            );
    }

    .event-home-hero-vignette {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.10) 0%,
                rgba(0, 0, 0, 0) 40%,
                rgba(0, 0, 0, 0.30) 100%
            );
    }

    .event-home-hero-glow {
        top: -120px;
        right: -180px;
        width: 400px;
        height: 400px;
    }

    .event-home-hero-content {
        width: 100%;
        max-width: 100%;
        padding: 270px 0 58px;
    }

    .event-home-hero-ornament {
        width: 140px;
        margin-bottom: 13px;
    }

    .event-home-hero-title {
        max-width: 100%;
        font-size: clamp(40px, 12vw, 56px);
        line-height: 1;
    }

    .event-home-hero-caption {
        max-width: 100%;
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.55;
    }

    .event-home-hero-roles {
        gap: 7px;
        margin-top: 17px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .event-home-hero-actions {
        margin-top: 20px;
    }

    .event-home-hero-primary {
        min-width: 160px;
        min-height: 44px;
        padding: 10px 17px;
        font-size: 11px;
    }

    .event-home-hero-navigation {
        left: auto;
        right: 17px;
        bottom: 17px;
        transform: none;
    }

    .event-home-hero-scroll {
        display: none;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-home-hero {
        min-height: 600px;
    }

    .event-home-hero-container {
        min-height: 600px;
        width: calc(100% - 28px);
    }

    .event-home-hero-content {
        padding-top: 250px;
        padding-bottom: 52px;
    }

    .event-home-hero-title {
        font-size: 39px;
    }

    .event-home-hero-caption {
        font-size: 13px;
    }

    .event-home-hero-roles {
        max-width: 310px;
    }

}
/* ==========================================================================
   EVENT ORGANISER / DAVID - TOUR & EVENTS
   ========================================================================== */

.event-home-tour {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 72px 0 78px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );
}

.event-home-tour,
.event-home-tour * {
    box-sizing: border-box;
}

.event-home-tour-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}


/* ==========================================================================
   INTRO
   ========================================================================== */

.event-home-tour-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
}

.event-home-tour-heading-copy {
    max-width: 700px;
}

.event-home-tour-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px;
    color: var(--event-tour-accent);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.event-home-tour-eyebrow span {
    width: 34px;
    height: 1px;
    display: block;
    background: var(--event-tour-accent);
}

.event-home-tour-heading-copy h2 {
    margin: 0;
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3.4vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.event-home-tour-heading-copy p {
    max-width: 620px;
    margin: 13px 0 0;
    color: var(--event-tour-text);
    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   COUNT
   ========================================================================== */

.event-home-tour-count {
    min-width: 120px;
    padding-left: 22px;
    border-left: 1px solid rgba(20, 40, 65, 0.12);
}

.event-home-tour-count strong {
    display: block;
    color: var(--event-tour-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1;
}

.event-home-tour-count span {
    display: block;
    margin-top: 5px;
    color: var(--event-tour-text);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ==========================================================================
   GRID
   ========================================================================== */

.event-home-tour-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.55fr)
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 20px;
}


/* ==========================================================================
   CARD
   ========================================================================== */

.event-home-tour-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(20, 40, 65, 0.09);
    border-radius: 6px;
    box-shadow:
        0 10px 34px rgba(12, 31, 52, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.event-home-tour-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(
        in srgb,
        var(--event-tour-accent) 42%,
        transparent
    );
    box-shadow:
        0 18px 44px rgba(12, 31, 52, 0.11);
}


/* ==========================================================================
   FEATURED FIRST CARD
   ========================================================================== */

.event-home-tour-card-featured {
    grid-row: span 2;
}

.event-home-tour-card-featured .event-home-tour-image {
    min-height: 390px;
}

.event-home-tour-card-featured .event-home-tour-card-body {
    padding: 24px 26px 26px;
}

.event-home-tour-card-featured .event-home-tour-card-body h3 {
    font-size: 24px;
}


/* ==========================================================================
   IMAGE
   ========================================================================== */

.event-home-tour-image {
    position: relative;
    display: block;
    min-height: 190px;
    overflow: hidden;
    background: #e9edf2;
}

.event-home-tour-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform 0.8s cubic-bezier(.2,.65,.25,1),
        filter 0.4s ease;
}

.event-home-tour-card:hover .event-home-tour-image img {
    transform: scale(1.055);
}

.event-home-tour-image-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(4, 14, 28, 0.02) 25%,
            rgba(4, 14, 28, 0.25) 100%
        );
}


/* ==========================================================================
   DATE
   ========================================================================== */

.event-home-tour-date {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    width: 58px;
    min-height: 61px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 7px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.16);
}

.event-home-tour-date strong {
    display: block;
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 0.95;
}

.event-home-tour-date span {
    display: block;
    margin-top: 4px;
    color: var(--event-tour-accent);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.14em;
}


/* ==========================================================================
   FEATURED BADGE
   ========================================================================== */

.event-home-tour-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    background: rgba(5, 18, 35, 0.84);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    color: var(--event-tour-accent);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* ==========================================================================
   BODY
   ========================================================================== */

.event-home-tour-card-body {
    padding: 17px 19px 19px;
}

.event-home-tour-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: var(--event-tour-text);
    font-size: 10px;
    line-height: 1.3;
    opacity: 0.75;
}

.event-home-tour-meta i {
    color: var(--event-tour-accent);
    font-size: 10px;
}

.event-home-tour-card-body h3 {
    margin: 0;
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.event-home-tour-card-body h3 a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================================================
   VIEW LINK
   ========================================================================== */

.event-home-tour-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    color: var(--event-tour-heading);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 0.2s ease;
}

.event-home-tour-link i {
    color: var(--event-tour-accent);
    font-size: 10px;
    transition:
        transform 0.25s ease;
}

.event-home-tour-link:hover {
    color: var(--event-tour-accent);
}

.event-home-tour-link:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   FOURTH / FIFTH CARDS
   ========================================================================== */

.event-home-tour-card:nth-child(4),
.event-home-tour-card:nth-child(5) {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr);
}

.event-home-tour-card:nth-child(4) .event-home-tour-image,
.event-home-tour-card:nth-child(5) .event-home-tour-image {
    min-height: 145px;
}

.event-home-tour-card:nth-child(4) .event-home-tour-date,
.event-home-tour-card:nth-child(5) .event-home-tour-date {
    width: 48px;
    min-height: 51px;
    left: 10px;
    bottom: 10px;
}

.event-home-tour-card:nth-child(4) .event-home-tour-date strong,
.event-home-tour-card:nth-child(5) .event-home-tour-date strong {
    font-size: 20px;
}

.event-home-tour-card:nth-child(4) .event-home-tour-card-body,
.event-home-tour-card:nth-child(5) .event-home-tour-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-tour {
        padding: 58px 0 64px;
    }

    .event-home-tour-container {
        width: calc(100% - 56px);
    }

    .event-home-tour-grid {
        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(0, 1fr);
    }

    .event-home-tour-card-featured {
        grid-row: span 2;
    }

    .event-home-tour-card:nth-child(4),
    .event-home-tour-card:nth-child(5) {
        display: block;
    }

    .event-home-tour-card:nth-child(4) .event-home-tour-image,
    .event-home-tour-card:nth-child(5) .event-home-tour-image {
        min-height: 190px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-tour {
        padding: 46px 0 52px;
    }

    .event-home-tour-container {
        width: calc(100% - 34px);
    }

    .event-home-tour-heading-row {
        align-items: flex-start;
        margin-bottom: 26px;
    }

    .event-home-tour-heading-copy h2 {
        font-size: 38px;
    }

    .event-home-tour-heading-copy p {
        font-size: 13px;
    }

    .event-home-tour-count {
        display: none;
    }

    .event-home-tour-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .event-home-tour-card-featured {
        grid-row: auto;
    }

    .event-home-tour-card-featured .event-home-tour-image {
        min-height: 300px;
    }

    .event-home-tour-card:nth-child(4),
    .event-home-tour-card:nth-child(5) {
        display: block;
    }

    .event-home-tour-card:nth-child(4) .event-home-tour-image,
    .event-home-tour-card:nth-child(5) .event-home-tour-image {
        min-height: 210px;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-home-tour-container {
        width: calc(100% - 28px);
    }

    .event-home-tour-card-featured .event-home-tour-image {
        min-height: 260px;
    }

    .event-home-tour-card-featured .event-home-tour-card-body {
        padding: 20px;
    }

}

/* ==========================================================================
   EVENT ORGANISER / DAVID - TOUR FEATURE
   ========================================================================== */

.event-tour-feature {
    position: relative;
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
    background:
        linear-gradient(
            180deg,
            #06234b 0%,
            #03162e 100%
        );
    border-top: 1px solid var(--event-tour-accent);
    border-bottom: 1px solid var(--event-tour-accent);
}

.event-tour-feature,
.event-tour-feature * {
    box-sizing: border-box;
}

.event-tour-feature-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.event-tour-feature-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.05fr);
    min-height: 570px;
    overflow: hidden;
    border: 1px solid rgba(17, 37, 62, 0.08);
    border-radius: 8px;
    background: #ffffff;
    box-shadow:
        0 22px 60px rgba(14, 34, 58, 0.09);
}


/* ==========================================================================
   LEFT PROMO
   ========================================================================== */

.event-tour-feature-promo {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #071422;
}

.event-tour-feature-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.01);
    transition:
        transform 8s ease;
}

.event-tour-feature-promo:hover
.event-tour-feature-image {
    transform: scale(1.055);
}

.event-tour-feature-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(4, 12, 23, 0.12) 0%,
            rgba(4, 12, 23, 0.28) 38%,
            rgba(4, 12, 23, 0.92) 100%
        );
}

.event-tour-feature-promo-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 48px;
    color: #ffffff;
}


/* ==========================================================================
   TOUR KICKER
   ========================================================================== */

.event-tour-feature-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 13px;
    color: var(--event-tour-accent);
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.event-tour-feature-line {
    width: 34px;
    height: 1px;
    display: block;
    background: var(--event-tour-accent);
}


/* ==========================================================================
   YEAR
   ========================================================================== */

.event-tour-feature-year {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0.08em;
}


/* ==========================================================================
   TOUR TITLE
   ========================================================================== */

.event-tour-feature-promo-content h2 {
    max-width: 540px;
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 4vw, 68px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.025em;
    text-shadow:
        0 3px 24px rgba(0, 0, 0, 0.20);
}

.event-tour-feature-promo-content p {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.65;
}


/* ==========================================================================
   LIVE DATE COUNT
   ========================================================================== */

.event-tour-feature-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.event-tour-feature-stat strong {
    color: var(--event-tour-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
}

.event-tour-feature-stat span {
    max-width: 120px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ==========================================================================
   MAIN TOUR LINK
   ========================================================================== */

.event-tour-feature-main-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    margin-top: 25px;
    padding: 10px 17px;
    border: 1px solid var(--event-tour-accent);
    border-radius: 3px;
    background: var(--event-tour-accent);
    color: #071422;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.event-tour-feature-main-link:hover {
    background: transparent;
    color: var(--event-tour-accent);
    transform: translateY(-2px);
}

.event-tour-feature-main-link i {
    font-size: 10px;
    animation:
        eventTourMainArrow 2.5s ease-in-out infinite;
}

@keyframes eventTourMainArrow {

    0%,
    66%,
    100% {
        transform: translateX(0);
    }

    80% {
        transform: translateX(5px);
    }

}


/* ==========================================================================
   RIGHT SIDE
   ========================================================================== */

.event-tour-feature-dates {
    padding: 44px 44px 38px;
    background: #ffffff;
}


/* ==========================================================================
   RIGHT HEADER
   ========================================================================== */

.event-tour-feature-dates-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(17, 37, 62, 0.10);
}

.event-tour-feature-small-title {
    margin-bottom: 6px;
    color: var(--event-tour-accent);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-tour-feature-dates-header h2 {
    margin: 0;
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}


/* ==========================================================================
   REMAINING COUNT
   ========================================================================== */

.event-tour-feature-total {
    text-align: right;
}

.event-tour-feature-total strong {
    display: block;
    color: var(--event-tour-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1;
}

.event-tour-feature-total span {
    display: block;
    margin-top: 4px;
    color: var(--event-tour-text);
    font-size: 8px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* ==========================================================================
   VENUE LIST
   ========================================================================== */

.event-tour-feature-date-list {
    display: flex;
    flex-direction: column;
}

.event-tour-feature-date {
    position: relative;
    border-bottom: 1px solid rgba(17, 37, 62, 0.09);
}

.event-tour-feature-date:last-child {
    border-bottom: 0;
}

.event-tour-feature-date-link {
    min-height: 125px;
    display: grid;
    grid-template-columns:
        64px
        100px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 17px;
    padding: 14px 0;
    text-decoration: none;
    transition:
        transform 0.25s ease;
}

.event-tour-feature-date-link:hover {
    transform: translateX(4px);
}


/* ==========================================================================
   DATE NUMBER
   ========================================================================== */

.event-tour-feature-date-number {
    width: 60px;
    height: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 37, 62, 0.12);
    border-radius: 4px;
    background: #ffffff;
}

.event-tour-feature-date.is-next
.event-tour-feature-date-number {
    border-color: var(--event-tour-accent);
}

.event-tour-feature-date-number strong {
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 0.95;
}

.event-tour-feature-date-number span {
    margin-top: 5px;
    color: var(--event-tour-accent);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.13em;
}


/* ==========================================================================
   VENUE IMAGE
   ========================================================================== */

.event-tour-feature-date-image {
    width: 100px;
    height: 82px;
    overflow: hidden;
    border-radius: 4px;
    background: #edf0f3;
}

.event-tour-feature-date-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.6s ease;
}

.event-tour-feature-date:hover
.event-tour-feature-date-image img {
    transform: scale(1.06);
}


/* ==========================================================================
   VENUE COPY
   ========================================================================== */

.event-tour-feature-date-copy {
    min-width: 0;
}

.event-tour-feature-next-label {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 6px;
    color: var(--event-tour-accent);
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-tour-feature-date-copy h3 {
    margin: 0;
    color: var(--event-tour-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
}

.event-tour-feature-date-copy p {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 7px 0 0;
    color: var(--event-tour-text);
    font-size: 10px;
    line-height: 1.35;
}

.event-tour-feature-date-copy p i {
    color: var(--event-tour-accent);
}


/* ==========================================================================
   GET TICKETS
   ========================================================================== */

.event-tour-feature-date-action {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(17, 37, 62, 0.12);
    border-radius: 3px;
    color: var(--event-tour-heading);
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.event-tour-feature-date-action i {
    color: var(--event-tour-accent);
    transition:
        transform 0.2s ease;
}

.event-tour-feature-date-link:hover
.event-tour-feature-date-action {
    background: var(--event-tour-button-bg);
    color: var(--event-tour-button-text);
    border-color: var(--event-tour-button-bg);
}

.event-tour-feature-date-link:hover
.event-tour-feature-date-action i {
    color: inherit;
    transform: translateX(3px);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-tour-feature {
        padding: 58px 0;
    }

    .event-tour-feature-container {
        width: calc(100% - 56px);
    }

    .event-tour-feature-grid {
        grid-template-columns: 1fr;
    }

    .event-tour-feature-promo {
        min-height: 500px;
    }

    .event-tour-feature-date-link {
        grid-template-columns:
            64px
            110px
            minmax(0, 1fr)
            auto;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-tour-feature {
        padding: 44px 0 50px;
    }

    .event-tour-feature-container {
        width: calc(100% - 34px);
    }

    .event-tour-feature-promo {
        min-height: 500px;
    }

    .event-tour-feature-promo-content {
        padding: 30px;
    }

    .event-tour-feature-promo-content h2 {
        font-size: 46px;
    }

    .event-tour-feature-dates {
        padding: 30px 24px 25px;
    }

    .event-tour-feature-dates-header h2 {
        font-size: 31px;
    }

    .event-tour-feature-date-link {
        grid-template-columns:
            58px
            minmax(0, 1fr);
        gap: 13px;
        min-height: 0;
        padding: 18px 0;
    }

    .event-tour-feature-date-image {
        display: none;
    }

    .event-tour-feature-date-action {
        grid-column: 2;
        justify-self: start;
        margin-top: -2px;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-tour-feature-container {
        width: calc(100% - 28px);
    }

    .event-tour-feature-promo {
        min-height: 470px;
    }

    .event-tour-feature-promo-content {
        padding: 24px;
    }

    .event-tour-feature-promo-content h2 {
        font-size: 40px;
    }

    .event-tour-feature-promo-content p {
        font-size: 13px;
    }

    .event-tour-feature-dates {
        padding: 26px 20px 22px;
    }

}

/* ==========================================================================
   EVENT ORGANISER / DAVID - COMPACT TOUR STRIP
   ========================================================================== */

.event-tour-strip {
    position: relative;
    width: 100%;
    padding: 24px 0;
    overflow: hidden;
    background: #091118;
    border-top: 1px solid var(--event-tour-accent);
    border-bottom: 1px solid var(--event-tour-accent);
    color: #ffffff;
}

.event-tour-strip,
.event-tour-strip * {
    box-sizing: border-box;
}

.event-tour-strip-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.event-tour-strip-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);
    min-height: 330px;
}


/* ==========================================================================
   LEFT PROMO
   ========================================================================== */

.event-tour-strip-promo {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.event-tour-strip-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow:
        inset -1px 0 0 rgba(211, 168, 75, 0.38);
}

.event-tour-strip-promo-overlay {
    position: absolute;
    inset: 0;

}

.event-tour-strip-promo-content {
    position: relative;
    z-index: 2;
    width: 56%;
    min-height: 330px;
    margin-left: auto;
    padding: 34px 38px 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* ==========================================================================
   LEFT KICKER
   ========================================================================== */

.event-tour-strip-kicker {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 8px;
    color: var(--event-tour-accent);
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-tour-strip-kicker span {
    width: 25px;
    height: 1px;
    display: block;
    background: var(--event-tour-accent);
}


/* ==========================================================================
   YEAR
   ========================================================================== */

.event-tour-strip-year {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.07em;
}


/* ==========================================================================
   TITLE
   ========================================================================== */

.event-tour-strip-promo-content h2 {
    margin: 0;
    max-width: 390px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(29px, 2.6vw, 40px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.015em;
}

.event-tour-strip-promo-content p {
    max-width: 410px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
}


/* ==========================================================================
   LEFT BOTTOM
   ========================================================================== */

.event-tour-strip-promo-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 19px;
}

.event-tour-strip-count {
    display: flex;
    align-items: center;
    gap: 9px;
}

.event-tour-strip-count strong {
    color: var(--event-tour-accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.event-tour-strip-count span {
    max-width: 95px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}


/* ==========================================================================
   MAIN BUTTON
   ========================================================================== */

.event-tour-strip-main-button {
    min-height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid var(--event-tour-accent);
    background: transparent;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.10em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.event-tour-strip-main-button:hover {
    background: var(--event-tour-accent);
    color: #071422;
    transform: translateY(-1px);
}

.event-tour-strip-main-button i {
    color: var(--event-tour-accent);
    font-size: 9px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.event-tour-strip-main-button:hover i {
    color: inherit;
    transform: translateX(3px);
}


/* ==========================================================================
   RIGHT DATES
   ========================================================================== */

.event-tour-strip-dates {
    min-height: 330px;
    padding: 25px 32px 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035) 0%,
            rgba(255, 255, 255, 0.01) 100%
        );
}


/* ==========================================================================
   DATES HEADING
   ========================================================================== */

.event-tour-strip-dates-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 9px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(211, 168, 75, 0.36);
}

.event-tour-strip-small-title {
    display: block;
    margin-bottom: 6px;
    color: var(--event-tour-accent);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-tour-strip-dates-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 400;
    line-height: 1;
}


/* ==========================================================================
   DATE ROWS
   ========================================================================== */

.event-tour-strip-date-list {
    width: 100%;
}

.event-tour-strip-date {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.event-tour-strip-date-link {
    min-height: 70px;
    display: grid;
    grid-template-columns:
        47px
        67px
        minmax(0, 1fr)
        auto;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px !important;
}


/* ==========================================================================
   DATE BOX
   ========================================================================== */

.event-tour-strip-date-box {
    width: 45px;
    height: 49px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(3, 13, 26, 0.38);
}

.event-tour-strip-date.is-next
.event-tour-strip-date-box {
    border-color: var(--event-tour-accent);
}

.event-tour-strip-date-box strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 0.9;
}

.event-tour-strip-date-box span {
    margin-top: 4px;
    color: var(--event-tour-accent);
    font-size: 7px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
}


/* ==========================================================================
   VENUE IMAGE
   ========================================================================== */

.event-tour-strip-venue-image {
    width: 67px;
    height: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.event-tour-strip-venue-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform 0.5s ease;
}

.event-tour-strip-date:hover
.event-tour-strip-venue-image img {
    transform: scale(1.06);
}


/* ==========================================================================
   VENUE WORDING
   ========================================================================== */

.event-tour-strip-venue-copy {
    min-width: 0;
}

.event-tour-strip-next {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 3px;
    color: var(--event-tour-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.event-tour-strip-venue-copy h3 {
    margin: 0;
    overflow: hidden;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.event-tour-strip-venue-copy p {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.61);
    font-size: 12px;
    line-height: 1.2;
}


/* ==========================================================================
   GET TICKETS
   ========================================================================== */

.event-tour-strip-ticket {
    min-width: 82px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid rgba(211, 168, 75, 0.58);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.event-tour-strip-ticket i {
    color: var(--event-tour-accent);
    font-size: 10px;
    transition:
        transform 0.2s ease;
}

.event-tour-strip-date-link:hover
.event-tour-strip-ticket {
    background: var(--event-tour-accent);
    color: #071422;
}

.event-tour-strip-date-link:hover
.event-tour-strip-ticket i {
    color: inherit;
    transform: translateX(2px);
}


/* ==========================================================================
   VIEW ALL DATES
   ========================================================================== */

.event-tour-strip-all-dates {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.event-tour-strip-all-dates a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--event-tour-accent);
    font-size: 11px !important;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-tour-strip-all-dates i {
    transition:
        transform 0.2s ease;
}

.event-tour-strip-all-dates a:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-tour-strip-container {
        width: calc(100% - 56px);
    }

    .event-tour-strip-grid {
        grid-template-columns: 1fr;
    }

    .event-tour-strip-promo,
    .event-tour-strip-promo-content {
        min-height: 310px;
    }

    .event-tour-strip-dates {
        min-height: auto;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-tour-strip {
        padding: 18px 0;
    }

    .event-tour-strip-container {
        width: calc(100% - 34px);
    }

    .event-tour-strip-promo {
        min-height: 0;
        background-position: 34% center;
        background-size: cover;
        display: flex;
        flex-direction: column;
    }

    .event-tour-strip-promo::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        background-image: inherit;
        background-size: cover;
        background-position: 34% center;
        background-repeat: no-repeat;
    }

    .event-tour-strip-promo-overlay {
        display: none;
    }

    .event-tour-strip-promo-content {
        width: 100%;
        min-height: 0;
        justify-content: flex-start;
        padding: 24px 22px 26px;
        background: #071422;
    }

    .event-tour-strip-promo-content h2 {
        font-size: 37px;
    }

    .event-tour-strip-dates {
        padding: 25px 20px 18px;
    }

    .event-tour-strip-date-link {
        grid-template-columns:
            45px
            60px
            minmax(0, 1fr);
    }

    .event-tour-strip-ticket {
        grid-column: 3;
        justify-self: start;
        margin-bottom: 3px;
    }

}

/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 430px) {

    .event-tour-strip-container {
        width: calc(100% - 28px);
    }

    .event-tour-strip-promo::before {
        aspect-ratio: 4 / 3;
        background-position: 14% center;
    }

    .event-tour-strip-promo-content {
        padding: 22px 20px 24px;
    }

    .event-tour-strip-promo-content h2 {
        font-size: 33px;
    }

    .event-tour-strip-date-link {
        grid-template-columns:
            43px
            minmax(0, 1fr);
    }

    .event-tour-strip-venue-image {
        display: none;
    }

    .event-tour-strip-ticket {
        grid-column: 2;
    }

}
/* ==========================================================================
   EVENT ORGANISER / DAVID - MEET DAVID + LATEST
   ========================================================================== */

.event-home-about-latest {
    position: relative;
    width: 100%;
    padding: 72px 0 76px;
    overflow: hidden;
    background: #ffffff;
}

.event-home-about-latest,
.event-home-about-latest * {
    box-sizing: border-box;
}

.event-home-about-latest-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.event-home-about-latest-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.95fr)
        minmax(0, 1.05fr)
        minmax(0, 1.15fr);
    gap: 44px;
    align-items: center;
}


/* ==========================================================================
   DAVID IMAGE
   ========================================================================== */

.event-home-about-image {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 6px;
    background: #eef1f4;
}

.event-home-about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(7, 20, 34, 0) 58%,
            rgba(7, 20, 34, 0.14) 100%
        );
}

.event-home-about-image img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition:
        transform 0.8s ease;
}

.event-home-about-image:hover img {
    transform: scale(1.025);
}


/* ==========================================================================
   MEET DAVID
   ========================================================================== */

.event-home-about-copy {
    padding-right: 12px;
}

.event-home-about-kicker,
.event-home-latest-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--event-hover-colour);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.event-home-about-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 110px;
    margin-bottom: 17px;
    color: var(--event-hover-colour);
}

.event-home-about-ornament > span:not(.event-home-about-diamond) {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: var(--event-hover-colour);
    opacity: 0.72;
}

.event-home-about-diamond {
    flex: 0 0 auto;
    font-size: 7px;
    line-height: 1;
}

.event-home-about-copy h2 {
    margin: 0;
    max-width: 460px;
    color: var(--event-text-colour, #10213b);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 3vw, 52px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.event-home-about-text {
    margin-top: 19px;
    max-width: 500px;
    color: #5f6874;
    font-size: 14px;
    line-height: 1.75;
}

.event-home-about-signature {
    margin-top: 20px;
}

.event-home-about-signature img {
    display: block;
    width: auto;
    max-width: 170px;
    max-height: 72px;
    object-fit: contain;
}

.event-home-about-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 18px;
    border: 1px solid var(--event-hover-colour);
    border-radius: 3px;
    background: #10213b;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.event-home-about-button:hover {
    background: var(--event-hover-colour);
    color: #071422;
    border-color: var(--event-hover-colour);
    transform: translateY(-1px);
}

.event-home-about-button i {
    font-size: 9px;
    transition:
        transform 0.2s ease;
}

.event-home-about-button:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   LATEST FROM DAVID
   ========================================================================== */

.event-home-latest {
    position: relative;
    padding-left: 42px;
    border-left: 1px solid rgba(201, 164, 92, 0.42);
}

.event-home-latest-heading {
    margin-bottom: 8px;
}

.event-home-latest-heading .event-home-about-ornament {
    margin-bottom: 13px;
}


/* ==========================================================================
   LATEST ITEMS
   ========================================================================== */

.event-home-latest-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid rgba(17, 37, 62, 0.09);
}

.event-home-latest-item:last-child {
    border-bottom: 0;
}

.event-home-latest-image {
    position: relative;
    width: 92px;
    height: 72px;
    overflow: hidden;
    border-radius: 4px;
    background: #edf0f3;
}

.event-home-latest-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.5s ease;
}

.event-home-latest-item:hover
.event-home-latest-image img {
    transform: scale(1.055);
}

.event-home-latest-copy {
    min-width: 0;
}

.event-home-latest-category {
    display: block;
    margin-bottom: 4px;
    color: var(--event-hover-colour);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-home-latest-copy h3 {
    margin: 0;
    color: #10213b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.event-home-latest-copy h3 a {
    color: inherit;
    text-decoration: none;
}

.event-home-latest-copy h3 a:hover {
    color: var(--event-hover-colour);
}

.event-home-latest-copy p {
    margin: 6px 0 0;
    color: #68727d;
    font-size: 12px;
    line-height: 1.45;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-about-latest {
        padding: 58px 0 62px;
    }

    .event-home-about-latest-container {
        width: calc(100% - 56px);
    }

    .event-home-about-latest-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 38px;
    }

    .event-home-latest {
        grid-column: 1 / -1;
        padding-left: 0;
        padding-top: 30px;
        border-left: 0;
        border-top: 1px solid rgba(201, 164, 92, 0.34);
    }

    .event-home-latest-item {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .event-home-latest-image {
        width: 110px;
        height: 80px;
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-about-latest {
        padding: 46px 0 50px;
    }

    .event-home-about-latest-container {
        width: calc(100% - 34px);
    }

    .event-home-about-latest-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-home-about-image {
        min-height: 360px;
    }

    .event-home-about-image img {
        min-height: 360px;
    }

    .event-home-about-copy {
        padding-right: 0;
    }

    .event-home-about-copy h2 {
        font-size: 39px;
    }

    .event-home-latest {
        grid-column: auto;
        padding-top: 26px;
    }

    .event-home-latest-item {
        grid-template-columns: 92px minmax(0, 1fr);
    }

    .event-home-latest-image {
        width: 92px;
        height: 72px;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-home-about-latest-container {
        width: calc(100% - 28px);
    }

    .event-home-about-image {
        min-height: 330px;
    }

    .event-home-about-image img {
        min-height: 330px;
    }

    .event-home-latest-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
    }

    .event-home-latest-image {
        width: 78px;
        height: 66px;
    }

    .event-home-latest-copy h3 {
        font-size: 16px;
    }

}

/* ==========================================================================
   EVENT ORGANISER / DAVID - BOOKS + PSYCHIC ART
   ========================================================================== */

.event-home-books-art {
    position: relative;
    width: 100%;
    padding: 28px 0 32px;
    overflow: hidden;
    background: #071422;
    border-top: 1px solid var(--event-hover-colour);
    border-bottom: 1px solid var(--event-hover-colour);
}

.event-home-books-art,
.event-home-books-art * {
    box-sizing: border-box;
}

.event-home-books-art-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.event-home-books-art-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 44px;
    align-items: stretch;
}


/* ==========================================================================
   SHARED PANEL
   ========================================================================== */

.event-home-books,
.event-home-art {
    position: relative;
    min-width: 0;
    min-height: 330px;
}

.event-home-art {
    padding-left: 44px;
    border-left: 1px solid rgba(201, 164, 92, 0.40);
}


/* ==========================================================================
   HEADINGS
   ========================================================================== */

.event-home-books-heading,
.event-home-art-heading {
    margin-bottom: 16px;
}

.event-home-books-kicker,
.event-home-art-kicker {
    display: block;
    margin-bottom: 7px;
    color: #C9A45C;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-home-books-ornament {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 92px;
    margin-bottom: 10px;
    color: #C9A45C;
}

.event-home-books-ornament span {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: var(--event-hover-colour);
    opacity: 0.7;
}

.event-home-books-ornament img {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: block;
    object-fit: contain;
}

.event-home-books-heading h2,
.event-home-art-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}


/* ==========================================================================
   BOOK LAYOUT
   ========================================================================== */

.event-home-books {
    display: grid;
    grid-template-columns:
        minmax(0, 0.78fr)
        minmax(0, 1.22fr);
    grid-template-rows: auto 1fr;
    column-gap: 28px;
}

.event-home-books-heading {
    grid-column: 1 / -1;
}

.event-home-book-info {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    margin: 0;
    padding: 0;
    border-top: 0;
}

.event-home-book-covers {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    min-height: 240px;
    margin: 0;
    padding: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
}


/* ==========================================================================
   BOOK COVERS
   ========================================================================== */

.event-home-book-cover {
    position: relative;
    width: 98px;
    height: 148px;
    flex: 0 0 98px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.62;
    transform: scale(0.94);
    filter:
        saturate(0.78)
        brightness(0.78);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.event-home-book-cover::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: 8px;
    background:
        radial-gradient(
            circle,
            rgba(201, 164, 92, 0.30) 0%,
            rgba(201, 164, 92, 0.10) 46%,
            rgba(201, 164, 92, 0) 72%
        );
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.event-home-book-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;

    filter:
        drop-shadow(0 10px 10px rgba(0, 0, 0, 0.28));
}

.event-home-book-cover:hover {
    opacity: 0.88;
    transform: scale(0.98);
    filter:
        saturate(0.94)
        brightness(0.94);
}

.event-home-book-cover.is-active {
    z-index: 3;
    opacity: 1;
    transform: scale(1.05);
    filter:
        saturate(1)
        brightness(1.04);
}

.event-home-book-cover.is-active::before {
    opacity: 1;
    transform: scale(1);
}

.event-home-book-cover.is-active img {
    box-shadow: none;

    filter:
    drop-shadow(0 10px 10px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 6px rgba(201, 164, 92, 0.72))
    drop-shadow(0 0 12px rgba(201, 164, 92, 0.42))
    brightness(1.08)
    saturate(1.06);
}


/* ==========================================================================
   BOOK INFO
   ========================================================================== */

.event-home-book-label {
    display: block;
    margin-bottom: 5px;
    color: #C9A45C;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.event-home-book-info h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.12;
}

.event-home-book-info p {
    max-width: 300px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.55;
}

.event-home-book-price {
    margin-top: 10px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.event-home-book-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.event-home-book-buy,
.event-home-book-explore {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 2px;
    border: 1px solid #C9A45C;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.event-home-book-buy {
    border: 1px solid #C9A45C;
    background: var(--event-hover-colour);
    color: #fff;
}

.event-home-book-buy:hover {
    background: transparent;
    color: #fff;
}

.event-home-book-explore {
    border: 1px solid #C9A45C;
    background: transparent;
    color: #ffffff;
}

.event-home-book-explore:hover {
    border: 1px solid #fff;
    color: #C9A45C;
}


/* ==========================================================================
   ART LAYOUT
   ========================================================================== */

.event-home-art {
    display: grid;
    grid-template-columns:
        minmax(0, 0.82fr)
        minmax(0, 1.18fr);
    grid-template-rows: auto 1fr;
    column-gap: 28px;
}

.event-home-art-heading {
    grid-column: 1 / -1;
}

.event-home-art-info {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
    margin: 0;
    padding: 0;
    border-top: 0;
}

.event-home-art-gallery {
    grid-column: 2;
    grid-row: 2;
    position: relative;
    height: 240px;
    margin: 0;
}


/* ==========================================================================
   ART FRAMES
   ========================================================================== */

.event-home-art-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 145px;
    height: 185px;
    overflow: hidden;
    border: 5px solid #f7f3ea;
    background: #d9dde2;
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.30);
    text-decoration: none;
    opacity: 0.72;
    filter:
        saturate(0.82)
        brightness(0.88);
    transition:
        transform 0.4s ease,
        opacity 0.4s ease,
        filter 0.4s ease,
        box-shadow 0.4s ease;
}

.event-home-art-thumb:nth-child(1) {
    transform:
        translate(-105%, -50%)
        rotate(-5deg)
        scale(0.92);
}

.event-home-art-thumb:nth-child(2) {
    transform:
        translate(-50%, -50%)
        rotate(0deg)
        scale(0.96);
}

.event-home-art-thumb:nth-child(3) {
    transform:
        translate(5%, -50%)
        rotate(5deg)
        scale(0.92);
}

.event-home-art-thumb:nth-child(n+4) {
    display: none;
}

.event-home-art-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.event-home-art-thumb.is-active {
    z-index: 8;
    opacity: 1;
    filter:
        saturate(1)
        brightness(1);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.38),
        0 0 20px rgba(201, 164, 92, 0.22);
}

.event-home-art-thumb:nth-child(1).is-active {
    transform:
        translate(-105%, -50%)
        rotate(-2deg)
        scale(1.02);
}

.event-home-art-thumb:nth-child(2).is-active {
    transform:
        translate(-50%, -50%)
        rotate(0deg)
        scale(1.04);
}

.event-home-art-thumb:nth-child(3).is-active {
    transform:
        translate(5%, -50%)
        rotate(2deg)
        scale(1.02);
}

/* ==========================================================================
   ART INFO
   ========================================================================== */

.event-home-art-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 5px;
    color: #C9A45C;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.event-home-art-meta i {
    font-size: 4px;
    font-style: normal;
}

.event-home-art-info h3 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.12;
}

.event-home-art-info p {
    max-width: 300px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    line-height: 1.55;
}

.event-home-art-button {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    padding: 7px 11px;
    border: 1px solid #C9A45C;
    border-radius: 2px;
    background: transparent;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.event-home-art-button:hover {
    background: var(--event-hover-colour);
    color: #c9a45c;
    border: 1px solid #fff;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-books-art {
        padding: 2px 0 2px;
    }

    .event-home-books-art-container {
        width: calc(100% - 56px);
    }

    .event-home-books-art-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .event-home-art {
        padding-left: 0;
        padding-top: 34px;
        border-left: 0;
        border-top: 1px solid rgba(201, 164, 92, 0.35);
    }

}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-books-art {
        padding: 36px 0 40px;
    }

    .event-home-books-art-container {
        width: calc(100% - 34px);
    }

    .event-home-books,
    .event-home-art {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 18px;
    }

    .event-home-books-heading,
    .event-home-art-heading {
        grid-column: 1;
    }

    .event-home-book-info,
    .event-home-art-info {
        grid-column: 1;
        grid-row: auto;
    }

    .event-home-book-covers,
    .event-home-art-gallery {
        grid-column: 1;
        grid-row: auto;
    }

    .event-home-book-covers {
        min-height: 200px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .event-home-book-covers::-webkit-scrollbar {
        display: none;
    }

    .event-home-book-cover {
        width: 92px;
        height: 138px;
        flex-basis: 92px;
    }

    .event-home-art-gallery {
        height: 220px;
    }

    .event-home-art-thumb {
        width: 130px;
        height: 165px;
    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-home-books-art-container {
        width: calc(100% - 28px);
    }

    .event-home-books-heading h2,
    .event-home-art-heading h2 {
        font-size: 25px;
    }

    .event-home-book-info h3,
    .event-home-art-info h3 {
        font-size: 19px;
    }

    .event-home-book-cover {
        width: 84px;
        height: 126px;
        flex-basis: 84px;
    }

    .event-home-art-thumb {
        width: 118px;
        height: 152px;
    }

}
/* ==========================================================================
   EVENT ORGANISER / DAVID - SERVICES
   ========================================================================== */

.event-home-services {
    position: relative;
    width: 100%;
    padding: 52px 0 56px;
    overflow: hidden;
    background: #ffffff;
}

.event-home-services,
.event-home-services * {
    box-sizing: border-box;
}

.event-home-services-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}


/* ==========================================================================
   HEADING
   ========================================================================== */

.event-home-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.event-home-services-heading-copy {
    max-width: 720px;
}

.event-home-services-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 120px;
    margin-bottom: 10px;
}

.event-home-services-ornament span {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: var(--event-services-accent);
    opacity: 0.72;
}

.event-home-services-ornament img {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: block;
    object-fit: contain;
}

.event-home-services-heading h2 {
    margin: 0;
    color: var(--event-services-heading);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.event-home-services-heading p {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--event-services-text);
    font-size: 13px;
    line-height: 1.65;
}


/* ==========================================================================
   MAIN CTA
   ========================================================================== */

.event-home-services-main-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 16px;
    border: 1px solid var(--event-services-button-bg);
    border-radius: 3px;
    background: var(--event-services-button-bg);
    color: var(--event-services-button-text);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.event-home-services-main-button:hover {
    background: transparent;
    color: var(--event-services-accent);
    border-color: var(--event-services-accent);
    transform: translateY(-1px);
}

.event-home-services-main-button i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.event-home-services-main-button:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   GRID
   ========================================================================== */

.event-home-services-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.35fr)
        minmax(0, 0.82fr)
        minmax(0, 0.82fr);
    gap: 18px;
}


/* ==========================================================================
   CARD
   ========================================================================== */

.event-home-service-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: #071422;
    border-radius: 5px;
    box-shadow:
        0 14px 34px rgba(12, 31, 52, 0.10);
}

.event-home-service-card.is-featured {
    min-height: 360px;
    grid-row: span 2;
}

.event-home-service-image {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
}

.event-home-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.7s ease;
}

.event-home-service-card:hover
.event-home-service-image img {
    transform: scale(1.05);
}

.event-home-service-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(3, 12, 24, 0.06) 10%,
            rgba(3, 12, 24, 0.30) 48%,
            rgba(3, 12, 24, 0.92) 100%
        );
}


/* ==========================================================================
   CARD CONTENT
   ========================================================================== */

.event-home-service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 20px;
    color: #ffffff;
}

.event-home-service-card.is-featured
.event-home-service-content {
    padding: 24px;
}

.event-home-service-content h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.08;
}

.event-home-service-card.is-featured
.event-home-service-content h3 {
    font-size: 30px;
}

.event-home-service-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.event-home-service-content p {
    max-width: 420px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================================
   CARD ACTIONS
   ========================================================================== */

.event-home-service-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.event-home-service-details,
.event-home-service-book {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-home-service-details {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.event-home-service-details:hover {
    border-color: var(--event-services-accent);
    color: var(--event-services-accent);
}

.event-home-service-book {
    border: 1px solid var(--event-services-accent);
    background: var(--event-services-accent);
    color: #071422;
}

.event-home-service-book:hover {
    background: transparent;
    color: var(--event-services-accent);
}

.event-home-service-details i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.event-home-service-details:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   FOURTH / FIFTH / EXTRA CARDS
   ========================================================================== */

.event-home-service-card:nth-child(n+4) {
    min-height: 210px;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-services {
        padding: 46px 0 50px;
    }

    .event-home-services-container {
        width: calc(100% - 56px);
    }

    .event-home-services-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .event-home-service-card.is-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 340px;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-services {
        padding: 40px 0 44px;
    }

    .event-home-services-container {
        width: calc(100% - 34px);
    }

    .event-home-services-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 22px;
    }

    .event-home-services-heading h2 {
        font-size: 38px;
    }

    .event-home-services-grid {
        grid-template-columns: 1fr;
    }

    .event-home-service-card,
    .event-home-service-card.is-featured,
    .event-home-service-card:nth-child(n+4) {
        min-height: 290px;
    }

    .event-home-service-card.is-featured
    .event-home-service-content h3 {
        font-size: 25px;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 420px) {

    .event-home-services-container {
        width: calc(100% - 28px);
    }

    .event-home-service-card,
    .event-home-service-card.is-featured,
    .event-home-service-card:nth-child(n+4) {
        min-height: 260px;
    }
}

/* ==========================================================================
   EVENT ORGANISER / DAVID - FINAL SERVICES + TESTIMONIALS STRIP
   ========================================================================== */

.event-home-final-strip {
    position: relative;
    width: 100%;
    padding: 34px 0 38px;
    overflow: hidden;
    background: #ffffff;
}

.event-home-final-strip,
.event-home-final-strip * {
    box-sizing: border-box;
}

.event-home-final-container {
    width: min(1420px, calc(100% - 80px));
    margin: 0 auto;
}

.event-home-final-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(0, 1.08fr);
    gap: 34px;
    align-items: stretch;
}


/* ==========================================================================
   LEFT - FEATURED SERVICE
   ========================================================================== */

.event-home-final-service {
    display: grid;
    grid-template-columns:
        300px
        minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 1px;
}

.event-home-final-service-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #edf0f3;
    border-radius: 6px 28px 6px 28px;
}

.event-home-final-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.event-home-final-service-copy {
    min-width: 0;
}

.event-home-final-heading h2,
.event-home-final-testimonial-header h2 {
    margin: 0;
    color: #10213b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.05;
}

.event-home-final-service-copy > p {
    max-width: 420px;
    margin: 13px 0 0;
    color: #68727d;
    font-size: 12px;
    line-height: 1.6;
}


/* ==========================================================================
   HEART ORNAMENT
   ========================================================================== */

.event-home-final-ornament {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 110px;
    margin-bottom: 10px;
}

.event-home-final-ornament span {
    display: block;
    height: 1px;
    flex: 1 1 auto;
    background: #c9a45c;
    opacity: 0.72;
}

.event-home-final-ornament img {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: block;
    object-fit: contain;
}


/* ==========================================================================
   SERVICE ACTIONS
   ========================================================================== */

.event-home-final-service-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.event-home-final-primary,
.event-home-final-help {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
}

.event-home-final-primary {
    border: 1px solid #10213b;
    background: #10213b;
    color: #ffffff;
}

.event-home-final-primary:hover {
    background: #c9a45c;
    border-color: #c9a45c;
    color: #071422;
}

.event-home-final-help {
    border: 1px solid rgba(16, 33, 59, 0.18);
    background: transparent;
    color: #10213b;
}

.event-home-final-help:hover {
    border-color: #c9a45c;
    color: #c9a45c;
}

.services-h3-small {
    font-size: 22px;
    margin-top: 16px;
}

.services-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.44;

}


/* ==========================================================================
   RIGHT - KIND WORDS
   ========================================================================== */

.event-home-final-testimonials {
    position: relative;
    min-width: 0;
    padding-left: 34px;
    border-left: 1px solid rgba(201, 164, 92, 0.35);
}

.event-home-final-testimonial-header {
    margin-bottom: 14px;
}


/* ==========================================================================
   TESTIMONIAL GROUPS
   ========================================================================== */

.event-home-testimonial-rotator {
    position: relative;
    min-height: 205px;
}

.event-home-testimonial-group {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease,
        transform 0.6s ease;
}

.event-home-testimonial-group.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.event-home-testimonial {
    position: relative;
    min-width: 0;
    padding: 12px 18px 12px 18px;
    border-left: 1px solid rgba(201, 164, 92, 0.32);
}

.event-home-testimonial-quote {
    position: absolute;
    top: 0;
    left: 10px;
    color: #c9a45c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1;
    opacity: 0.82;
}

.event-home-testimonial-text {
    position: relative;
    z-index: 2;
    padding-top: 15px;
    color: #5f6874;
    font-size: 12px;
    line-height: 1.65;
}

.event-home-testimonial-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
}

.event-home-testimonial-bottom strong {
    display: block;
    color: #10213b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.event-home-testimonial-bottom span {
    display: block;
    margin-top: 3px;
    color: #8a939d;
    font-size: 11px;
    line-height: 1.25;
}

.event-home-testimonial-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #c9a45c;
    font-size: 11px;
}


/* ==========================================================================
   TESTIMONIAL MEDIA
   ========================================================================== */

.event-home-testimonial-media {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: #10213b;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}

.event-home-testimonial-media:hover {
    color: #c9a45c;
}


/* ==========================================================================
   TESTIMONIAL FOOTER
   ========================================================================== */

.event-home-final-testimonial-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.event-home-final-testimonial-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10213b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-home-final-testimonial-footer a:hover {
    color: #c9a45c;
}

.event-home-final-testimonial-footer i {
    transition: transform 0.2s ease;
}

.event-home-final-testimonial-footer a:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1100px) {

    .event-home-final-container {
        width: calc(100% - 56px);
    }

    .event-home-final-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .event-home-final-testimonials {
        padding-left: 0;
        padding-top: 28px;
        border-left: 0;
        border-top: 1px solid rgba(201, 164, 92, 0.35);
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-home-final-strip {
        padding: 28px 0 34px;
    }

    .event-home-final-container {
        width: calc(100% - 34px);
    }

    .event-home-final-service {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-home-final-service-image {
        height: 260px;
    }

    .event-home-testimonial-group {
        position: relative;
        display: none;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-home-testimonial-group.is-active {
        display: grid;
    }

    .event-home-testimonial-rotator {
        min-height: 0;
    }

    .event-home-final-testimonial-footer {
        justify-content: flex-start;
    }
}

/* ==========================================================================
   DAVID - ROTATING SERVICES
   ========================================================================== */

.event-home-service-rotation {
    position: relative;
    min-height: 150px;
}

.event-home-service-rotation-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(5px);
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease,
        transform 0.6s ease;
}

.event-home-service-rotation-copy.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}


/* ROTATING SERVICE IMAGE */

.event-home-final-service-image {
    position: relative;
}

.event-home-service-rotation-image {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.event-home-service-rotation-image.is-active {
    opacity: 1;
    visibility: visible;
}

.event-home-service-rotation-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
/* ==========================================================================
   DAVID - TESTIMONIAL CLIENT PHOTOS
   ========================================================================== */

.event-home-testimonial-client {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}

.event-home-testimonial-client > img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: block;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow:
        0 0 0 1px rgba(201, 164, 92, 0.45),
        0 3px 9px rgba(16, 33, 59, 0.10);
}

.event-home-testimonial-client-details {
    min-width: 0;
}

.event-home-testimonial-client-details strong {
    display: block;
    color: #10213b;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

.event-home-testimonial-client-details span {
    display: block;
    margin-top: 3px;
    color: #8a939d;
    font-size: 11px;
    line-height: 1.25;
}

/* ==========================================================================
   DAVID - LIVE NOW
   ========================================================================== */

.event-home-live {
    position: relative;
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(201, 164, 92, 0.38);
}

.event-home-live-label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #b92d2d;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.event-home-live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #c92f2f;
    box-shadow: 0 0 0 rgba(201, 47, 47, 0.4);
    animation: eventDavidLivePulse 2s infinite;
}

@keyframes eventDavidLivePulse {

    0% {
        box-shadow: 0 0 0 0 rgba(201, 47, 47, 0.38);
    }

    70% {
        box-shadow: 0 0 0 7px rgba(201, 47, 47, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 47, 47, 0);
    }
}


/* LIVE CONTENT */

.event-home-live-content {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}


/* IMAGE */

.event-home-live-image {
    position: relative;
    display: block;
    width: 105px;
    height: 78px;
    overflow: hidden;
    border-radius: 3px 13px 3px 13px;
    background: #10213b;
}

.event-home-live-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.event-home-live-image:hover img {
    transform: scale(1.05);
}

.event-home-live-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #b92d2d;
    font-size: 11px;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}


/* COPY */

.event-home-live-copy {
    min-width: 0;
}

.event-home-live-copy h3 {
    margin: 0;
    color: #10213b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.15;
}

.event-home-live-copy p {
    margin: 5px 0 0;
    color: #727c87;
    font-size: 12px;
    line-height: 1.45;
}


/* WATCH LINK */

.event-home-live-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: #b92d2d;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
}

.event-home-live-button:hover {
    color: #c9a45c;
}

.event-home-live-button i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.event-home-live-button:hover i {
    transform: translateX(3px);
}


/* MOBILE */

@media (max-width: 575px) {

    .event-home-live-content {
        grid-template-columns: 90px minmax(0, 1fr);
        gap: 12px;
    }

    .event-home-live-image {
        width: 90px;
        height: 70px;
    }

    .event-home-live-copy h3 {
        font-size: 17px;
    }
}

/* ==========================================================================
   DAVID - UPCOMING TOUR DATES SCROLL
   ========================================================================== */

.event-tour-strip-date-list {
    max-height: 228px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;

    /* Firefox - hidden until hover */
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.event-tour-strip-date-list:hover {
    scrollbar-color: rgba(201, 164, 92, 0.65) transparent;
}


/* Chrome / Edge / Safari */

.event-tour-strip-date-list::-webkit-scrollbar {
    width: 4px;
}

.event-tour-strip-date-list::-webkit-scrollbar-track {
    background: transparent;
}

.event-tour-strip-date-list::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
}

.event-tour-strip-date-list:hover::-webkit-scrollbar-thumb {
    background: rgba(201, 164, 92, 0.65);
}

.event-tour-strip-date-list:hover::-webkit-scrollbar-thumb:hover {
    background: rgba(201, 164, 92, 0.9);
}

/* ==========================================================================
   DAVID - FOOTER HEARTS
   ========================================================================== */

.event-footer-hearts {
    flex: 0 0 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding-left: 20px;
}

.event-footer-hearts img {
    display: block;
    width: 82px;
    height: auto;
    opacity: 0.28;
    filter: drop-shadow(0 3px 10px rgba(198, 161, 91, 0.08));
}


/* Keep the footer clean on smaller screens */

@media (max-width: 1199px) {

    .event-footer-hearts {
        display: none;
    }
}

/* ==========================================================================
   ABOUT DAVID - SIGNATURE / STORY BUTTON
   ========================================================================== */

.event-home-about-signature-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
}

.event-home-about-signature-row .event-home-about-signature {
    margin: 0;
}

.event-home-about-signature-row .event-home-about-button {
    margin: 0;
}


/* MOBILE */

@media (max-width: 575px) {

    .event-home-about-signature-row {
        flex-wrap: wrap;
        gap: 14px 20px;
    }
}
/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 600px) {

    .event-footer-container {
        width: calc(100% - 28px);
    }

    .event-footer-main {
        padding: 30px 0 24px;
    }

    .event-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 22px;
        align-items: start;
    }

    .event-footer-about {
        grid-column: 1 / -1;
        max-width: none;
    }

    .event-footer-grid > .event-footer-column:last-child {
        grid-column: auto;
        max-width: none;
    }

    .event-footer-logo img {
        max-width: 170px;
        max-height: 50px;
    }

    .event-footer-about-text {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.55;
    }

    .event-footer-column h4,
    .event-footer-column-title {
        font-size: 11px;
    }

    .event-footer-column a,
    .event-footer-column li,
    .event-footer-column p {
        font-size: 11px;
    }

    .event-footer-newsletter-btn {
        width: auto;
        max-width: 100%;
    }

    .event-footer-bottom-inner {
        min-height: 62px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        padding: 11px 0;
    }

}
@media (max-width: 767px) {

    .event-home-art-gallery {
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
    }

    .event-home-art-thumb {
        cursor: grab;
    }

}
/* ==========================================================================
   MOBILE - BODY TEXT READABILITY
   ========================================================================== */

@media (max-width: 767px) {

    /* Main descriptive copy */

    .event-home-about-text,
    .event-home-latest-copy p,
    .event-home-live-copy p,
    .event-tour-strip-promo-content p,
    .event-home-book-info p,
    .event-home-art-info p,
    .event-home-service-copy p,
    .event-home-testimonial-text,
    .event-home-final-copy p {
        font-size: 14px;
        line-height: 1.65;
    }

    /* Supporting information */

    .event-home-book-price,
    .event-home-art-meta,
    .event-home-testimonial-location,
    .event-home-testimonial-service {
        font-size: 13px;
        line-height: 1.5;
    }

}
/* ==========================================================================
   TABLET HERO IMAGE POSITION
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1100px) {

    .event-home-hero-slide {
        background-position: 78% !important;
        margin-top: 10px;
    }

}

/* ==========================================================================
   DESKTOP HERO IMAGE POSITION
   ========================================================================== */

@media (min-width: 1101px) {

    .event-home-hero-slide {
        background-position: 48% -18% !important;
    }

}
/* ==========================================================================
   TABLET - STICKY HEADER ACTIONS
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1100px) {

    .event-sticky-inner {
        width: 100%;
    }

    .event-sticky-navigation {
        display: none;
    }

    .event-sticky-actions {
        margin-left: auto;
        justify-content: flex-end;
    }

    .event-sticky-logo {
        margin-right: auto;
    }

}

/* ==========================================================================
   ANIMATION
   ========================================================================== */

@keyframes eventTourSwirlOne {

    0% {
        opacity: 0.20;
        transform:
            rotate(-15deg)
            scale(0.96);
    }

    50% {
        opacity: 0.72;
        transform:
            rotate(-7deg)
            scale(1.04);
    }

    100% {
        opacity: 0.20;
        transform:
            rotate(-15deg)
            scale(0.96);
    }
}


@keyframes eventTourSwirlTwo {

    0% {
        opacity: 0.12;
        transform:
            rotate(8deg)
            scale(0.98);
    }

    50% {
        opacity: 0.50;
        transform:
            rotate(2deg)
            scale(1.05);
    }

    100% {
        opacity: 0.12;
        transform:
            rotate(8deg)
            scale(0.98);
    }
}


@keyframes eventTourSwirlThree {

    0% {
        opacity: 0.14;
        transform:
            rotate(15deg)
            scale(0.96);
    }

    50% {
        opacity: 0.44;
        transform:
            rotate(22deg)
            scale(1.05);
    }

    100% {
        opacity: 0.14;
        transform:
            rotate(15deg)
            scale(0.96);
    }
}


@keyframes eventTourParticles {

    from {
        transform: translate3d(0, 8px, 0);
    }

    to {
        transform: translate3d(24px, -16px, 0);
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

    .event-tour-strip-swirl {
        display: none;
    }
}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .event-tour-strip-swirl-ring,
    .event-tour-strip-swirl-particles {
        animation: none !important;
    }
}
/* ==========================================================================
   DAVID TOUR - BACKGROUND VIDEO
   ========================================================================== */

.event-tour-strip-promo {
    position: relative;
    overflow: hidden;
}

.event-tour-strip-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.event-tour-strip-promo-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.event-tour-strip-promo-content {
    position: relative;
    z-index: 2;
}


/* MOBILE
   Keep the static image treatment we already created.
   */

@media (max-width: 767px) {

    .event-tour-strip-video {
        display: none;
    }
}

