/* ============================================================
   Original Shrewsbury Music — main.css
   ============================================================ */

/* CSS Variables — overridden by Customizer */
:root {
    --osm-cream:      #FFF6E8;
    --osm-navy:       #1F1B3E;
    --osm-coral:      #FF5E5B;
    --osm-yellow:     #FFB627;
    --osm-blue:       #66C7E5;
    --osm-mint:       #8FCDA7;
    --osm-text:       #1F1B3E;
    --osm-text-muted: #6B6788;
    --osm-border:     #F0E6D0;

    --osm-pale-cream:  #FFE3B0;
    --osm-pale-coral:  #FFD7D6;
    --osm-pale-mint:   #D6F0DE;
    --osm-pale-blue:   #CFE7F2;

    --osm-radius-sm: 8px;
    --osm-radius:    14px;
    --osm-radius-lg: 18px;

    --osm-container-w: 90%;
    --osm-container-max: 1400px;

    --osm-font-display: 'Fraunces', Georgia, serif;
    --osm-font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --osm-shadow-card: 0 1px 3px rgba(31,27,62,0.06);
    --osm-shadow-hover: 0 8px 24px rgba(31,27,62,0.12);
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--osm-font-body);
    color: var(--osm-text);
    background: var(--osm-cream);
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--osm-coral); }

h1, h2, h3, h4 {
    font-family: var(--osm-font-display);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin: 0 0 12px;
}

/* ===== Site wrapper / containers ===== */
.osm-site { min-height: 100vh; display: flex; flex-direction: column; }
.osm-main { flex: 1; padding: 28px 0 60px; }

.osm-container {
    width: var(--osm-container-w);
    max-width: var(--osm-container-max);
    margin: 0 auto;
}

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: auto; }
.skip-link:focus { left: 16px; top: 16px; z-index: 99999; background: var(--osm-navy); color: var(--osm-cream); padding: 10px 16px; border-radius: 6px; }
.screen-reader-text { position: absolute; clip: rect(1px, 1px, 1px, 1px); height: 1px; width: 1px; overflow: hidden; }

/* ============================================================
   LIVE TICKER (full width)
   ============================================================ */
.osm-ticker {
    background: var(--osm-navy);
    color: var(--osm-yellow);
    padding: 9px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--osm-coral);
    display: flex;
    align-items: stretch;
}
.osm-ticker__label {
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    white-space: nowrap;
}
.osm-ticker__viewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.osm-ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    animation: osm-ticker-scroll 40s linear infinite;
    padding-left: 24px;
}
.osm-ticker__item { padding: 0 20px; }
.osm-ticker__sep { color: var(--osm-coral); padding: 0 4px; }

/* ============================================================
   HEADER (full width)
   ============================================================ */
.osm-header {
    background: var(--osm-cream);
    border-bottom: 1px solid var(--osm-border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.osm-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 24px;
}
.osm-logo {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}
.osm-logo__main {
    font-family: var(--osm-font-display);
    font-weight: 900;
    font-size: 24px;
    line-height: 0.9;
    letter-spacing: -0.5px;
}
.osm-logo__badge {
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 5px 11px;
    border-radius: 8px;
    font-family: var(--osm-font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.3px;
    transform: translateY(-2px);
}
.osm-logo--light .osm-logo__main { color: var(--osm-cream); }

.osm-nav__list {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.osm-nav__list a {
    font-size: 13px;
    font-weight: 500;
}

.osm-hamburger {
    display: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.osm-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--osm-navy);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.osm-btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1.5px solid transparent;
}
.osm-btn:hover { transform: scale(1.04); color: inherit; }
.osm-btn--coral { background: var(--osm-coral); color: var(--osm-cream); }
.osm-btn--yellow { background: var(--osm-yellow); color: var(--osm-navy); }
.osm-btn--dark { background: var(--osm-navy); color: var(--osm-cream); }
.osm-btn--ghost { background: transparent; color: var(--osm-navy); border-color: var(--osm-navy); }
.osm-btn--outline { background: transparent; color: var(--osm-navy); border-color: var(--osm-navy); }
.osm-btn--small { padding: 9px 16px; font-size: 12px; }
.osm-btn--block { display: block; width: 100%; }
.osm-btn--shine { position: relative; overflow: hidden; }
.osm-btn--shine::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,246,232,0.4), transparent);
    transform: skewX(-20deg);
    animation: osm-shine 3s ease-in-out infinite;
}

/* ============================================================
   TAGS / PILLS
   ============================================================ */
.osm-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.osm-tag--light { background: rgba(255,246,232,0.18); color: var(--osm-cream); backdrop-filter: blur(8px); }
.osm-tag--yellow { background: var(--osm-yellow); color: var(--osm-navy); }
.osm-tag--coral { background: var(--osm-coral); color: var(--osm-cream); }
.osm-tag--glass { background: rgba(255,246,232,0.18); color: var(--osm-cream); backdrop-filter: blur(8px); }

.osm-pill {
    display: inline-block;
    font-size: 11px;
    background: var(--osm-pale-cream);
    color: var(--osm-navy);
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
}
.osm-pill--age { background: var(--osm-pale-coral); }
.osm-pill-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.osm-hero {
    position: relative;
    height: 440px;
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    background: var(--osm-navy);
    margin-bottom: 28px;
}
.osm-hero__slides { position: absolute; inset: 0; }
.osm-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: osm-fade 12s infinite;
}
.osm-hero__slide:nth-child(1) { animation-delay: 0s; }
.osm-hero__slide:nth-child(2) { animation-delay: 4s; }
.osm-hero__slide:nth-child(3) { animation-delay: 8s; }

/* Fallback decorative slides */
.osm-hero__slide--fallback {
    background: var(--osm-yellow);
}
.osm-hero__slide--fallback::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 55%;
    background: var(--osm-coral);
}
.osm-hero__slide--fallback::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 30%;
    background: var(--osm-navy);
}
.osm-hero__slide--2 { background: var(--osm-coral); }
.osm-hero__slide--2::before { background: #3D2D5B; }
.osm-hero__slide--3 { background: var(--osm-blue); }
.osm-hero__slide--3::before { background: var(--osm-mint); }

.osm-hero__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(31,27,62,0.85) 0%, rgba(31,27,62,0.3) 50%, transparent 100%);
}
.osm-hero__content {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    color: var(--osm-cream);
    animation: osm-rise 0.8s ease-out;
}
.osm-hero__headline {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 0.95;
    margin: 0 0 12px;
    letter-spacing: -1.5px;
    color: var(--osm-cream);
}
.osm-hero__headline em { font-style: italic; color: var(--osm-yellow); }
.osm-hero__sub { font-size: 14px; opacity: 0.9; max-width: 560px; margin: 0 0 20px; }
.osm-hero__buttons { display: flex; gap: 10px; flex-wrap: wrap; }

.osm-hero__nowcard {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--osm-cream);
    padding: 12px 16px;
    border-radius: var(--osm-radius);
    box-shadow: 0 4px 0 var(--osm-navy);
    transform: rotate(-2deg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: osm-float 4s ease-in-out infinite;
    max-width: 220px;
}
.osm-hero__nowcard-label { font-size: 10px; color: var(--osm-text-muted); font-weight: 700; letter-spacing: 1px; }
.osm-hero__nowcard-title { font-family: var(--osm-font-display); font-size: 14px; font-weight: 700; line-height: 1; margin-top: 1px; }
.osm-hero__nowcard-venue { font-size: 11px; color: var(--osm-text-muted); }

/* ============================================================
   STATS BAR
   ============================================================ */
.osm-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 32px;
}
.osm-stats__item {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 16px 18px;
}
.osm-stats__num {
    font-family: var(--osm-font-display);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}
.osm-stats__label {
    font-size: 11px;
    color: var(--osm-text-muted);
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 6px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.osm-section { margin-bottom: 40px; }
.osm-section__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
}
.osm-section__title {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.osm-section__title strong { font-weight: 900; }
.osm-section__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--osm-coral);
}

/* ============================================================
   VENUE CARDS / GRID
   ============================================================ */
.osm-venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.osm-venue-grid--4 { grid-template-columns: repeat(4, 1fr); }

.osm-venue-card {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    overflow: hidden;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--osm-shadow-hover);
    color: inherit;
}
.osm-venue-card__media {
    position: relative;
    height: 150px;
    overflow: hidden;
}
.osm-venue-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}
.osm-venue-card__live {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--osm-cream);
    color: var(--osm-navy);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}
.osm-venue-card__title {
    position: absolute;
    bottom: 10px; left: 14px; right: 14px;
    color: var(--osm-cream);
    font-family: var(--osm-font-display);
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}
.osm-venue-card__body { padding: 14px; }
.osm-venue-card__meta { font-size: 11px; color: var(--osm-text-muted); margin-bottom: 8px; }
.osm-venue-card__footer { display: flex; justify-content: space-between; align-items: center; }
.osm-venue-card__count { font-size: 12px; font-weight: 800; color: var(--osm-coral); }

/* ============================================================
   GIG CARDS / GRID
   ============================================================ */
.osm-gig-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.osm-gig-grid--3 { grid-template-columns: repeat(3, 1fr); }
.osm-gig-grid--2 { grid-template-columns: repeat(2, 1fr); }

.osm-gig-card {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 14px;
    display: flex;
    gap: 14px;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-gig-card:hover { transform: translateY(-3px); box-shadow: var(--osm-shadow-hover); color: inherit; }
.osm-gig-card__date {
    min-width: 64px;
    padding: 10px 6px;
    border-radius: 10px;
    text-align: center;
    color: var(--osm-cream);
}
.osm-gig-card__day { display: block; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.osm-gig-card__num { display: block; font-family: var(--osm-font-display); font-size: 26px; font-weight: 700; line-height: 1; }
.osm-gig-card__month { display: block; font-size: 9px; font-weight: 700; }
.osm-gig-card__body { flex: 1; }
.osm-gig-card__title { font-family: var(--osm-font-display); font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.osm-gig-card__meta { font-size: 11px; color: var(--osm-text-muted); margin: 0 0 8px; }
.osm-gig-card__footer { display: flex; justify-content: space-between; align-items: center; }
.osm-gig-card__price { font-size: 13px; font-weight: 800; }

/* ============================================================
   HEADLINER CALLOUT
   ============================================================ */
.osm-headliner {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border-radius: var(--osm-radius-lg);
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}
.osm-headliner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: var(--osm-coral);
    border-radius: 50%;
    opacity: 0.25;
}
.osm-headliner__copy { position: relative; }
.osm-headliner__title { font-size: 36px; line-height: 1; margin: 0 0 8px; letter-spacing: -1px; color: var(--osm-cream); }
.osm-headliner__meta { font-size: 13px; opacity: 0.8; margin-bottom: 14px; }
.osm-headliner__media { position: relative; height: 240px; border-radius: var(--osm-radius); overflow: hidden; }
.osm-headliner__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   GIG PAGE
   ============================================================ */
.osm-crumbs {
    font-size: 12px;
    color: var(--osm-text-muted);
    margin: 4px 0 14px;
}
.osm-crumbs a:hover { color: var(--osm-coral); }
.osm-crumbs strong { color: var(--osm-navy); font-weight: 700; }

.osm-gig-hero {
    position: relative;
    height: 360px;
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
}
.osm-gig-hero__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.osm-gig-hero__scrim {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(31,27,62,0.9) 0%, rgba(31,27,62,0.3) 55%, transparent 100%);
}
.osm-gig-hero__content {
    position: absolute;
    bottom: 28px; left: 28px; right: 28px;
    color: var(--osm-cream);
    animation: osm-rise 0.8s ease-out;
}
.osm-gig-hero__title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 0.95;
    margin: 0;
    letter-spacing: -1.5px;
    color: var(--osm-cream);
}

.osm-stamp {
    position: absolute;
    top: 24px; right: 24px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    border: 2px dashed var(--osm-cream);
    transform: rotate(8deg);
    animation: osm-stamp 3s ease-in-out infinite;
}

.osm-gig-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}
.osm-gig-body h2 { font-size: 22px; margin: 16px 0 10px; }
.osm-support {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 14px;
    margin-top: 18px;
}
.osm-support__heading { font-size: 10px; letter-spacing: 1.5px; color: var(--osm-text-muted); font-weight: 800; margin-bottom: 6px; }
.osm-support__name { font-family: var(--osm-font-display); font-weight: 700; font-size: 15px; }

.osm-ticket-panel {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border-radius: var(--osm-radius-lg);
    padding: 22px;
    position: relative;
    overflow: hidden;
    animation: osm-glow 2s infinite;
}
.osm-ticket-panel__row {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,246,232,0.15);
}
.osm-ticket-panel__label { font-size: 10px; opacity: 0.6; letter-spacing: 1.5px; margin-bottom: 4px; font-weight: 700; }
.osm-ticket-panel__primary { font-family: var(--osm-font-display); font-size: 18px; font-weight: 700; }
.osm-ticket-panel__sub { font-size: 12px; opacity: 0.85; margin-top: 2px; }
.osm-ticket-panel__link { font-size: 11px; color: var(--osm-yellow); font-weight: 700; margin-top: 6px; display: inline-block; }
.osm-ticket-panel__price { font-family: var(--osm-font-display); font-size: 32px; font-weight: 900; color: var(--osm-yellow); }

/* ============================================================
   VENUE PAGE
   ============================================================ */
.osm-venue-hero {
    position: relative;
    height: 300px;
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
}
.osm-venue-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.osm-venue-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,27,62,0.6) 0%, transparent 50%); }
.osm-venue-hero__badge {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--osm-cream);
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.osm-venue-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}
.osm-venue-title { font-size: 42px; line-height: 1; letter-spacing: -1px; margin: 0 0 12px; }

.osm-venue-info {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 18px;
}
.osm-venue-info__heading {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--osm-text-muted);
    font-weight: 800;
    margin-bottom: 12px;
}
.osm-venue-info__row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--osm-border);
    font-size: 13px;
}
.osm-venue-info__row:last-of-type { border-bottom: none; }
.osm-venue-info__row span:first-child { color: var(--osm-text-muted); }
.osm-venue-info__actions { display: flex; gap: 6px; margin-top: 14px; }
.osm-venue-info__actions .osm-btn { flex: 1; }

.osm-venue-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}
.osm-venue-map { margin: 12px 0; }
.osm-venue-map__placeholder {
    height: 200px;
    background: var(--osm-mint);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.osm-venue-map__address { font-size: 13px; color: var(--osm-text-muted); }

.osm-card { background: #fff; border: 1px solid var(--osm-border); border-radius: var(--osm-radius); padding: 18px; }
.osm-card--dark {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border: 0;
    position: relative;
    overflow: hidden;
}
.osm-card--dark::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 140px; height: 140px;
    background: var(--osm-yellow);
    border-radius: 50%;
    opacity: 0.2;
}
.osm-claim-card__label {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--osm-yellow);
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
}
.osm-claim-card__title {
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    position: relative;
}
.osm-claim-card p { font-size: 13px; opacity: 0.8; margin: 0 0 14px; position: relative; }

/* ============================================================
   ARCHIVES / FILTERS
   ============================================================ */
.osm-archive-header {
    margin: 12px 0 24px;
    text-align: center;
}
.osm-archive-title {
    font-size: clamp(32px, 5vw, 54px);
    margin: 8px 0 6px;
    font-weight: 700;
    letter-spacing: -1px;
}
.osm-archive-title strong { font-weight: 900; }
.osm-archive-sub { color: var(--osm-text-muted); margin: 0; }

.osm-filters {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 22px;
}
.osm-filter { display: flex; flex-direction: column; gap: 4px; }
.osm-filter label { font-size: 11px; letter-spacing: 1px; font-weight: 700; color: var(--osm-text-muted); }
.osm-filter input, .osm-filter select {
    border: 1px solid var(--osm-border);
    border-radius: 8px;
    padding: 9px 10px;
    font-family: inherit;
    font-size: 13px;
    background: #fff;
}
.osm-empty { text-align: center; padding: 40px; color: var(--osm-text-muted); }
.osm-pagination { display: flex; justify-content: center; margin-top: 30px; }

/* ============================================================
   404 / Page
   ============================================================ */
.osm-404 {
    text-align: center;
    padding: 60px 20px;
}
.osm-404__big {
    font-family: var(--osm-font-display);
    font-size: 120px;
    font-weight: 900;
    color: var(--osm-coral);
    line-height: 1;
    margin-bottom: 8px;
}
.osm-404__buttons { display: flex; gap: 10px; justify-content: center; margin-top: 18px; flex-wrap: wrap; }

.osm-page { max-width: 720px; margin: 0 auto; }
.osm-page__title { font-size: 42px; margin-bottom: 18px; }
.osm-page__thumb { margin-bottom: 22px; border-radius: var(--osm-radius); overflow: hidden; }

/* ============================================================
   FOOTER (full width)
   ============================================================ */
.osm-footer {
    background: var(--osm-navy);
    color: var(--osm-cream);
    margin-top: auto;
}
.osm-footer__newsletter {
    background: var(--osm-coral);
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}
.osm-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
.osm-newsletter__heading { font-size: 30px; line-height: 1; margin: 0 0 8px; color: var(--osm-cream); }
.osm-newsletter__sub { font-size: 13px; margin: 0; opacity: 0.9; }
.osm-newsletter__form form {
    background: var(--osm-cream);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    gap: 6px;
}
.osm-newsletter__form input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--osm-navy);
    font-family: inherit;
}
.osm-newsletter__form input:focus { outline: none; }
.osm-newsletter__form button {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border: 0;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}
.osm-newsletter__note { font-size: 11px; opacity: 0.85; margin: 8px 0 0; }

.osm-footer__main { padding: 40px 0 30px; }
.osm-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}
.osm-footer__brand p { font-size: 13px; opacity: 0.7; margin: 16px 0; max-width: 280px; }
.osm-socials { display: flex; gap: 8px; }
.osm-social {
    width: 34px; height: 34px;
    background: rgba(255,246,232,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--osm-cream);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.osm-social:hover { transform: scale(1.1); background: var(--osm-yellow); color: var(--osm-navy); }

.osm-footer__heading {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--osm-yellow);
    font-weight: 800;
    margin-bottom: 14px;
}
.osm-footer__menu { list-style: none; padding: 0; margin: 0; }
.osm-footer__menu li { margin-bottom: 10px; }
.osm-footer__menu a { font-size: 13px; opacity: 0.85; transition: color 0.2s ease; }
.osm-footer__menu a:hover { color: var(--osm-yellow); opacity: 1; }

.osm-footer__legal {
    border-top: 1px solid rgba(255,246,232,0.1);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 11px;
    opacity: 0.6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.osm-footer__base {
    background: #000;
    padding: 10px 0;
}
.osm-footer__base-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--osm-cream);
    opacity: 0.7;
}
.osm-footer__tagline { letter-spacing: 1px; font-weight: 700; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .osm-stats { grid-template-columns: repeat(2, 1fr); }
    .osm-venue-grid { grid-template-columns: repeat(2, 1fr); }
    .osm-venue-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .osm-gig-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .osm-headliner { grid-template-columns: 1fr; }
    .osm-gig-layout, .osm-venue-layout, .osm-venue-bottom { grid-template-columns: 1fr; }
    .osm-newsletter { grid-template-columns: 1fr; }
    .osm-footer__grid { grid-template-columns: 1fr 1fr; }
    .osm-filters { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    :root { --osm-container-w: 92%; }
    .osm-nav, .osm-header__cta { display: none; }
    .osm-hamburger { display: flex; }
    .osm-hero { height: 360px; }
    .osm-hero__nowcard { display: none; }
    .osm-stats { grid-template-columns: repeat(2, 1fr); }
    .osm-venue-grid, .osm-venue-grid--4, .osm-gig-grid, .osm-gig-grid--3, .osm-gig-grid--2 { grid-template-columns: 1fr; }
    .osm-footer__grid { grid-template-columns: 1fr; }
    .osm-filters { grid-template-columns: 1fr; }
    .osm-ticker__label { font-size: 10px; padding: 0 12px; }
    .osm-section__title { font-size: 24px; }
    .osm-hero__headline { font-size: 32px; }
}

/* Mobile nav drawer */
.osm-nav.is-open {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--osm-navy);
    z-index: 200;
    padding: 80px 28px 28px;
}
.osm-nav.is-open .osm-nav__list {
    flex-direction: column;
    gap: 18px;
}
.osm-nav.is-open .osm-nav__list a {
    color: var(--osm-cream);
    font-size: 24px;
    font-family: var(--osm-font-display);
    font-weight: 700;
}

/* ============================================================
   VENUE GALLERY (single-venue page)
   ============================================================ */
.osm-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.osm-gallery__item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--osm-radius);
    background: var(--osm-border);
    transition: transform 0.3s ease;
}
.osm-gallery__item:hover { transform: scale(1.02); }
.osm-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.osm-gallery__item:hover img { transform: scale(1.06); }

@media (max-width: 900px) {
    .osm-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .osm-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   HEADLINE & RECURRING BADGES (on gig cards)
   ============================================================ */
.osm-gig-card__badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.osm-headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.2;
}
.osm-recurring-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--osm-yellow);
    color: var(--osm-navy);
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.2;
    width: fit-content;
}

/* Headline gig card glow */
.osm-gig-card.is-headline {
    box-shadow: 0 0 0 2px var(--osm-coral), 0 4px 14px rgba(255,94,91,0.18);
}

/* ============================================================
   CALENDAR — FEATURED HEADLINE GIGS (day view top)
   ============================================================ */
.osm-day-featured {
    margin-bottom: 36px;
}
.osm-day-featured__head {
    margin-bottom: 14px;
}
.osm-day-featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 16px;
}
.osm-day-featured__card {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    position: relative;
    animation: osm-glow 2.6s infinite;
    display: flex;
    flex-direction: column;
}
.osm-day-featured__media {
    position: relative;
    height: 240px;
    overflow: hidden;
    display: block;
}
.osm-day-featured__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.osm-day-featured__card:hover .osm-day-featured__img {
    transform: scale(1.04);
}
.osm-day-featured__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31,27,62,0.7) 0%, rgba(31,27,62,0.2) 50%, transparent 100%);
}
.osm-day-featured__body {
    padding: 22px;
}
.osm-day-featured__body .osm-tag {
    margin-bottom: 14px;
}
.osm-day-featured__title {
    font-size: 28px;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -0.5px;
    color: var(--osm-cream);
}
.osm-day-featured__title a {
    color: inherit;
}
.osm-day-featured__title a:hover {
    color: var(--osm-yellow);
}
.osm-day-featured__bands {
    font-size: 13px;
    color: var(--osm-yellow);
    font-weight: 600;
    margin: 0 0 6px;
}
.osm-day-featured__venue {
    font-size: 13px;
    margin: 0 0 6px;
}
.osm-day-featured__venue a {
    color: rgba(255,246,232,0.85);
    border-bottom: 1px dashed rgba(255,246,232,0.3);
}
.osm-day-featured__venue a:hover {
    color: var(--osm-yellow);
    border-color: var(--osm-yellow);
}
.osm-day-featured__support {
    font-size: 12px;
    opacity: 0.75;
    margin: 6px 0;
}
.osm-day-featured__support strong { color: var(--osm-cream); }
.osm-day-featured__excerpt {
    font-size: 13px;
    opacity: 0.8;
    margin: 12px 0 16px;
    line-height: 1.5;
}
.osm-day-featured__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,246,232,0.12);
}
.osm-pill--price {
    background: var(--osm-coral);
    color: var(--osm-cream);
}

/* "Also on tonight" subhead on day view */
.osm-day-view__subhead {
    font-size: 18px;
    margin: 28px 0 14px;
    color: var(--osm-text-muted);
    text-transform: lowercase;
    letter-spacing: -0.3px;
    font-weight: 600;
}

/* ============================================================
   CALENDAR WEEK VIEW — headline + recurring indicators
   ============================================================ */
.osm-week-day__gig.is-headline {
    outline: 2px solid var(--osm-coral);
    outline-offset: -2px;
}

/* ============================================================
   HOMEPAGE — Section: Venue Map (full-width "solo" variant)
   ============================================================ */
.osm-map-layout--solo {
    grid-template-columns: 1fr;
}
.osm-section--map .osm-map {
    border-radius: var(--osm-radius-lg);
}

/* ============================================================
   HOMEPAGE — Section: Featured Artists
   ============================================================ */
.osm-artist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.osm-artist-card {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    overflow: hidden;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-artist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--osm-shadow-hover);
    color: inherit;
}
.osm-artist-card__media {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--osm-navy) 0%, var(--osm-coral) 100%);
    overflow: hidden;
}
.osm-artist-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.osm-artist-card:hover .osm-artist-card__img {
    transform: scale(1.05);
}
.osm-artist-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--osm-cream);
    opacity: 0.6;
}
.osm-artist-card__body {
    padding: 14px;
}
.osm-artist-card__title {
    font-family: var(--osm-font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 4px;
}
.osm-artist-card__hometown {
    font-size: 11px;
    color: var(--osm-text-muted);
}

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

/* ============================================================
   FRONT-END SUBMIT GIG FORM
   ============================================================ */
.osm-submit-gig {
    padding-top: 14px;
}
.osm-submit-gig__header {
    margin-bottom: 24px;
}
.osm-submit-gig__title {
    font-size: clamp(28px, 4vw, 40px);
    margin: 8px 0 6px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.osm-submit-gig__title strong { font-weight: 900; }
.osm-submit-gig__sub {
    color: var(--osm-text-muted);
    margin: 0;
}

.osm-submit-gig__layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    margin-bottom: 40px;
}

.osm-submit-gig__form-wrap {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius-lg);
    padding: 28px;
}

.osm-submit-form__group {
    border: 0;
    padding: 0 0 22px;
    margin: 0 0 22px;
    border-bottom: 1px solid var(--osm-border);
}
.osm-submit-form__group:last-of-type {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.osm-submit-form__group legend {
    font-family: var(--osm-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--osm-navy);
    padding: 0;
    margin-bottom: 14px;
}
.osm-submit-form__group--recur {
    background: var(--osm-cream);
    border: 1px dashed var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 22px;
    margin-top: 22px;
}
.osm-submit-form__group--recur legend {
    background: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--osm-border);
    margin-bottom: 8px;
}

.osm-form__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.osm-form__readonly {
    background: var(--osm-cream);
    border: 1px solid var(--osm-border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--osm-navy);
    font-weight: 500;
}
.osm-form__hint {
    font-size: 12px;
    color: var(--osm-text-muted);
    margin-top: 6px;
    display: block;
}

/* Genre chips */
.osm-form__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.osm-chip {
    position: relative;
    cursor: pointer;
}
.osm-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.osm-chip span {
    display: inline-block;
    padding: 8px 14px;
    background: var(--osm-cream);
    border: 1.5px solid var(--osm-border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--osm-text-muted);
    transition: all 0.15s ease;
}
.osm-chip:hover span {
    border-color: var(--osm-coral);
    color: var(--osm-coral);
}
.osm-chip input:checked + span {
    background: var(--osm-coral);
    border-color: var(--osm-coral);
    color: var(--osm-cream);
}

/* Current thumb preview */
.osm-current-thumb {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--osm-cream);
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.osm-current-thumb img {
    border-radius: 6px;
    max-width: 80px;
    height: auto;
}
.osm-current-thumb span {
    font-size: 12px;
    color: var(--osm-text-muted);
}

.osm-submit-form__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--osm-border);
}

/* Sidebar */
.osm-submit-gig__sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.osm-submit-gig__mygigs h2 {
    font-size: 17px;
    margin: 0 0 4px;
}
.osm-mygigs-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.osm-mygigs-item {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid var(--osm-border);
}
.osm-mygigs-item:first-child {
    border-top: 0;
}
.osm-mygigs-date {
    background: var(--osm-cream);
    border-radius: 8px;
    padding: 6px 8px;
    text-align: center;
    min-width: 50px;
    flex-shrink: 0;
}
.osm-mygigs-day {
    display: block;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--osm-text-muted);
}
.osm-mygigs-num {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: var(--osm-navy);
}
.osm-mygigs-mon {
    display: block;
    font-size: 8px;
    font-weight: 700;
    color: var(--osm-text-muted);
}
.osm-mygigs-body {
    flex: 1;
    min-width: 0;
}
.osm-mygigs-body strong {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: var(--osm-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.osm-mygigs-meta {
    font-size: 11px;
    color: var(--osm-text-muted);
    display: block;
}
.osm-mygigs-actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    align-items: center;
}
.osm-mygigs-actions a,
.osm-mygigs-actions button {
    font-size: 11px;
    font-weight: 700;
    color: var(--osm-coral);
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}
.osm-mygigs-actions a:hover,
.osm-mygigs-actions button:hover {
    color: var(--osm-navy);
}
.osm-link-danger { color: #C7325E !important; }
.osm-link-danger:hover { color: #7A1F3D !important; }
.osm-inline-delete {
    display: inline;
    margin: 0;
}

.osm-submit-gig__tips h3 {
    color: var(--osm-cream);
    font-size: 17px;
    margin: 0 0 12px;
}
.osm-submit-gig__tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.9;
}
.osm-submit-gig__tips li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.osm-submit-gig__tips li::before {
    content: '🎵';
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 11px;
}

/* No-access screens */
.osm-noaccess {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 40px auto;
}
.osm-noaccess h1 {
    font-size: 28px;
    margin-bottom: 14px;
}
.osm-noaccess p {
    color: var(--osm-text-muted);
    margin-bottom: 20px;
}

/* Flash messages */
.osm-flash {
    border-radius: var(--osm-radius);
    padding: 14px 18px;
    margin-bottom: 22px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.osm-flash__icon { font-size: 22px; line-height: 1; }
.osm-flash--success { background: #D6F0DE; color: #0F4D2A; border-left: 4px solid #3F8C5C; }
.osm-flash--info { background: var(--osm-pale-blue); color: var(--osm-navy); border-left: 4px solid var(--osm-blue); }
.osm-flash--error { background: #FFD7D6; color: #7A1F3D; border-left: 4px solid var(--osm-coral); }
.osm-flash a {
    color: inherit;
    font-weight: 700;
    margin-left: 8px;
    border-bottom: 1px dashed currentColor;
}

@media (max-width: 900px) {
    .osm-submit-gig__layout { grid-template-columns: 1fr; }
    .osm-form__grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   GENRE FILTER PAGES
   ============================================================ */
.osm-genre-hero {
    background: linear-gradient(135deg, var(--genre-accent, var(--osm-coral)) 0%, var(--osm-navy) 100%);
    color: var(--osm-cream);
    padding: 60px 0 50px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}
.osm-genre-hero::before,
.osm-genre-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.osm-genre-hero::before {
    width: 360px; height: 360px;
    background: var(--osm-yellow);
    opacity: 0.12;
    top: -120px;
    right: -100px;
    animation: osm-float-slow 8s ease-in-out infinite;
}
.osm-genre-hero::after {
    width: 260px; height: 260px;
    background: var(--osm-cream);
    opacity: 0.08;
    bottom: -100px;
    left: 10%;
    animation: osm-float-slow 12s ease-in-out infinite reverse;
}
@keyframes osm-float-slow {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -15px); }
}

.osm-genre-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.osm-genre-hero__icon {
    font-size: 56px;
    display: block;
    margin-bottom: 12px;
    animation: osm-float 4s ease-in-out infinite;
}
@keyframes osm-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.osm-genre-hero__title {
    font-size: clamp(40px, 7vw, 78px);
    line-height: 0.95;
    margin: 14px 0 12px;
    letter-spacing: -1.5px;
    color: var(--osm-cream);
}
.osm-genre-hero__title em {
    font-style: italic;
    color: var(--osm-yellow);
}
.osm-genre-hero__sub {
    font-size: 16px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 30px;
}
.osm-genre-hero__stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.osm-genre-stat {
    background: rgba(255,246,232,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,246,232,0.15);
    border-radius: 12px;
    padding: 14px 22px;
    min-width: 140px;
}
.osm-genre-stat__num {
    font-family: var(--osm-font-display);
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: var(--osm-yellow);
}
.osm-genre-stat__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 4px;
}

/* Genre cloud (other genres at bottom) */
.osm-genre-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.osm-genre-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid var(--osm-border);
    color: var(--osm-navy);
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s ease;
}
.osm-genre-pill:hover {
    background: var(--pill-accent, var(--osm-coral));
    border-color: var(--pill-accent, var(--osm-coral));
    color: var(--osm-cream);
    transform: translateY(-2px);
}
.osm-genre-pill__icon { font-size: 16px; }

.osm-genre-empty {
    text-align: center;
    padding: 30px 20px 50px;
}
.osm-genre-empty h2 {
    font-size: 24px;
    margin-bottom: 8px;
}
.osm-genre-empty p {
    color: var(--osm-text-muted);
    margin-bottom: 20px;
}

/* ============================================================
   AREA / LOCATION ARCHIVE
   ============================================================ */
.osm-area-hero {
    background: var(--osm-cream);
    border-bottom: 1px solid var(--osm-border);
    padding: 50px 0;
    margin-bottom: 32px;
}
.osm-area-hero__inner {
    text-align: center;
}
.osm-area-hero__title {
    font-size: clamp(40px, 7vw, 72px);
    line-height: 0.95;
    margin: 10px 0 12px;
    letter-spacing: -1.5px;
}
.osm-area-hero__title em {
    font-style: italic;
    color: var(--osm-coral);
}
.osm-area-hero__sub {
    color: var(--osm-text-muted);
    font-size: 16px;
    margin: 0;
}

/* ============================================================
   BANDS ARCHIVE
   ============================================================ */
.osm-bands-hero {
    background: linear-gradient(135deg, var(--osm-coral) 0%, var(--osm-navy) 60%, #3D2D5B 100%);
    color: var(--osm-cream);
    padding: 70px 0 50px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.osm-bands-hero__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.osm-bands-hero__notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.osm-bands-hero__note {
    position: absolute;
    color: var(--osm-yellow);
    opacity: 0.25;
    font-size: 80px;
    font-family: serif;
    animation: osm-note-drift 12s ease-in-out infinite;
}
.osm-bands-hero__note--1 { top: 15%; left: 8%;  animation-delay: 0s; }
.osm-bands-hero__note--2 { top: 60%; left: 18%; animation-delay: 2s; font-size: 60px; }
.osm-bands-hero__note--3 { top: 20%; right: 12%; animation-delay: 4s; font-size: 70px; }
.osm-bands-hero__note--4 { top: 65%; right: 8%; animation-delay: 6s; font-size: 50px; }
@keyframes osm-note-drift {
    0%, 100% { transform: translateY(0) rotate(-5deg); opacity: 0.25; }
    50%      { transform: translateY(-20px) rotate(8deg); opacity: 0.4; }
}
.osm-bands-hero__title {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1;
    margin: 14px 0 14px;
    letter-spacing: -1.5px;
    color: var(--osm-cream);
}
.osm-bands-hero__title em { font-style: italic; color: var(--osm-yellow); }
.osm-bands-hero__sub {
    font-size: 16px;
    opacity: 0.85;
    max-width: 580px;
    margin: 0 auto;
}

/* Filter bar */
.osm-bands-filters {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius-lg);
    padding: 16px;
    margin-bottom: 22px;
    box-shadow: 0 2px 8px rgba(31,27,62,0.05);
}
.osm-bands-search {
    position: relative;
    margin-bottom: 12px;
}
.osm-bands-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.5;
    pointer-events: none;
}
.osm-bands-search input {
    width: 100%;
    border: 1.5px solid var(--osm-border);
    border-radius: 999px;
    padding: 12px 42px;
    font-size: 14px;
    font-family: inherit;
    background: var(--osm-cream);
    color: var(--osm-navy);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.osm-bands-search input:focus {
    border-color: var(--osm-coral);
    background: #fff;
    outline: 0;
    box-shadow: 0 0 0 4px rgba(255,94,91,0.15);
}
.osm-bands-search__clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--osm-coral);
    color: var(--osm-cream);
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.osm-bands-genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.osm-bands-pill {
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--osm-cream);
    color: var(--osm-text-muted);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1.5px solid transparent;
}
.osm-bands-pill:hover {
    color: var(--osm-coral);
    border-color: var(--osm-coral);
}
.osm-bands-pill.is-active {
    background: var(--osm-coral);
    color: var(--osm-cream);
    border-color: var(--osm-coral);
}

.osm-bands-results-meta {
    color: var(--osm-text-muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.osm-bands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.osm-artist-tile {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.osm-artist-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--osm-shadow-hover);
}
.osm-artist-tile__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.osm-artist-tile__link:hover { color: inherit; }
.osm-artist-tile__media {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--osm-navy) 0%, var(--osm-coral) 100%);
    overflow: hidden;
}
.osm-artist-tile__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.osm-artist-tile:hover .osm-artist-tile__img {
    transform: scale(1.05);
}
.osm-artist-tile__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: var(--osm-cream);
    opacity: 0.5;
}
.osm-artist-tile__genre {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--osm-cream);
    color: var(--osm-navy);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
}
.osm-artist-tile__body {
    padding: 14px;
}
.osm-artist-tile__title {
    font-family: var(--osm-font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 4px;
}
.osm-artist-tile__meta {
    font-size: 11px;
    color: var(--osm-text-muted);
    margin-bottom: 6px;
}
.osm-artist-tile__excerpt {
    font-size: 12px;
    color: var(--osm-text-muted);
    line-height: 1.4;
    margin: 0;
}
.osm-artist-tile__socials {
    display: flex;
    gap: 6px;
    padding: 0 14px 14px;
    border-top: 1px solid var(--osm-border);
    padding-top: 12px;
    margin-top: -1px;
}
.osm-artist-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--osm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.osm-artist-social:hover {
    background: var(--osm-coral);
    transform: scale(1.1);
}

.osm-bands-empty { padding: 50px 20px; }
.osm-bands-empty__icon { font-size: 60px; margin-bottom: 10px; }

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

/* ============================================================
   SEARCH RESULTS
   ============================================================ */
.osm-search-hero {
    background: var(--osm-cream);
    padding: 50px 0 40px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--osm-border);
}
.osm-search-hero__inner { text-align: center; }
.osm-search-hero__title {
    font-size: clamp(28px, 4vw, 42px);
    margin: 14px 0 24px;
    line-height: 1.1;
    letter-spacing: -0.8px;
}
.osm-search-hero__title em {
    font-style: italic;
    color: var(--osm-coral);
}

.osm-search-form-big {
    display: flex;
    background: #fff;
    border: 2px solid var(--osm-border);
    border-radius: 999px;
    padding: 6px;
    max-width: 580px;
    margin: 0 auto 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.osm-search-form-big:focus-within {
    border-color: var(--osm-coral);
    box-shadow: 0 0 0 4px rgba(255,94,91,0.15);
}
.osm-search-form-big__icon {
    padding: 0 8px 0 16px;
    font-size: 18px;
    align-self: center;
    opacity: 0.5;
}
.osm-search-form-big__input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: var(--osm-navy);
    outline: 0;
}
.osm-search-form-big__submit {
    background: var(--osm-coral);
    color: var(--osm-cream);
    border: 0;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, background 0.2s ease;
}
.osm-search-form-big__submit:hover {
    background: var(--osm-navy);
    color: var(--osm-yellow);
    transform: scale(1.03);
}

.osm-search-counts {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.osm-search-count {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    color: var(--osm-text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
}
.osm-search-count:hover {
    border-color: var(--osm-coral);
    color: var(--osm-coral);
}
.osm-search-count strong {
    color: var(--osm-navy);
    margin-right: 4px;
    font-weight: 800;
}
.osm-search-count:hover strong { color: var(--osm-coral); }

.osm-search-empty { padding: 50px 20px; }
.osm-search-empty__icon { font-size: 60px; margin-bottom: 10px; }
.osm-search-empty__links {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.osm-search-page-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.osm-search-page-item {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.osm-search-page-item:hover {
    background: var(--osm-cream);
    border-color: var(--osm-coral);
    color: inherit;
}
.osm-search-page-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--osm-navy);
}
.osm-search-page-item p {
    font-size: 13px;
    color: var(--osm-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ============================================================
   TRUSTED PARTNERS DIRECTORY
   ============================================================ */
.osm-partners-hero {
    background:
        radial-gradient(ellipse 70% 50% at 30% 20%, rgba(255,94,91,0.15), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,182,39,0.15), transparent 70%),
        var(--osm-cream);
    padding: 70px 0 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--osm-border);
}
.osm-partners-hero__inner { text-align: center; }
.osm-partners-hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1;
    margin: 14px 0 16px;
    letter-spacing: -1.5px;
}
.osm-partners-hero__title em {
    font-style: italic;
    color: var(--osm-coral);
}
.osm-partners-hero__title strong { font-weight: 900; }
.osm-partners-hero__sub {
    color: var(--osm-text-muted);
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 24px;
    line-height: 1.5;
}
.osm-partners-hero__cta { margin-top: 8px; }

.osm-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.osm-partner-card {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(31,27,62,0.05);
}
.osm-partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(31,27,62,0.12);
}

.osm-partner-card__bg {
    height: 130px;
    position: relative;
    overflow: hidden;
}
.osm-partner-card__bg-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,246,232,0.4) 100%);
}

.osm-partner-card__avatar {
    margin: -50px auto 0;
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 2;
}
.osm-partner-card__avatar-img,
.osm-partner-card__avatar img {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 14px rgba(31,27,62,0.18);
    display: block;
    width: 100px !important;
    height: 100px !important;
}

.osm-partner-card__body {
    padding: 14px 22px 22px;
    text-align: center;
    position: relative;
}
.osm-partner-card__greeting {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--osm-yellow);
    color: var(--osm-navy);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}
.osm-partner-card__greeting .osm-eq {
    display: inline-flex;
    align-items: flex-end;
    gap: 1.5px;
    height: 10px;
}
.osm-partner-card__greeting .osm-eq__bar {
    width: 2px;
    background: var(--osm-navy);
    border-radius: 1px;
}
.osm-partner-card__name {
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 6px;
    color: var(--osm-navy);
}
.osm-partner-card__venue {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--osm-coral);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px dashed transparent;
    transition: border-color 0.2s ease;
}
.osm-partner-card__venue:hover {
    border-bottom-color: var(--osm-coral);
}
.osm-partner-card__venue-area {
    color: var(--osm-text-muted);
    font-weight: 500;
    margin-left: 6px;
    font-size: 12px;
}
.osm-partner-card__bio {
    font-size: 13px;
    color: var(--osm-text-muted);
    line-height: 1.5;
    margin: 8px 0 12px;
}

.osm-partner-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 14px 0;
    padding: 12px 0;
    border-top: 1px solid var(--osm-border);
    border-bottom: 1px solid var(--osm-border);
}
.osm-partner-card__stat strong {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 900;
    color: var(--osm-coral);
    line-height: 1;
}
.osm-partner-card__stat small {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--osm-text-muted);
    margin-top: 4px;
}

.osm-partner-card__actions { margin-top: 14px; }

.osm-partners-cta {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border-radius: var(--osm-radius-lg);
    padding: 36px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.osm-partners-cta::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 220px; height: 220px;
    background: var(--osm-coral);
    border-radius: 50%;
    opacity: 0.2;
}
.osm-partners-cta::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 180px; height: 180px;
    background: var(--osm-yellow);
    border-radius: 50%;
    opacity: 0.15;
}
.osm-partners-cta__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.osm-partners-cta__copy h2 {
    font-size: 36px;
    line-height: 1;
    margin: 14px 0 12px;
    color: var(--osm-cream);
    letter-spacing: -0.8px;
}
.osm-partners-cta__copy h2 em {
    font-style: italic;
    color: var(--osm-yellow);
}
.osm-partners-cta__copy p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
    max-width: 460px;
}
.osm-partners-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}
.osm-btn--ghost-light {
    background: transparent;
    color: var(--osm-cream) !important;
    border: 1.5px solid rgba(255,246,232,0.3);
}
.osm-btn--ghost-light:hover {
    background: rgba(255,246,232,0.1);
    color: var(--osm-cream) !important;
}

@media (max-width: 900px) {
    .osm-partners-cta__inner { grid-template-columns: 1fr; }
    .osm-partners-cta__actions { align-items: stretch; }
}

/* ============================================================
   CALENDAR PAGE — controls
   ============================================================ */
.osm-cal-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 12px 0 22px;
}
.osm-cal-tabs {
    display: inline-flex;
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: 999px;
    padding: 4px;
    gap: 2px;
}
.osm-cal-tab {
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--osm-text);
    transition: background 0.2s ease, color 0.2s ease;
}
.osm-cal-tab.is-active { background: var(--osm-navy); color: var(--osm-cream); }
.osm-cal-tab:hover:not(.is-active) { background: var(--osm-cream); color: var(--osm-coral); }

.osm-cal-nav { display: inline-flex; gap: 6px; align-items: center; }
.osm-cal-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--osm-border);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 700;
    color: var(--osm-navy);
    transition: background 0.2s ease, transform 0.2s ease;
}
.osm-cal-arrow:hover { background: var(--osm-coral); color: var(--osm-cream); transform: scale(1.08); }
.osm-cal-today {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    font-size: 12px; font-weight: 800; letter-spacing: 1px;
    transition: transform 0.2s ease;
}
.osm-cal-today:hover { color: var(--osm-cream); transform: scale(1.05); }

/* ============================================================
   CALENDAR — DAY VIEW
   ============================================================ */
.osm-day-view__head {
    margin-bottom: 22px;
}
.osm-day-view__date {
    font-size: clamp(28px, 4vw, 40px);
    margin: 6px 0 4px;
    font-weight: 700;
}
.osm-day-view__count {
    font-size: 13px;
    color: var(--osm-text-muted);
    font-weight: 600;
}
.osm-day-view__timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.osm-day-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    align-items: stretch;
}
.osm-day-row__time {
    font-size: 14px;
    font-weight: 800;
    color: var(--osm-text-muted);
    padding-top: 14px;
    letter-spacing: 0.5px;
}
.osm-day-row__time.is-headline { color: var(--osm-coral); }
.osm-day-row__card {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 12px;
    display: flex;
    gap: 12px;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-day-row__card:hover { transform: translateY(-2px); box-shadow: var(--osm-shadow-hover); color: inherit; }
.osm-day-row__card.is-headline {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border: 0;
    position: relative;
    overflow: hidden;
    animation: osm-glow 2.5s infinite;
}
.osm-day-row__card.is-headline::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 80px;
    background: var(--osm-coral);
    opacity: 0.2;
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0 100%);
}
.osm-day-row__thumb {
    width: 80px; height: 80px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}
.osm-day-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.osm-day-row__body { flex: 1; position: relative; }
.osm-day-row__title {
    font-family: var(--osm-font-display);
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 4px;
    line-height: 1.1;
}
.osm-day-row__card.is-headline .osm-day-row__title { color: var(--osm-cream); font-size: 20px; }
.osm-day-row__meta {
    font-size: 12px;
    color: var(--osm-text-muted);
    margin: 0 0 8px;
}
.osm-day-row__card.is-headline .osm-day-row__meta { color: rgba(255,246,232,0.75); }
.osm-day-row__footer {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.osm-day-row__price {
    font-size: 13px;
    font-weight: 800;
}

/* ============================================================
   CALENDAR — WEEK VIEW
   ============================================================ */
.osm-week-view__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.osm-week-view__title { font-size: 28px; margin: 0; font-weight: 700; }
.osm-week-view__count { font-size: 13px; color: var(--osm-text-muted); font-weight: 600; }

.osm-week-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.osm-week-day {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: 12px;
    overflow: hidden;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}
.osm-week-day:hover { transform: translateY(-3px); box-shadow: var(--osm-shadow-hover); color: inherit; }
.osm-week-day.is-past { opacity: 0.55; }
.osm-week-day.is-today {
    border: 2px solid var(--osm-coral);
    animation: osm-glow 2.5s infinite;
}
.osm-week-day__head {
    background: var(--osm-navy);
    color: var(--osm-cream);
    padding: 8px;
    text-align: center;
}
.osm-week-day.is-today .osm-week-day__head {
    background: var(--osm-coral);
}
.osm-week-day__name {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
}
.osm-week-day__today {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}
.osm-week-day__num {
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-top: 2px;
}
.osm-week-day__gigs {
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 120px;
}
.osm-week-day__gig {
    border-radius: 6px;
    padding: 6px;
    color: var(--osm-cream);
    font-size: 10px;
    line-height: 1.2;
}
.osm-week-day__gig-time {
    display: block;
    font-weight: 800;
    opacity: 0.85;
    font-size: 9px;
    letter-spacing: 0.5px;
}
.osm-week-day__gig-title {
    display: block;
    font-weight: 700;
    margin-top: 1px;
}
.osm-week-day__empty {
    margin: auto;
    color: var(--osm-text-muted);
    font-size: 11px;
    font-style: italic;
    text-align: center;
    padding: 20px 0;
}

/* ============================================================
   CALENDAR — MONTH VIEW
   ============================================================ */
.osm-month-view__head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}
.osm-month-view__title {
    font-size: clamp(28px, 4vw, 38px);
    margin: 0;
    font-weight: 700;
}
.osm-month-view__count { font-size: 13px; color: var(--osm-text-muted); font-weight: 600; }

.osm-month-grid { display: flex; flex-direction: column; gap: 6px; }
.osm-month-row { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.osm-month-row--head {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--osm-text-muted);
    margin-bottom: 4px;
    padding: 0 4px;
}

.osm-month-cell {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: 12px;
    padding: 8px;
    position: relative;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 130px;
    overflow: hidden;
}
.osm-month-cell:hover {
    transform: translateY(-2px);
    box-shadow: var(--osm-shadow-hover);
    border-color: var(--osm-coral);
    z-index: 2;
    color: inherit;
}
.osm-month-cell.is-other {
    background: transparent;
    border: 1px dashed var(--osm-border);
    opacity: 0.35;
    pointer-events: none;
    min-height: 130px;
}
.osm-month-cell.is-past {
    opacity: 0.6;
}
.osm-month-cell.is-today {
    border-color: var(--osm-coral);
    border-width: 2px;
    background: linear-gradient(180deg, rgba(255,94,91,0.05) 0%, #fff 60%);
    animation: osm-glow 2.5s infinite;
}
.osm-month-cell.has-headline:not(.is-today) {
    box-shadow: inset 0 0 0 1.5px rgba(255,182,39,0.55);
}

.osm-month-cell__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    min-height: 22px;
}
.osm-month-cell__num {
    font-family: var(--osm-font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--osm-navy);
    line-height: 1;
}
.osm-month-cell.is-today .osm-month-cell__num {
    color: var(--osm-coral);
}
.osm-month-cell__today-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.osm-month-cell__star {
    font-size: 14px;
    color: var(--osm-yellow);
    line-height: 1;
}

.osm-month-cell__gigs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.osm-month-cell__gig {
    background: var(--osm-cream);
    border-left: 3px solid var(--strip-color, var(--osm-coral));
    border-radius: 4px;
    padding: 3px 6px;
    font-size: 10px;
    line-height: 1.25;
    overflow: hidden;
    transition: background 0.15s ease;
}
.osm-month-cell:hover .osm-month-cell__gig {
    background: #fff;
}
.osm-month-cell__gig.is-headline {
    background: var(--strip-color, var(--osm-coral));
    color: var(--osm-cream);
    border-left-color: var(--osm-yellow);
}
.osm-month-cell__gig-time {
    display: inline-block;
    font-weight: 800;
    margin-right: 4px;
    font-size: 9px;
    letter-spacing: 0.2px;
    opacity: 0.85;
    white-space: nowrap;
}
.osm-month-cell__gig-title {
    font-weight: 600;
    color: var(--osm-navy);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline;
}
.osm-month-cell__gig.is-headline .osm-month-cell__gig-title {
    color: var(--osm-cream);
}
.osm-month-cell__icon {
    margin-right: 2px;
    font-size: 9px;
}

.osm-month-cell__more {
    display: block;
    margin-top: 4px;
    font-size: 9.5px;
    font-weight: 800;
    color: var(--osm-coral);
    letter-spacing: 0.3px;
    transition: transform 0.15s ease;
}
.osm-month-cell:hover .osm-month-cell__more {
    transform: translateX(3px);
}

.osm-month-legend-text {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 18px;
    font-size: 11px;
    color: var(--osm-text-muted);
    font-weight: 500;
    align-items: center;
}
.osm-month-key {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.osm-month-key-strip {
    display: inline-block;
    width: 3px;
    height: 14px;
    border-radius: 1px;
}
.osm-month-key-icon {
    font-size: 12px;
    color: var(--osm-yellow);
}

/* Tighter mobile month cells */
@media (max-width: 700px) {
    .osm-month-cell { min-height: 90px; padding: 6px; border-radius: 8px; }
    .osm-month-cell__num { font-size: 13px; }
    .osm-month-cell__gig {
        font-size: 9px;
        padding: 2px 4px;
    }
    .osm-month-cell__gig-time { font-size: 8px; }
    .osm-month-cell__today-badge {
        font-size: 7px;
        padding: 2px 5px;
    }
    .osm-month-cell__more { font-size: 8.5px; }
    .osm-month-row, .osm-month-grid { gap: 3px; }
}
@media (max-width: 500px) {
    /* On phones, drop to 2 gigs visible and shrink further */
    .osm-month-cell__gig:nth-child(n+3) { display: none; }
    .osm-month-cell { min-height: 80px; }
    .osm-month-row--head { font-size: 8px; letter-spacing: 0.5px; }
}

/* ============================================================
   MAP PAGE
   ============================================================ */
.osm-map-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 18px;
    margin: 14px 0 40px;
    align-items: stretch;
}
.osm-map {
    height: 600px;
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    background: var(--osm-mint);
    box-shadow: 0 2px 10px rgba(31,27,62,0.08);
}
.osm-map-list {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 600px;
}
.osm-map-list__head {
    padding: 14px;
    border-bottom: 1px solid var(--osm-border);
}
.osm-map-list__heading {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--osm-text-muted);
    font-weight: 800;
    margin-bottom: 8px;
}
.osm-map-search {
    width: 100%;
    border: 1px solid var(--osm-border);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 13px;
    font-family: inherit;
}
.osm-map-list__items {
    flex: 1;
    overflow-y: auto;
}
.osm-map-list__item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--osm-border);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: inherit;
}
.osm-map-list__item:hover { background: var(--osm-cream); }
.osm-map-list__item:last-child { border-bottom: 0; }
.osm-map-list__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 0 rgba(31,27,62,0.15);
}
.osm-map-list__body { flex: 1; line-height: 1.2; }
.osm-map-list__body strong { display: block; font-size: 13px; font-weight: 700; color: var(--osm-navy); }
.osm-map-list__body small { display: block; font-size: 11px; color: var(--osm-text-muted); margin-top: 2px; }
.osm-map-list__count {
    background: var(--osm-coral);
    color: var(--osm-cream);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    min-width: 22px;
    text-align: center;
}

/* Custom map pin */
.osm-pin {
    background: transparent !important;
    border: 0 !important;
}
.osm-pin span {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 6px rgba(31,27,62,0.3);
    border: 3px solid #fff;
    position: relative;
}
.osm-pin span::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Leaflet popup style overrides */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    padding: 4px !important;
}
.leaflet-popup-content {
    margin: 12px 14px !important;
    font-family: var(--osm-font-body) !important;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.osm-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 24px 0 40px;
}
.osm-contact-form-wrap {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius-lg);
    padding: 28px;
}
.osm-contact-form-wrap--dark {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border: 0;
    position: relative;
    overflow: hidden;
}
.osm-contact-form-wrap--dark::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: var(--osm-yellow);
    border-radius: 50%;
    opacity: 0.15;
}
.osm-contact-form-wrap__head { margin-bottom: 20px; position: relative; }
.osm-contact-form-wrap__title {
    font-size: 28px;
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: inherit;
}
.osm-contact-form-wrap--dark .osm-contact-form-wrap__title { color: var(--osm-cream); }
.osm-contact-form-wrap__head p {
    font-size: 13px;
    color: var(--osm-text-muted);
    margin: 0;
}
.osm-contact-form-wrap--dark .osm-contact-form-wrap__head p { color: rgba(255,246,232,0.75); }

.osm-contact-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    font-size: 13px;
    color: rgba(255,246,232,0.85);
}
.osm-contact-perks li {
    padding: 5px 0;
}

.osm-form { position: relative; }
.osm-form__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
}
.osm-form__row label {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 800;
    color: var(--osm-text-muted);
    text-transform: uppercase;
}
.osm-form--dark .osm-form__row label { color: var(--osm-yellow); }
.osm-form__req { color: var(--osm-coral); }
.osm-form__row input,
.osm-form__row select,
.osm-form__row textarea {
    border: 1px solid var(--osm-border);
    border-radius: 8px;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: var(--osm-navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.osm-form__row input:focus,
.osm-form__row select:focus,
.osm-form__row textarea:focus {
    border-color: var(--osm-coral);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(255,94,91,0.15);
}
.osm-form__row textarea { resize: vertical; min-height: 80px; }

.osm-form--dark .osm-form__row input,
.osm-form--dark .osm-form__row select,
.osm-form--dark .osm-form__row textarea {
    background: rgba(255,246,232,0.08);
    border-color: rgba(255,246,232,0.18);
    color: var(--osm-cream);
}
.osm-form--dark .osm-form__row input::placeholder,
.osm-form--dark .osm-form__row textarea::placeholder { color: rgba(255,246,232,0.45); }
.osm-form--dark .osm-form__row input:focus,
.osm-form--dark .osm-form__row select:focus,
.osm-form--dark .osm-form__row textarea:focus {
    border-color: var(--osm-yellow);
    box-shadow: 0 0 0 3px rgba(255,182,39,0.18);
}

/* Dropdown options on dark forms — Chrome/Firefox honor these.
   Use white background + navy text so the open dropdown is bright and readable. */
.osm-form--dark .osm-form__row select option {
    background: #ffffff;
    color: var(--osm-navy);
    font-weight: 500;
    padding: 8px;
}
.osm-form--dark .osm-form__row select option:checked,
.osm-form--dark .osm-form__row select option:hover {
    background: var(--osm-yellow);
    color: var(--osm-navy);
}

/* Custom chevron + explicit appearance reset so the select looks consistent on dark */
.osm-form--dark .osm-form__row select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23FFB627' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='2,2 6,6 10,2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 8px;
    padding-right: 38px;
    cursor: pointer;
}

.osm-contact-success {
    background: var(--osm-mint);
    color: var(--osm-navy);
    border-radius: var(--osm-radius);
    padding: 28px;
    text-align: center;
    margin-bottom: 24px;
}
.osm-contact-success__icon { font-size: 36px; display: block; margin-bottom: 6px; }
.osm-contact-success h2 { font-size: 24px; margin: 4px 0 8px; color: var(--osm-navy); }
.osm-contact-success p { margin: 0 0 16px; }
.osm-contact-error {
    background: #fff4e5;
    border-left: 4px solid var(--osm-coral);
    padding: 14px 18px;
    margin-bottom: 22px;
    border-radius: 8px;
    font-size: 14px;
}

.osm-contact-alts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}
.osm-contact-alt {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 22px;
    text-align: center;
}
.osm-contact-alt__icon { font-size: 28px; margin-bottom: 6px; }
.osm-contact-alt h3 { font-size: 14px; margin: 4px 0 4px; }
.osm-contact-alt p { font-size: 13px; color: var(--osm-text-muted); margin: 0; }
.osm-contact-alt a { color: var(--osm-coral); font-weight: 600; }

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 900px) {
    .osm-map-layout { grid-template-columns: 1fr; }
    .osm-map { height: 400px; }
    .osm-map-list { max-height: 400px; }
    .osm-contact-layout { grid-template-columns: 1fr; }
    .osm-contact-alts { grid-template-columns: 1fr; }
    .osm-week-grid { grid-template-columns: repeat(7, 1fr); font-size: 11px; }
}

@media (max-width: 600px) {
    .osm-cal-controls { flex-direction: column; align-items: stretch; }
    .osm-cal-tabs, .osm-cal-nav { justify-content: center; }
    .osm-day-row { grid-template-columns: 60px 1fr; gap: 10px; }
    .osm-day-row__time { font-size: 12px; padding-top: 12px; }
    .osm-day-row__thumb { width: 60px; height: 60px; }
    .osm-week-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .osm-week-day__gigs { min-height: auto; }
    .osm-contact-form-wrap { padding: 20px; }
}

/* ============================================================
   ADVERTS — Universal "AD" label
   ============================================================ */
.osm-ad-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(31, 27, 62, 0.7);
    color: var(--osm-cream);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
    backdrop-filter: blur(4px);
    text-transform: uppercase;
}
.osm-ad-label--partner {
    background: var(--osm-yellow);
    color: var(--osm-navy);
}

/* ============================================================
   ZONE 1 — Homepage "Brought to you by" badges row
   ============================================================ */
.osm-ad-zone--logos {
    background: var(--osm-cream);
    padding: 30px 0;
    border-top: 1px solid var(--osm-border);
    border-bottom: 1px solid var(--osm-border);
}
.osm-ad-logos__head {
    text-align: center;
    margin-bottom: 18px;
}
.osm-ad-logos__eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--osm-text-muted);
    text-transform: uppercase;
}
.osm-ad-logos__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.osm-ad-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--osm-navy);
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--osm-border);
    text-decoration: none;
    font-family: var(--osm-font-display, Georgia, serif);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    position: relative;
    line-height: 1.2;
}
.osm-ad-logo::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--ad-accent, var(--osm-coral));
    border-radius: 50%;
    margin-right: 9px;
    flex-shrink: 0;
}
.osm-ad-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 27, 62, 0.08);
    color: var(--ad-accent, var(--osm-coral));
    border-color: var(--ad-accent, var(--osm-coral));
}
.osm-ad-logo__text {
    color: inherit;
}

@media (max-width: 600px) {
    .osm-ad-logos__row { gap: 8px; }
    .osm-ad-logo { font-size: 12px; padding: 7px 14px; }
}

/* ============================================================
   ZONE 2 — Homepage Big Featured ad
   ============================================================ */
.osm-ad-zone--feature {
    margin: 36px 0;
}
.osm-ad-feature {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 0;
    background: linear-gradient(135deg, #fff 0%, var(--osm-cream) 100%);
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(31,27,62,0.06);
    border: 1px solid var(--osm-border);
    border-left: 6px solid var(--ad-accent, var(--osm-yellow));
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 220px;
}
.osm-ad-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(31,27,62,0.12);
    color: inherit;
}
.osm-ad-feature__media {
    position: relative;
    overflow: hidden;
    background: var(--ad-accent, var(--osm-yellow));
}
.osm-ad-feature__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.osm-ad-feature:hover .osm-ad-feature__img {
    transform: scale(1.04);
}
.osm-ad-feature__body {
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.osm-ad-feature__brand {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--osm-text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.osm-ad-feature__headline {
    font-family: var(--osm-font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--osm-navy);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.osm-ad-feature__text {
    font-size: 14px;
    color: var(--osm-text-muted);
    line-height: 1.5;
    margin: 0 0 16px;
}
.osm-ad-feature__cta {
    display: inline-block;
    color: var(--ad-accent, var(--osm-coral));
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease;
    align-self: flex-start;
}
.osm-ad-feature:hover .osm-ad-feature__cta { transform: translateX(4px); }

/* ============================================================
   ZONE 3 — Gigs Sidebar advert
   ============================================================ */
.osm-gigs-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}
.osm-gigs-layout__main { min-width: 0; }
.osm-gigs-layout__side {
    position: sticky;
    top: 100px;
}
.osm-ad-zone--sidebar { display: block; }
.osm-ad-sidebar {
    display: block;
    background: #fff;
    border-radius: var(--osm-radius);
    overflow: hidden;
    border: 1px solid var(--osm-border);
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-ad-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(31,27,62,0.10);
    color: inherit;
}
.osm-ad-sidebar__media {
    aspect-ratio: 4 / 3;
    background: var(--osm-cream);
    overflow: hidden;
}
.osm-ad-sidebar__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.osm-ad-sidebar__body {
    padding: 14px 16px 16px;
}
.osm-ad-sidebar__brand {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--osm-text-muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}
.osm-ad-sidebar__headline {
    font-family: var(--osm-font-display);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--osm-navy);
    margin: 0 0 6px;
}
.osm-ad-sidebar__text {
    font-size: 12px;
    color: var(--osm-text-muted);
    line-height: 1.4;
    margin: 0 0 10px;
}
.osm-ad-sidebar__cta {
    font-size: 12px;
    font-weight: 800;
    color: var(--osm-coral);
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .osm-gigs-layout { grid-template-columns: 1fr; }
    .osm-gigs-layout__side { position: static; }
}

/* ============================================================
   ZONE 4 — Venue Local Partners
   ============================================================ */
.osm-ad-zone--venue-partners {
    background: var(--osm-cream);
    border: 1px dashed var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 18px;
    margin-top: 18px;
}
.osm-ad-partners__head { margin-bottom: 12px; }
.osm-ad-partners__eyebrow {
    display: block;
    font-family: var(--osm-font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--osm-navy);
}
.osm-ad-partners__sub {
    display: block;
    font-size: 11px;
    color: var(--osm-text-muted);
    margin-top: 2px;
}
.osm-ad-partners__grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.osm-ad-partner-card {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 8px 12px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.osm-ad-partner-card:hover {
    border-color: var(--osm-coral);
    transform: translateX(2px);
    color: inherit;
}
.osm-ad-partner-card__media {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--osm-cream);
    display: flex;
    align-items: center;
    justify-content: center;
}
.osm-ad-partner-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.osm-ad-partner-card__body {
    flex: 1;
    min-width: 0;
}
.osm-ad-partner-card__body strong {
    display: block;
    font-size: 13px;
    color: var(--osm-navy);
}
.osm-ad-partner-card__body span {
    display: block;
    font-size: 11px;
    color: var(--osm-text-muted);
    margin-top: 2px;
}

/* ============================================================
   ZONE 5 — Calendar Banner
   ============================================================ */
.osm-ad-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(90deg, var(--ad-accent, var(--osm-blue)) 0%, var(--osm-navy) 130%);
    border-radius: var(--osm-radius);
    padding: 12px 18px;
    text-decoration: none;
    color: var(--osm-cream);
    margin: 18px 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.osm-ad-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,27,62,0.18);
    color: var(--osm-cream);
}
.osm-ad-banner__media {
    width: 56px; height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,246,232,0.15);
}
.osm-ad-banner__img {
    width: 100%; height: 100%; object-fit: cover;
}
.osm-ad-banner__body {
    flex: 1;
    min-width: 0;
}
.osm-ad-banner__brand {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--osm-yellow);
    text-transform: uppercase;
}
.osm-ad-banner__headline {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--osm-cream);
    margin-top: 2px;
    line-height: 1.2;
}
.osm-ad-banner__arrow {
    font-size: 22px;
    color: var(--osm-cream);
    transition: transform 0.2s ease;
}
.osm-ad-banner:hover .osm-ad-banner__arrow { transform: translateX(4px); }

/* ============================================================
   ZONE 6 — Footer adverts row
   ============================================================ */
.osm-footer__ads {
    background: rgba(0,0,0,0.18);
    padding: 14px 0;
    border-top: 1px solid rgba(255,246,232,0.08);
}
.osm-ad-zone--footer {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 11px;
}
.osm-ad-footer__eyebrow {
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255,246,232,0.4);
    text-transform: uppercase;
}
.osm-ad-footer__row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.osm-ad-footer-link {
    color: rgba(255,246,232,0.7) !important;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.osm-ad-footer-link:hover {
    color: var(--osm-yellow) !important;
    border-bottom-color: var(--osm-yellow);
}

@media (max-width: 700px) {
    .osm-ad-feature { grid-template-columns: 1fr; }
    .osm-ad-feature__media { aspect-ratio: 16 / 9; }
    .osm-ad-logos__row { gap: 20px; }
}

/* ============================================================
   ADVERTISE WITH US — Landing Page
   ============================================================ */
.osm-advertise-hero {
    background:
        radial-gradient(ellipse 70% 50% at 30% 20%, rgba(255,182,39,0.20), transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 90%, rgba(255,94,91,0.18), transparent 70%),
        var(--osm-cream);
    padding: 70px 0 60px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--osm-border);
}
.osm-advertise-hero__inner { text-align: center; }
.osm-advertise-hero__title {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 0.95;
    margin: 18px 0 18px;
    letter-spacing: -1.5px;
    font-weight: 700;
}
.osm-advertise-hero__title em {
    font-style: italic;
    color: var(--osm-coral);
}
.osm-advertise-hero__title strong { font-weight: 900; }
.osm-advertise-hero__sub {
    color: var(--osm-text-muted);
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 28px;
    line-height: 1.5;
}
.osm-advertise-hero__stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.osm-advertise-stat {
    text-align: center;
}
.osm-advertise-stat strong {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 38px;
    font-weight: 900;
    color: var(--osm-coral);
    line-height: 1;
}
.osm-advertise-stat small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--osm-text-muted);
    margin-top: 6px;
}
.osm-advertise-hero__cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.osm-advertise-section { margin: 50px 0; }
.osm-advertise-section__head { text-align: center; margin-bottom: 30px; }
.osm-advertise-section__head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 14px 0 12px;
    line-height: 1.05;
    letter-spacing: -1px;
}
.osm-advertise-section__head h2 em {
    font-style: italic;
    color: var(--osm-coral);
}
.osm-advertise-section__head p {
    color: var(--osm-text-muted);
    max-width: 540px;
    margin: 0 auto;
    font-size: 14px;
}

.osm-advertise-who {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: center;
}
.osm-advertise-who h2 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -0.8px;
}
.osm-advertise-who h2 em {
    font-style: italic;
    color: var(--osm-coral);
}
.osm-advertise-who__list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.osm-advertise-who__list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--osm-navy);
    border-bottom: 1px solid var(--osm-border);
}
.osm-advertise-who__list li:last-child { border-bottom: 0; }
.osm-advertise-who__quote {
    background: var(--osm-yellow);
    color: var(--osm-navy);
    border-left: 4px solid var(--osm-coral);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}
.osm-advertise-who__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.osm-advertise-figure {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 22px 18px;
    text-align: center;
    transition: transform 0.3s ease;
}
.osm-advertise-figure:nth-child(odd) { transform: translateY(-12px); }
.osm-advertise-figure:hover { transform: translateY(-4px) scale(1.02); }
.osm-advertise-figure:nth-child(odd):hover { transform: translateY(-16px) scale(1.02); }
.osm-advertise-figure__emoji { font-size: 40px; display: block; margin-bottom: 8px; }
.osm-advertise-figure strong {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 14px;
    color: var(--osm-navy);
}

/* PACKAGES */
.osm-advertise-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 18px;
}
.osm-package {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius-lg);
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.osm-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(31,27,62,0.10);
}
.osm-package--featured {
    border: 2px solid var(--osm-coral);
    box-shadow: 0 4px 18px rgba(255,94,91,0.18);
}
.osm-package__ribbon {
    position: absolute;
    top: -10px; right: 18px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    padding: 3px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}
.osm-package__icon { font-size: 32px; margin-bottom: 8px; }
.osm-package__title {
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--osm-navy);
    letter-spacing: -0.3px;
}
.osm-package__sub {
    color: var(--osm-text-muted);
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 18px;
}
.osm-package__mock {
    background: var(--osm-cream);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.osm-package-mock {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    font-size: 10px;
}
.osm-package-mock__label {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(31,27,62,0.7);
    color: var(--osm-cream);
    padding: 1px 5px;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}
.osm-package-mock__eyebrow {
    display: block;
    font-size: 8px;
    font-weight: 800;
    color: var(--osm-text-muted);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.osm-package-mock--feature {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 8px;
    padding: 8px;
    border-left: 3px solid var(--osm-yellow);
}
.osm-package-mock__img {
    background: linear-gradient(135deg, var(--osm-yellow), var(--osm-coral));
    border-radius: 4px;
    min-height: 60px;
}
.osm-package-mock__body { padding: 4px 2px; }
.osm-package-mock__body strong {
    display: block;
    font-size: 11px;
    color: var(--osm-navy);
    margin-bottom: 2px;
}
.osm-package-mock__body p {
    font-size: 9px;
    color: var(--osm-text-muted);
    margin: 0 0 6px;
}
.osm-package-mock__cta {
    font-size: 9px;
    color: var(--osm-coral);
    font-weight: 700;
}
.osm-package-mock--logos { padding: 14px 10px; text-align: center; }
.osm-package-mock__logos { display: flex; justify-content: center; gap: 10px; align-items: center; }
.osm-package-mock__logo {
    width: 40px; height: 22px; background: #E8DDC8; border-radius: 3px;
}
.osm-package-mock__logo.is-yours {
    background: var(--osm-coral);
    color: var(--osm-cream);
    font-size: 7px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.osm-package-mock--sidebar { padding: 8px; text-align: center; }
.osm-package-mock__img-tall {
    background: linear-gradient(135deg, var(--osm-blue), var(--osm-navy));
    border-radius: 4px;
    height: 50px;
    margin-bottom: 6px;
}
.osm-package-mock--sidebar strong { font-size: 10px; display: block; }
.osm-package-mock--sidebar p { font-size: 8px; margin: 2px 0 4px; color: var(--osm-text-muted); }
.osm-package-mock--banner { padding: 8px; }
.osm-package-mock__strip {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(90deg, var(--osm-blue), var(--osm-navy));
    border-radius: 6px;
    padding: 8px;
    color: var(--osm-cream);
}
.osm-package-mock__strip-img { width: 30px; height: 30px; background: rgba(255,246,232,0.2); border-radius: 4px; flex-shrink: 0; }
.osm-package-mock__strip-text { flex: 1; }
.osm-package-mock__strip-text strong { display: block; font-size: 8px; color: var(--osm-yellow); }
.osm-package-mock__strip-text span { font-size: 9px; }
.osm-package-mock__arrow { color: var(--osm-cream); }
.osm-package-mock--partners { padding: 10px; }
.osm-package-mock__partners-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 4px; }
.osm-package-mock__partner {
    background: #E8DDC8; height: 30px; border-radius: 4px;
}
.osm-package-mock__partner.is-yours {
    background: var(--osm-coral); color: var(--osm-cream);
    font-size: 8px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.osm-package-mock--footer { padding: 10px; background: var(--osm-navy); }
.osm-package-mock--footer .osm-package-mock__eyebrow { color: rgba(255,246,232,0.4); }
.osm-package-mock__links { display: flex; gap: 12px; flex-wrap: wrap; }
.osm-package-mock__links span {
    color: rgba(255,246,232,0.7); font-size: 10px;
}
.osm-package-mock__links span.is-yours {
    color: var(--osm-yellow); font-weight: 800;
}

.osm-package__features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    flex: 1;
}
.osm-package__features li {
    padding: 5px 0;
    font-size: 12px;
    color: var(--osm-navy);
    border-bottom: 1px solid #F8F0DC;
}
.osm-package__features li:last-child { border-bottom: 0; }

.osm-package__price {
    text-align: center;
    padding: 14px 0 0;
    border-top: 1px solid var(--osm-border);
}
.osm-package__price strong {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--osm-coral);
    line-height: 1;
}
.osm-package__price small {
    display: block;
    font-size: 11px;
    color: var(--osm-text-muted);
    margin-top: 4px;
}

.osm-advertise-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.osm-advertise-step {
    background: #fff;
    border: 1px solid var(--osm-border);
    border-radius: var(--osm-radius);
    padding: 24px;
    text-align: center;
    position: relative;
}
.osm-advertise-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    background: var(--osm-coral);
    color: var(--osm-cream);
    border-radius: 50%;
    font-family: var(--osm-font-display);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    box-shadow: 0 3px 0 rgba(31,27,62,0.15);
}
.osm-advertise-step h3 {
    font-family: var(--osm-font-display);
    font-size: 19px;
    margin: 0 0 6px;
}
.osm-advertise-step p {
    font-size: 13px;
    color: var(--osm-text-muted);
    margin: 0;
    line-height: 1.5;
}

.osm-advertise-final-cta {
    background: var(--osm-navy);
    color: var(--osm-cream);
    border-radius: var(--osm-radius-lg);
    padding: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}
.osm-advertise-final-cta::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px; height: 240px;
    background: var(--osm-coral);
    border-radius: 50%;
    opacity: 0.2;
}
.osm-advertise-final-cta::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 200px; height: 200px;
    background: var(--osm-yellow);
    border-radius: 50%;
    opacity: 0.18;
}
.osm-advertise-final-cta__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.osm-advertise-final-cta__copy h2 {
    font-size: 38px;
    line-height: 1;
    margin: 14px 0 12px;
    color: var(--osm-cream);
    letter-spacing: -0.8px;
}
.osm-advertise-final-cta__copy h2 em {
    font-style: italic;
    color: var(--osm-yellow);
}
.osm-advertise-final-cta__copy p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
}
.osm-advertise-final-cta__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.osm-advertise-final-cta__actions small {
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}
.osm-advertise-final-cta__actions small a {
    color: var(--osm-yellow);
    border-bottom: 1px dashed var(--osm-yellow);
    text-decoration: none;
}

@media (max-width: 900px) {
    .osm-advertise-who,
    .osm-advertise-final-cta__inner { grid-template-columns: 1fr; }
    .osm-advertise-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TONIGHT'S LINEUP page template
   ============================================================ */

.osm-tonight-hero {
    background:
        radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255,94,91,0.25), transparent 70%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(255,182,39,0.20), transparent 70%),
        var(--osm-cream);
    padding: 64px 0 50px;
    margin-bottom: 36px;
    border-bottom: 1px solid var(--osm-border);
    position: relative;
    overflow: hidden;
}
.osm-tonight-hero::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -40px;
    font-size: 120px;
    opacity: 0.04;
    transform: rotate(15deg);
    pointer-events: none;
    line-height: 1;
}
.osm-tonight-hero__inner {
    text-align: center;
    position: relative;
    z-index: 1;
}
.osm-tonight-hero__tag {
    margin-bottom: 14px;
}
.osm-tonight-hero__title {
    font-size: clamp(40px, 7vw, 78px);
    font-weight: 900;
    line-height: 0.95;
    margin: 8px 0 14px;
    letter-spacing: -1.8px;
    color: var(--osm-navy);
}
.osm-tonight-hero__sub {
    font-size: 18px;
    color: var(--osm-navy);
    margin: 0 0 14px;
}
.osm-tonight-hero__sub strong {
    font-family: var(--osm-font-display);
    font-weight: 900;
    color: var(--osm-coral);
    font-size: 22px;
}
.osm-tonight-hero__sub--empty {
    font-style: italic;
    color: var(--osm-text-muted);
}
.osm-tonight-hero__live-marker {
    font-size: 12px;
    color: var(--osm-text-muted);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* SECTIONS */
.osm-tonight-section {
    margin-bottom: 42px;
}
.osm-tonight-section__head {
    font-family: var(--osm-font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    color: var(--osm-navy);
    margin: 0 0 18px;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.osm-tonight-section__head--live {
    color: var(--osm-coral);
}
.osm-tonight-section--finished {
    opacity: 0.75;
}
.osm-tonight-section--finished .osm-tonight-section__head {
    color: var(--osm-text-muted);
    font-weight: 700;
    font-size: 18px;
}

/* GRID */
.osm-tonight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 20px;
}

/* CARD */
.osm-tonight-card {
    background: #fff;
    border-radius: var(--osm-radius-lg);
    overflow: hidden;
    border: 1px solid var(--osm-border);
    border-left: 5px solid var(--card-accent, var(--osm-coral));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}
.osm-tonight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(31,27,62,0.10);
}

.osm-tonight-card--on_now {
    border: 2px solid var(--osm-coral);
    border-left-width: 5px;
    box-shadow: 0 4px 18px rgba(255,94,91,0.20);
}
.osm-tonight-card--on_now::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,94,91,0.04), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.osm-tonight-card--finished {
    opacity: 0.6;
    filter: grayscale(0.4);
}

.osm-tonight-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.osm-tonight-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.osm-tonight-card:hover .osm-tonight-card__img {
    transform: scale(1.05);
}
.osm-tonight-card__no-media {
    height: 50px;
    background: linear-gradient(135deg, var(--card-accent, var(--osm-coral)), color-mix(in srgb, var(--card-accent, var(--osm-coral)) 60%, #1F1B3E));
    position: relative;
}

/* STATUS BADGE — overlay on media */
.osm-tonight-card__status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    z-index: 2;
    backdrop-filter: blur(8px);
}
.osm-tonight-card__status--on_now {
    background: var(--osm-coral);
    color: var(--osm-cream);
    animation: osm-pulse-glow 1.5s ease-in-out infinite;
}
@keyframes osm-pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,94,91,0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(255,94,91,0); }
}
.osm-tonight-card__status--doors_open {
    background: var(--osm-yellow);
    color: var(--osm-navy);
}
.osm-tonight-card__status--starting_soon {
    background: rgba(255, 255, 255, 0.95);
    color: var(--osm-navy);
}
.osm-tonight-card__status--upcoming {
    background: rgba(31, 27, 62, 0.85);
    color: var(--osm-cream);
}
.osm-tonight-card__status--finished {
    background: rgba(31, 27, 62, 0.45);
    color: var(--osm-cream);
}

/* BODY */
.osm-tonight-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.osm-tonight-card__venue {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--osm-text-muted);
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s ease;
}
.osm-tonight-card__venue:hover {
    color: var(--card-accent, var(--osm-coral));
}
.osm-tonight-card__venue-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--card-accent, var(--osm-coral));
    border-radius: 50%;
}

.osm-tonight-card__title {
    font-family: var(--osm-font-display);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 6px;
    color: var(--osm-navy);
    letter-spacing: -0.3px;
}
.osm-tonight-card__title a {
    color: inherit;
    text-decoration: none;
}
.osm-tonight-card__title a:hover { color: var(--osm-coral); }

.osm-tonight-card__support {
    font-size: 13px;
    color: var(--osm-text-muted);
    margin: 0 0 12px;
    line-height: 1.3;
}
.osm-tonight-card__support-label {
    font-style: italic;
    opacity: 0.7;
}

/* TIMELINE — the doors/music/until row */
.osm-tonight-card__timeline {
    background: var(--osm-cream);
    border-radius: 10px;
    padding: 10px 12px;
    margin: 6px 0 14px;
}
.osm-tonight-card__time-row {
    display: flex;
    gap: 6px;
    justify-content: space-between;
}
.osm-tonight-card__time-step {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    position: relative;
}
.osm-tonight-card__time-step + .osm-tonight-card__time-step::before {
    content: '→';
    position: absolute;
    left: -8px;
    top: 14px;
    color: var(--osm-text-muted);
    font-size: 12px;
    opacity: 0.5;
}
.osm-tonight-card__time-icon {
    font-size: 13px;
    line-height: 1;
}
.osm-tonight-card__time-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--osm-text-muted);
    margin-top: 2px;
}
.osm-tonight-card__time-step strong {
    font-family: var(--osm-font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--osm-navy);
    margin-top: 1px;
}

/* FOOT */
.osm-tonight-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid var(--osm-border);
}
.osm-tonight-card__price {
    font-size: 13px;
    color: var(--osm-navy);
}
.osm-tonight-card__price strong {
    font-family: var(--osm-font-display);
    font-size: 18px;
    color: var(--osm-coral);
    font-weight: 800;
}
.osm-tonight-card__price span {
    color: var(--osm-text-muted);
    font-size: 11px;
}
.osm-tonight-card__price--free strong {
    color: var(--osm-mint, #8FCDA7);
}
.osm-tonight-card__cta {
    font-size: 12px;
    font-weight: 800;
    color: var(--osm-coral);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: transform 0.2s ease;
}
.osm-tonight-card__cta:hover { transform: translateX(3px); }
.osm-tonight-card__cta--secondary { color: var(--osm-text-muted); }

/* EMPTY STATE */
.osm-tonight-empty {
    text-align: center;
    background: var(--osm-cream);
    border: 1px dashed var(--osm-border);
    border-radius: var(--osm-radius-lg);
    padding: 60px 30px 50px;
    margin: 20px 0;
}
.osm-tonight-empty__emoji {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 18px;
}
.osm-tonight-empty h2 {
    font-size: 32px;
    font-family: var(--osm-font-display);
    margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.osm-tonight-empty p {
    color: var(--osm-text-muted);
    max-width: 480px;
    margin: 0 auto 24px;
    font-size: 15px;
}
.osm-tonight-empty__actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* PLAN AHEAD CTA STRIP */
.osm-tonight-cta-strip {
    background: var(--osm-navy);
    border-radius: var(--osm-radius-lg);
    padding: 24px 28px;
    margin: 40px 0 20px;
    color: var(--osm-cream);
    position: relative;
    overflow: hidden;
}
.osm-tonight-cta-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--osm-yellow);
    border-radius: 50%;
    opacity: 0.15;
}
.osm-tonight-cta-strip__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.osm-tonight-cta-strip strong {
    display: block;
    font-family: var(--osm-font-display);
    font-size: 22px;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.osm-tonight-cta-strip span {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 600px) {
    .osm-tonight-card__time-row { font-size: 11px; }
    .osm-tonight-card__time-step strong { font-size: 13px; }
    .osm-tonight-card__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   SVG safety net — prevent SVG attachments from collapsing to 0px
   when WordPress strips width/height attributes.
   ============================================================ */
.osm-ad-zone img[src$=".svg"],
.osm-ad-zone img[src*=".svg?"] {
    min-width: 30px;
    min-height: 30px;
}
