:root {
    --black: #161413;
    --charcoal: #211e1c;
    --cream: #F5EFE3;
    --red: #C8102E;
    --red-dark: #9c0c23;
    --green: #009639;
    --green-dark: #00702a;
    --gold: #FFB81C;
    --white: #ffffff;
    --max: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
.display {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}


/* ---------- Flag stitch divider (signature element) ---------- */

.flagstitch {
    display: flex;
    width: 100%;
    height: 10px;
}

.flagstitch span {
    flex: 1;
    height: 100%;
}

.flagstitch .it1 {
    background: var(--green);
}

.flagstitch .it2 {
    background: var(--white);
}

.flagstitch .it3 {
    background: var(--red);
}

.flagstitch .ja1 {
    background: var(--black);
}

.flagstitch .ja2 {
    background: var(--gold);
}

.flagstitch .ja3 {
    background: var(--green);
}


/* ---------- Header ---------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(22, 20, 19, 0.92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
    max-width: var(--max);
    margin: 0 auto;
    padding: 10px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-logo {
    justify-self: start;
}

.nav-links-wrap {
    justify-self: center;
}

.nav-logo img {
    height: 46px;
    width: auto;
    max-width: none;
}

.nav-links {
    display: flex;
    gap: 22px;
    list-style: none;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--red);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--red-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    font-size: 1.8rem;
    cursor: pointer;
}

@media(max-width:980px) {
    .nav {
        grid-template-columns: 1fr auto;
    }
    .nav-links-wrap {
        display: none;
    }
    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid rgba(43, 36, 32, 0.08);
    }
    .nav-links.open {
        max-height: 400px;
    }
    .nav-links-wrap.open {
        display: block;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 16px 24px;
    }
    .nav-toggle {
        display: block;
    }
    .nav-cta {
        display: none;
    }
}


/* ---------- Hero ---------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.72) 55%, var(--black) 100%), url('images/grill-hero.jpg') center 30%/cover no-repeat;
}

.hero-inner {
    padding: 40px 24px 80px;
    max-width: 860px;
}

.hero-icon {
    height: 170px;
    width: auto;
    margin: 0 auto 12px;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.5));
}

.hero-eyebrow {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero h1 .accent-red {
    color: var(--red);
}

.hero h1 .accent-gold {
    color: var(--gold);
}

.hero h1 .accent-green {
    color: var(--green);
}

.accent-red {
    color: var(--red);
}

.accent-gold {
    color: var(--gold);
}

.accent-green {
    color: var(--green);
}

.about-black {
    color: var(--black);
}

.fw-bold {
    font-weight: 700;
}

.hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(245, 239, 227, 0.9);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: opacity 0.15s ease;
}

.btn:hover {
    opacity: 0.88;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(200, 16, 46, 0.35);
}

.btn-primary:hover {
    background: var(--red-dark);
    opacity: 1;
}

.btn-secondary {
    background: var(--gold);
    color: var(--black);
    border: none;
}

.btn-secondary:hover {
    background: var(--gold);
    opacity: 0.88;
}


/* ---------- Unified Order Section ---------- */

.order-unified {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
}

.flagstitch#callin {
    scroll-margin-top: 68px;
}

.flagstitch#about {
    scroll-margin-top: 68px;
}

.closure-banner {
    background: var(--gold);
    padding: 18px 24px;
    text-align: center;
    margin-top: 68px;
}

.closure-eyebrow {
    display: block;
    font-family: 'Anton', sans-serif;
    color: var(--black);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.closure-text {
    color: var(--black);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.ou-callin {
    margin-bottom: 48px;
}

.ou-callin .eyebrow {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.ou-phone {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.15s ease;
}

.ou-phone:hover {
    color: var(--gold);
}

.ou-sub {
    color: rgba(245, 239, 227, 0.7);
    font-size: 0.98rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.ou-photo {
    display: block;
    width: 220px;
    height: auto;
    margin: 28px auto 0;
    border-radius: 2px;
}

.ou-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 760px;
    margin: 48px auto;
}

.ou-divider-line {
    flex: 1;
    height: 1px;
    background: rgba(245, 239, 227, 0.2);
}

.ou-divider-label {
    color: rgba(245, 239, 227, 0.5);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ou-delivery .eyebrow {
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.ou-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.ou-delivery .ou-sub {
    margin-bottom: 48px;
}

section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.eyebrow {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: block;
}

.section-head h2 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: var(--white);
}

.cat-form-section .section-head h2 {
    color: var(--green);
}

.cat-packages-section .section-head h2 {
    color: var(--red);
}

.section-head p {
    margin-top: 16px;
    color: rgba(245, 239, 227, 0.75);
    font-size: 1.05rem;
}

.events {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(115deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.55) 45%, rgba(10, 9, 8, 0.8) 100%), url('images/events-bg-flag.jpg') center/cover no-repeat;
}

.events .section-head h2 {
    color: var(--red);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
}

.event-card {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
}

.event-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top center;
}

.event-card-body {
    padding: 24px 24px 28px;
}

.event-card-body h3 {
    font-family: 'Anton', sans-serif;
    text-transform: none;
    font-size: 1.3rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 8px;
}

.event-tags {
    color: var(--gold);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 16px;
}

.event-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-details li {
    color: rgba(245, 239, 227, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 6px;
}

.event-details li strong {
    color: var(--white);
    font-weight: 600;
}

.event-note {
    color: rgba(245, 239, 227, 0.55);
    font-style: italic;
    font-size: 0.88rem;
}

@media(max-width:760px) {
    .events {
        padding: 70px 0;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .event-card img {
        height: 320px;
    }
}


/* ---------- About ---------- */


/* ---------- About / Our Story ---------- */

.about {
    background-color: #f0eeeb;
    background-image: url('images/bg-marble.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow: hidden;
    padding: 0 0 80px;
}


/* Remove CSS veining overlay — using real marble now */

.about::before {
    display: none;
}

.about-flags {
    width: 100%;
    padding: 24px 0 0 40px;
    position: relative;
    z-index: 1;
}

.about-flags img {
    height: 80px;
    width: auto;
    max-width: 60%;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.about-photo-new {
    position: relative;
}

.about-photo-new img {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.about-text-new {
    padding: 40px 20px 20px 40px;
}

.about-text-new .eyebrow {
    text-align: left;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 3px;
}

.about-text-new h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 24px;
    line-height: 1.0;
}

.about-text-new p {
    color: rgba(43, 36, 32, 0.8);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-text-new p a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.about-text-new p a:hover {
    color: var(--red-dark);
}

.about-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--black);
    margin: 24px 0 0;
    padding-left: 18px;
    border-left: 2px solid var(--gold);
}

.about-quote-cite {
    display: block;
    margin-top: 10px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(43, 36, 32, 0.8);
}

.text-gold {
    color: var(--gold);
}

@media(max-width:860px) {
    .about {
        padding: 0 0 60px;
    }
    .about-flags img {
        max-width: 90%;
        height: 60px;
    }
    .about-layout {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 0;
    }
    .about-photo-new {
        max-width: 480px;
        margin: 0 auto;
    }
    .about-text-new {
        padding: 24px 0 0;
    }
    .about-text-new h2 {
        color: var(--black);
    }
}


/* ---------- Menu ---------- */

section.about {
    padding: 0 0 80px;
}

.menu {
    background: var(--black);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
}

@media(max-width:760px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.menu-item {
    border-bottom: 1px solid rgba(245, 239, 227, 0.12);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.menu-item-head h3 {
    color: var(--red);
    font-size: 1.4rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.3px;
    text-transform: none;
}

.menu-price {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-item p {
    color: rgba(245, 239, 227, 0.75);
    margin-top: 8px;
    font-size: 0.98rem;
}

.menu-callout {
    margin-top: 8px;
    background: var(--charcoal);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.menu-callout span.label {
    font-weight: 700;
    color: var(--cream);
}

.menu-callout span.price {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
}

.menu-footnote {
    text-align: center;
    margin-top: 50px;
    color: rgba(245, 239, 227, 0.6);
    font-size: 0.95rem;
}

.footnote-asterisk {
    color: var(--red);
    font-weight: 700;
}


/* ---------- Order Online ---------- */

.order {
    background: var(--charcoal);
    text-align: center;
}

.order-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 680px;
    margin: 0 auto;
}

@media(max-width:600px) {
    .order-cards {
        grid-template-columns: 1fr;
    }
}

.order-card {
    background: var(--black);
    border-radius: 10px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.order-card:hover {
    transform: translateY(-4px);
}

.order-card.ubereats {
    border-top: 4px solid #06C167;
}

.order-card.doordash {
    border-top: 4px solid #FF3008;
}

.order-card-logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.order-card.ubereats .order-card-logo {
    color: #06C167;
}

.order-card.doordash .order-card-logo {
    color: #FF3008;
}

.order-card p {
    color: rgba(245, 239, 227, 0.65);
    font-size: 0.9rem;
}

.order-card .btn {
    width: 100%;
    justify-content: center;
}

.order-card.ubereats .btn {
    background: #06C167;
    color: #0a0a0a;
}

.order-card.doordash .btn {
    background: #FF3008;
    color: var(--white);
}

.order-note {
    margin-top: 36px;
    color: rgba(245, 239, 227, 0.6);
    font-size: 0.9rem;
}


/* ---------- Hours & Location ---------- */


/* ---------- Hours & Location ---------- */

.visit {
    background: var(--charcoal);
    padding: 0;
}

section.visit {
    padding: 0;
}

.visit-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    align-items: start;
}

.visit-cell {
    padding: 94px 86px;
}

.visit-cell-divider {
    background: rgba(245, 239, 227, 0.1);
    align-self: stretch;
}

.visit-cell-title {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 239, 227, 0.08);
    font-size: 0.98rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: rgba(245, 239, 227, 0.7);
}

.hours-row span:last-child {
    font-weight: 600;
}

.visit-phone {
    margin-top: 18px;
    margin-bottom: 20px;
}

.visit-phone a {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
}

.visit-phone.tel b {
    color: var(--gold);
}

.visit-cell address {
    font-style: normal;
    color: rgba(245, 239, 227, 0.8);
    margin-bottom: 24px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.locations-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 20px;
}

.location-col-title {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.location-card address {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(245, 239, 227, 0.1);
}

.map-embed iframe {
    width: 100%;
    height: 240px;
    border: 0;
    display: block;
}

@media(max-width:860px) {
    .visit-split {
        grid-template-columns: 1fr;
    }
    .visit-cell-divider {
        height: 1px;
        width: 100%;
    }
    .visit-cell {
        padding: 48px 28px;
    }
}

@media(max-width:560px) {
    .locations-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* ---------- Footer ---------- */

footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 0 30px;
    text-align: center;
}

footer img {
    height: 53px;
    width: auto;
    margin: 0 auto 18px;
}

.footer-links {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 20px 0;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(245, 239, 227, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-copy {
    color: rgba(245, 239, 227, 0.55);
    font-size: 0.82rem;
    margin-top: 20px;
}


/* reduced motion */

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


/* focus visibility */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 12px;
    z-index: 1000;
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}


/* ---------- Rum Bar ---------- */

.rumbar {
    background: var(--charcoal);
    position: relative;
}

.rumbar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
}

@media(max-width:760px) {
    .rumbar-grid {
        grid-template-columns: 1fr;
    }
}

.rum-item {
    border-bottom: 1px solid rgba(245, 239, 227, 0.12);
    padding-bottom: 22px;
    margin-bottom: 22px;
}

.rum-item:last-child {
    border-bottom: none;
}

.rum-item.no-divider {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 6px;
}

.rum-item-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.rum-item-head h3 {
    color: var(--gold);
    font-size: 1.3rem;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.3px;
    text-transform: none;
}

.rum-price {
    color: var(--red);
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    white-space: nowrap;
}

.rum-item p {
    color: rgba(245, 239, 227, 0.7);
    margin-top: 6px;
    font-size: 0.95rem;
}

.rum-cat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
}


/* Menu section sub-headings */

.menu-section-head {
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--red);
}

.menu .section-head h2 {
    color: var(--green);
}

.menu-cat-title {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: var(--green);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.menu-cat-note {
    color: rgba(253, 251, 247, 0.65);
    font-size: 0.88rem;
    line-height: 1.5;
}


/* S/M/L price sizing */

.menu-price-sizes {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.menu-price-sizes span {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    font-size: 0.82rem;
    white-space: nowrap;
}


/* Menu tag (Fri Only, Sat+Sun, Vegan) */

.menu-tag {
    display: inline-block;
    background: rgba(255, 184, 28, 0.15);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 7px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    font-family: 'Inter', sans-serif;
}


/* Pasta bowl builder */

.pasta-bowl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media(max-width:900px) {
    .pasta-bowl-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .pasta-bowl-grid {
        grid-template-columns: 1fr;
    }
}

.pasta-bowl-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(253, 251, 247, 0.1);
    border-radius: 8px;
    padding: 20px;
}

.pasta-step-num {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 6px;
}

.pasta-bowl-step h4 {
    font-family: 'Anton', sans-serif;
    text-transform: none;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.pasta-bowl-step ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pasta-bowl-step ul li {
    color: rgba(253, 251, 247, 0.75);
    font-size: 0.88rem;
    line-height: 1.4;
}


/* Sides grid */

.sides-wrap {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0 32px;
    margin-bottom: 32px;
}

@media(max-width:560px) {
    .sides-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sides-divider {
        display: none;
    }
}

.sides-col {
    display: flex;
    flex-direction: column;
}

.sides-divider {
    background: var(--green);
    width: 2px;
    align-self: stretch;
}

.side-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(253, 251, 247, 0.12);
    font-size: 0.92rem;
    color: rgba(253, 251, 247, 0.8);
}

.side-item:last-child {
    border-bottom: none;
}

.side-item.no-divider {
    border-bottom: none;
}

.side-price {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0;
}


/* Bar section dividers */

.bar-section-head {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--red);
    letter-spacing: 0.5px;
    margin: 40px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200, 16, 46, 0.3);
}

.bar-section-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(253, 251, 247, 0.5);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
}


/* Wine sizes */

.wine-sizes {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.wine-sizes span {
    color: var(--red);
    font-family: 'Anton', sans-serif;
    font-size: 0.82rem;
}


/* Happy hour banner */

.happy-hour-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--red);
    border-radius: 8px;
    padding: 16px 28px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hh-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
}

.hh-deal {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hh-time {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}


/* NA item price */

.na-price {
    color: var(--gold);
    font-family: 'Anton', sans-serif;
    font-size: 0.88rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.na-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 50px 0 30px;
}

.na-divider::before,
.na-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(245, 239, 227, 0.15);
}

.na-divider-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
}

.na-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 32px;
}

@media(max-width:760px) {
    .na-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .na-grid {
        grid-template-columns: 1fr;
    }
}

.na-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 239, 227, 0.08);
}

.na-name {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.na-sub {
    color: rgba(245, 239, 227, 0.55);
    font-size: 0.8rem;
    font-weight: 400;
}

.drinks-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 32px;
    margin-bottom: 32px;
}

.drinks-col {
    display: flex;
    flex-direction: column;
}

@media(max-width:760px) {
    .drinks-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }
}

@media(max-width:560px) {
    .drinks-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }
}


/* ---------- Catering Page ---------- */

.cat-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.65) 60%, var(--black) 100%), url('images/bg-marble.jpg') center top/cover no-repeat;
}

.cat-hero-inner {
    padding: 80px 24px 56px;
    max-width: 760px;
}

.cat-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.cat-hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(245, 239, 227, 0.9);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cat-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media(max-width:900px) {
    .cat-packages {
        grid-template-columns: 1fr;
    }
}

.cat-card {
    background: var(--charcoal);
    border-radius: 10px;
    padding: 36px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cat-card.featured {
    border-color: var(--gold);
    position: relative;
}

.cat-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}

.cat-card h3 {
    color: var(--red);
    font-size: 1.5rem;
}

.cat-card .cat-price {
    font-family: 'Anton', sans-serif;
    color: var(--gold);
    font-size: 1.6rem;
}

.cat-card .cat-price span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: rgba(245, 239, 227, 0.6);
    font-weight: 500;
    text-transform: none;
}

.cat-card ul {
    list-style: none;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cat-card ul li {
    color: rgba(245, 239, 227, 0.8);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.cat-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.cat-card .btn {
    margin-top: 10px;
    text-align: center;
    justify-content: center;
}

.cat-packages-section {
    background: var(--charcoal);
    padding: 100px 0;
}

.cat-packages-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cat-pkg {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: start;
}

.cat-pkg.featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.cat-pkg-head {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(245, 239, 227, 0.1);
    padding-bottom: 18px;
    margin-bottom: 4px;
}

.cat-pkg-letter {
    display: block;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 6px;
}

.cat-pkg-head h3 {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.cat-pkg-serves {
    display: block;
    color: rgba(245, 239, 227, 0.6);
    font-size: 0.9rem;
}

.cat-pkg-price {
    font-family: 'Anton', sans-serif;
    color: var(--gold);
    font-size: 2rem;
    text-align: right;
    white-space: nowrap;
}

.cat-pkg-price span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: rgba(245, 239, 227, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cat-pkg ul {
    grid-column: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.cat-pkg ul li {
    color: rgba(245, 239, 227, 0.8);
    font-size: 0.95rem;
    padding-left: 20px;
    position: relative;
}

.cat-pkg ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.cat-pkg .btn {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    white-space: nowrap;
}

@media(max-width:700px) {
    .cat-pkg {
        grid-template-columns: 1fr;
    }
    .cat-pkg-price {
        text-align: left;
    }
    .cat-pkg ul {
        grid-column: 1;
    }
    .cat-pkg .btn {
        grid-column: 1;
        grid-row: auto;
        align-self: flex-start;
        margin-top: 6px;
    }
}

.cat-how {
    background: var(--black);
}

.cat-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media(max-width:900px) {
    .cat-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .cat-steps {
        grid-template-columns: 1fr;
    }
}

.cat-step {
    text-align: center;
}

.cat-step-num {
    font-family: 'Anton', sans-serif;
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.cat-step h4 {
    font-family: 'Anton', sans-serif;
    text-transform: none;
    color: var(--red);
    font-size: 1.3rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cat-step p {
    color: rgba(245, 239, 227, 0.7);
    font-size: 0.92rem;
}

.cat-form-section {
    background: var(--charcoal);
}

.cat-call-box {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px 40px;
}

.cat-call-number {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cat-call-number:hover {
    color: var(--gold);
}

.cat-call-hours {
    color: rgba(245, 239, 227, 0.75);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cat-call-note {
    color: rgba(245, 239, 227, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media(max-width:600px) {
    .cat-call-box {
        padding: 36px 24px;
    }
}

.cat-form {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media(max-width:600px) {
    .cat-form-row {
        grid-template-columns: 1fr;
    }
}

.cat-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(245, 239, 227, 0.7);
    margin-bottom: 8px;
}

.cat-form input,
.cat-form select,
.cat-form textarea {
    width: 100%;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 14px 16px;
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
}

.cat-form input:focus,
.cat-form select:focus,
.cat-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.cat-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cat-form .btn {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}


/* Menu section price override — scoped to .menu so Rum Bar prices are unaffected */

.menu .menu-price,
.menu .menu-price-sizes span,
.menu .side-price,
.menu .na-price {
    font-size: 1.2rem;
    font-weight: 100;
}


/* Rum Bar section price override */

.rumbar .rum-price,
.rumbar .na-price {
    font-size: 1.2rem;
    font-weight: 100;
}

.rumbar .na-price {
    color: var(--red);
}

.rumbar .wine-sizes span {
    font-size: 1.2rem;
}

.rumbar .wine-sizes {
    gap: 8px;
}