/* =============================================================================
   London Events Calendar — page-scoped CSS
   Design rebuild 2026-05-20. Sections numbered to match the page template.
   ========================================================================== */

/* Hide site-wide nav-gutter mask + ambient-light on this page —
   hero owns its own backdrop per feedback_hero_right_image_pattern. */
body > div[aria-hidden="true"][style*="height: 145px"] { display: none; }
body .ambient-light { display: none !important; }

.lec-section { padding: 64px 0; }
.lec-section--tight { padding: 40px 0; }

.lec-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 10px;
}
.lec-h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 40px);
    letter-spacing: -0.005em;
    margin: 0 0 24px 0;
}
.lec-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}
.lec-section-head .lec-h2 { margin-bottom: 0; }
.lec-section-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4AF37;
    white-space: nowrap;
}
.lec-section-link:hover { color: #f0d97a; }

/* =============================================================================
   1. HERO — right-image full-bleed (per feedback_hero_right_image_pattern)
   ========================================================================== */
.lec-hero { position: relative; min-height: 620px; overflow: hidden; padding: 160px 0 80px; }
.lec-hero-bg-img {
    position: absolute;
    top: 0; right: 0;
    width: 78%;
    height: 100%;
    background-size: cover;
    background-position: left center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
            mask-image: linear-gradient(to right, transparent 0%, black 25%);
}
.lec-hero-content { max-width: 560px; position: relative; z-index: 2; }
.lec-hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 16px;
}
.lec-hero h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: #fff;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 18px 0;
}
.lec-hero p.lec-hero-lede {
    color: rgba(255,255,255,0.78);
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 28px 0;
    max-width: 480px;
}
.lec-hero-pills { display: flex; flex-wrap: wrap; gap: 18px; }
.lec-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 999px;
    background: rgba(15,12,8,0.55);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1.2;
}
.lec-hero-pill-ic {
    width: 28px; height: 28px;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 28px;
}
.lec-hero-pill-ic svg.lucide { opacity: 1; color: #D4AF37; }

@media (max-width: 900px) {
    .lec-hero { min-height: auto; padding: 100px 0 40px; }
    .lec-hero-bg-img {
        position: relative; top: auto; right: auto;
        width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
        height: 280px; opacity: 1;
        -webkit-mask-image: none; mask-image: none;
        margin-bottom: 28px;
    }
    .lec-hero-content { max-width: 100%; }
    .lec-hero h1 { font-size: 38px; }
}

/* =============================================================================
   2. CATEGORY TILES
   ========================================================================== */
.lec-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.lec-cat-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.14);
}
.lec-cat-tile img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.lec-cat-tile:hover img { transform: scale(1.04); }
.lec-cat-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.82) 100%);
}
.lec-cat-tile-body {
    position: absolute; left: 18px; right: 18px; bottom: 16px;
    z-index: 2;
    color: #fff;
}
.lec-cat-tile-ic {
    display: inline-flex;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    background: rgba(212,175,55,0.16);
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 999px;
    margin-bottom: 12px;
    color: #D4AF37;
}
.lec-cat-tile-ic svg.lucide { opacity: 1; }
.lec-cat-tile-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 4px 0;
}
.lec-cat-tile-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4AF37;
    display: inline-flex; align-items: center; gap: 6px;
}
@media (max-width: 900px) {
    .lec-cats-grid { grid-template-columns: repeat(2, 1fr); }
    .lec-cat-tile:last-child { grid-column: span 2; aspect-ratio: 16 / 7; }
}

/* =============================================================================
   3. FEATURED EVENT CARDS (Handpicked experiences)
   ========================================================================== */
.lec-featured-wrap { position: relative; }
.lec-featured-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.lec-featured-rail::-webkit-scrollbar { display: none; }
.lec-featured-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.14);
    scroll-snap-align: start;
    display: block;
}
.lec-featured-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.lec-featured-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.95) 100%);
}
.lec-featured-date {
    position: absolute; top: 14px; left: 14px;
    background: rgba(8,8,8,0.85);
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 8px;
    padding: 8px 10px;
    text-align: center;
    color: #D4AF37;
    font-weight: 700;
    line-height: 1;
    z-index: 3;
    min-width: 48px;
}
.lec-featured-date-day { display: block; font-size: 18px; }
.lec-featured-date-mon { display: block; font-size: 10px; letter-spacing: 0.18em; margin-top: 4px; }
.lec-featured-body {
    position: absolute; left: 16px; right: 16px; bottom: 14px;
    z-index: 3; color: #fff;
}
.lec-featured-eyebrow {
    display: block;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 6px;
}
.lec-featured-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 19px;
    line-height: 1.18;
    margin: 0 0 6px 0;
    color: #fff;
}
.lec-featured-desc {
    font-size: 12.5px;
    line-height: 1.45;
    color: rgba(255,255,255,0.78);
    margin: 0 0 10px 0;
}
.lec-featured-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4AF37;
    display: inline-flex; align-items: center; gap: 6px;
}

.lec-rail-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.35);
    background: rgba(8,8,8,0.8);
    color: #D4AF37;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 4;
}
.lec-rail-arrow:hover { background: rgba(212,175,55,0.1); }
.lec-rail-arrow--prev { left: -16px; }
.lec-rail-arrow--next { right: -16px; }

@media (max-width: 900px) {
    .lec-featured-rail { grid-auto-flow: column; grid-auto-columns: 78%; grid-template-columns: none; gap: 12px; }
    .lec-rail-arrow { display: none; }
}

/* =============================================================================
   4. ALL EVENTS — filters + table + inline expand
   ========================================================================== */
.lec-h2-lede {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 6px 0 22px;
    max-width: 640px;
}

/* -- Answer block (AI-citable summary panel) -- */
.lec-answer-block {
    border: 1px solid rgba(212,175,55,0.32);
    background: rgba(8,8,8,0.55);
    border-left: 3px solid #D4AF37;
    border-radius: 10px;
    padding: 22px 24px;
    max-width: 880px;
}
.lec-answer-block .lec-eyebrow { display: block; margin-bottom: 10px; }
.lec-answer-block p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

/* -- Controls bar -- */
.lec-all-controls {
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
    margin-bottom: 18px;
}
.lec-select-wrap, .lec-search-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: rgba(8,8,8,0.75);
    border: 1px solid rgba(212,175,55,0.24);
    border-radius: 10px;
    overflow: hidden;
    min-width: 168px;
}
.lec-search-wrap { flex: 1 1 240px; max-width: 340px; }
.lec-select-ic {
    display: inline-flex; align-items: center; justify-content: center;
    color: #D4AF37;
    padding: 0 4px 0 12px;
    pointer-events: none;
}
.lec-select-ic svg.lucide { opacity: 1; }
.lec-select {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.9);
    padding: 11px 36px 11px 8px;
    font-size: 13px;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #D4AF37 50%), linear-gradient(135deg, #D4AF37 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
    flex: 1;
    min-width: 0;
}
.lec-select:focus { outline: none; }
/* Native dropdowns open with the OS palette; force dark-on-gold to match the theme so option text isn't invisible white-on-white. */
.lec-select option { background: #0a0a0a; color: rgba(255,255,255,0.92); }
.lec-select option:checked, .lec-select option:hover { background: #1a1a1a; color: #D4AF37; }
.lec-search {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.9);
    padding: 11px 14px 11px 8px;
    font-size: 13px;
    width: 100%;
    flex: 1;
    min-width: 0;
}
.lec-search::placeholder { color: rgba(255,255,255,0.4); }
.lec-search:focus { outline: none; }

.lec-toggle-label-view {
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: 4px;
}
.lec-toggle {
    display: inline-flex;
    border: 1px solid rgba(212,175,55,0.32);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(8,8,8,0.55);
}
.lec-toggle button {
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.75);
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.lec-toggle button.is-active {
    background: rgba(212,175,55,0.14);
    color: #D4AF37;
}
.lec-toggle button svg.lucide { opacity: 1; }

/* -- Table -- */
.lec-table {
    background: rgba(8,8,8,0.55);
    border: 1px solid rgba(212,175,55,0.14);
    border-radius: 14px;
    overflow: hidden;
}
.lec-thead {
    display: grid;
    grid-template-columns: 88px minmax(0, 1.6fr) minmax(0, 1.3fr) minmax(0, 0.9fr) 96px 64px;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(212,175,55,0.14);
    color: #D4AF37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.lec-tbody { display: block; }

.lec-event-row { display: block; border-bottom: 1px solid rgba(212,175,55,0.08); }
.lec-event-row:last-child { border-bottom: 0; }
.lec-event-row.is-hidden, .lec-event-row.is-overflow { display: none; }

.lec-event-head {
    display: grid;
    grid-template-columns: 88px minmax(0, 1.6fr) minmax(0, 1.3fr) minmax(0, 0.9fr) 96px 64px;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font: inherit;
    transition: background 0.2s ease;
}
.lec-event-head:hover { background: rgba(212,175,55,0.04); }
.lec-event-row.is-open .lec-event-head { background: rgba(212,175,55,0.06); }

.lec-event-date { color: #D4AF37; line-height: 1.1; }
.lec-event-date-day {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0;
}
.lec-event-date-mon {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 2px;
}
.lec-event-date-dow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(212,175,55,0.65);
    margin-top: 2px;
}
.lec-event-date-shape {
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.35;
}
.lec-event-row.is-tba .lec-cta-secondary { display: none; }

.lec-event-info { display: flex; align-items: center; gap: 14px; min-width: 0; }
.lec-event-thumb {
    flex: 0 0 76px;
    width: 76px; height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.18);
}
.lec-event-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lec-event-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    line-height: 1.25;
    margin: 0;
    min-width: 0;
}

.lec-event-venue {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    min-width: 0;
}
.lec-event-venue-ic { color: #D4AF37; display: inline-flex; padding-top: 2px; }
.lec-event-venue-stack { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.lec-event-venue-name { color: #fff; }
.lec-event-venue-area { color: rgba(255,255,255,0.5); font-size: 12px; }

.lec-event-cat-cell {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.lec-event-cat-ic { color: #D4AF37; display: inline-flex; }
.lec-event-cat-ic svg.lucide { opacity: 1; }

.lec-event-time {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.lec-event-time-ic { color: #D4AF37; display: inline-flex; }
.lec-event-time-ic svg.lucide { opacity: 1; }

.lec-event-chev {
    justify-self: end;
    width: 38px; height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.45);
    color: #D4AF37;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease, background 0.2s ease;
}
.lec-event-head:hover .lec-event-chev { background: rgba(212,175,55,0.1); }
.lec-event-row.is-open .lec-event-chev {
    transform: rotate(-90deg);
    background: rgba(212,175,55,0.12);
}

/* -- Expanded panel -- */
.lec-event-expand {
    background: rgba(212,175,55,0.04);
    border-top: 1px solid rgba(212,175,55,0.14);
}
.lec-event-expand[hidden] { display: none; }
.lec-expand-inner {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 26px;
    padding: 26px 22px 30px;
    align-items: start;
}
.lec-expand-image {
    width: 100%; aspect-ratio: 1 / 0.95;
    border-radius: 10px; overflow: hidden;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.18);
}
.lec-expand-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lec-expand-body { min-width: 0; }
.lec-expand-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 10px;
}
.lec-expand-desc {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.lec-expand-sub {
    display: grid; grid-template-columns: 1fr; gap: 18px;
}
.lec-expand-sub-h {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #D4AF37;
    margin: 0 0 10px;
    display: inline-flex; align-items: center; gap: 6px;
}
.lec-expand-sub-ic svg.lucide { opacity: 1; }
.lec-highlights { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.lec-highlights li {
    display: inline-flex; align-items: flex-start; gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
}
.lec-highlight-ic { color: #D4AF37; display: inline-flex; padding-top: 3px; }
.lec-highlight-ic svg.lucide { opacity: 1; }

.lec-expand-cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.lec-cta-primary {
    background: #D4AF37;
    color: #0a0a0a;
    border: 0;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
    transition: filter 0.2s ease;
}
.lec-cta-primary:hover { filter: brightness(1.08); }
.lec-cta-primary .lec-cta-ic { display: inline-flex; }
.lec-cta-primary .lec-cta-ic svg.lucide { opacity: 1; }
.lec-cta-primary .lec-cta-arrow { display: inline-flex; }
.lec-cta-primary .lec-cta-arrow svg.lucide { opacity: 1; }

.lec-cta-secondary {
    background: transparent;
    color: #D4AF37;
    border: 1px solid rgba(212,175,55,0.5);
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    transition: background 0.2s ease;
}
.lec-cta-secondary:hover { background: rgba(212,175,55,0.1); }
.lec-cta-secondary svg.lucide { opacity: 1; }

.lec-cta-link {
    color: #D4AF37;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.lec-cta-link svg.lucide { opacity: 1; }
.lec-cta-link:hover { color: #e8c95e; }

/* -- Compact view: hide thumbnails + venue area line, tighten rows -- */
.lec-tbody[data-view="compact"] .lec-event-thumb { display: none; }
.lec-tbody[data-view="compact"] .lec-event-venue-area { display: none; }
.lec-tbody[data-view="compact"] .lec-event-head { padding: 12px 22px; }

/* -- Empty state + load more -- */
.lec-empty {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    padding: 28px 16px;
    background: rgba(8,8,8,0.55);
    border: 1px solid rgba(212,175,55,0.14);
    border-radius: 14px;
    margin-top: 16px;
}
.lec-empty-clear {
    background: transparent; border: 0;
    color: #D4AF37; cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 4px;
}
.lec-loadmore-wrap {
    display: flex; justify-content: center;
    margin-top: 20px;
}
.lec-loadmore {
    background: rgba(8,8,8,0.55);
    border: 1px solid rgba(212,175,55,0.45);
    color: #D4AF37;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.2s ease;
}
.lec-loadmore:hover { background: rgba(212,175,55,0.1); }
.lec-loadmore svg.lucide { opacity: 1; }
.lec-loadmore[hidden] { display: none; }

/* -- Responsive -- */
@media (max-width: 1100px) {
    .lec-thead { grid-template-columns: 80px minmax(0, 1.5fr) minmax(0, 1.2fr) 110px 80px 56px; padding: 12px 16px; gap: 12px; }
    .lec-event-head { grid-template-columns: 80px minmax(0, 1.5fr) minmax(0, 1.2fr) 110px 80px 56px; padding: 16px; gap: 12px; }
    .lec-expand-inner { grid-template-columns: 1fr 1fr; }
    .lec-expand-cta { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
    .lec-expand-cta > * { flex: 1 1 200px; }
}
@media (max-width: 760px) {
    .lec-all-controls { gap: 8px; }
    .lec-select-wrap, .lec-search-wrap { flex: 1 1 calc(50% - 8px); min-width: 0; }
    .lec-toggle-label-view { display: none; }
    .lec-thead { display: none; }
    .lec-event-head {
        grid-template-columns: 64px 1fr 44px;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "date info  chev"
            "date venue chev"
            "date meta  chev";
        gap: 8px 14px;
        padding: 14px;
        align-items: start;
    }
    .lec-event-date { grid-area: date; }
    .lec-event-date-day { font-size: 22px; }
    .lec-event-info { grid-area: info; gap: 12px; }
    .lec-event-thumb { flex-basis: 56px; width: 56px; height: 48px; }
    .lec-event-name { font-size: 16px; }
    .lec-event-venue { grid-area: venue; font-size: 12.5px; }
    .lec-event-cat-cell, .lec-event-time { font-size: 12px; }
    .lec-event-cat-cell { grid-area: meta; }
    .lec-event-time { grid-area: meta; justify-self: end; }
    .lec-event-chev { grid-area: chev; width: 32px; height: 32px; align-self: center; }
    .lec-expand-inner { grid-template-columns: 1fr; padding: 18px; gap: 18px; }
    .lec-expand-sub { grid-template-columns: 1fr; gap: 16px; }
    .lec-expand-cta { flex-direction: column; }
    .lec-expand-cta > * { width: 100%; }
}

/* =============================================================================
   5. ICONIC VENUES STRIP
   ========================================================================== */
.lec-venues-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.lec-venue-tile {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(212,175,55,0.14);
}
.lec-venue-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lec-venue-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.92) 100%);
}
.lec-venue-body { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 2; color: #fff; }
.lec-venue-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 2px 0;
}
.lec-venue-area { font-size: 11px; color: rgba(255,255,255,0.65); letter-spacing: 0.04em; }

@media (max-width: 900px) {
    .lec-venues-grid { grid-template-columns: repeat(2, 1fr); }
    .lec-venue-tile:last-child { grid-column: span 2; aspect-ratio: 16 / 7; }
}

/* =============================================================================
   6. FLEET STRIP
   ========================================================================== */
.lec-fleet-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.lec-fleet-card {
    background: rgba(8,8,8,0.55);
    border: 1px solid rgba(212,175,55,0.14);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    color: inherit;
}
.lec-fleet-img-wrap { flex: 1 1 auto; min-height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.lec-fleet-img-wrap img { width: 100%; max-height: 110px; object-fit: contain; }
.lec-fleet-name { font-size: 13px; font-weight: 600; color: #fff; margin: 0 0 2px 0; }
.lec-fleet-pax { font-size: 11px; color: rgba(255,255,255,0.55); }
.lec-fleet-anchor {
    background: rgba(212,175,55,0.06);
    border-color: rgba(212,175,55,0.32);
    text-align: left;
    justify-content: space-between;
}
.lec-fleet-anchor-h { font-family: var(--font-heading); font-weight: 500; font-size: 17px; color: #fff; margin: 0 0 6px 0; }
.lec-fleet-anchor-p { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.4; margin: 0 0 14px 0; }
.lec-fleet-anchor-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4AF37;
}

@media (max-width: 900px) {
    .lec-fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================================
   7. TESTIMONIALS (overrides for canonical testimonials.php include)
   The page already provides its own "Five-star service, every time" heading,
   so the include's "What Our Clients Say" + eyebrow are suppressed here.
   ========================================================================== */
.lec-trust-wrap .aat-reviews-section { padding: 0; background: transparent; }
.lec-trust-wrap .aat-reviews-bg,
.lec-trust-wrap .aat-reviews-bg-overlay { display: none; }
.lec-trust-wrap .aat-reviews-section .text-center.mb-2.max-w-2xl { display: none; }

/* =============================================================================
   8. PARTNER LOGOS STRIP
   ========================================================================== */
.lec-partners-wrap { position: relative; }
.lec-partners-rail {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 6px;
    align-items: center;
}
.lec-partners-rail::-webkit-scrollbar { display: none; }
.lec-partner-mark {
    flex: 0 0 auto;
    min-width: 150px;
    height: 80px;
    border-radius: 8px;
    background: rgba(8,8,8,0.45);
    border: 1px solid rgba(212,175,55,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: rgba(255,255,255,0.72);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

/* =============================================================================
   9. FINAL CTA — uses canonical .concierge-bg from assets/css/concierge.css
   ========================================================================== */
/* -- Event-name marquee (full-bleed, infinite slow scroll, text only — no borders, no background) -- */
.lec-marquee {
    position: relative;
    overflow: hidden;
    padding: 22px 0;
    margin: 0;
}
.lec-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    will-change: transform;
    animation: lec-marquee 110s linear infinite;
}
.lec-marquee-track:hover { animation-play-state: paused; }
.lec-marquee-item {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.lec-marquee-dot {
    color: #D4AF37;
    font-size: clamp(16px, 1.6vw, 22px);
    flex-shrink: 0;
}
@keyframes lec-marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .lec-marquee-track { animation: none; transform: translate3d(0,0,0); }
}

.lec-final-cta-wrap { padding: 40px 0 56px; }
.lec-final-cta {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212,175,55,0.32);
    padding: 32px 28px;
    text-align: center;
}
.lec-final-cta .concierge-h2,
.lec-final-cta h2 { font-size: clamp(24px, 2.8vw, 32px); margin: 0 0 10px 0; }
.lec-final-cta .concierge-lede { max-width: 620px; margin: 0 auto 18px auto; font-size: 14px; }
