/*
 * home.css — The Smokey Pit Homepage
 * All homepage-specific styles live here.
 * The site shell (header/nav) styles come from menu_styles.cfm and are unchanged.
 *
 * Sections:
 *   01  Tokens + Reset
 *   02  Typography
 *   03  Shared Utilities
 *   04  Hero Slider
 *   05  Tonight Section
 *   06  Featured Dishes
 *   07  Experience Tiles (Venue / Artifacts)
 *   08  Events Strip
 *   09  Reservation Band
 *   10  Products Section
 *   11  Membership Pitch
 *   12  Site Footer
 *   13  Radio Mini-Player (floating)
 *   14  Toast Notification
 *   15  Responsive
 */

/* ═══════════════════════════════════════════
   01  TOKENS + RESET
═══════════════════════════════════════════ */
:root {
    --fire:       #C0392B;
    --fire-d:     #962d22;
    --fire-glow:  rgba(192,57,43,.30);
    --smoke:      #0e0e0f;
    --smoke2:     #181819;
    --smoke3:     #222224;
    --smoke4:     #2c2c2e;
    --gold:       #D4A017;
    --gold-l:     #f0c040;
    --gold-glow:  rgba(212,160,23,.22);
    --cream:      #F5EFE6;
    --ash:        rgba(245,239,230,.62);
    --ash-l:      rgba(245,239,230,.35);
    --green:      #27ae60;
    --r:          14px;
    --r-lg:       20px;
    --r-xl:       28px;
    --mw:         1280px;
    --section-pad: 80px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--smoke);
    color: var(--cream);
    font-family: 'DM Sans', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ═══════════════════════════════════════════
   02  TYPOGRAPHY
═══════════════════════════════════════════ */
.h-display {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}
.h-section {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
}
.h-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 10px;
    display: block;
}

/* ═══════════════════════════════════════════
   03  SHARED UTILITIES
═══════════════════════════════════════════ */
.section-wrap { max-width: var(--mw); margin: 0 auto; padding: var(--section-pad); }
.section-hdr { margin-bottom: 36px; }
.section-hdr-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

/* Primary button */
.btn-pit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background .16s, transform .12s, box-shadow .16s;
    white-space: nowrap;
}
.btn-pit:active { transform: scale(.97); }
.btn-fire  { background: var(--fire);  color: #fff; box-shadow: 0 4px 18px var(--fire-glow); }
.btn-fire:hover  { background: var(--fire-d); box-shadow: 0 6px 24px var(--fire-glow); transform: translateY(-1px); }
.btn-gold  { background: var(--gold);  color: #0e0e0f; }
.btn-gold:hover  { background: var(--gold-l); transform: translateY(-1px); }
.btn-ghost { background: rgba(255,255,255,.07); color: var(--cream); border: 1px solid rgba(255,255,255,.14); }
.btn-ghost:hover { background: rgba(255,255,255,.13); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* See-all link */
.see-all {
    font-size: 13px;
    font-weight: 700;
    color: var(--fire);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .15s, gap .15s;
}
.see-all:hover { color: var(--gold); gap: 8px; }

/* Live dot */
.live-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--fire);
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse-live 1.8s ease-in-out infinite;
}
@keyframes pulse-live {
    0%,100% { box-shadow: 0 0 0 0 rgba(192,57,43,.7); }
    50%      { box-shadow: 0 0 0 7px rgba(192,57,43,0); }
}

/* Status pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
}
.status-pill.is-open  { border-color: rgba(46,204,113,.35); }
.status-pill.is-closed{ border-color: rgba(231,76,60,.25); }
.status-pill .s-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.s-dot.open   { background: #2ecc71; box-shadow: 0 0 6px rgba(46,204,113,.7); animation: blink 2s infinite; }
.s-dot.closed { background: var(--ash-l); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }

/* Progress bar */
.prog-bar { height: 4px; border-radius: 2px; background: rgba(255,255,255,.1); overflow: hidden; }
.prog-fill { height: 100%; border-radius: 2px; background: var(--fire); transition: width .4s; }

/* Card base */
.pit-card {
    background: var(--smoke2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.pit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,.55);
    border-color: rgba(192,57,43,.3);
}

/* ═══════════════════════════════════════════
   04  HERO SLIDER
═══════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    background: var(--smoke);
}

/* Slide track */
.hero-track {
    display: flex;
    height: 100%;
    transition: transform .75s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.hero-slide {
    flex: 0 0 100%;
    position: relative;
    overflow: hidden;
}

/* Slide media */
.hero-slide-img,
.hero-slide-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-slide.active .hero-slide-img,
.hero-slide.active .hero-slide-video {
    transform: scale(1.06);
}

/* Overlay gradient */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(14,14,15,.96) 0%,
        rgba(14,14,15,.55) 50%,
        rgba(14,14,15,.15) 100%
    );
    z-index: 1;
}

/* Slide content */
.hero-slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 7% 9%;
    max-width: calc(var(--mw) + 48px);
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .5s .1s, transform .5s .1s;
}
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 6vw, 72px);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    max-width: 700px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s .2s, transform .6s .2s;
}
.hero-subline {
    font-size: clamp(15px, 2vw, 19px);
    color: rgba(245,239,230,.72);
    max-width: 540px;
    margin-top: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s .35s, transform .6s .35s;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s .5s, transform .55s .5s;
}

/* Animate in for active slide */
.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-headline,
.hero-slide.active .hero-subline,
.hero-slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

/* Cart-add button (special styling for slides with direct cart link) */
.hero-btn-cart {
    background: var(--fire);
    color: #fff;
    box-shadow: 0 4px 20px var(--fire-glow);
}
.hero-btn-cart:hover { background: var(--fire-d); transform: translateY(-2px); }
.hero-btn-secondary {
    background: rgba(255,255,255,.1);
    color: var(--cream);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
}
.hero-btn-secondary:hover { background: rgba(255,255,255,.18); }

/* Slide indicators */
.hero-dots {
    position: absolute;
    bottom: 32px;
    right: 7%;
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-dot {
    width: 6px; height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.3);
    border: none;
    cursor: pointer;
    transition: width .3s, background .3s;
    padding: 0;
}
.hero-dot.active {
    width: 24px;
    background: var(--gold);
}

/* Prev / Next arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    color: #fff;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background .2s;
    opacity: 0;
    transition: opacity .3s, background .2s;
}
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(192,57,43,.5); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* Scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.35);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bounce-hint 2.5s ease-in-out infinite;
}
.hero-scroll-hint::before {
    content: '';
    width: 1px; height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.35));
}
@keyframes bounce-hint {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════════
   05  TONIGHT SECTION
═══════════════════════════════════════════ */
.tonight-section {
    background: linear-gradient(180deg, var(--smoke) 0%, var(--smoke2) 100%);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.tonight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.tonight-event-banner {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: linear-gradient(135deg, rgba(192,57,43,.15), rgba(192,57,43,.04));
    border: 1px solid rgba(192,57,43,.28);
    border-radius: var(--r-lg);
    flex-wrap: wrap;
}
.tonight-event-img {
    width: 80px; height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.tonight-event-img-placeholder {
    width: 80px; height: 80px;
    border-radius: 12px;
    background: var(--smoke3);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
}
.tonight-event-info { flex: 1; min-width: 0; }
.tonight-event-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--fire);
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.tonight-event-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.tonight-event-meta { font-size: 13px; color: var(--ash-l); margin-top: 5px; }
.tonight-cd {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--gold);
    background: rgba(212,160,23,.1);
    border: 1px solid rgba(212,160,23,.2);
    border-radius: 6px;
    padding: 4px 12px;
    margin-top: 10px;
    display: inline-block;
}
.tonight-special-card {
    background: var(--smoke3);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.tonight-special-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.tonight-special-body { padding: 18px 20px 20px; }
.tonight-special-day {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 8px;
}
.tonight-special-text { font-size: 14px; color: var(--cream); line-height: 1.65; }

/* ═══════════════════════════════════════════
   06  FEATURED DISHES
═══════════════════════════════════════════ */
.dishes-section { background: var(--smoke); }
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.dish-card {
    background: var(--smoke2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(0,0,0,.6);
    border-color: rgba(192,57,43,.3);
}
.dish-img-wrap { position: relative; overflow: hidden; height: 210px; }
.dish-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s;
    display: block;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.07); }
.dish-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--fire);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 6px;
}
.dish-body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.dish-name {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.dish-desc { font-size: 13px; color: var(--ash); line-height: 1.6; }
.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.dish-price {
    font-family: 'DM Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}
.dish-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 8px;
    background: var(--fire);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: background .15s, transform .12s;
}
.dish-add-btn:hover { background: var(--fire-d); }
.dish-add-btn:active { transform: scale(.95); }
.dish-add-btn.loading { opacity: .6; pointer-events: none; }
.dish-add-btn.added {
    background: var(--green);
    pointer-events: none;
}

/* ═══════════════════════════════════════════
   07  EXPERIENCE TILES (Venue / Artifacts)
═══════════════════════════════════════════ */
.experience-section { background: var(--smoke2); }
.experience-intro {
    max-width: 620px;
    margin-bottom: 48px;
}
.experience-intro p {
    font-size: 17px;
    color: var(--ash);
    line-height: 1.8;
    margin-top: 14px;
}
.exp-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }

/* Tile base */
.exp-tile {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    cursor: pointer;
    background: var(--smoke3);
}
.exp-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.exp-tile:hover img { transform: scale(1.06); }
.exp-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,14,15,.92) 0%, rgba(14,14,15,.2) 60%, transparent 100%);
    transition: opacity .3s;
}
.exp-tile:hover .exp-tile-overlay { opacity: .85; }
.exp-tile-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px 22px;
    z-index: 2;
    transform: translateY(6px);
    transition: transform .3s;
}
.exp-tile:hover .exp-tile-body { transform: translateY(0); }
.exp-tile-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.exp-tile-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.exp-tile-desc {
    font-size: 13px;
    color: var(--ash);
    margin-top: 6px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s, opacity .3s;
    opacity: 0;
}
.exp-tile:hover .exp-tile-desc { max-height: 80px; opacity: 1; }
.exp-tile-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--fire);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .35s .05s, opacity .3s .05s;
}
.exp-tile:hover .exp-tile-link { max-height: 30px; opacity: 1; }

/* Grid layout — asymmetric, editorial */
.exp-tile-a { grid-column: span 7; height: 420px; }
.exp-tile-b { grid-column: span 5; height: 420px; }
.exp-tile-c { grid-column: span 4; height: 300px; }
.exp-tile-d { grid-column: span 4; height: 300px; }
.exp-tile-e { grid-column: span 4; height: 300px; }

/* Placeholder for tiles without images */
.exp-tile-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, var(--smoke3), var(--smoke4));
}

/* Collection quote block */
.collection-quote {
    margin-top: 48px;
    padding: 32px 40px;
    border-left: 3px solid var(--fire);
    background: rgba(192,57,43,.05);
    border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.collection-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--cream);
    line-height: 1.65;
}
.collection-quote cite {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ash-l);
    margin-top: 14px;
    font-style: normal;
}

/* ═══════════════════════════════════════════
   08  EVENTS STRIP
═══════════════════════════════════════════ */
.events-section { background: var(--smoke); }
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}
.ev-card {
    background: var(--smoke2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform .22s, box-shadow .22s, border-color .22s;
}
.ev-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 46px rgba(0,0,0,.55);
    border-color: rgba(192,57,43,.3);
}
.ev-card-img { position: relative; height: 180px; overflow: hidden; background: var(--smoke3); }
.ev-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s;
    display: block;
}
.ev-card:hover .ev-card-img img { transform: scale(1.06); }
.ev-date-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--fire);
    border-radius: 10px;
    padding: 5px 11px;
    text-align: center;
    z-index: 2;
}
.ev-date-day {
    font-family: 'DM Mono', monospace;
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.ev-date-mon {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,.75);
    letter-spacing: .07em;
    text-transform: uppercase;
}
.ev-tonight-flag {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(192,57,43,.85);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    padding: 3px 9px;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    z-index: 2;
}
.ev-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ev-card-meta { font-size: 11px; color: var(--ash-l); font-family: 'DM Mono', monospace; }
.ev-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
.ev-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.ev-card-price { font-size: 15px; font-weight: 700; color: var(--gold); }
.ev-rsvp-count { font-size: 11px; color: var(--ash-l); }
.ev-card-cta {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 7px;
    background: var(--fire);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: background .15s;
}
.ev-card-cta:hover { background: var(--fire-d); }

/* ═══════════════════════════════════════════
   09  RESERVATION BAND
═══════════════════════════════════════════ */
.res-band {
    background: linear-gradient(135deg, #120800 0%, #3d0f00 45%, #120800 100%);
    position: relative;
    overflow: hidden;
}
.res-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.res-band-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.res-band-tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 20px;
}
.res-band-sub {
    font-size: 16px;
    color: rgba(245,239,230,.6);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.res-band-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   10  PRODUCTS SECTION
═══════════════════════════════════════════ */
.products-section { background: var(--smoke2); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.prod-card {
    background: var(--smoke3);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prod-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0,0,0,.5);
    border-color: rgba(212,160,23,.25);
}
.prod-card-img { height: 200px; overflow: hidden; background: var(--smoke4); }
.prod-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.prod-card:hover .prod-card-img img { transform: scale(1.05); }
.prod-card-body { padding: 16px 16px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.prod-card-cat {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
}
.prod-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.prod-card-desc { font-size: 12px; color: var(--ash-l); line-height: 1.55; }
.prod-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.05);
}
.prod-card-price { font-family: 'DM Mono', monospace; font-size: 16px; font-weight: 700; color: var(--cream); }
.prod-card-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--fire);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .15s, gap .15s;
}
.prod-card:hover .prod-card-cta { color: var(--gold); gap: 8px; }

/* ═══════════════════════════════════════════
   11  MEMBERSHIP PITCH
═══════════════════════════════════════════ */
.membership-section {
    background: var(--smoke);
    border-top: 1px solid rgba(255,255,255,.05);
}
.membership-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.membership-copy .h-section { margin-bottom: 16px; }
.membership-copy p {
    font-size: 16px;
    color: var(--ash);
    line-height: 1.8;
    margin-bottom: 14px;
}
.membership-perks { list-style: none; margin: 24px 0 32px; }
.membership-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: 14px;
    color: var(--cream);
}
.membership-perks li:last-child { border-bottom: none; }
.perk-ico { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.perk-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.perk-text span { font-size: 12px; color: var(--ash-l); }
.membership-visual {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 480px;
    background: var(--smoke3);
}
.membership-visual img { width: 100%; height: 100%; object-fit: cover; }
.membership-card-overlay {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(14,14,15,.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 20px 22px;
}
.mc-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}
.mc-meta { font-size: 13px; color: var(--ash-l); }
.radio-tease {
    margin-top: 32px;
    padding: 18px 22px;
    background: rgba(212,160,23,.06);
    border: 1px solid rgba(212,160,23,.18);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 14px;
}
.radio-tease-ico { font-size: 32px; flex-shrink: 0; }
.radio-tease-text strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.radio-tease-text span { font-size: 12px; color: var(--ash-l); }

/* ═══════════════════════════════════════════
   12  SITE FOOTER
═══════════════════════════════════════════ */
.site-footer {
    background: #080809;
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 60px 24px 0;
}
.site-footer-grid {
    max-width: var(--mw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand {}
.footer-logo { height: 52px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: var(--ash); line-height: 1.65; max-width: 280px; }
.footer-nap { margin-top: 20px; }
.footer-nap p { font-size: 13px; color: var(--ash); line-height: 1.8; }
.footer-nap strong { color: var(--cream); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: background .15s, border-color .15s;
}
.footer-social-link:hover { background: var(--fire); border-color: var(--fire); }
.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ash-l);
    margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 13px;
    color: var(--ash);
    transition: color .15s;
}
.footer-links a:hover { color: var(--cream); }
.footer-hours-list { list-style: none; }
.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: var(--ash);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255,255,255,.03);
}
.footer-hours-list li:last-child { border-bottom: none; }
.footer-hours-list .fh-day { font-weight: 600; color: var(--cream); }
.footer-hours-list .fh-today { color: var(--gold); }
.site-footer-bottom {
    max-width: var(--mw);
    margin: 0 auto;
    padding: 18px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-copy { font-size: 12px; color: var(--ash-l); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--ash-l); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════
   13  RADIO MINI-PLAYER (floating, persistent)
═══════════════════════════════════════════ */
.radio-player {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}
.radio-pill {
    background: rgba(14,14,15,.95);
    border: 1px solid rgba(212,160,23,.25);
    border-radius: 50px;
    padding: 10px 16px 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,.6), 0 0 0 1px rgba(212,160,23,.1);
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    min-width: 220px;
    max-width: 280px;
}
.radio-pill:hover {
    border-color: rgba(212,160,23,.5);
    box-shadow: 0 10px 40px rgba(0,0,0,.7), 0 0 12px var(--gold-glow);
}
.radio-pill-ico {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    position: relative;
}
.radio-pill-ico.playing::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212,160,23,.4);
    animation: radio-ring 1.5s linear infinite;
}
@keyframes radio-ring {
    from { transform: scale(1); opacity: 1; }
    to   { transform: scale(1.5); opacity: 0; }
}
.radio-pill-info { flex: 1; min-width: 0; }
.radio-pill-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 2px;
}
.radio-pill-track {
    font-size: 12px;
    color: var(--cream);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.radio-pill-artist { font-size: 11px; color: var(--ash-l); }
.radio-pill-ctrl {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color .15s;
}
.radio-pill-ctrl:hover { color: var(--gold); }
.radio-progress {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,.1);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 6px;
}
.radio-progress-fill {
    height: 100%;
    border-radius: 1px;
    background: var(--gold);
    width: 0%;
    transition: width 1s linear;
}
.radio-dismiss {
    font-size: 11px;
    color: var(--ash-l);
    text-align: right;
    padding-right: 4px;
    cursor: pointer;
    transition: color .15s;
}
.radio-dismiss:hover { color: var(--fire); }

/* ═══════════════════════════════════════════
   14  TOAST NOTIFICATION
═══════════════════════════════════════════ */
.pit-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 1100;
    background: rgba(14,14,15,.95);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    max-width: 320px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
}
.pit-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.pit-toast.success { border-color: rgba(39,174,96,.3); }
.pit-toast.error   { border-color: rgba(192,57,43,.3); }
.pit-toast-ico { font-size: 22px; flex-shrink: 0; }
.pit-toast-msg { font-size: 13px; font-weight: 600; color: var(--cream); line-height: 1.4; }
.pit-toast-sub { font-size: 11px; color: var(--ash-l); margin-top: 2px; }

/* ═══════════════════════════════════════════
   15  RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    .exp-grid { grid-template-columns: repeat(6, 1fr); }
    .exp-tile-a { grid-column: span 6; height: 360px; }
    .exp-tile-b { grid-column: span 6; height: 340px; }
    .exp-tile-c,
    .exp-tile-d,
    .exp-tile-e { grid-column: span 2; height: 260px; }
    .membership-inner { grid-template-columns: 1fr; gap: 40px; }
    .membership-visual { height: 340px; }
    .site-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 760px) {
    :root { --section-pad: 52px 18px; }
    .hero { min-height: 480px; max-height: 700px; }
    .hero-slide-content { padding: 0 6% 12%; }
    .hero-arrow { display: none; }
    .hero-scroll-hint { display: none; }
    .tonight-grid { grid-template-columns: 1fr; }
    .tonight-event-banner { grid-column: 1; }
    .exp-grid { grid-template-columns: 1fr 1fr; }
    .exp-tile-a,
    .exp-tile-b { grid-column: span 2; height: 300px; }
    .exp-tile-c,
    .exp-tile-d,
    .exp-tile-e { grid-column: span 1; height: 220px; }
    .exp-tile-desc { max-height: 80px; opacity: 1; }
    .exp-tile-link { max-height: 30px; opacity: 1; }
    .collection-quote { padding: 22px 22px; }
    .dishes-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .membership-inner { grid-template-columns: 1fr; }
    .membership-visual { height: 280px; }
    .site-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .site-footer-bottom { flex-direction: column; align-items: flex-start; }
    .radio-player { bottom: 16px; right: 16px; }
    .radio-pill { min-width: 180px; }
}

@media (max-width: 480px) {
    .dishes-grid { grid-template-columns: 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr 1fr; }
    .exp-tile-desc, .exp-tile-link { max-height: none; opacity: 1; }
    .res-band-actions { flex-direction: column; align-items: center; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   16  IMAGE PLACEHOLDERS
   Used any time a real photo isn't loaded yet.
   Applied via onerror on img tags + missing-img class.
═══════════════════════════════════════════ */
.img-ph {
    background: linear-gradient(135deg, var(--smoke3) 0%, var(--smoke4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.15);
    font-size: 48px;
    width: 100%;
    height: 100%;
}

/* Dish card placeholder */
.dish-img-wrap .img-ph { height: 210px; font-size: 52px; }

/* Event card placeholder */
.ev-card-img .img-ph  { height: 180px; font-size: 40px; }

/* Product card placeholder */
.prod-card-img .img-ph { height: 200px; font-size: 44px; }

/* Membership visual placeholder */
.membership-visual .img-ph { height: 100%; min-height: 340px; font-size: 72px; }

/* Tonight special placeholder */
.tonight-special-img-ph {
    height: 200px;
    background: linear-gradient(135deg, var(--smoke3), var(--smoke4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: rgba(255,255,255,.15);
}

/* Experience tile — image missing but tile still works via CSS bg */
.exp-tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.exp-tile:hover .exp-tile-bg { transform: scale(1.06); }

/* Each tile gets a themed gradient fallback */
.exp-tile-a .exp-tile-bg { background-color: #1a0a00; background-image: linear-gradient(135deg,#2a1200,#0e0604); }
.exp-tile-b .exp-tile-bg { background-color: #0a0a1a; background-image: linear-gradient(135deg,#11113a,#050510); }
.exp-tile-c .exp-tile-bg { background-color: #001a0a; background-image: linear-gradient(135deg,#00260f,#000e05); }
.exp-tile-d .exp-tile-bg { background-color: #1a001a; background-image: linear-gradient(135deg,#280028,#0a000a); }
.exp-tile-e .exp-tile-bg { background-color: #1a1000; background-image: linear-gradient(135deg,#2a1800,#0a0600); }

/* Tile icon shown when no image */
.exp-tile-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 72px;
    opacity: .18;
    pointer-events: none;
    z-index: 1;
    transition: opacity .3s;
}
.exp-tile:hover .exp-tile-icon { opacity: .08; }
