/* ============================================================
   THE SIDE BAR TAVERN — SITE STYLES
   Design DNA: vintage tavern sign, brick wall + aged parchment,
   warm amber light, dark wood + tavern gold accents.
   Built by IHC Technology.
   ============================================================ */

/* -- FONTS ------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* -- DESIGN TOKENS ----------------------------------------- */
:root {
    /* Brick palette */
    --brick-deep:    #3a1208;
    --brick:         #6e1f12;
    --brick-warm:    #8a2e1a;
    --brick-light:   #b04a2e;

    /* Parchment / cream */
    --parchment:     #f0dfbe;
    --parchment-warm:#e8d2a5;
    --parchment-deep:#d4b888;
    --cream:         #f8eed4;

    /* Dark wood + black */
    --black:         #0a0707;
    --charcoal:      #181210;
    --wood-deep:     #2a1810;
    --wood:          #3d2517;
    --wood-warm:     #5a3a24;

    /* Tavern gold */
    --gold:          #c9a961;
    --gold-bright:   #e6c573;
    --gold-deep:     #8c7a3f;

    /* Text */
    --ink:           #1a0f08;
    --ink-soft:      #3a2818;
    --ink-light:     #5c4736;
    --paper:         #f8f0e3;
    --paper-soft:    #d8c8a8;

    /* Accent */
    --accent-red:    #c0392b;
    --accent-amber:  #e8a544;

    /* Spacing scale */
    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4rem;
    --sp-7: 6rem;
    --sp-8: 8rem;

    /* Container */
    --container: 1240px;
    --container-narrow: 880px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--black);
    color: var(--paper);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--accent-amber); }

button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

::selection { background: var(--gold); color: var(--black); }

/* -- TYPOGRAPHY -------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 800;
    line-height: 1.1;
    color: var(--paper);
}

.display {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: 0.01em;
}

.script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 600;
}

.eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.22em;
    color: var(--gold);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: 0.005em;
}

.section-title .accent {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 700;
}

.lede {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.7;
    color: var(--paper-soft);
    max-width: 60ch;
}

/* -- BACKGROUND TEXTURES ---------------------------------- */
.bg-brick {
    background-color: #2a0d06;
    background-image:
        /* warm spotlight from top */
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(255,180,90,0.18), transparent 55%),
        /* subtle vignette from edges */
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0,0,0,0.4), transparent 60%),
        /* base warm gradient */
        linear-gradient(180deg, #3a1308 0%, #2a0d06 50%, #1a0805 100%);
    position: relative;
}
.bg-brick::after {
    /* paper-grain noise overlay */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(201,169,97,0.04) 0%, transparent 8%),
        radial-gradient(circle at 75% 60%, rgba(201,169,97,0.03) 0%, transparent 10%),
        radial-gradient(circle at 50% 90%, rgba(201,169,97,0.04) 0%, transparent 12%);
    pointer-events: none;
    opacity: 0.7;
}
.bg-brick > * { position: relative; z-index: 1; }

.bg-parchment {
    background-color: #ede1c6;
    background-image:
        /* warm light from upper-left */
        radial-gradient(ellipse 80% 60% at 30% 0%, rgba(255,250,235,0.6), transparent 55%),
        /* subtle aged warmth at corners */
        radial-gradient(ellipse 60% 60% at 95% 95%, rgba(180,140,90,0.18), transparent 55%),
        radial-gradient(ellipse 50% 50% at 5% 95%, rgba(180,140,90,0.12), transparent 55%),
        /* base warm vellum gradient */
        linear-gradient(180deg, #f0e4ca 0%, #ebdcbb 50%, #e6d6b0 100%);
    color: var(--ink);
    position: relative;
}
.bg-parchment::before {
    /* very subtle paper grain via noise dots — fixed pattern, not animated */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(110,70,30,0.04) 0.5px, transparent 1.5px),
        radial-gradient(circle at 75% 45%, rgba(110,70,30,0.03) 0.5px, transparent 1.5px),
        radial-gradient(circle at 45% 75%, rgba(110,70,30,0.04) 0.5px, transparent 1.5px),
        radial-gradient(circle at 85% 15%, rgba(110,70,30,0.03) 0.5px, transparent 1.5px);
    background-size: 220px 220px, 180px 180px, 260px 260px, 200px 200px;
    pointer-events: none;
    opacity: 0.8;
}
.bg-parchment > * { position: relative; z-index: 1; }

.bg-wood {
    background-color: var(--wood-deep);
    background-image:
        /* warm spotlight from center */
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(110,70,30,0.2), transparent 70%),
        /* wood grain stripes — very subtle */
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0) 0px,
            rgba(0,0,0,0.05) 80px,
            rgba(0,0,0,0) 160px,
            rgba(110,70,30,0.06) 200px,
            rgba(0,0,0,0) 280px),
        /* base wood gradient */
        linear-gradient(180deg, #2e1a10 0%, #1f1108 50%, #2e1a10 100%);
}

.bg-dark {
    background: linear-gradient(180deg, #1a0f08 0%, #0a0707 100%);
}

/* -- LAYOUT ----------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-3);
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--sp-3);
}

section { position: relative; }

.section-pad {
    padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-pad-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-pad-lg { padding: clamp(5rem, 11vw, 9rem) 0; }

/* -- SCROLL PROGRESS BAR ---------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 50%, var(--accent-amber) 100%);
    z-index: 9999;
    transition: width .08s linear;
    box-shadow: 0 0 12px rgba(232, 197, 115, 0.6);
}

/* -- NAVIGATION ------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.4rem 0;
    background: linear-gradient(180deg, rgba(10,7,7,0.78) 0%, rgba(10,7,7,0.4) 60%, rgba(10,7,7,0) 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: padding .35s ease, background .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
    padding: 0.7rem 0;
    background: rgba(10,7,7,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.18);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--sp-3);
    gap: var(--sp-4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.nav-logo img {
    height: 56px;
    width: auto;
    transition: height .35s ease, filter .35s ease;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.nav.scrolled .nav-logo img { height: 44px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    list-style: none;
}
.nav-links a {
    display: inline-block;
    color: var(--paper);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.16em;
    font-size: 1.02rem;
    padding: 0.6rem 1.1rem;
    border-radius: 4px;
    transition: color .25s, background .25s, transform .25s;
    position: relative;
}
.nav-links a:hover {
    color: var(--gold-bright);
    background: rgba(201, 169, 97, 0.08);
}
.nav-links a.active {
    color: var(--gold-bright);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold-bright);
    transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: calc(100% - 2.2rem); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.4rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.16em;
    border-radius: 4px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 4px 16px rgba(201, 169, 97, 0.18);
}
.nav-cta:hover {
    background: var(--gold-bright);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(232, 197, 115, 0.35);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 4px;
    background: rgba(0,0,0,0.3);
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--gold);
    position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0; width: 100%; height: 2px;
    background: var(--gold);
    transition: transform .3s ease, top .3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        background: rgba(10,7,7,0.98);
        backdrop-filter: blur(14px);
        padding: 1rem;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease, padding .4s ease;
        border-bottom: 1px solid rgba(201, 169, 97, 0.18);
    }
    .nav-links.open { max-height: 480px; padding: 1rem; }
    .nav-links a { padding: 1rem 1.2rem; text-align: center; }
    .nav-links a::after { display: none; }
    .nav-cta { display: none; }
}

/* -- BUTTONS ---------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
}
.btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.25);
}
.btn-primary:hover {
    background: var(--gold-bright);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 197, 115, 0.45);
}
.btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: rgba(248, 240, 227, 0.4);
}
.btn-ghost:hover {
    background: rgba(248, 240, 227, 0.08);
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-3px);
}
.btn-brick {
    background: var(--brick);
    color: var(--paper);
    border-color: var(--brick);
    box-shadow: 0 6px 20px rgba(110, 31, 18, 0.4);
}
.btn-brick:hover {
    background: var(--brick-warm);
    border-color: var(--brick-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(176, 74, 46, 0.45);
}

/* Ripple effect */
.btn::after {
    content: '';
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    opacity: 0;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
    pointer-events: none;
}
.btn:active::after {
    animation: ripple .6s ease-out;
}
@keyframes ripple {
    0% { opacity: 1; transform: scale(1) translate(-50%, -50%); }
    100% { opacity: 0; transform: scale(80) translate(-50%, -50%); }
}

/* -- HERO ------------------------------------------------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg::before {
    /* Photographic dark gradient overlay */
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,7,7,0.55) 0%, rgba(10,7,7,0.7) 50%, rgba(10,7,7,0.95) 100%),
        linear-gradient(90deg, rgba(10,7,7,0.75) 0%, rgba(10,7,7,0.3) 100%);
    z-index: 2;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--sp-3);
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1.4rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.28em;
    font-size: 0.92rem;
    background: rgba(10,7,7,0.4);
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(3rem, 9vw, 7.2rem);
    line-height: 0.98;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin-bottom: 1.6rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.55);
}
.hero h1 .accent {
    color: var(--gold-bright);
    font-style: italic;
    font-weight: 700;
    display: block;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.65;
    color: var(--paper-soft);
    max-width: 600px;
    margin-bottom: 2.4rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Floating embers (particles) */
.embers {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}
.ember {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold), 0 0 16px rgba(232, 197, 115, 0.4);
    opacity: 0;
    animation: emberFloat linear infinite;
    will-change: transform, opacity;
}
@keyframes emberFloat {
    0%   { transform: translateY(110vh) scale(0); opacity: 0; }
    10%  { opacity: 0.85; }
    50%  { transform: translateY(50vh) translateX(20px) scale(1); }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-15vh) translateX(-30px) scale(0.4); opacity: 0; }
}
.ember:nth-child(1)  { left: 8%;  width: 3px; height: 3px; animation-duration: 14s; animation-delay: 0s; }
.ember:nth-child(2)  { left: 22%; width: 2px; height: 2px; animation-duration: 18s; animation-delay: 2s; }
.ember:nth-child(3)  { left: 38%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 4s; }
.ember:nth-child(4)  { left: 52%; width: 3px; height: 3px; animation-duration: 16s; animation-delay: 1s; }
.ember:nth-child(5)  { left: 66%; width: 2px; height: 2px; animation-duration: 20s; animation-delay: 5s; }
.ember:nth-child(6)  { left: 78%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: 3s; }
.ember:nth-child(7)  { left: 90%; width: 3px; height: 3px; animation-duration: 17s; animation-delay: 6s; }
.ember:nth-child(8)  { left: 14%; width: 2px; height: 2px; animation-duration: 19s; animation-delay: 7s; }
.ember:nth-child(9)  { left: 44%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 8s; }
.ember:nth-child(10) { left: 72%; width: 2px; height: 2px; animation-duration: 21s; animation-delay: 9s; }

/* -- ORNAMENT DIVIDER (replaces old brick-band) ----------- */
.brick-band {
    height: 80px;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,169,97,0.06), transparent 70%),
        linear-gradient(180deg, #0a0707 0%, #160b08 50%, #0a0707 100%);
    position: relative;
    overflow: hidden;
}
.brick-band::before {
    /* gold hairline with diamond center */
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,97,0.0) 15%,
        rgba(201,169,97,0.5) 35%,
        rgba(201,169,97,0.7) 50%,
        rgba(201,169,97,0.5) 65%,
        rgba(201,169,97,0.0) 85%,
        transparent 100%);
    transform: translateY(-0.5px);
}
.brick-band::after {
    /* center diamond ornament */
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 12px;
    height: 12px;
    background: var(--gold);
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow:
        0 0 24px rgba(201,169,97,0.5),
        inset 0 0 8px rgba(0,0,0,0.4);
    animation: gentleGlow 5s ease-in-out infinite;
}
@keyframes gentleGlow {
    0%, 100% { box-shadow: 0 0 24px rgba(201,169,97,0.4), inset 0 0 8px rgba(0,0,0,0.4); }
    50%      { box-shadow: 0 0 40px rgba(201,169,97,0.7), inset 0 0 8px rgba(0,0,0,0.4); }
}
@media (prefers-reduced-motion: reduce) {
    .brick-band::after { animation: none; }
}

/* -- REVEAL ANIMATIONS ------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

.reveal-left  { transform: translateX(-40px); }
.reveal-left.visible  { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }
.reveal-scale { transform: scale(0.92); }
.reveal-scale.visible { transform: scale(1); }

/* -- SIGNATURE DISH CARDS --------------------------------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.dish-card {
    position: relative;
    background: var(--charcoal);
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
    will-change: transform;
}
.dish-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.45);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201, 169, 97, 0.18);
}
.dish-card-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.dish-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.dish-card:hover .dish-card-img img {
    transform: scale(1.08);
}
.dish-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10,7,7,0.7) 100%);
    pointer-events: none;
}
.dish-card-body {
    padding: 1.6rem 1.8rem 1.8rem;
}
.dish-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--paper);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.dish-card-body p {
    color: var(--paper-soft);
    line-height: 1.65;
    font-size: 0.98rem;
}
.dish-card-price {
    display: inline-block;
    margin-top: 0.9rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--gold-bright);
    letter-spacing: 0.05em;
}
.dish-card-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.3rem 0.7rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.14em;
    font-size: 0.85rem;
    border-radius: 3px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* -- SPECIALS BOARD --------------------------------------- */
.specials-board {
    background: linear-gradient(180deg, var(--wood-deep) 0%, var(--wood) 100%);
    border: 2px solid var(--gold-deep);
    border-radius: 6px;
    padding: clamp(2rem, 5vw, 3.5rem);
    position: relative;
    box-shadow: inset 0 2px 12px rgba(0,0,0,0.5), 0 18px 50px rgba(0,0,0,0.4);
}
.specials-board::before {
    /* Frame inner glow */
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 3px;
    pointer-events: none;
}
.specials-board h2 {
    text-align: center;
    color: var(--gold-bright);
    margin-bottom: 0.4rem;
}
.specials-board .sub {
    text-align: center;
    color: var(--paper-soft);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.24em;
    margin-bottom: 2.4rem;
    font-size: 1.15rem;
}
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}
.special-day {
    background: rgba(0,0,0,0.32);
    padding: 1.2rem 1.4rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.special-day:hover {
    transform: translateX(4px);
    border-left-color: var(--gold-bright);
    background: rgba(0,0,0,0.45);
}
.special-day .day {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--gold-bright);
    letter-spacing: 0.18em;
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}
.special-day .deal {
    color: var(--paper);
    line-height: 1.5;
    font-size: 0.98rem;
}
.happy-hour-banner {
    margin-bottom: 2rem;
    padding: 1.3rem 1.5rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px dashed rgba(201, 169, 97, 0.5);
    border-radius: 4px;
    text-align: center;
}
.happy-hour-banner .label {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.24em;
    color: var(--gold-bright);
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}
.happy-hour-banner .deal {
    color: var(--paper);
    font-size: 1.05rem;
}

/* -- STATS / COUNTERS ------------------------------------- */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}
.stat {
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    color: var(--gold-bright);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.22em;
    color: var(--paper-soft);
    font-size: 0.95rem;
    text-transform: uppercase;
}

/* -- MENU PAGE STYLES ------------------------------------- */
.menu-section {
    margin-bottom: 4rem;
}
.menu-section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--ink);
}
.menu-section-sub {
    text-align: center;
    color: var(--ink-light);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.22em;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.menu-callout {
    text-align: center;
    padding: 1rem 1.4rem;
    background: rgba(110, 31, 18, 0.08);
    border: 1px dashed var(--brick);
    border-radius: 4px;
    margin-bottom: 2rem;
    color: var(--brick-deep);
    font-weight: 600;
}
.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 1.4rem 3rem;
}
.menu-list.cols-1 {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}
.menu-item {
    border-bottom: 1px dashed rgba(58, 40, 24, 0.25);
    padding-bottom: 1rem;
    transition: background .3s ease, padding-left .3s ease;
}
.menu-item:hover {
    background: rgba(110, 31, 18, 0.04);
    padding-left: 0.5rem;
}
.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 0.3rem;
}
.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ink);
}
.menu-item-leader {
    flex: 1;
    border-bottom: 2px dotted rgba(58, 40, 24, 0.35);
    transform: translateY(-4px);
}
.menu-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--brick);
    letter-spacing: 0.04em;
}
.menu-item-desc {
    color: var(--ink-soft);
    line-height: 1.6;
    font-size: 0.98rem;
}
.menu-item-badge {
    display: inline-block;
    background: var(--brick);
    color: var(--cream);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    padding: 0.12rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.4rem;
    vertical-align: 3px;
}
.menu-item-badge.sb { background: var(--gold); color: var(--ink); }
.menu-item-badge.new { background: var(--accent-red); color: white; }

.divider-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0.4rem 0 2.5rem;
    color: var(--ink-light);
}
.divider-ornament::before, .divider-ornament::after {
    content: '';
    height: 1px;
    background: rgba(58, 40, 24, 0.25);
    flex: 1;
    max-width: 60px;
}
.divider-ornament .diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

/* -- WING SAUCE PILLS ------------------------------------- */
.sauce-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.sauce-pill {
    padding: 0.45rem 1rem;
    background: rgba(110, 31, 18, 0.1);
    border: 1px solid rgba(110, 31, 18, 0.3);
    border-radius: 999px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.14em;
    color: var(--ink);
    font-size: 0.92rem;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.sauce-pill:hover {
    background: var(--brick);
    color: var(--cream);
    transform: translateY(-2px);
}
.sauce-pill.hot { background: rgba(192, 57, 43, 0.1); color: var(--accent-red); border-color: var(--accent-red); }

.wing-counts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 1.4rem;
}
.wing-count-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.wing-count-row .label {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
}
.wing-count-row .price {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--brick);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* -- TWO-COLUMN FEATURE BLOCK ----------------------------- */
.feature-row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.feature-row.reverse { grid-template-columns: 1fr 1.05fr; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-img { order: 1; }
.feature-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.feature-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}
.feature-img:hover img { transform: scale(1.05); }

@media (max-width: 760px) {
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
    .feature-row.reverse .feature-text, .feature-row.reverse .feature-img { order: initial; }
}

/* -- LOCATION / CONTACT CARDS ----------------------------- */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}
.info-card {
    background: rgba(248, 240, 227, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    padding: 2rem 1.6rem;
    text-align: center;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.06);
}
.info-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
    color: var(--gold-bright);
    font-size: 1.6rem;
}
.info-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.2em;
    color: var(--gold-bright);
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
}
.info-card p {
    color: var(--paper);
    line-height: 1.65;
}
.info-card a {
    color: var(--paper);
    border-bottom: 1px dotted rgba(201, 169, 97, 0.4);
}
.info-card a:hover { color: var(--gold-bright); border-color: var(--gold-bright); }

/* Hours table */
.hours-table {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px dashed rgba(248, 240, 227, 0.15);
    color: var(--paper);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.16em;
    color: var(--gold-bright);
}
.hours-row.today {
    background: rgba(201, 169, 97, 0.08);
    padding-left: 0.8rem;
    padding-right: 0.8rem;
    border-radius: 3px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.hours-row.today .day { color: var(--gold-bright); }

/* -- GALLERY ---------------------------------------------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .3s ease;
    filter: saturate(0.95);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.1);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.94);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid rgba(201, 169, 97, 0.3);
    box-shadow: 0 30px 100px rgba(0,0,0,0.6);
    animation: zoomIn .35s ease;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* -- FORM ------------------------------------------------- */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    max-width: 720px;
    margin: 0 auto;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.18em;
    color: var(--gold-bright);
    font-size: 0.92rem;
}
.form-field input, .form-field textarea, .form-field select {
    padding: 0.9rem 1.1rem;
    background: rgba(248, 240, 227, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 3px;
    color: var(--paper);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(248, 240, 227, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-hp {
    /* Honeypot: hidden from humans, visible to bots */
    position: absolute;
    left: -9999px;
    width: 1px; height: 1px;
    opacity: 0;
}

/* -- FOOTER ----------------------------------------------- */
.footer {
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 169, 97, 0.18);
    padding: 4rem 0 2rem;
    color: var(--paper-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer-brand img {
    height: 70px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.footer-brand p {
    color: var(--paper-soft);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.22em;
    color: var(--gold-bright);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    color: var(--paper-soft);
    transition: color .25s ease, padding-left .25s ease;
}
.footer-col a:hover {
    color: var(--gold-bright);
    padding-left: 0.3rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 50%;
    color: var(--gold-bright);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.footer-social a:hover {
    transform: translateY(-3px);
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold-bright);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 240, 227, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--paper-soft);
    font-size: 0.9rem;
}
.footer-bottom a { color: var(--gold-deep); }
.footer-bottom a:hover { color: var(--gold-bright); }

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* -- CTA BANNER ------------------------------------------- */
.cta-banner {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(255,180,90,0.15), transparent 55%),
        radial-gradient(ellipse 100% 100% at 50% 100%, rgba(0,0,0,0.5), transparent 60%),
        linear-gradient(180deg, #3a1308 0%, #2a0d06 50%, #1a0805 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    /* subtle gold filigree corners */
    content: '';
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(201, 169, 97, 0.15);
    pointer-events: none;
}
.cta-banner::after {
    /* slow shimmering light sweep */
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,97,0.04) 50%,
        transparent 100%);
    animation: shimmerSweep 12s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmerSweep {
    0%, 30% { left: -100%; }
    70%, 100% { left: 200%; }
}
@media (prefers-reduced-motion: reduce) {
    .cta-banner::after { animation: none; }
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-banner h2 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 1rem;
}
.cta-banner p {
    color: var(--paper-soft);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* -- UTILITY ---------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold-bright); }
.text-brick { color: var(--brick); }
.text-ink   { color: var(--ink); }
.text-paper { color: var(--paper); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.hidden { display: none; }

/* -- REDUCED MOTION --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .ember, .embers { display: none; }
    .reveal { opacity: 1; transform: none; }
    .hero-bg img { transform: none; }
}

/* -- RESPONSIVE ------------------------------------------- */
@media (max-width: 760px) {
    html { font-size: 16px; }
    .hero { min-height: 80vh; padding-top: 90px; }
    .nav-cta { padding: 0.55rem 1rem; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
    .contact-form { grid-template-columns: 1fr; }
}

/* -- PAGE HERO (smaller than main hero, for inner pages) -- */
.page-hero {
    position: relative;
    min-height: 50vh;
    padding: 140px 0 4rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,7,7,0.78) 0%, rgba(10,7,7,0.85) 100%);
    z-index: 1;
}
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: saturate(0.85) brightness(0.7);
}
.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero-eyebrow {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.3em;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    color: var(--paper);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}
.page-hero h1 .accent { color: var(--gold-bright); font-style: italic; }
.page-hero p {
    color: var(--paper-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    max-width: 620px;
}

/* -- PROMO BANNER (Mother's Day, special events) ----------- */
.promo-banner {
    background: linear-gradient(135deg, var(--brick) 0%, var(--brick-deep) 100%);
    border: 2px solid var(--gold);
    border-radius: 6px;
    padding: clamp(2rem, 4vw, 3rem);
    margin: 3rem auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 0 80px rgba(0,0,0,0.3);
}
.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(201,169,97,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.promo-banner > * { position: relative; }
.promo-eyebrow {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.35em;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.promo-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--paper);
    margin-bottom: 1rem;
    line-height: 1.1;
}
.promo-banner h2 .accent { color: var(--gold-bright); font-style: italic; }
.promo-banner .promo-date {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}
.promo-prices {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    flex-wrap: wrap;
    margin: 1.5rem 0;
}
.promo-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--paper);
}
.promo-price .price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-bright);
    line-height: 1;
}
.promo-price .label {
    font-family: var(--font-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    color: var(--paper-soft);
}

/* -- BRUNCH ITEM GRID ------------------------------------- */
.brunch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
}
.brunch-item {
    border-bottom: 1px dotted rgba(110,31,18,0.35);
    padding-bottom: 1.2rem;
}
.brunch-item .head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.brunch-item h3 {
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 1.35rem;
    line-height: 1.2;
}
.brunch-item h3 .sb-badge {
    display: inline-block;
    width: 22px; height: 22px;
    background: var(--brick);
    color: var(--paper);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    letter-spacing: 0.05em;
    margin-right: 0.4rem;
    vertical-align: middle;
}
.brunch-item .price {
    font-family: var(--font-accent);
    color: var(--brick);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.brunch-item p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.5;
}

/* -- KIDS STRIP ------------------------------------------- */
.kids-strip {
    background: rgba(110,31,18,0.06);
    border-top: 2px solid var(--brick);
    border-bottom: 2px solid var(--brick);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}
.kids-strip h3 {
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.kids-strip .sub {
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}
.kids-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.kids-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--paper);
    border: 1px solid var(--brick);
    color: var(--brick-deep);
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    border-radius: 3px;
}

/* -- BOGO BANNER ------------------------------------------ */
.bogo-banner {
    background: var(--brick-deep);
    color: var(--paper);
    padding: 1.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    margin: 2rem 0;
    border: 1px solid var(--gold);
}
.bogo-banner .label {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.bogo-banner h3 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.6rem;
    line-height: 1.2;
}

/* -- CATERING FEATURE LIST ------------------------------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.feature {
    background: rgba(240,223,190,0.05);
    border: 1px solid rgba(201,169,97,0.2);
    border-left: 4px solid var(--gold);
    padding: 1.8rem;
    border-radius: 4px;
    transition: transform .4s ease, border-color .3s ease, background .3s ease;
}
.feature:hover {
    transform: translateY(-4px);
    border-left-color: var(--gold-bright);
    background: rgba(240,223,190,0.08);
}
.feature h3 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}
.feature p { color: var(--paper-soft); font-size: 0.98rem; line-height: 1.6; }

/* -- TWO-COL LAYOUT (rentals, catering split) ------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.split-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}
.split-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.split-img:hover img { transform: scale(1.04); }
@media (max-width: 760px) {
    .split { grid-template-columns: 1fr; }
}

/* -- MAP EMBED ------------------------------------------- */
.map-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(201,169,97,0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    margin-top: 2rem;
}
.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: saturate(0.85) contrast(1.05);
}

/* -- VIDEO HERO / VIDEO CARDS ----------------------------- */
.video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) brightness(0.55);
}
.video-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,7,7,0.6) 0%, rgba(10,7,7,0.85) 100%);
    z-index: 1;
}

/* Dish card with video instead of static image */
.dish-card {
    position: relative;
}
.dish-card .dish-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}
.dish-card .dish-media img,
.dish-card .dish-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.dish-card:hover .dish-media img,
.dish-card:hover .dish-media video {
    transform: scale(1.05);
}
.dish-card .dish-media video {
    object-position: center top;  /* portrait videos: anchor to top so headline isn't visible */
}

/* Mother's Day promo "video poster" treatment */
.mothers-day-video {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    aspect-ratio: 9/16;
    background: var(--brick-deep);
}
.mothers-day-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 760px) {
    .mothers-day-video { max-width: 100%; }
}

/* -- PRINT MENU FLIPBOOK LIGHTBOX ------------------------- */
.print-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold-bright);
    padding: 0.9rem 1.6rem;
    font-family: var(--font-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.print-menu-trigger:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201,169,97,0.3);
}
.print-menu-trigger svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.flipbook {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 999;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
}
.flipbook.open { display: flex; animation: fadeIn .3s ease; }
.flipbook-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(201,169,97,0.2);
    color: var(--gold);
    font-family: var(--font-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.flipbook-stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}
.flipbook-page {
    max-width: min(100%, calc(88vh * 0.77));
    max-height: 88vh;
    border: 1px solid rgba(201,169,97,0.3);
    box-shadow: 0 30px 100px rgba(0,0,0,0.6);
    user-select: none;
    transition: opacity 0.3s ease;
    background: var(--paper);
}
.flipbook-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    border-top: 1px solid rgba(201,169,97,0.2);
}
.flipbook-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.flipbook-btn:hover:not(:disabled) { background: var(--gold); color: var(--ink); }
.flipbook-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.flipbook-counter {
    color: var(--paper-soft);
    font-family: var(--font-accent);
    letter-spacing: 0.1em;
    min-width: 60px;
    text-align: center;
}
.flipbook-close {
    background: transparent;
    border: 1px solid rgba(201,169,97,0.4);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.flipbook-close:hover { background: var(--brick); border-color: var(--brick); color: var(--paper); }

/* ============================================================
   POLISH PASS — motion, ornament, and personality
   ============================================================ */

/* -- HAND-DRAWN UNDERLINE ON SECTION TITLES --------------- */
/* Adds a gold quill-stroke that draws in when the title comes into view */
.section-title.has-flourish::after,
.menu-section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    margin: 1rem auto 0;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--gold-bright) 50%,
        var(--gold) 80%,
        transparent 100%);
    transition: width 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}
.section-title.has-flourish.in-view::after,
.menu-section-title.in-view::after {
    width: 120px;
}
.menu-section-title::after { margin: 0.6rem auto 0; }

/* For section titles whose .has-flourish is omitted, allow ::after via the same pattern when revealed */
.section-title.reveal.is-visible:not(.no-flourish)::after,
.section-title.reveal.in-view:not(.no-flourish)::after {
    width: 120px;
}

/* -- HOVER LETTER-SHIFT ON NAV LINKS ---------------------- */
.nav-links a {
    position: relative;
    overflow: hidden;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

/* -- DISH CARD: subtle tilt-on-hover, image lift ---------- */
.dish-card {
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.5s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.dish-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(201,169,97,0.2);
}
.dish-card-img::after {
    /* gold shimmer slides across image on hover */
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,235,180,0.15) 50%,
        transparent 100%);
    transition: left 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}
.dish-card:hover .dish-card-img::after {
    left: 200%;
}

/* -- HERO HEADLINE: letter-by-letter rise on load --------- */
.hero h1 .word,
.page-hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotate(-2deg);
    animation: wordRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: calc(var(--w, 0) * 0.12s + 0.2s);
}
.hero h1 .word:nth-child(1), .page-hero h1 .word:nth-child(1) { --w: 0; }
.hero h1 .word:nth-child(2), .page-hero h1 .word:nth-child(2) { --w: 1; }
.hero h1 .word:nth-child(3), .page-hero h1 .word:nth-child(3) { --w: 2; }
.hero h1 .word:nth-child(4), .page-hero h1 .word:nth-child(4) { --w: 3; }
.hero h1 .word:nth-child(5), .page-hero h1 .word:nth-child(5) { --w: 4; }
.hero h1 .word:nth-child(6), .page-hero h1 .word:nth-child(6) { --w: 5; }
.hero h1 .word:nth-child(7), .page-hero h1 .word:nth-child(7) { --w: 6; }
.hero h1 .word:nth-child(8), .page-hero h1 .word:nth-child(8) { --w: 7; }
.hero h1 .word:nth-child(9), .page-hero h1 .word:nth-child(9) { --w: 8; }
.hero h1 .word:nth-child(10), .page-hero h1 .word:nth-child(10) { --w: 9; }
.hero h1 .word:nth-child(11), .page-hero h1 .word:nth-child(11) { --w: 10; }
.hero h1 .word:nth-child(12), .page-hero h1 .word:nth-child(12) { --w: 11; }
@keyframes wordRise {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero h1 .word, .page-hero h1 .word {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* -- HERO EYEBROW with growing horizontal lines ----------- */
.hero-eyebrow-line {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold-bright);
    font-family: var(--font-accent);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.hero-eyebrow-line::before,
.hero-eyebrow-line::after {
    content: '';
    height: 1px;
    background: var(--gold);
    transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
    width: 0;
}
.hero-eyebrow-line.in-view::before,
.hero-eyebrow-line.in-view::after {
    width: 40px;
}

/* -- SECTION EYEBROW with diamond ornament ---------------- */
.eyebrow.has-ornament,
.section-eyebrow.has-ornament {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}
.eyebrow.has-ornament::before,
.eyebrow.has-ornament::after,
.section-eyebrow.has-ornament::before,
.section-eyebrow.has-ornament::after {
    content: '◆';
    color: var(--gold);
    font-size: 0.5em;
    opacity: 0.7;
}

/* -- BACK-TO-TOP FLOATING BUTTON -------------------------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ink);
    border: 1px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-4px) scale(1.05);
}
.back-to-top svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* -- BUTTON: refined hover with shimmer ------------------- */
.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.15) 50%,
        transparent 100%);
    transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}
.btn:hover::before {
    left: 200%;
}

/* -- IMAGE: subtle ken-burns on hero photos --------------- */
.hero-bg img,
.page-hero-bg img {
    transform: scale(1.05);
    transition: transform 8s ease-out;
    will-change: transform;
}
.hero.in-view .hero-bg img,
.page-hero.in-view .page-hero-bg img {
    transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
    .hero-bg img,
    .page-hero-bg img {
        transform: none;
        transition: none;
    }
}

/* -- STATS COUNTER row: gold separator hairlines --------- */
.stat-strip {
    position: relative;
}
.stat-strip::before,
.stat-strip::after {
    content: '';
    position: absolute;
    left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(201,169,97,0.3) 50%,
        transparent 100%);
}
.stat-strip::before { top: 0; }
.stat-strip::after { bottom: 0; }

/* ============================================================
   DRINKS PAGE
   ============================================================ */

/* -- TAP LIST GRID ---------------------------------------- */
.tap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.tap-card {
    background: linear-gradient(135deg, #fdf5e0 0%, #f0e1bf 100%);
    border: 1px solid rgba(110, 70, 30, 0.15);
    border-left: 4px solid var(--brick);
    padding: 1.5rem 1.6rem;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .4s ease, border-left-color .3s ease;
    position: relative;
    overflow: hidden;
}
.tap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.16);
    border-left-color: var(--gold);
}
.tap-card::before {
    /* tap-handle stripe along left edge */
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brick), var(--brick-deep));
    transition: background .3s ease;
}
.tap-card:hover::before {
    background: linear-gradient(180deg, var(--gold), var(--gold-deep));
}
.tap-card-style {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.tap-style {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brick);
    padding: 0.2rem 0.6rem;
    background: rgba(110, 31, 18, 0.08);
    border-radius: 2px;
}
.tap-abv {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--gold-deep);
    font-weight: 600;
}
.tap-name {
    font-family: var(--font-display);
    color: var(--ink);
    font-size: 1.45rem;
    line-height: 1.15;
    margin: 0.2rem 0 0.3rem;
}
.tap-brewery {
    font-family: var(--font-accent);
    color: var(--ink-soft);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
}
.tap-notes {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}
/* When loaded from API, add a small "LIVE" badge */
.tap-grid[data-source="live"] .tap-card::after {
    content: 'LIVE';
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--paper);
    background: var(--brick);
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
}
.tap-disclaimer {
    text-align: center;
    color: var(--ink-soft);
    margin-top: 2rem;
    font-size: 0.92rem;
}

/* -- BREWERY CARDS ---------------------------------------- */
.brewery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.brewery-card {
    background: rgba(240, 223, 190, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 1.8rem 1.6rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .3s ease, background .3s ease;
}
.brewery-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(240, 223, 190, 0.09);
}
.brewery-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(201, 169, 97, 0.15);
    border: 1px solid rgba(201, 169, 97, 0.4);
    color: var(--gold-bright);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 2px;
}
.brewery-card h3 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
    padding-right: 5rem; /* leave room for badge */
}
.brewery-loc {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.9rem;
    text-transform: uppercase;
}
.brewery-card p:not(.brewery-loc) {
    color: var(--paper-soft);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* -- COCKTAIL GRID ---------------------------------------- */
.cocktail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem 2.5rem;
    margin-top: 2rem;
}
.cocktail-item {
    border-bottom: 1px dotted rgba(110, 31, 18, 0.35);
    padding-bottom: 1.2rem;
}
.cocktail-item h3 {
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 1.35rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.cocktail-item p {
    color: var(--ink-soft);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0;
}

/* -- LIQUOR GRID ------------------------------------------ */
.liquor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem 2.5rem;
    margin-top: 2.5rem;
}
.liquor-cat {
    position: relative;
    padding-left: 1rem;
}
.liquor-cat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.2rem;
    bottom: 0.3rem;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
}
.liquor-cat h3 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}
.liquor-cat ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.liquor-cat li {
    color: var(--paper-soft);
    font-size: 0.96rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
    transition: color .25s ease, padding-left .25s ease;
}
.liquor-cat li:last-child { border-bottom: none; }
.liquor-cat li:hover {
    color: var(--paper);
    padding-left: 0.4rem;
}

/* -- WINE SPLIT ------------------------------------------- */
.wine-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem 3rem;
    margin-top: 2rem;
}
.wine-col h3 {
    font-family: var(--font-display);
    color: var(--brick);
    font-size: 1.5rem;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
}
.wine-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wine-col li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px dotted rgba(110, 31, 18, 0.2);
    color: var(--ink);
}
.wine-col li > span:first-child {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    font-weight: 500;
}
.wine-note {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
    text-align: right;
    font-family: var(--font-body);
}

/* -- HAPPY HOUR GRID -------------------------------------- */
.happy-hour-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.8rem;
    margin-top: 2rem;
}
.hh-day {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 3px;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.hh-day:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.08);
    transform: translateY(-3px);
}
.hh-day .day-name {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.hh-day .day-deal {
    color: var(--paper-soft);
    font-size: 0.85rem;
    line-height: 1.4;
}
@media (max-width: 920px) {
    .happy-hour-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
    .happy-hour-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   DRINKS PAGE v2 — TAVERN-AS-ENVIRONMENT
   ============================================================ */

/* -- TAP WALL --------------------------------------------- */
/* A row of actual SVG tap handles. Hover tilts forward, shows beer detail. */
.tap-wall {
    position: relative;
    margin-top: 3rem;
    padding: 2rem 0 4rem;
}
.tap-wall-rail {
    /* polished brass bar across the top from which the taps hang */
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 10px;
    background: linear-gradient(180deg,
        #8b7140 0%,
        #c9a961 30%,
        #f0d785 50%,
        #c9a961 70%,
        #6e5a30 100%);
    border-radius: 2px;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.6),
        inset 0 1px 1px rgba(255,255,255,0.4);
    z-index: 1;
}
.tap-wall-rail::before, .tap-wall-rail::after {
    /* end caps */
    content: '';
    position: absolute;
    top: -4px;
    width: 16px;
    height: 18px;
    background: radial-gradient(circle, var(--gold) 30%, var(--gold-deep) 100%);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.tap-wall-rail::before { left: -8px; }
.tap-wall-rail::after  { right: -8px; }

.tap-row {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem 0.5rem;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}
.tap-handle {
    /* the wooden handle hanging down */
    position: relative;
    width: 130px;
    cursor: pointer;
    transform-origin: top center;
    transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tap-handle:hover {
    transform: rotate(8deg) translateY(-2px);
    z-index: 3;
}
.tap-handle .handle-stem {
    /* short brass shaft from rail to handle */
    width: 6px;
    height: 22px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
    margin: 0 auto;
    border-radius: 0 0 2px 2px;
    box-shadow: inset 0 -1px 2px rgba(0,0,0,0.4);
}
.tap-handle .handle-body {
    /* the wooden plaque face */
    position: relative;
    margin-top: 0;
    aspect-ratio: 0.62;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(255,235,180,0.15) 0%, transparent 50%),
        linear-gradient(135deg, #3d2616 0%, #2a1810 50%, #1f1108 100%);
    border-radius: 6px 6px 8px 8px / 8px 8px 12px 12px;
    box-shadow:
        0 8px 18px rgba(0,0,0,0.6),
        inset 0 1px 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(201,169,97,0.25);
    padding: 0.8rem 0.5rem 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    overflow: hidden;
}
.tap-handle .handle-body::before {
    /* wood grain texture stripes */
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(180deg,
        transparent 0px,
        rgba(0,0,0,0.06) 2px,
        transparent 5px,
        rgba(255,235,180,0.02) 9px,
        transparent 14px);
    pointer-events: none;
}
.tap-handle .handle-body > * { position: relative; z-index: 1; }
.tap-handle .handle-style {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}
.tap-handle .handle-name {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.1;
    color: var(--paper);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    margin: 0.2rem 0;
    word-break: break-word;
}
.tap-handle .handle-brewery {
    font-family: var(--font-body);
    font-size: 0.62rem;
    line-height: 1.2;
    color: var(--paper-soft);
    font-style: italic;
    opacity: 0.85;
}
.tap-handle .handle-abv {
    /* brass plate at the bottom */
    margin-top: 0.4rem;
    padding: 0.15rem 0;
    background: linear-gradient(180deg, var(--gold-deep), var(--gold));
    color: var(--ink);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    border-radius: 2px;
    font-weight: 700;
}

/* Floating detail popup under the hovered tap */
.tap-handle .tap-detail {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px) rotate(-8deg);
    width: 280px;
    background: rgba(20, 12, 8, 0.96);
    border: 1px solid rgba(201,169,97,0.3);
    border-radius: 4px;
    padding: 0.9rem 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 10;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.tap-handle:hover .tap-detail {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(-8deg);
}
.tap-handle .tap-detail p {
    color: var(--paper-soft);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Tap wall meta — live status + count */
.tap-wall-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(201,169,97,0.15);
}
.tap-status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.tap-status .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #6ec070;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(110, 192, 112, 0.7);
    animation: pulse 2s infinite;
}
.tap-status[data-source="static"] .pulse-dot {
    background: var(--gold);
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.7);
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(110, 192, 112, 0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(110, 192, 112, 0); }
    100% { box-shadow: 0 0 0 0 rgba(110, 192, 112, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .pulse-dot { animation: none; }
}
.tap-call-cta {
    font-family: var(--font-body);
    color: var(--paper-soft);
    font-size: 0.92rem;
    font-style: italic;
}
.tap-call-cta a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px solid var(--gold-deep);
}

@media (max-width: 760px) {
    .tap-handle { width: 95px; }
    .tap-handle .handle-name { font-size: 0.85rem; }
    .tap-handle .tap-detail { width: 220px; }
}

/* -- FLORIDA BREWERY MAP ---------------------------------- */
.florida-map-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}
.florida-map {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.florida-map svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 30px rgba(0,0,0,0.5));
}
.florida-map .fl-shape {
    fill: rgba(58, 30, 16, 0.5);
    stroke: var(--gold-deep);
    stroke-width: 1.5;
    transition: fill 0.4s ease;
}
.florida-map .brewery-pin {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-origin: center;
    transform-box: fill-box;
}
.florida-map .brewery-pin circle {
    fill: var(--gold);
    stroke: var(--paper);
    stroke-width: 1.5;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: fill 0.3s ease;
}
.florida-map .brewery-pin:hover circle,
.florida-map .brewery-pin.active circle {
    fill: var(--brick);
    stroke: var(--gold-bright);
    stroke-width: 2;
}
.florida-map .brewery-pin:hover,
.florida-map .brewery-pin.active {
    transform: scale(1.3);
}
.florida-map .pin-label {
    fill: var(--paper-soft);
    font-family: var(--font-accent);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    pointer-events: none;
    text-anchor: middle;
    opacity: 0.85;
}

.brewery-detail {
    background: rgba(240, 223, 190, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    padding: 2rem;
    min-height: 320px;
    transition: opacity 0.3s ease;
}
.brewery-detail-eyebrow {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.brewery-detail h3 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.brewery-detail .brewery-meta {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.brewery-detail p {
    color: var(--paper-soft);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.brewery-detail .brewery-faves {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.brewery-detail .brewery-faves span {
    background: rgba(201,169,97,0.12);
    border: 1px solid rgba(201,169,97,0.3);
    color: var(--gold-bright);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.7rem;
    border-radius: 2px;
}
@media (max-width: 900px) {
    .florida-map-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* -- COCKTAIL MOOD PICKER --------------------------------- */
.mood-picker {
    margin-top: 3rem;
}
.mood-prompt {
    text-align: center;
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.mood-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.mood-tab {
    background: transparent;
    border: 2px solid var(--brick);
    color: var(--brick-deep);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.8rem 1.4rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-weight: 600;
}
.mood-tab:hover {
    background: rgba(110, 31, 18, 0.08);
    transform: translateY(-2px);
}
.mood-tab.active {
    background: var(--brick);
    color: var(--paper);
    box-shadow: 0 8px 20px rgba(110, 31, 18, 0.3);
}
.mood-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem 2rem;
    min-height: 200px;
}
.mood-card {
    background: linear-gradient(135deg, #fdf5e0 0%, #f0e1bf 100%);
    border-radius: 4px;
    padding: 1.5rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    border-left: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(20px);
    animation: cardSlideIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.mood-card:nth-child(1) { animation-delay: 0.05s; }
.mood-card:nth-child(2) { animation-delay: 0.12s; }
.mood-card:nth-child(3) { animation-delay: 0.19s; }
.mood-card:nth-child(4) { animation-delay: 0.26s; }
.mood-card:nth-child(5) { animation-delay: 0.33s; }
.mood-card:nth-child(6) { animation-delay: 0.40s; }
@keyframes cardSlideIn {
    to { opacity: 1; transform: translateY(0); }
}
.mood-card h4 {
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 1.3rem;
    line-height: 1.15;
    margin-bottom: 0.4rem;
}
.mood-card p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.mood-card .mood-spirit {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 0.4rem;
}

/* -- BACK BAR / TOP SHELF SVG ---------------------------- */
.back-bar {
    margin-top: 3rem;
    position: relative;
    padding: 2rem 1rem 3rem;
}
.back-bar-shelf {
    position: relative;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201,169,97,0.15) 0%, transparent 60%),
        linear-gradient(180deg, #2a1810 0%, #1a0e08 100%);
    border-top: 2px solid var(--gold-deep);
    border-bottom: 6px solid #3d2616;
    border-radius: 2px;
    padding: 1.5rem 1rem 2rem;
    box-shadow:
        inset 0 30px 40px rgba(0,0,0,0.4),
        0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}
.back-bar-shelf::before {
    /* gold backlight glow strip */
    content: '';
    position: absolute;
    top: 0;
    left: 5%; right: 5%;
    height: 80px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,200,90,0.35) 0%, transparent 70%);
    pointer-events: none;
}
.bottle-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.bottle {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 55px;
}
.bottle:hover {
    transform: translateY(-12px);
    z-index: 5;
}
.bottle svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transition: filter 0.3s ease;
}
.bottle:hover svg {
    filter:
        drop-shadow(0 8px 16px rgba(0,0,0,0.7))
        drop-shadow(0 0 12px rgba(255,200,90,0.4));
}
.bottle-label {
    position: absolute;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--gold-bright);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
    border-radius: 2px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, bottom 0.25s ease;
    border: 1px solid rgba(201,169,97,0.4);
}
.bottle:hover .bottle-label {
    opacity: 1;
    bottom: -38px;
}

.shelf-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.shelf-tab {
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--paper-soft);
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.25s ease;
}
.shelf-tab:hover {
    color: var(--paper);
    border-color: var(--gold);
}
.shelf-tab.active {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201,169,97,0.3);
}

/* -- WINE FLIGHT (compact three-card) ---------------------- */
.wine-flight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.wine-flight-card {
    background: rgba(240, 223, 190, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.3s ease;
}
.wine-flight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.5);
}
.wine-glass-svg {
    width: 50px;
    height: 70px;
    margin: 0 auto 1rem;
    display: block;
}
.wine-flight-card h3 {
    font-family: var(--font-display);
    color: var(--paper);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.wine-flight-card .wine-bottles {
    color: var(--paper-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    font-family: var(--font-body);
}

/* -- HAPPY HOUR HERO BANNER ------------------------------- */
.happy-hour-hero {
    text-align: center;
    padding: 4rem 1rem 5rem;
    position: relative;
}
.happy-hour-big-time {
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 9rem);
    line-height: 0.9;
    color: var(--gold-bright);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    margin-bottom: 0.5rem;
    font-style: italic;
}
.happy-hour-big-time .dash {
    color: var(--paper);
    font-style: normal;
    opacity: 0.6;
    margin: 0 0.2em;
}
.happy-hour-sub {
    font-family: var(--font-accent);
    color: var(--paper);
    font-size: clamp(1rem, 2vw, 1.3rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.happy-hour-deal {
    display: inline-block;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    padding: 1.2rem 2rem;
    color: var(--paper);
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 600px;
}
.happy-hour-deal strong {
    color: var(--gold-bright);
    font-weight: 700;
}
.happy-hour-extras {
    color: var(--paper-soft);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.daily-orbit {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.5rem;
}
.daily-pill {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(201, 169, 97, 0.25);
    color: var(--paper-soft);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: var(--font-body);
    transition: all 0.25s ease;
}
.daily-pill:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.08);
    color: var(--paper);
}
.daily-pill strong {
    color: var(--gold-bright);
    font-family: var(--font-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-right: 0.5rem;
}

/* ============================================================
   DRINKS — EDITORIAL REBUILD
   Magazine-style, not a list page.
   ============================================================ */

/* -- DRINKS HERO: full-bleed video, oversized type ------- */
.drinks-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 100px 0 0;
}
.drinks-hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.drinks-hero-video video,
.drinks-hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.85) brightness(0.65);
}
.drinks-hero-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10,7,7,0.5) 0%, rgba(10,7,7,0.2) 30%, rgba(10,7,7,0.95) 100%);
}
.drinks-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 5rem;
}
.drinks-hero-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.4em;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-left: 60px;
    position: relative;
}
.drinks-hero-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 44px;
    height: 1px;
    background: var(--gold);
}
.drinks-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 7.5rem);
    color: var(--paper);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.drinks-hero h1 em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 400;
}
.drinks-hero-lede {
    color: var(--paper-soft);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.5;
    max-width: 540px;
    font-family: var(--font-display);
    font-weight: 400;
}
.drinks-hero-meta {
    margin-top: 2rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: var(--paper-soft);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.drinks-hero-meta strong {
    color: var(--gold-bright);
    font-weight: 600;
    display: block;
    font-size: 1.6rem;
    font-family: var(--font-display);
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.2rem;
}

/* Scroll cue arrow */
.drinks-hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
    color: var(--gold);
    font-family: var(--font-accent);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.8;
}
.drinks-hero-scroll::after {
    content: '';
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -- EDITORIAL CHAPTER MARKER ----------------------------- */
.chapter {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}
.chapter-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(4rem, 10vw, 7rem);
    color: var(--gold);
    opacity: 0.18;
    line-height: 0.85;
    letter-spacing: -0.05em;
    pointer-events: none;
}
.chapter-eyebrow {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: -0.5rem 0 0.6rem;
    position: relative;
    z-index: 1;
}
.chapter h2 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.015em;
}
.chapter h2 em {
    font-style: italic;
    color: var(--gold-bright);
    font-weight: 400;
}
.chapter-lede {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.65;
    font-family: var(--font-display);
}
.chapter--light h2,
.chapter--light .chapter-lede {
    color: var(--ink);
}
.chapter--light .chapter-lede { color: var(--ink-soft); }
.chapter--dark h2 { color: var(--paper); }
.chapter--dark .chapter-lede { color: var(--paper-soft); }

/* -- TAP WALL: asymmetric featured + supporting layout --- */
.tap-wall {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
.tap-wall-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.tap-featured {
    background: linear-gradient(180deg, #1c0d06 0%, #0f0705 100%);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color .35s ease, transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tap-featured:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.tap-featured::before {
    /* atmospheric glow */
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse 50% 50% at center, rgba(201, 169, 97, 0.12), transparent 65%);
    pointer-events: none;
}
.tap-featured-label {
    font-family: var(--font-accent);
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gold-bright);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}
.tap-featured-label::before,
.tap-featured-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    max-width: 60px;
}
.tap-featured-label::after {
    background: linear-gradient(270deg, var(--gold), transparent);
}
.tap-featured-name {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    color: var(--paper);
    margin: 1.5rem 0 0.5rem;
    letter-spacing: -0.015em;
}
.tap-featured-brewery {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.tap-featured-stats {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    margin: 1.5rem 0;
}
.tap-featured-stats > div {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--paper-soft);
}
.tap-featured-stats > div strong {
    display: block;
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0.2rem;
}
.tap-featured-notes {
    color: var(--paper-soft);
    line-height: 1.6;
    font-size: 1rem;
    font-family: var(--font-display);
    font-style: italic;
}

/* Smaller tap entries (right column + bottom row) */
.tap-pour {
    background: rgba(20, 12, 8, 0.6);
    border-left: 3px solid var(--brick);
    padding: 1.5rem 1.6rem;
    border-radius: 3px;
    transition: border-left-color .3s ease, background .3s ease, transform .35s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.tap-pour:hover {
    border-left-color: var(--gold);
    background: rgba(30, 18, 12, 0.8);
    transform: translateX(4px);
}
.tap-pour-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.4rem;
}
.tap-pour-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.1;
    color: var(--paper);
    letter-spacing: -0.01em;
}
.tap-pour-abv {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.tap-pour-style {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 0.5rem;
}
.tap-pour-brewery {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--paper-soft);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}
.tap-pour-notes {
    color: var(--paper-soft);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
}

.tap-disclaimer-editorial {
    text-align: center;
    margin-top: 3rem;
    color: var(--paper-soft);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 880px) {
    .tap-wall { grid-template-columns: 1fr; }
    .tap-wall-secondary { grid-template-columns: 1fr; }
}

/* -- BREWERY FEATURES: alternating editorial layout ------ */
.brewery-feature {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    padding: 3.5rem 0;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 97, 0.08);
}
.brewery-feature:last-child { border-bottom: none; }
.brewery-feature.reverse {
    grid-template-columns: 1.2fr 1fr;
}
.brewery-feature.reverse .brewery-feature-text {
    order: 1;
}
.brewery-feature.reverse .brewery-feature-marquee {
    order: 2;
}
.brewery-feature-marquee {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(110, 31, 18, 0.15) 0%, rgba(10, 7, 7, 0.6) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    border-radius: 4px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .35s ease;
}
.brewery-feature-marquee::before {
    /* big watermark city */
    content: attr(data-city);
    position: absolute;
    bottom: -1.5rem;
    right: -0.5rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    opacity: 0.06;
    font-size: clamp(5rem, 9vw, 8rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    pointer-events: none;
    white-space: nowrap;
}
.brewery-feature:hover .brewery-feature-marquee {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 97, 0.4);
}
.brewery-feature-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--paper);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}
.brewery-feature-meta {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.brewery-feature-pours {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-bright);
    font-size: 0.95rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}
.brewery-feature-text h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 600;
}
.brewery-feature-text p {
    color: var(--paper-soft);
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.7;
    margin: 0;
}
.brewery-feature-text p:not(:last-child) {
    margin-bottom: 1rem;
}

@media (max-width: 800px) {
    .brewery-feature,
    .brewery-feature.reverse {
        grid-template-columns: 1fr;
    }
    .brewery-feature.reverse .brewery-feature-text { order: 2; }
    .brewery-feature.reverse .brewery-feature-marquee { order: 1; }
}

/* -- COCKTAIL RECIPE CARDS ------------------------------- */
.cocktail-pages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.cocktail-recipe {
    background: linear-gradient(180deg, #f0e4ca 0%, #ebdcbb 100%);
    color: var(--ink);
    padding: 2rem 1.8rem 2rem;
    border: 1px solid rgba(110, 70, 30, 0.18);
    border-radius: 3px;
    position: relative;
    transition: transform .4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .4s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.cocktail-recipe:hover {
    transform: translateY(-4px) rotate(-0.4deg);
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}
.cocktail-recipe::before {
    /* tiny corner ornament */
    content: '◆';
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: var(--gold);
    font-size: 0.6rem;
    opacity: 0.6;
}
.cocktail-num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--brick);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}
.cocktail-recipe h3 {
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 1.7rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(110, 31, 18, 0.2);
}
.cocktail-ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.cocktail-ingredients li {
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.5;
    padding: 0.2rem 0;
    font-family: var(--font-display);
}
.cocktail-ingredients li::before {
    content: '·';
    color: var(--gold-deep);
    margin-right: 0.6rem;
    font-weight: 700;
}
.cocktail-method {
    font-style: italic;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    font-family: var(--font-display);
    border-top: 1px dotted rgba(110, 31, 18, 0.25);
    padding-top: 1rem;
    margin: 0;
}

/* -- BOTTLE SHELF (replaces liquor grid) ----------------- */
.bottle-shelf {
    margin-top: 3rem;
}
.shelf-row {
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.08);
    position: relative;
}
.shelf-row:last-child { border-bottom: 1px solid rgba(201, 169, 97, 0.08); }
.shelf-row::before {
    /* shelf-edge glow */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.25) 30%, rgba(201, 169, 97, 0.25) 70%, transparent 100%);
}
.shelf-label {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.shelf-label h3 {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 1.7rem;
    line-height: 1;
    letter-spacing: -0.01em;
    margin: 0;
}
.shelf-label .label-meta {
    font-family: var(--font-accent);
    color: var(--paper-soft);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.7;
}
.shelf-bottles {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, max-content));
    gap: 0.4rem 1.5rem;
    align-items: baseline;
}
.bottle {
    color: var(--paper-soft);
    font-family: var(--font-display);
    font-size: 1.05rem;
    padding: 0.1rem 0;
    transition: color .25s ease, transform .25s ease, text-shadow .25s ease;
    cursor: default;
    white-space: nowrap;
    position: relative;
}
.bottle:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 16px rgba(201, 169, 97, 0.4);
    transform: translateY(-1px);
}
.bottle::after {
    content: '·';
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
}
/* hide separator on the last bottle in each row visually — using a heuristic */
.bottle:last-child::after { display: none; }

/* -- WINE: sommelier's card ------------------------------- */
.wine-card {
    background: linear-gradient(180deg, #f0e4ca 0%, #ebdcbb 100%);
    color: var(--ink);
    max-width: 720px;
    margin: 3rem auto 0;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(110, 70, 30, 0.18);
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    position: relative;
}
.wine-card::before,
.wine-card::after {
    /* corner flourish dots */
    content: '◆';
    position: absolute;
    color: var(--gold-deep);
    font-size: 0.6rem;
    opacity: 0.5;
}
.wine-card::before { top: 1rem; left: 1.2rem; }
.wine-card::after  { bottom: 1rem; right: 1.2rem; }
.wine-card-eyebrow {
    text-align: center;
    font-family: var(--font-accent);
    color: var(--brick);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}
.wine-card h3 {
    text-align: center;
    font-family: var(--font-display);
    color: var(--brick-deep);
    font-size: 2rem;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.wine-card-subtitle {
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ink-soft);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.wine-section {
    margin-bottom: 2rem;
}
.wine-section:last-child { margin-bottom: 0; }
.wine-section-head {
    font-family: var(--font-display);
    color: var(--brick);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.4rem;
    margin-bottom: 0.8rem;
    display: inline-block;
}
.wine-entry {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.5rem 0;
    color: var(--ink);
    font-family: var(--font-display);
}
.wine-entry .varietal {
    font-size: 1.05rem;
    font-weight: 500;
}
.wine-entry .vintners {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-style: italic;
    text-align: right;
}

/* -- HAPPY HOUR: neon sign -------------------------------- */
.happy-hour-marquee {
    text-align: center;
    padding: 5rem 0;
    position: relative;
}
.happy-hour-bigtime {
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 14vw, 11rem);
    line-height: 0.95;
    color: var(--gold-bright);
    letter-spacing: -0.04em;
    margin: 0.5rem 0;
    text-shadow:
        0 0 30px rgba(201, 169, 97, 0.4),
        0 0 60px rgba(201, 169, 97, 0.2);
    animation: neonFlicker 8s ease-in-out infinite;
}
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    96%      { opacity: 1; }
    97%      { opacity: 0.6; }
    97.5%    { opacity: 1; }
    98%      { opacity: 0.7; }
    98.5%    { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
    .happy-hour-bigtime { animation: none; }
}
.happy-hour-bigtime em {
    font-style: italic;
    font-weight: 400;
}
.happy-hour-subtitle {
    font-family: var(--font-accent);
    color: var(--paper);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}
.happy-hour-deal {
    font-family: var(--font-display);
    color: var(--paper-soft);
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 3rem;
}
.happy-hour-ribbon {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    background: rgba(0,0,0,0.3);
}
.happy-hour-ribbon::-webkit-scrollbar { display: none; }
.happy-hour-ribbon { scrollbar-width: none; }
.ribbon-day {
    flex: 1 0 auto;
    min-width: 14%;
    padding: 1.5rem 1.2rem;
    text-align: center;
    border-right: 1px solid rgba(201, 169, 97, 0.1);
    transition: background .25s ease;
}
.ribbon-day:last-child { border-right: none; }
.ribbon-day:hover {
    background: rgba(201, 169, 97, 0.06);
}
.ribbon-day .day {
    font-family: var(--font-accent);
    color: var(--gold-bright);
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}
.ribbon-day .deal {
    color: var(--paper-soft);
    font-family: var(--font-display);
    font-size: 0.92rem;
    line-height: 1.4;
}
@media (max-width: 700px) {
    .ribbon-day { min-width: 38%; }
}

/* -- CLOSING CTA: barkeep beckoning ----------------------- */
.bar-closer {
    text-align: center;
    padding: 5rem 0;
    background: radial-gradient(ellipse at center, rgba(110, 31, 18, 0.3), transparent 70%);
}
.bar-closer h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--paper);
    line-height: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.bar-closer h2 em {
    font-style: normal;
    color: var(--gold-bright);
}
.bar-closer p {
    color: var(--paper-soft);
    max-width: 540px;
    margin: 0 auto 2rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.6;
}

/* ===== AUDIT PASS (Jul 2026): anchor offset, contact grid, form status ===== */
section[id], [id="rentals"], [id="tap-list"], [id="cocktails"], [id="wine"], [id="liquor"], [id="happy-hour"] {
    scroll-margin-top: 96px;
}
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}
@media (max-width: 760px) {
    .contact-split { grid-template-columns: 1fr; }
}
.form-status {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 1rem;
    min-height: 1.4em;
    font-family: 'Inter', sans-serif;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--gold-bright, #e8c46a); color: #1a0f08;
    padding: 0.7rem 1.2rem; font-family: 'Inter', sans-serif; font-weight: 600;
    border-radius: 0 0 6px 0; text-decoration: none;
}
.skip-link:focus { left: 0; }
