/*
Theme Name: Cork & Bean 2026
Description: The Cork & Bean Oshawa site, rebuilt clean. Everything lives in the theme code: no page builder, no database layouts. Coffee by day, wine and music by night.
Version: 2.3.10
Author: Cork & Bean
Text Domain: corkbean2026
*/

/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
    --night: #14100c;
    --night-2: #1c1611;
    --night-3: #262019;
    --night-line: #3a3026;
    --night-text: #efe6d6;
    --night-soft: #c3b49c;
    --night-faint: #8f7f68;

    --paper: #faf6ef;
    --cream: #f2ebdf;
    --cream-2: #e8dfd0;
    --line: #dccfbb;
    --ink: #221a12;
    --ink-soft: #57483a;
    --ink-faint: #85745f;

    --gold: #c9a86a;
    --gold-2: #ddc08a;
    --wine: #7c3a41;
    --wine-2: #a3505a;
    --green: #86c796;

    --display: 'Josefin Sans', 'Segoe UI', system-ui, sans-serif;
    --body: 'Lora', Georgia, 'Times New Roman', serif;

    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 20px 50px -24px rgba(20, 16, 12, .45);
    --head-h: 72px;
}

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--head-h) + 58px); -webkit-text-size-adjust: 100%; }
body.cb26 {
    margin: 0;
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.cb26 img { max-width: 100%; height: auto; display: block; }
.cb26 a { color: var(--wine); text-underline-offset: 3px; }
.cb26 h1, .cb26 h2, .cb26 h3, .cb26 h4 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -.005em;
    margin: 0 0 .5em;
    text-wrap: balance;
    color: inherit;
}
.cb26 h1 { font-size: clamp(38px, 6.2vw, 72px); font-weight: 300; }
.cb26 h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: 300; }
.cb26 h3 { font-size: 22px; }
.cb26 p { margin: 0 0 1em; }
.cb26 :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 200; background: var(--gold); color: var(--night); padding: 8px 14px; border-radius: 6px; }
.skip:focus { left: 8px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }

#main { overflow-x: clip; }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 24px; }
.wrap-form { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 24px; }
.wrap-tap { width: 100%; max-width: 760px; margin: 0 auto; padding: 0 18px; }

.eyebrow {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}
.eyebrow-wine { color: var(--wine); }
.lead { font-size: 19px; line-height: 1.6; }
.lead-dark { color: var(--ink-soft); font-size: 18px; max-width: 640px; }
.small-note { font-size: 14.5px; color: var(--ink-faint); }
.sec-night .small-note { color: var(--night-faint); }
.cb26 .h-small { font-size: 26px; font-weight: 400; }
.aside-note { text-align: center; color: var(--ink-faint); margin-top: 34px; font-size: 16px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 26px;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
    white-space: nowrap;
}
.cb26 .btn { text-decoration: none; }
.btn:hover { transform: translateY(-1px); }
.cb26 .btn-gold { background: var(--gold); color: var(--night); }
.cb26 .btn-gold:hover { background: var(--gold-2); color: var(--night); }
.cb26 .btn-ghost { border-color: rgba(239, 230, 214, .45); color: var(--night-text); background: rgba(20, 16, 12, .2); }
.cb26 .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.cb26 .btn-dark { background: var(--night); color: var(--night-text); }
.cb26 .btn-dark:hover { background: var(--wine); color: #fff; }
.btn-sm { min-height: 40px; padding: 0 18px; font-size: 13px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 26px; }
.cb26 .link-arrow {
    font-family: var(--display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    white-space: nowrap;
}
.cb26 .link-arrow::after { content: " \2192"; }
.cb26 .link-dark { color: var(--wine); }

/* Sections */
.sec { padding: clamp(64px, 9vw, 112px) 0; }
.sec-night { background: var(--night); color: var(--night-text); }
.sec-night h2, .sec-night h3 { color: #f7efe1; }
.sec-night .lead, .sec-night p { color: var(--night-soft); }
.sec-cream { background: var(--cream); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.cb26 .sec-head h2 { margin: 0; }
.prose p { font-size: 18px; color: var(--ink-soft); }

/* ==========================================================================
   Header
   ========================================================================== */
/* The blur lives on a pseudo element: backdrop-filter on the header itself
   makes it the containing block for the fixed mobile nav, which then gets
   squashed to the header's height. */
.site-head {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .3s, border-color .3s;
}
.site-head::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(20, 16, 12, .92);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    backdrop-filter: saturate(140%) blur(12px);
    transition: opacity .3s;
    pointer-events: none;
}
.has-hero .site-head { position: fixed; left: 0; right: 0; background: linear-gradient(to bottom, rgba(10, 8, 6, .65), rgba(10, 8, 6, 0)); border-color: transparent; }
.has-hero .site-head::before { opacity: 0; }
.has-hero .site-head.is-solid { border-color: rgba(255, 255, 255, .06); }
.has-hero .site-head.is-solid::before { opacity: 1; }
.admin-bar .site-head { top: 32px; }
.site-head .bar { display: flex; align-items: center; gap: 22px; height: var(--head-h); max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.brand img { height: 26px; width: auto; }
.open-now { font-family: var(--display); font-size: 13px; letter-spacing: .06em; color: var(--night-soft); white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex: none; }
.dot-open { background: var(--green); box-shadow: 0 0 0 4px rgba(134, 199, 150, .18); }
.dot-closed { background: var(--wine-2); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.cb26 .site-nav a { font-family: var(--display); font-size: 14.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--night-text); text-decoration: none; padding: 10px 12px; border-radius: 8px; }
.cb26 .site-nav a:hover, .cb26 .site-nav a.on { color: var(--gold); }
.cb26 .site-nav .nav-cta { margin-left: 10px; color: var(--night); padding: 0 18px; }
.cb26 .site-nav .nav-cta:hover { color: var(--night); }
.cb26 .site-nav .nav-phone { display: none; }
.cb26 .head-phone { display: none; color: var(--night-text); width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--night-line); align-items: center; justify-content: center; margin-left: auto; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; flex-direction: column; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--night-text); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
    .open-now { display: none; }
}
@media (max-width: 920px) {
    .nav-toggle { display: flex; }
    .cb26 .head-phone { display: inline-flex; }
    .site-nav {
        position: fixed;
        top: var(--head-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--night);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px 40px;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .2s, transform .2s, visibility .2s;
        overflow-y: auto;
    }
    .admin-bar .site-nav { top: calc(var(--head-h) + 46px); }
    .nav-open .site-nav { opacity: 1; transform: none; visibility: visible; }
    .cb26 .site-nav a { font-size: 22px; font-weight: 300; letter-spacing: .02em; text-transform: none; padding: 16px 4px; border-bottom: 1px solid var(--night-line); border-radius: 0; }
    .cb26 .site-nav .nav-phone { display: block; }
    .cb26 .site-nav .nav-cta { margin: 26px 0 0; min-height: 54px; font-size: 16px; border-bottom: 0; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
    .nav-open { overflow: hidden; }
    .nav-open .cky-btn-revisit-wrapper { display: none !important; }
    .has-hero.nav-open .site-head { background: var(--night); }
}
@media (max-width: 782px) { .admin-bar .site-head { top: 46px; } }

/* ==========================================================================
   Home hero
   ========================================================================== */
.hero { position: relative; min-height: min(92vh, 860px); display: flex; align-items: flex-end; overflow: hidden; background: var(--night); color: var(--night-text); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 9, 6, .92) 0%, rgba(12, 9, 6, .55) 45%, rgba(12, 9, 6, .35) 100%); }
.hero-inner { position: relative; padding-top: 160px; padding-bottom: clamp(48px, 8vw, 90px); }
.cb26 .hero h1 { color: #fbf4e7; max-width: 900px; margin-bottom: 20px; }
.hero h1 span { color: var(--gold-2); }
.hero .lead { max-width: 620px; color: #e6dac6; }
.cb26 .hero-where { font-family: var(--display); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: #d9ccb6; margin: 0; }
.proof { list-style: none; padding: 0; margin: 38px 0 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font-family: var(--display); font-size: 14px; letter-spacing: .04em; color: #d9ccb6; }
.proof li { display: block; }
.proof-open { display: inline-flex !important; align-items: center; gap: 8px; }
.proof b { color: #fff; font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 1px; margin-right: 4px; }
@media (max-width: 520px) { .eyebrow { letter-spacing: .16em; } .proof { gap: 8px; } }

/* Page hero */
.page-hero { position: relative; background-color: var(--night); background-image: var(--hero, none); background-position: center; background-size: cover; color: var(--night-text); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(12, 9, 6, .94) 0%, rgba(12, 9, 6, .75) 50%, rgba(12, 9, 6, .45) 100%); }
.page-hero-inner { position: relative; padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(56px, 8vw, 100px); }
.cb26 .page-hero h1 { color: #fbf4e7; max-width: 820px; font-size: clamp(36px, 5.4vw, 62px); }
.page-hero .lead { color: #e2d5bf; max-width: 620px; }
.page-hero-plain::before { background: var(--night); }
.page-body { padding: 56px 0 90px; }

/* ==========================================================================
   Week strip
   ========================================================================== */
.week { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--night-line); border-bottom: 1px solid var(--night-line); }
.week-col { padding: 26px 22px 28px; border-left: 1px solid var(--night-line); }
.week-col:first-child { border-left: 0; padding-left: 0; }
.week-day { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--night-faint); margin-bottom: 10px; }
.week-day span { color: var(--gold); letter-spacing: .1em; margin-left: 6px; }
.week-title { font-family: var(--display); font-size: 22px; font-weight: 300; color: #f7efe1; line-height: 1.2; }
.week-when { font-size: 15px; color: var(--night-soft); margin-top: 6px; }
.is-today .week-title { color: var(--gold-2); }
.cb26 .week-note { margin: 18px 0 0; font-size: 15px; color: var(--night-faint); }
@media (max-width: 900px) {
    .week { grid-template-columns: 1fr; }
    .week-col { display: grid; grid-template-columns: 88px 1fr; column-gap: 12px; align-items: baseline; padding: 16px 0; border-left: 0; border-top: 1px solid var(--night-line); }
    .week-col:first-child { border-top: 0; }
    .week-day { grid-row: 1 / 3; margin: 0; }
    .week-day span { display: block; margin: 2px 0 0; }
    .week-title { font-size: 20px; }
    .week-when { margin-top: 2px; }
}

/* ==========================================================================
   Tiles, splits, boards
   ========================================================================== */
.tiles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cb26 .tile { position: relative; display: block; border-radius: var(--radius); overflow: hidden; min-height: 460px; color: #fff; text-decoration: none; background: var(--night); box-shadow: var(--shadow); }
.cb26 .tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12, 9, 6, .92) 0%, rgba(12, 9, 6, .35) 55%, rgba(12, 9, 6, 0) 100%); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; z-index: 1; }
.tile-kicker { font-family: var(--display); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-2); }
.cb26 .tile h3 { font-size: 28px; font-weight: 300; margin: 6px 0 8px; color: #fff; }
.cb26 .tile p { font-size: 15.5px; color: #e4d8c4; margin: 0; }
@media (max-width: 900px) {
    .tiles { grid-template-columns: 1fr; }
    .cb26 .tile { min-height: 360px; }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-flip .split-media { order: 2; }
.cb26 .split-media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; }
    .split-flip .split-media { order: 0; }
    .cb26 .split-media img { aspect-ratio: 4 / 3; }
}

.board { background: var(--night-2); border: 1px solid var(--night-line); border-radius: var(--radius); padding: 10px 24px; margin-top: 22px; }
.board-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--night-line); }
.board-row:last-child { border-bottom: 0; }
.board-name { font-family: var(--display); font-size: 18px; font-weight: 600; color: #f7efe1; }
.board-name small { display: block; font-family: var(--body); font-weight: 400; font-size: 14px; color: var(--night-faint); font-style: italic; margin-top: 2px; }
.board-price { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--gold); white-space: nowrap; }
.board-price small { font-size: 12px; color: var(--night-faint); font-weight: 400; }

.lineup-list { list-style: none; padding: 0; margin: 20px 0 0; border-top: 1px solid var(--line); }
.lineup-list li { display: flex; gap: 18px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.lineup-date { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--wine); min-width: 104px; }
.lineup-artist { font-family: var(--display); font-size: 19px; }

.price-pair { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.price-pair div { flex: 1 1 160px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; }
.price-pair b { display: block; font-family: var(--display); font-size: 32px; font-weight: 300; color: var(--wine); line-height: 1; }
.price-pair span { font-size: 14px; color: var(--ink-faint); }

.proof-band { padding: 56px 0; border-top: 1px solid var(--night-line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 30px; align-items: center; }
.proof-stat b { display: block; font-family: var(--display); font-size: 44px; font-weight: 300; color: #fbf4e7; line-height: 1; }
.proof-stat b span { color: var(--gold); font-size: 30px; margin-left: 4px; }
.sec-night .proof-stat p { margin: 8px 0 0; font-size: 15px; color: var(--night-faint); }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr 1fr; } .proof-cta { grid-column: 1 / -1; } }

/* Checks */
.checks { list-style: none; padding: 0; margin: 24px 0 0; }
.checks li { position: relative; padding: 12px 0 12px 32px; border-bottom: 1px solid var(--night-line); color: var(--night-soft); font-size: 16px; }
.checks li::before { content: ""; position: absolute; left: 4px; top: 21px; width: 12px; height: 7px; border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(-45deg); }
.checks li b { color: #f7efe1; font-family: var(--display); font-weight: 600; }
.checks-dark li { border-color: var(--line); color: var(--ink-soft); }
.checks-dark li b { color: var(--ink); }
.checks-dark li::before { border-color: var(--wine); }

/* FAQ */
.faq { margin-top: 26px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; position: relative; padding: 18px 40px 18px 0; font-family: var(--display); font-size: 18px; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 12px; font-size: 26px; font-weight: 300; color: var(--wine); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.cb26 .faq details p { margin: 0 0 18px; color: var(--ink-soft); font-size: 16px; }

/* Visit */
.visit-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: center; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 16px; margin-top: 10px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours-table tr.today td { color: var(--wine); font-weight: 600; }
.sec-night .hours-table td, .site-foot .hours-table td, .contact-card-dark .hours-table td { border-color: var(--night-line); color: var(--night-soft); }
.sec-night .hours-table tr.today td, .site-foot .hours-table tr.today td { color: var(--gold); }
.nap { margin-top: 18px; line-height: 1.8; }
.cb26 .sec-night .nap a { color: var(--gold-2); }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--night-line); background: var(--night-2); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.2) contrast(1.05); }
.map-wide { margin-top: 40px; border-color: var(--line); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } .map-frame iframe { height: 300px; } }

/* ==========================================================================
   Menu page
   ========================================================================== */
.menu-tabs { position: sticky; top: var(--head-h); z-index: 50; background: rgba(250, 246, 239, .96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.admin-bar .menu-tabs { top: calc(var(--head-h) + 32px); }
.menu-tabs-inner { display: flex; gap: 6px; overflow-x: auto; max-width: 1200px; margin: 0 auto; padding: 10px 24px; scrollbar-width: none; }
.menu-tabs-inner::-webkit-scrollbar { display: none; }
.cb26 .menu-tabs a { flex: none; font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; padding: 9px 16px; border-radius: 999px; white-space: nowrap; }
.cb26 .menu-tabs a:hover { color: var(--wine); }
.cb26 .menu-tabs a.is-on { background: var(--night); color: var(--night-text); }
.menu-page { padding: 44px 0 100px; }
.menu-callout { display: grid; gap: 6px; background: var(--night); color: var(--night-soft); border-radius: var(--radius); padding: 20px 26px; font-size: 15px; margin-bottom: 60px; }
.menu-callout b { color: var(--gold); font-family: var(--display); font-weight: 600; letter-spacing: .02em; margin-right: 4px; }
.menu-sec { padding-top: 10px; margin-bottom: 64px; }
.menu-sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px 20px; flex-wrap: wrap; border-bottom: 2px solid var(--ink); padding-bottom: 12px; margin-bottom: 8px; }
.cb26 .menu-sec-head h2 { margin: 0; font-size: clamp(26px, 3vw, 36px); font-weight: 400; }
.cb26 .menu-sec-head p { margin: 0; color: var(--ink-faint); font-size: 15px; font-style: italic; }
.menu-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 56px; }
.menu-item { padding: 20px 0 16px; border-bottom: 1px solid var(--line); }
.menu-line { display: flex; align-items: baseline; gap: 10px; }
.cb26 .menu-line h3 { font-size: 19px; font-weight: 600; margin: 0; flex: 0 1 auto; min-width: 0; }
.leader { flex: 1 1 20px; border-bottom: 1px dotted #b9a88f; transform: translateY(-5px); min-width: 20px; }
.price { flex: none; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--wine); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price em { font-style: normal; font-weight: 400; color: var(--ink-faint); font-size: 14px; }
.cb26 .menu-item p { margin: 6px 0 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; max-width: 52ch; }
.tag { display: inline-block; font-size: 10.5px; letter-spacing: .08em; font-weight: 600; color: #4f7b5a; border: 1px solid #9ec2a6; border-radius: 4px; padding: 2px 5px 1px; margin-left: 6px; vertical-align: 3px; }
.menu-foot { text-align: center; border-top: 1px solid var(--line); padding-top: 40px; color: var(--ink-soft); }
@media (max-width: 800px) {
    .menu-items { grid-template-columns: 1fr; }
    .cb26 .menu-line h3 { font-size: 18px; }
    .menu-callout { font-size: 14px; }
}

/* ==========================================================================
   On tap (QR menu)
   ========================================================================== */
.tap-hero { background: linear-gradient(180deg, rgba(12, 9, 6, .82), rgba(12, 9, 6, .96)), url(assets/img/beer-fridge.jpg) center/cover; color: var(--night-text); padding: 54px 0 40px; }
.cb26 .tap-hero h1 { font-size: clamp(38px, 8vw, 60px); color: #fbf4e7; margin-bottom: 10px; }
.cb26 .tap-hero .lead { color: var(--night-soft); font-size: 17px; margin: 0; }
.tap-hero .lead b { color: var(--gold-2); font-weight: 400; }
.tap-page { background: var(--night); color: var(--night-text); padding: 10px 0 80px; min-height: 60vh; }
.tap-sec { margin-top: 34px; }
.cb26 .tap-sec h2 { font-size: 15px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.tap-sec-head { display: flex; justify-content: space-between; align-items: baseline; }
.tap-updated { font-size: 13px; color: var(--night-faint); font-family: var(--display); }
.beer { border-bottom: 1px solid var(--night-line); }
.beer summary { list-style: none; display: flex; align-items: center; gap: 14px; padding: 14px 2px; cursor: pointer; }
.beer summary::-webkit-details-marker { display: none; }
.beer[data-empty] summary { cursor: default; }
.beer-main { flex: 1; min-width: 0; }
.beer-name { display: block; font-family: var(--display); font-size: 18px; font-weight: 600; color: #f7efe1; line-height: 1.25; }
.beer-tap .beer-name { font-size: 21px; }
.beer-meta { display: block; font-size: 13.5px; color: var(--night-faint); margin-top: 2px; }
.beer-price { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--gold); font-variant-numeric: tabular-nums; }
.beer-low { display: inline-block; font-family: var(--body); font-style: italic; font-weight: 400; font-size: 12px; color: #e3a0a8; margin-left: 8px; }
.beer:not([data-empty]) summary .beer-name::after { content: ""; display: inline-block; width: 6px; height: 6px; border-right: 1.5px solid var(--night-faint); border-bottom: 1.5px solid var(--night-faint); transform: rotate(45deg); margin-left: 10px; vertical-align: 4px; transition: transform .2s; }
.beer[open] summary .beer-name::after { transform: rotate(-135deg); vertical-align: 1px; }
.cb26 .beer p { margin: 0 0 16px; font-size: 15px; color: var(--night-soft); line-height: 1.6; }
.taps .beer { background: var(--night-2); border: 1px solid var(--night-line); border-radius: 12px; padding: 0 16px; margin-bottom: 10px; }
.tap-tools { position: sticky; top: var(--head-h); z-index: 20; background: var(--night); padding: 10px 0 12px; }
.admin-bar .tap-tools { top: calc(var(--head-h) + 32px); }
.tap-search input { width: 100%; height: 48px; border-radius: 12px; border: 1px solid var(--night-line); background: var(--night-2); color: var(--night-text); padding: 0 16px; font-size: 16px; font-family: var(--body); }
.tap-search input::placeholder { color: var(--night-faint); }
.chips { display: flex; gap: 8px; overflow-x: auto; margin-top: 10px; scrollbar-width: none; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; font-family: var(--display); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: var(--night-soft); background: var(--night-2); border: 1px solid var(--night-line); border-radius: 999px; padding: 8px 14px; cursor: pointer; }
.chip.is-on { background: var(--gold); color: var(--night); border-color: var(--gold); }
.style-group { margin-top: 44px; }
.cb26 .style-group h3 { display: flex; align-items: baseline; justify-content: space-between; margin: 0; padding-bottom: 10px; border-bottom: 2px solid var(--gold); font-size: 22px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.style-group h3 span { font-family: var(--body); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--night-faint); }
.tap-none, .tap-empty { color: var(--night-soft); padding: 24px 0; }
.tap-foot { margin-top: 40px; text-align: center; color: var(--night-faint); font-size: 14px; }
.cb26 .tap-foot .link-arrow { display: inline-block; margin-top: 8px; }

/* ==========================================================================
   Live music, events, parties, contact
   ========================================================================== */
.shows { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.show { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.show-art.no-poster { aspect-ratio: 16 / 9; }
.show-art { aspect-ratio: 4 / 5; background: var(--night); display: flex; align-items: center; justify-content: center; }
.cb26 .show-art img { width: 100%; height: 100%; object-fit: cover; }
.show-date-big { font-family: var(--display); font-weight: 300; font-size: 84px; color: var(--gold); text-align: center; line-height: 1; }
.show-date-big span { display: block; font-size: 16px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--night-soft); margin-bottom: 6px; }
.show-body { padding: 18px 20px 22px; }
.show-when { font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--wine); }
.cb26 .show h3 { margin: 6px 0 10px; font-size: 22px; }
.cb26 .empty-note { background: var(--cream); border-radius: var(--radius); padding: 30px; color: var(--ink-soft); max-width: 720px; }
.cb26 .empty-note p { margin: 0; }

.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cb26 .feature img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-body { padding: 22px 24px 26px; }
.feature-body .eyebrow { margin-bottom: 8px; font-size: 12px; }
.cb26 .feature h3 { font-size: 24px; font-weight: 400; }
.cb26 .feature p { color: var(--ink-soft); font-size: 16px; margin: 0; }
@media (max-width: 900px) { .features { grid-template-columns: 1fr; } }

.rate-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0 6px; }
.rate-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.rate-card span { font-family: var(--display); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.rate-card b { display: block; font-family: var(--display); font-weight: 300; font-size: 38px; color: var(--wine); line-height: 1.1; margin: 4px 0; }
.rate-card b small { font-size: 16px; color: var(--ink-faint); }
.rate-card em { font-style: normal; font-size: 13.5px; color: var(--ink-faint); }

.room-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.room-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 30px; }
.room-card-feature { background: var(--night); border-color: var(--night); color: var(--night-text); }
.cb26 .room-card.room-card-feature h3 { color: #fbf4e7; }
.cb26 .room-card.room-card-feature p { color: var(--night-soft); }
.room-price { font-family: var(--display); font-weight: 300; font-size: 42px; color: var(--wine); line-height: 1; margin-bottom: 18px; }
.room-card-feature .room-price { color: var(--gold); }
.room-price small { font-size: 16px; color: var(--ink-faint); margin-left: 2px; }
.cb26 .room-card h3 { font-size: 24px; font-weight: 400; }
.cb26 .room-card p { font-size: 16px; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .room-cards { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.contact-card-dark { background: var(--night); border-color: var(--night); color: var(--night-text); }
.contact-big { font-family: var(--display); font-size: 24px; font-weight: 300; line-height: 1.3; }
.contact-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 18px 0 0; font-size: 16px; }
.contact-list dt { font-family: var(--display); font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; padding-top: 3px; }
.contact-list dd { margin: 0; overflow-wrap: anywhere; }
.quick-links { list-style: none; margin: 10px 0 0; padding: 0; }
.cb26 .quick-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--night-line); color: #fbf4e7; text-decoration: none; font-family: var(--display); font-size: 18px; }
.quick-links a span { display: block; font-family: var(--body); font-size: 14px; color: var(--night-faint); margin-top: 2px; }
.cb26 .quick-links a:hover { color: var(--gold); }
@media (max-width: 1000px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Forms from the plugin (booking form, musician form), themed in place.
   Their stylesheets set global body/h2/label rules; everything here is
   scoped under .cb26 and loads after them.
   ========================================================================== */
.cb26 .booking-sec h2 { margin-bottom: 8px; }
.form-shell { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(18px, 3vw, 34px); margin-top: 28px; box-shadow: var(--shadow); color: var(--ink); }
.cb26 .form-shell-light h3 { font-size: 26px; font-weight: 400; margin-bottom: 14px; color: var(--ink); }
.cb26 .form-shell,
.cb26 .form-shell label,
.cb26 .form-shell p { font-family: var(--body); color: var(--ink); }
.cb26 .form-shell label { font-size: 16px; font-weight: 600; margin: 0 0 6px; display: block; }
.cb26 .form-shell h2 { font-family: var(--display); font-size: 24px; font-weight: 400; color: var(--ink); margin: 0 0 12px; }
.cb26 .form-shell h3 { font-family: var(--display); color: var(--ink); }
.cb26 .form-shell input[type="text"],
.cb26 .form-shell input[type="email"],
.cb26 .form-shell input[type="url"],
.cb26 .form-shell input[type="number"],
.cb26 .form-shell input[type="tel"],
.cb26 .form-shell select,
.cb26 .form-shell textarea {
    width: 100%;
    min-height: 48px;
    font-family: var(--body);
    font-size: 16px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    margin: 0 0 14px;
    box-shadow: none;
    box-sizing: border-box;
}
.cb26 .form-shell textarea { min-height: 110px; }
.cb26 .form-shell input:focus, .cb26 .form-shell textarea:focus, .cb26 .form-shell select:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(124, 58, 65, .15); }
.cb26 .form-shell input[type="file"] { width: 100%; font-family: var(--body); font-size: 15px; padding: 14px; border: 1.5px dashed var(--line); border-radius: 10px; background: var(--paper); margin-bottom: 6px; }
.cb26 .form-shell input[type="checkbox"], .cb26 .form-shell input[type="radio"] { width: 22px; height: 22px; border-radius: 6px; background: var(--cream-2); vertical-align: middle; margin-right: 10px; }
.cb26 .form-shell input[type="radio"] { border-radius: 50%; }
.cb26 .form-shell input[type="checkbox"]:checked, .cb26 .form-shell input[type="radio"]:checked { background: var(--wine); }
.cb26 .form-shell input[type="checkbox"]:checked::after { left: 7px; top: 3px; width: 6px; height: 12px; }
.cb26 .form-shell input[type="submit"], .cb26 .form-shell button[type="submit"], .cb26 .form-shell #cb-booking-form button {
    width: 100%;
    min-height: 54px;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--night);
    color: var(--night-text);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 10px;
}
.cb26 .form-shell input[type="submit"]:hover, .cb26 .form-shell button[type="submit"]:hover:enabled { background: var(--wine); }
.cb26 .form-shell button[type="submit"]:disabled { background: var(--cream-2); color: var(--ink-faint); cursor: not-allowed; }

/* Booking form layout reset: the plugin boxes it at 65% width */
.cb26 .form-shell .booking-container { max-width: 100%; display: block; }
.cb26 .form-shell #cork-bean-booking-form { max-width: 100%; margin: 0; padding: 0; border: 0; box-shadow: none; background: transparent; }
.cb26 .form-shell .section-group { margin-bottom: 18px; }
.cb26 .form-shell #estimated_cost { color: var(--wine); }
.cb26 .form-shell .estimated-cost-wrapper h2 { font-size: 26px; border-top: 1px solid var(--line); padding-top: 18px; margin-top: 10px; }
.cb26 .form-shell #cart-container { position: static !important; width: auto !important; margin-top: 18px; border-radius: var(--radius) !important; border-color: var(--line) !important; background: var(--paper) !important; font-family: var(--body); box-shadow: none; }

/* Musician form: the plugin card becomes part of our shell */
.cb26 .form-shell #cb-booking-form { max-width: 100%; margin: 0; padding: 0; border: 0; box-shadow: none; background: transparent; font-family: var(--body); }
.cb26 .form-shell #cb-booking-form p { margin: 0 0 4px; }
.cb26 .form-shell #cb-booking-response { color: var(--wine); font-weight: 600; }
.cb26 .form-shell .cb-thanks p { font-size: 18px; }
.cb26 .sec-night .form-shell p, .cb26 .sec-night .form-shell label { color: var(--ink); }
.cb26 .form-shell .cb-promo-help { color: var(--ink-faint); margin-bottom: 12px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { background: #0e0b08; color: var(--night-soft); padding: 80px 0 34px; font-size: 15.5px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.cb26 .foot-brand img { height: 28px; width: auto; margin-bottom: 18px; }
.cb26 .foot-brand p { max-width: 320px; color: var(--night-faint); }
.foot-award { display: inline-block; border: 1px solid var(--gold); color: var(--gold); border-radius: 999px; padding: 6px 14px; font-family: var(--display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.cb26 .site-foot h4 { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin: 6px 0 16px; }
.cb26 .site-foot p { margin: 0 0 8px; }
.cb26 .site-foot a { color: var(--night-text); text-decoration: none; }
.cb26 .site-foot a:hover { color: var(--gold); }
.site-foot .hours-table { font-size: 14.5px; margin: 0; }
.site-foot .hours-table td { padding: 5px 0; }
.foot-fine { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--night-line); margin-top: 56px; padding-top: 24px; font-size: 13px; color: var(--night-faint); }
@media (max-width: 900px) { .foot-top { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .foot-top { grid-template-columns: 1fr; } }

/* Generic page content (other pages keep working) */
.page-body .wrap-narrow > * { max-width: 100%; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

@media (min-width: 1081px) { .cb26 .proof .proof-open { display: none !important; } }

/* Party room rates */
.room-rates { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); font-size: 15.5px; }
.room-rates dt { font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); padding-top: 2px; }
.room-rates dd { margin: 0; color: var(--wine); font-family: var(--display); font-size: 17px; }
.room-card-feature .room-rates { border-color: var(--night-line); }
.room-card-feature .room-rates dt { color: var(--night-faint); }
.room-card-feature .room-rates dd { color: var(--gold); }
.cb26 .form-shell .rental-pricing-note { font-size: 15px; color: var(--ink-soft); margin: -4px 0 10px; }
.cb26 .form-shell .rental-pricing-hint { font-size: 15px; color: var(--wine); margin: 6px 0 0; min-height: 1em; }
.cb26 .form-shell #cart-container .cart-item { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; font-size: 15px; }
.cb26 .form-shell #cart-container .cart-note { color: var(--ink-faint); font-style: italic; }
.cb26 .form-shell #cart-container .cart-total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; font-size: 16px; }

/* Happy hour: one deal, said once */
.hh-simple { text-align: center; }
.cb26 .hh .hh-eyebrow { font-family: var(--display); font-size: 14px; letter-spacing: .22em; text-transform: uppercase; color: var(--night-soft); margin: 0 0 10px; }
.cb26 .hh .hh-big { font-family: var(--display); font-weight: 300; font-size: clamp(38px, 6vw, 64px); line-height: 1.05; color: #f7efe1; margin: 0; }
.cb26 .hh .hh-when { font-family: var(--display); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 14px 0 22px; }

/* Craft beer page during happy hour */
.cb26 .hh-now { margin: 0 0 18px; padding: 12px 16px; border: 1px solid var(--gold); border-radius: 12px; color: var(--gold); font-family: var(--display); font-size: 15px; }
.beer-price s { color: var(--night-soft); font-weight: 400; margin-right: 4px; }

/* Beer filters: search + brewery on one row, style chips wrap (swipe on phones) */
.tap-row { display: flex; gap: 10px; }
.tap-row .tap-search { flex: 1 1 auto; min-width: 0; }
.tap-brewery select {
    height: 48px;
    max-width: 260px;
    border-radius: 12px;
    border: 1px solid var(--night-line);
    background: var(--night-2);
    color: var(--night-text);
    padding: 0 36px 0 14px;
    font-family: var(--display);
    font-size: 15px;
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position: calc(100% - 20px) 21px, calc(100% - 15px) 21px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}
@media (min-width: 640px) {
    .chips { flex-wrap: wrap; overflow: visible; }
}
@media (max-width: 639px) {
    .tap-row { flex-direction: column; }
    .tap-brewery select { max-width: none; width: 100%; }
    .chips { -webkit-mask-image: linear-gradient(to right, #000 85%, transparent); mask-image: linear-gradient(to right, #000 85%, transparent); padding-right: 30px; }
}

/* Price with ABV under it */
.beer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex: none; }
.beer-abv { font-family: var(--display); font-size: 12.5px; letter-spacing: .06em; color: var(--night-soft); white-space: nowrap; }

/* Trivia Tuesday: book online from the week strip */
.week-book { display: inline-block; margin-top: 6px; font-family: var(--display); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); text-decoration: none; border-bottom: 1px solid currentColor; }
