/* ===========================
   Sports, Spirits & Steaks — V2 Design System
   Completely new layout language:
   - Left-aligned hero with vertical stats sidebar
   - Horizontal entertainment strip
   - Asymmetric menu mosaic (hero card + 2-col grid)
   - Full-width narrative about with stat counter bar
   - 3-col masonry gallery (no tall spanning)
   - Single featured review slider with prev/next
   - Combined 3-part info section (hours + map + contact)
   - Amber CTA banner
   - No section-label + divider + h2 + subtitle pattern
   =========================== */

:root {
    /* Brand navy palette */
    --color-dark: #0B1D33;
    --color-dark-alt: #071428;
    --color-surface: #132744;
    --color-surface-light: #1C3558;

    /* Cool light backgrounds */
    --color-warm: #F0F2F7;
    --color-warm-alt: #E6E9F0;
    --color-cream: #FAFBFD;

    /* Brand red accent */
    --color-amber: #C41E22;
    --color-amber-light: #D93B3B;
    --color-amber-dark: #9C1218;

    /* Navy accent — based on brand #003e7e */
    --color-navy-accent: #1B5091;

    /* Utility colors */
    --color-white: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --color-text-muted: rgba(255, 255, 255, 0.5);
    --color-text-dark: #1a1a1a;
    --color-text-dark-muted: #6b6b6b;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-warm: rgba(0, 0, 0, 0.07);

    /* Typography */
    --font-heading: 'Belleza', 'Didact Gothic', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-width: 1140px;
    --header-height: 72px;

    /* Motion */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Rounded corners */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;

    /* Shadows */
    --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.10);
    --shadow-elevated: 0 12px 48px rgba(0, 0, 0, 0.14);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-warm);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

.site-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    position: relative;
}

a {
    color: var(--color-navy-accent);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

a:hover {
    color: var(--color-amber-dark);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    box-sizing: border-box;
}

/* ===========================
   Typography — varied heading treatments per section
   =========================== */
h1,
h2 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.03em;
}

h3,
h4 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

/* Overline tag — replaces uniform section-label + divider */
.overline-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-amber-dark);
    margin-bottom: 12px;
}

.overline-light {
    color: var(--color-amber-dark);
}

section {
    padding: 100px 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--color-amber);
    color: var(--color-dark);
}

.btn-primary:hover {
    background: var(--color-amber-light);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(196, 30, 34, 0.3);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-amber);
    border-radius: var(--radius-sm);
}

.btn-dark:hover {
    background: var(--color-surface);
    color: var(--color-amber-light);
    transform: translateY(-2px);
}

.btn-dark-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-dark-outline:hover {
    background: var(--color-dark);
    color: var(--color-amber);
}

.btn-lg {
    padding: 16px 44px;
    font-size: 0.88rem;
}

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

/* ===========================
   Header
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s var(--ease);
}

.header.scrolled {
    background: rgba(7, 20, 40, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.58rem;
    color: var(--color-amber);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    transition: color 0.3s var(--ease);
}

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

.nav-cta {
    background: var(--color-amber) !important;
    color: var(--color-dark) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    border-radius: var(--radius-xs) !important;
    letter-spacing: 0.5px !important;
}

.nav-cta:hover {
    background: var(--color-amber-light) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* ===========================
   Mobile CTA Bar
   =========================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-dark-alt);
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    gap: 10px;
}

.mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xs);
}

.mobile-cta-call {
    background: var(--color-amber);
    color: var(--color-dark);
}

.mobile-cta-directions {
    background: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-border);
}

/* ===========================
   HERO — Left-aligned text + vertical stats sidebar on right
   NOT centered like Kitty's
   =========================== */
.hero {
    position: relative;
    background: var(--color-dark);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(7, 20, 40, 0.75) 0%,
            rgba(7, 20, 40, 0.5) 40%,
            rgba(7, 20, 40, 0.85) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--color-dark) url('https://images.pexels.com/photos/3851903/pexels-photo-3851903.jpeg?auto=compress&cs=tinysrgb&w=1920') center center / cover no-repeat;
    z-index: 0;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    padding-top: 140px;
    padding-bottom: 100px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-overline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-amber);
    margin-bottom: 28px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 28px;
    line-height: 1.08;
    text-align: left;
}

.hero h1 em {
    font-style: italic;
    font-family: var(--font-serif);
    color: var(--color-amber);
    font-weight: 600;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 0 44px;
    line-height: 1.8;
    font-weight: 400;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Vertical stats bar on the right side of hero */
.hero-stats-bar {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 160px;
    flex-shrink: 0;
    border-left: 2px solid rgba(196, 30, 34, 0.25);
}

.hero-stat {
    padding: 24px 0 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.hero-stat:last-child {
    border-bottom: none;
}

.hero-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-amber);
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

/* ===========================
   ENTERTAINMENT STRIP — Horizontal row, NOT a traditional section
   =========================== */
.entertainment-strip {
    background: var(--color-cream);
    border-top: 1px solid var(--color-border-warm);
    border-bottom: 1px solid var(--color-border-warm);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.entertainment-strip::-webkit-scrollbar {
    display: none;
}

.entertainment-strip-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 28px;
    min-width: max-content;
    max-width: var(--max-width);
    margin: 0 auto;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 40px;
    white-space: nowrap;
    transition: background 0.3s var(--ease);
}

.strip-item:hover {
    background: rgba(0, 0, 0, 0.03);
}

.strip-icon {
    color: var(--color-amber-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strip-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.strip-text strong {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.strip-text span {
    color: var(--color-text-dark-muted);
    font-size: 0.72rem;
    font-weight: 400;
}

.strip-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border-warm);
    flex-shrink: 0;
}

/* ===========================
   MENU — Hero card left + 2-column smaller cards right
   NOT a uniform 3x2 grid
   =========================== */
.menu-section {
    background: var(--color-warm);
    color: var(--color-text-dark);
}

/* Menu header: left-aligned overline + h2 */
.menu-header {
    margin-bottom: 48px;
}

.menu-header h2 {
    text-align: left;
    color: var(--color-text-dark);
    margin-bottom: 0;
}

/* Mosaic layout: big card left, 2x2 grid right */
.menu-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* The big hero card (steaks) */
.menu-hero-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease);
}

.menu-hero-card:hover {
    box-shadow: var(--shadow-elevated);
    transform: translateY(-4px);
}

.menu-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    transition: transform 0.6s var(--ease);
}

.menu-hero-card:hover .menu-hero-bg {
    transform: scale(1.05);
}

.menu-hero-overlay {
    position: relative;
    z-index: 1;
    padding: 36px 32px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85) 40%);
}

.menu-hero-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-amber);
    background: rgba(196, 30, 34, 0.12);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    margin-bottom: 14px;
    border: 1px solid rgba(196, 30, 34, 0.2);
}

.menu-hero-overlay h3 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu-hero-overlay p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 360px;
}

/* 2-column smaller cards grid */
.menu-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.menu-small-card {
    background: var(--color-cream);
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--color-border-warm);
    transition: all 0.35s var(--ease);
    position: relative;
    box-shadow: var(--shadow-card);
}

.menu-small-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--color-amber);
}

.menu-small-icon {
    color: var(--color-amber-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.menu-small-card h4 {
    color: var(--color-text-dark);
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.menu-small-card p {
    color: var(--color-text-dark-muted);
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--color-amber-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Drinks bar — full width below menu mosaic */
.menu-drinks-bar {
    margin-top: 24px;
}

.drinks-bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-dark);
    border-radius: var(--radius);
    padding: 24px 32px;
}

.drinks-icon {
    color: var(--color-amber);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.drinks-bar-inner strong {
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.drinks-bar-inner span {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    font-weight: 400;
}

/* ===========================
   ABOUT — Full-width narrative + horizontal stat bar
   NOT a split text+image layout
   =========================== */
.about-section {
    background: #EEF1F7;
    color: var(--color-text-dark);
}

.about-narrative {
    max-width: 720px;
    margin-bottom: 56px;
}

.about-narrative h2 {
    text-align: left;
    color: var(--color-text-dark);
    margin-bottom: 28px;
}

.about-lead {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-narrative > p:last-of-type {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Horizontal stat counters bar */
.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-border-warm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border-right: 1px solid var(--color-border-warm);
    transition: background 0.3s var(--ease);
}

.about-stat-item:last-child {
    border-right: none;
}

.about-stat-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.about-stat-icon {
    color: var(--color-amber-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.about-stat-item strong {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-stat-item span {
    color: var(--color-text-dark-muted);
    font-size: 0.7rem;
    font-weight: 400;
}

/* ===========================
   GALLERY — Sectioned grid with category labels
   =========================== */
.gallery-section {
    background: var(--color-warm);
    color: var(--color-text-dark);
    padding: 100px 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 56px;
}

.gallery-header h2 {
    color: var(--color-text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.gallery-header p {
    color: var(--color-text-dark-muted);
    font-size: 0.95rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.gallery-category {
    margin-bottom: 48px;
}

.gallery-category:last-child {
    margin-bottom: 0;
}

.gallery-cat-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-navy-accent);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.gallery-grid {
    display: grid;
    gap: 16px;
}

.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: all 0.35s var(--ease);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.gallery-grid-3 .gallery-item img {
    height: 240px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 40px 14px 14px;
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ===========================
   REVIEWS — Single large featured testimonial with prev/next
   NOT a 3-column grid
   =========================== */
.reviews-section {
    background: var(--color-warm-alt);
    padding: 100px 0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    align-items: center;
}

/* Reviews header: left side, stacked — different heading treatment */
.reviews-header {
    text-align: left;
}

.reviews-header h2 {
    text-align: left;
    color: var(--color-text-dark);
    margin-bottom: 0;
    line-height: 1.15;
}

.review-featured {
    position: relative;
}

.review-featured-card {
    background: var(--color-cream);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius);
    padding: 48px 44px;
    min-height: 280px;
    position: relative;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
    animation: fadeSlide 0.5s var(--ease);
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review-quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: var(--color-amber);
    opacity: 0.15;
    line-height: 0.8;
    position: absolute;
    top: 20px;
    left: 36px;
}

.review-text {
    color: var(--color-text-dark-muted);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.85;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.review-attribution {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.review-attribution strong {
    font-size: 0.9rem;
    color: var(--color-text-dark);
    font-weight: 600;
}

.review-attribution span {
    font-size: 0.7rem;
    color: var(--color-text-dark-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-stars-row {
    display: flex;
    gap: 3px;
}

.review-stars-row span {
    color: #D4A853;
    font-size: 0.9rem;
}

/* Review navigation */
.review-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.review-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border: 1px solid var(--color-border-warm);
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-dark);
    transition: all 0.3s var(--ease);
}

.review-nav-btn:hover {
    border-color: var(--color-amber);
    color: var(--color-amber-dark);
    background: var(--color-white);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.review-dot.active {
    background: var(--color-amber-dark);
    width: 24px;
    border-radius: 4px;
}

/* ===========================
   INFO SECTION — Hours + Map + Contact Form combined
   3-part horizontal layout, NOT separate sections
   =========================== */
.info-section {
    background: #EEF1F7;
    color: var(--color-text-dark);
    padding: 100px 0;
}

/* Info topline — centered h2 only, no label or divider */
.info-topline {
    text-align: center;
    margin-bottom: 48px;
}

.info-topline h2 {
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.info-panel {
    background: var(--color-white);
    border: 1px solid var(--color-border-warm);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
}

.info-hours h3 {
    color: var(--color-navy-accent);
    font-size: 1rem;
    margin-bottom: 24px;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border-warm);
}

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

.hours-row .day {
    color: var(--color-text-dark);
    font-weight: 400;
}

.hours-row .time {
    color: var(--color-navy-accent);
    font-weight: 600;
}

.hours-note {
    font-size: 0.75rem;
    color: var(--color-text-dark-muted);
    font-style: italic;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border-warm);
}

.info-address p {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.info-address a {
    color: var(--color-navy-accent);
}

.info-address a:hover {
    color: var(--color-amber-dark);
}

.info-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark-muted);
    font-size: 0.78rem;
    margin-top: 8px;
    transition: color 0.3s var(--ease);
}

.info-social a:hover {
    color: var(--color-navy-accent);
}

/* Map panel */
.info-map {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    min-height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    border-radius: var(--radius) var(--radius) 0 0;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #E0E6F0;
    color: var(--color-navy-accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s var(--ease);
    border-radius: 0 0 var(--radius) var(--radius);
}

.map-link:hover {
    background: #D4DCE8;
    color: var(--color-amber-dark);
}

/* Contact form panel */
.info-contact h3 {
    color: var(--color-navy-accent);
    font-size: 1rem;
    margin-bottom: 20px;
}

.compact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--color-text-dark-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border-warm);
    background: var(--color-white);
    color: var(--color-text-dark);
    font-size: 0.85rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s var(--ease);
    border-radius: var(--radius-xs);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--color-navy-accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.form-field select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 40px;
}

.form-field select option {
    background: var(--color-white);
    color: var(--color-text-dark);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-micro {
    text-align: center;
    color: var(--color-text-dark-muted);
    font-size: 0.7rem;
    margin-top: 4px;
}

/* ===========================
   AMBER CTA BANNER — Full-width before footer
   =========================== */
.cta-banner {
    background: var(--color-amber);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 14px,
        rgba(255, 255, 255, 0.04) 14px,
        rgba(255, 255, 255, 0.04) 28px
    );
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner-text h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.cta-banner-text p {
    color: rgba(11, 29, 51, 0.55);
    font-size: 0.95rem;
}

.cta-banner-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}

/* ===========================
   Footer — 3-column grid, dark
   =========================== */
.footer {
    background: var(--color-dark-alt);
    padding: 56px 0 32px;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.footer-brand strong {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.78rem;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

.footer-nav a:hover {
    color: var(--color-white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-contact > a {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    transition: color 0.3s var(--ease);
}

.footer-contact > a:hover {
    color: var(--color-white);
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-muted);
    font-size: 0.78rem;
    transition: color 0.3s var(--ease);
}

.footer-social-link:hover {
    color: var(--color-amber);
}

.footer-copy {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.72rem;
}

/* ===========================
   Scroll Animations
   =========================== */
.animate-target {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-target.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-target:nth-child(2) {
    transition-delay: 0.08s;
}

.animate-target:nth-child(3) {
    transition-delay: 0.16s;
}

.animate-target:nth-child(4) {
    transition-delay: 0.24s;
}

.section-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-reveal.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Responsive — Tablet (max-width: 1024px)
   =========================== */
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        gap: 40px;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 44px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats-bar {
        flex-direction: row;
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(196, 30, 34, 0.25);
    }

    .hero-stat {
        padding: 20px 24px;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        text-align: center;
        flex: 1;
    }

    .hero-stat:last-child {
        border-right: none;
    }

    .menu-mosaic {
        grid-template-columns: 1fr;
    }

    .menu-hero-card {
        min-height: 360px;
    }

    .menu-small-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stat-item:nth-child(2) {
        border-right: none;
    }

    .about-stat-item:nth-child(1),
    .about-stat-item:nth-child(2) {
        border-bottom: 1px solid var(--color-border-warm);
    }

    .gallery-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 200px;
    }

    .gallery-grid-3 .gallery-item img {
        height: 220px;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reviews-header {
        text-align: center;
    }

    .reviews-header h2 {
        text-align: center;
    }

    .reviews-header h2 br {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-map {
        grid-column: 1 / -1;
        order: -1;
    }

    .map-wrapper {
        min-height: 250px;
    }
}

/* ===========================
   Responsive — Mobile (max-width: 768px)
   =========================== */
@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: var(--color-dark-alt);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 0;
        transition: right 0.35s var(--ease);
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.4);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 0.85rem;
    }

    .nav-cta {
        margin-top: 16px;
        text-align: center;
        display: block !important;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-layout {
        padding-top: 110px;
        padding-bottom: 56px;
    }

    .hero-stats-bar {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 45%;
        padding: 16px;
    }

    .entertainment-strip-track {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .strip-item {
        padding: 20px 24px;
    }

    .menu-small-grid {
        grid-template-columns: 1fr;
    }

    .menu-header h2 {
        text-align: center;
    }

    .about-narrative {
        text-align: center;
    }

    .about-narrative h2 {
        text-align: center;
    }

    .about-stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-caption {
        opacity: 1;
    }

    .gallery-item img {
        height: 180px;
    }

    .gallery-grid-3 .gallery-item img {
        height: 200px;
    }

    .review-featured-card {
        padding: 36px 28px;
    }

    .review-text {
        font-size: 0.95rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-map {
        order: 0;
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .mobile-cta {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-contact {
        align-items: center;
    }

    body {
        padding-bottom: 70px;
    }

    .drinks-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ===========================
   Responsive — Small Mobile (max-width: 480px)
   =========================== */
@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats-bar {
        flex-direction: column;
    }

    .hero-stat {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 14px 20px;
        flex-direction: row;
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .hero-stat:last-child {
        border-bottom: none;
    }

    .about-stats-bar {
        grid-template-columns: 1fr;
    }

    .about-stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--color-border-warm);
    }

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

    .gallery-grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item img,
    .gallery-grid-3 .gallery-item img {
        height: 200px;
    }

    .strip-item {
        padding: 16px 20px;
        gap: 12px;
    }

    .review-featured-card {
        padding: 28px 20px;
    }
}