/* ============================================
   Uncle John's BBQ - Stylesheet
   Mobile-first, rustic BBQ design
   ============================================ */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Rustic BBQ Theme */
    --color-deep-red: #8B2E2E;
    --color-red: #A52A2A;
    --color-charcoal-dark: #1A1A1A;
    --color-charcoal: #2C2C2C;
    --color-wood-dark: #8B6F47;
    --color-wood: #D2B48C;
    --color-off-white: #FAF8F3;
    --color-cream: #F5F1E8;
    --color-white: #FFFFFF;
    --color-text-dark: #2C2C2C;
    --color-text-light: #666666;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-charcoal-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--color-deep-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-red);
}

a:focus {
    outline: 2px solid var(--color-deep-red);
    outline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 120px;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-deep-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.btn-secondary {
    background-color: var(--color-charcoal);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-charcoal-dark);
    color: var(--color-white);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Site Header */
.site-header {
    background-color: var(--color-cream);
    border-bottom: 1px solid rgba(139, 46, 46, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Solid background ensures readability without depending on hero imagery */
}

.site-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 72px;
}

.site-header-logo {
    flex-shrink: 0;
}

.site-header-logo-link {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.site-header-logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.site-header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-header-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.site-header-link:hover {
    color: var(--color-deep-red);
}

.site-header-link:focus {
    outline: 2px solid var(--color-deep-red);
    outline-offset: 2px;
    border-radius: 2px;
}

.site-header-link-active {
    color: var(--color-deep-red);
    font-weight: 600;
}

.site-header-link-cta {
    background-color: var(--color-deep-red);
    color: var(--color-white);
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
}

.site-header-link-cta:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.site-header-link-cta.site-header-link-active {
    background-color: var(--color-red);
    color: var(--color-white);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
    /* Content-driven height: no forced min-height on mobile, allows natural stacking */
}

.hero-split {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    align-items: stretch;
    /* Content-driven height on mobile: no forced min-height allows natural content flow */
}

.hero-content-panel {
    flex: 0 0 auto;
    background-color: var(--color-off-white);
    padding: 2.5rem 1rem;
    display: flex;
    align-items: center;
    position: relative;
    /* Reduced padding creates compact, intentional hero without excess whitespace */
}

.hero-content-panel::after {
    content: '';
    display: none;
    /* Angled edge will be added on desktop */
}

.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Container centers content horizontally, height: 100% ensures vertical centering works */
}

.hero-content-inner {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    /* Inner wrapper: max-width constrains text block, compact gap for 50vh container */
    padding-left: 0;
}

.hero-image-panel {
    flex: 1 1 auto;
    min-height: 45vh;
    width: 100%;
    background-image: url('images/uncle-johns-bbq-hero.jpg');
    background-size: cover;
    background-position: center 85%;
    background-repeat: no-repeat;
    /* Image panel fills available space, maintains aspect ratio, roofline near top edge */
    display: block;
    /* Explicit width ensures background image displays even with empty content */
}

/* Removed unused classes: top-bar-flex, top-bar-left, hero-logo-link, hero-logo, hero-catering-top */

.hero-eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    /* Dark text color for readability on light content panel */
    color: var(--color-deep-red);
    margin: 0;
    /* Increased letter-spacing improves small-text clarity without changing design system */
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 1.4;
    /* Text shadow removed - not needed on solid light background */
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    /* Dark text color for readability on light content panel */
    color: var(--color-charcoal-dark);
    margin: 0;
    line-height: 1.1;
    /* Increased font-weight strengthens typographic presence without changing font family or size */
    font-weight: 700;
    /* Text shadow removed - not needed on solid light background */
}

.hero-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    /* Dark text color for readability on light shape overlay */
    color: var(--color-text-dark);
    font-style: italic;
    margin: 0;
    line-height: 1.3;
    /* Text shadow removed - not needed on solid light background */
}

.hero-credibility {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    /* Dark text color for readability on light shape overlay */
    color: var(--color-text-dark);
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    /* Text shadow removed - not needed on solid light background */
}

.hero-utility {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    /* Dark text color for readability on light shape overlay */
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.4;
    /* Increased letter-spacing improves small-text clarity without changing design system */
    letter-spacing: 0.02em;
    /* Text shadow removed - not needed on solid light background */
}

.hero-link {
    /* Dark link color for readability on light content panel */
    color: var(--color-deep-red);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hero-link:hover {
    color: var(--color-red);
}

.hero-link:focus {
    outline: 2px solid var(--color-wood);
    outline-offset: 2px;
    border-radius: 2px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0;
    width: 100%;
    align-items: flex-start;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    font-size: clamp(0.9375rem, 2vw, 1rem);
    padding: 0.75rem 1.5rem;
}

/* Booking Hero Section */
.booking-hero {
    background-color: var(--color-cream);
    padding: 3rem 0 3.5rem;
    position: relative;
    min-height: 400px; /* Prevents layout shift on load */
    border-bottom: 2px solid rgba(210, 180, 140, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.booking-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.booking-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.booking-hero-left {
    width: 100%;
}

.booking-hero-right {
    width: 100%;
}

.booking-hero-action {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.booking-hero-eyebrow {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--color-deep-red);
    text-transform: lowercase;
    margin: 0 0 0.75rem 0;
}

.booking-hero-headline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-charcoal-dark);
    margin: 0 0 0.25rem 0;
}

.booking-hero-headline-sub {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 400;
    line-height: 1.4;
    color: rgba(44, 44, 44, 0.85);
    margin: 0 0 0.75rem 0;
    max-width: 550px;
}

.booking-hero-subheadline {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(44, 44, 44, 0.7);
    margin: 0;
    max-width: 520px;
    font-weight: 400;
}

.booking-hero-cta {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    outline-offset: 2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 1.125rem 2rem;
    font-weight: 600;
}

.booking-hero-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 46, 46, 0.25);
}

.booking-hero-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(139, 46, 46, 0.2);
}

.booking-hero-cta:focus {
    outline: 2px solid var(--color-deep-red);
    outline-offset: 2px;
}

.booking-hero-trust {
    background-color: var(--color-white);
    border: 1px solid rgba(210, 180, 140, 0.3);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: relative;
}

.booking-hero-trust::before {
    content: '';
    position: absolute;
    top: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--color-white);
}

.booking-hero-trust-step {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    width: 100%;
}

.booking-hero-trust-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    background-color: var(--color-deep-red);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    line-height: 1;
}

.booking-hero-trust-label {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.875rem;
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.booking-hero-trust-arrow {
    color: var(--color-deep-red);
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.6;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .booking-hero {
        padding: 6rem 0 4.5rem;
    }
    
    .booking-hero-container {
        padding: 0 2rem;
    }
    
    .booking-hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 5rem;
    }
    
    .booking-hero-left {
        flex: 0 0 65%;
        max-width: 700px;
    }
    
    .booking-hero-right {
        flex: 0 0 35%;
        max-width: 400px;
    }
    
    .booking-hero-action {
        align-items: flex-start;
    }
    
    .booking-hero-trust {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .booking-hero-trust-step {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
        flex: 1;
        text-align: center;
    }
    
    .booking-hero-trust-arrow {
        flex-shrink: 0;
    }
    
    .booking-hero-cta {
        width: auto;
        min-width: 200px;
        padding: 1.25rem 2.5rem;
    }
    
    .booking-hero-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(139, 46, 46, 0.3);
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .booking-hero-subheadline {
        max-width: 520px;
    }
    
    .booking-hero-headline-sub {
        max-width: 550px;
    }
}

/* Primary Actions Router Section */
.primary-actions {
    width: 100%;
    background-color: var(--color-white);
    padding: 7rem 1rem;
}

.primary-actions-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 0 0 3rem 0;
}

.action-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.action-card {
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.action-card-primary {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.action-card-primary:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16);
}

.action-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.action-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.action-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.action-card-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 0 0 0.5rem 0;
}

.action-card-content p {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.action-card-content .btn {
    align-self: flex-start;
}

/* About Section (Modern) */
.about-modern {
    width: 100%;
    background-color: var(--color-white);
    padding: 7rem 1rem;
}

.about-modern-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-modern-text {
    max-width: 600px;
}

.about-modern-text h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-dark);
    margin: 0 0 1.5rem 0;
}

.about-modern-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin: 0 0 1.5rem 0;
}

.about-modern-text p:last-child {
    margin-bottom: 0;
}

.about-modern-image {
    width: 100%;
}

.about-modern-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

/* Atmosphere Image Break */
.atmosphere-break {
    width: 100%;
    height: 500px;
    background-image: url('images/uncle-johns-live-outdoor-music-show.png');
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    background-color: var(--color-cream);
}

/* Live Music Section (Simple) */
.live-music-simple {
    width: 100%;
    background-color: var(--color-cream);
    padding: 5rem 1rem;
}

.live-music-simple-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.live-music-simple-image {
    width: 100%;
}

.live-music-simple-image img {
    width: 67.5%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.live-music-simple-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.live-music-simple-text h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 0 0 1.5rem 0;
}

.live-music-simple-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin: 0 0 1rem 0;
}

.live-music-simple-status {
    font-size: 1rem;
    color: var(--color-text-light);
    font-style: italic;
    margin: 0;
}

/* Sticky Menu Navigation */
.menu-nav-sticky {
    position: sticky;
    top: 72px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 999;
    padding: 0;
}

.menu-nav-sticky .container {
    padding: 0 1rem;
}

.menu-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-nav-list::-webkit-scrollbar {
    display: none;
}

.menu-nav-link {
    display: block;
    padding: 1rem 0;
    color: #222222;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.menu-nav-link:hover {
    color: var(--color-deep-red);
    border-bottom-color: var(--color-deep-red);
}

.menu-nav-link:focus {
    outline: 2px solid var(--color-deep-red);
    outline-offset: 2px;
    border-radius: 2px;
}

.menu-nav-link:active {
    color: var(--color-deep-red);
}

.menu-nav-link.active,
.menu-nav-link.is-active {
    color: var(--color-deep-red);
    border-bottom-color: var(--color-deep-red);
}

/* Menu Section */
.menu {
    padding: 5rem 1rem;
    background-color: #ffffff;
}

.menu h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #222222;
}

.menu-category {
    margin-bottom: 5rem;
}

/* Centered Section Headers with Thin Dividers */
.accordion-item {
    margin-bottom: 5rem;
    scroll-margin-top: 140px;
}

/* Single-section menu visibility control */
.menu-section {
    display: none;
}

.menu-section.is-active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-section[aria-hidden="true"] {
    display: none !important;
    visibility: hidden;
}

.menu-section[aria-hidden="false"] {
    visibility: visible;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-section.is-active {
        animation: none;
    }
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-bottom: 2rem;
    transition: opacity 0.2s ease;
}

.accordion-header:hover {
    opacity: 0.7;
}

.accordion-header h3 {
    margin: 0;
    padding: 0 0 1rem 0;
    border: none;
    color: #222222;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.accordion-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background-color: #cccccc;
}

.accordion-icon {
    display: none;
}

.accordion-content {
    padding: 0;
    background-color: transparent;
    display: block;
}

.accordion-content[style*="display: none"] {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 2rem;
}

/* Simple Vertical Stack Menu Items */
.menu-item {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: none;
    border: none;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: none;
    box-shadow: none;
}

.menu-item-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background-color: #f5f5f5;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.menu-item-image:not([src]),
.menu-item-image[src=""],
.menu-item-image[src*="placeholder"] {
    background-color: #f5f5f5;
    background-image: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    position: relative;
}

.menu-item-image[src*="placeholder"]::after {
    content: "";
    display: none;
}

.menu-item-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-style: italic;
    font-size: 0.875rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.menu-item-content {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
    align-items: start;
    margin-top: 0.5rem;
}

.menu-item-content h4 {
    color: #222222;
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    font-family: Georgia, "Times New Roman", serif;
    grid-column: 1;
    grid-row: 1;
}

.menu-item-price {
    color: #666666;
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    white-space: nowrap;
    grid-column: 2;
    grid-row: 1;
    align-self: baseline;
}

.menu-item-description {
    color: #888888;
    font-size: 0.9375rem;
    margin: 0;
    line-height: 1.7;
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.25rem;
    max-width: 100%;
}

.menu-item-image-empty {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #f5f5f5;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 6px;
    margin-bottom: 1rem;
}


/* Order Section */
/* Order Online Callout */
.order-callout {
    width: 100%;
    background-color: var(--color-deep-red);
    color: var(--color-white);
    padding: 5rem 1rem;
    text-align: center;
}

.order-callout-content {
    max-width: 600px;
    margin: 0 auto;
}

.order-callout h2 {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
}

.order-callout p {
    font-size: 1rem;
    color: var(--color-white);
    margin: 0 0 1.5rem 0;
}

.order-callout .btn-primary {
    background-color: var(--color-white);
    color: var(--color-deep-red);
}

.order-callout .btn-primary:hover {
    background-color: var(--color-cream);
    color: var(--color-deep-red);
}

/* Location & Hours Section */
.location-hours {
    width: 100%;
    background-color: var(--color-white);
    padding: 7rem 1rem;
}

/* Photo Collage Section */
.photo-collage {
    width: 100%;
    background-color: var(--color-white);
    padding: 5rem 0;
}

.photo-collage-heading {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text-dark);
    margin: 0 0 3rem 0;
    padding: 0 1rem;
}

.photo-collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    width: 100%;
    padding: 0;
}

.photo-collage-item {
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-collage-item:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1;
    position: relative;
}

.photo-collage-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 3 / 4;
}

/* Varied heights for portrait images - some shorter, some taller */
.photo-collage-item:nth-child(1) img {
    aspect-ratio: 3 / 3.5;
}

.photo-collage-item:nth-child(2) img {
    aspect-ratio: 3 / 4.5;
}

.photo-collage-item:nth-child(3) img {
    aspect-ratio: 3 / 5;
}

.photo-collage-item:nth-child(4) img {
    aspect-ratio: 3 / 3.2;
}

.photo-collage-item:nth-child(5) img {
    aspect-ratio: 3 / 4.2;
}

.photo-collage-item:nth-child(6) img {
    aspect-ratio: 3 / 3.8;
}

.photo-collage-item:nth-child(7) img {
    aspect-ratio: 3 / 5.2;
}

.photo-collage-item:nth-child(8) img {
    aspect-ratio: 3 / 3.6;
}

.photo-collage-item:nth-child(9) img {
    aspect-ratio: 3 / 4.3;
}

.photo-collage-item:nth-child(10) img {
    aspect-ratio: 3 / 3.4;
}

.photo-collage-item:nth-child(11) img {
    aspect-ratio: 3 / 3.5;
}

.photo-collage-item:nth-child(12) img {
    aspect-ratio: 3 / 3.6;
}

/* Staggered masonry effect - varied heights for visual interest */
.photo-collage-item:nth-child(1) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(2) {
    grid-row: span 3;
}

.photo-collage-item:nth-child(3) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(4) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(5) {
    grid-row: span 3;
}

.photo-collage-item:nth-child(6) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(7) {
    grid-row: span 4;
}

.photo-collage-item:nth-child(8) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(9) {
    grid-row: span 3;
}

.photo-collage-item:nth-child(10) {
    grid-row: span 2;
}

.photo-collage-item:nth-child(11) {
    grid-row: span 2;
}

.location-hours-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item h3 {
    color: var(--color-deep-red);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-item p {
    color: var(--color-text-dark);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.location-item a {
    color: var(--color-deep-red);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.location-item a:hover {
    color: var(--color-red);
}

.map-container {
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    display: block;
    border: none;
    border-radius: 8px;
}

/* Footer */
.footer {
    width: 100%;
    background-color: var(--color-charcoal-dark);
    color: var(--color-white);
    padding: 4rem 1rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 0.5rem 0;
}

.footer-location {
    font-size: 0.9375rem;
    color: var(--color-wood);
    margin: 0 0 1rem 0;
}

.footer-phone {
    font-size: 0.9375rem;
    color: var(--color-wood);
    margin: 0 0 0.75rem 0;
}

.footer-phone a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-phone a:hover {
    color: var(--color-cream);
}

.footer-catering {
    font-size: 0.9375rem;
    margin: 0;
}

.footer-catering a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-catering a:hover {
    color: var(--color-cream);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social-link {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link svg {
    width: 24px;
    height: 24px;
}

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

/* Sticky Mobile Order Button */
.sticky-order-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background-color: var(--color-deep-red);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-order-mobile.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    width: 100%;
    max-width: none;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    font-weight: 600;
}

.sticky-booking-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background-color: var(--color-deep-red);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sticky-booking-mobile.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-copyright {
    color: var(--color-wood);
    font-size: 0.875rem;
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.booking-form {
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    box-shadow: 0px 4px 4px 0px rgba(87, 100, 126, 0.21);
    width: 100%;
    box-sizing: border-box;
}

.form-image-container {
    text-align: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.form-cover-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 300px;
}

.form-field {
    margin-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.9375rem;
}

.form-label .required {
    color: var(--color-deep-red);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    width: 100%;
    box-sizing: border-box;
}

.form-field-half {
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
}

.form-field-third {
    flex: 1;
    box-sizing: border-box;
    min-width: 0;
}

.form-field-quarter {
    flex: 0 0 25%;
    box-sizing: border-box;
    min-width: 0;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"],
.booking-form textarea,
.booking-form select {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 2.75rem;
    box-sizing: border-box;
}

/* Standardize height and alignment for date/time fields */
.booking-form input[type="date"],
.booking-form input[type="time"] {
    appearance: none;               /* Removes some default browser styling */
    -webkit-appearance: none;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 0.75rem;             /* Vertical padding often breaks date inputs; 0 is safer */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 2.75rem;
    height: 2.75rem;
    box-sizing: border-box;
    display: inline-flex;           /* Better alignment for internal icons */
    align-items: center;
}

/* Fix for iOS Safari - forces the internal text to align with your padding */
.booking-form input[type="date"]::-webkit-date-and-time-value {
    height: 1.5rem;                 /* Adjust to match your font-size line-height */
    margin: 0;
}

/* Optional: If the icons are still pushing the text, you can nudge them */
.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    margin-left: 0.5rem;
    filter: invert(0.5);            /* Optional: dims the icon to look more rustic */
}

.booking-form input[type="text"]:focus,
.booking-form input[type="email"]:focus,
.booking-form input[type="tel"]:focus,
.booking-form input[type="date"]:focus,
.booking-form input[type="time"]:focus,
.booking-form input[type="number"]:focus,
.booking-form textarea:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--color-deep-red);
    box-shadow: 0 0 0 3px rgba(139, 46, 46, 0.1);
}

.booking-form textarea {
    resize: vertical;
    min-height: 100px;
    height: auto;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    min-height: 44px;
}

.radio-option:hover {
    background-color: var(--color-cream);
}

.radio-option input[type="radio"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
    min-width: 20px;
    min-height: 20px;
}

.radio-option span {
    flex: 1;
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    min-height: 44px;
}

.checkbox-label:hover {
    background-color: var(--color-cream);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 20px;
    min-height: 20px;
}

.checkbox-label span {
    flex: 1;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    min-width: 200px;
    padding: 0.75rem 2rem;
    min-height: 44px;
}

.form-submit .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-error {
    background-color: #fee;
    color: #c33;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #fcc;
}

.form-success {
    background-color: #efe;
    color: #3c3;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #cfc;
}

.terms-section {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 4px solid var(--color-charcoal-dark);
}

.terms-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.terms-section h3 {
    color: var(--color-text-dark);
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
    margin-top: 2rem;
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-highlight {
    color: #c0392b;
    font-weight: bold;
}

.terms-section ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.terms-section ul li {
    margin-bottom: 0.75rem;
}

.terms-section ul ul {
    padding-left: 1.25rem;
    margin-top: 0.25rem;
}

.terms-section ul ul li {
    margin-bottom: 0.25rem;
}

.terms-section a {
    color: var(--color-deep-red);
    text-decoration: underline;
}

.terms-section a:hover {
    color: var(--color-red);
}

/* Mobile-only: Show sticky order button */
@media (max-width: 767px) {
    /* Site Header Mobile */
    .site-header-container {
        height: 56px;
        padding: 0 0.5rem;
    }
    
    .site-header-logo-img {
        height: 40px;
    }
    
    .site-header-nav {
        gap: 1rem;
    }
    
    .site-header-link {
        font-size: 0.875rem;
    }
    
    .site-header-link-cta {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Page-wide mobile improvements */
    .container {
        padding: 0 0.5rem;
    }
    
    .about {
        padding: 2rem 0.5rem;
    }
    
    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Transition mobile */
    .transition {
        padding: 1.5rem 0.5rem;
    }
    
    .transition-text {
        font-size: 0.875rem;
    }
    
    /* About mobile */
    .about {
        padding: 3rem 0.5rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Live Music Feature mobile */
    .live-music-feature {
        padding: 3rem 0.5rem;
    }
    
    .live-music-content {
        gap: 2rem;
    }
    
    .live-music-card {
        padding: 2rem 1.5rem;
    }
    
    .live-music-card h2 {
        font-size: 1.75rem;
    }
    
    .live-music-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Order mobile */
    .order {
        padding: 2.5rem 0.5rem;
    }
    
    .order h2 {
        font-size: 1.75rem;
    }
    
    .order p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    /* Location mobile */
    .location-item {
        margin-bottom: 1.5rem;
    }
    
    .location-info h3 {
        font-size: 1.125rem;
    }
    
    .location-info p {
        font-size: 1rem;
    }
    
    .hours-text {
        font-size: 0.9375rem;
    }
    
    /* Primary Actions mobile */
    .primary-actions {
        padding: 3rem 0.5rem;
    }
    
    .primary-actions-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .action-card-primary {
        transform: none;
    }
    
    .action-card-primary:hover {
        transform: translateY(-4px);
    }
    
    /* About Modern mobile */
    .about-modern {
        padding: 4rem 0.5rem;
    }
    
    .about-modern-image {
        display: none;
    }
    
    .about-modern-text h2 {
        font-size: 1.75rem;
    }
    
    .about-modern-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Atmosphere Break mobile */
    .atmosphere-break {
        height: 350px;
        background-position: center 85%;
    }
    
    /* Live Music Simple mobile */
    .live-music-simple {
        padding: 3rem 0.5rem;
    }
    
    .live-music-simple-text p {
        font-size: 1rem;
    }
    
    /* Photo Collage mobile */
    .photo-collage {
        padding: 4rem 0.5rem;
    }
    
    .photo-collage-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .photo-collage-grid {
        gap: 2px;
    }
    
    .photo-collage-item:nth-child(1),
    .photo-collage-item:nth-child(2),
    .photo-collage-item:nth-child(3),
    .photo-collage-item:nth-child(4),
    .photo-collage-item:nth-child(5),
    .photo-collage-item:nth-child(6),
    .photo-collage-item:nth-child(7),
    .photo-collage-item:nth-child(8),
    .photo-collage-item:nth-child(9),
    .photo-collage-item:nth-child(10) {
        height: auto;
        min-height: 300px;
    }
    
    /* Order Callout mobile */
    .order-callout {
        padding: 3.5rem 0.5rem;
    }
    
    .order-callout h2 {
        font-size: 1.75rem;
    }
    
    .order-callout p {
        font-size: 0.9375rem;
    }
    
    /* Location mobile */
    .location-hours {
        padding: 4rem 0.5rem;
    }
    
    .location-info {
        gap: 2rem;
    }
    
    .location-item h3 {
        font-size: 0.9375rem;
    }
    
    .location-item p {
        font-size: 0.875rem;
    }
    
    /* Photo Collage mobile */
    .photo-collage {
        padding: 4rem 0.5rem;
    }
    
    .photo-collage-heading {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .photo-collage-grid {
        gap: 2px;
    }
    
    /* Menu mobile improvements */
    .menu {
        padding: 3rem 0.5rem;
        background-color: #ffffff;
    }
    
    .menu h2 {
        margin-bottom: 3rem;
    }
    
    .menu-category {
        margin-bottom: 4rem;
    }
    
    .accordion-header h3 {
        font-size: 1.375rem;
    }
    
    .menu-grid {
        gap: 2.5rem 0;
    }
    
    .menu-item-content h4 {
        font-size: 1.125rem;
    }
    
    /* Sticky menu nav mobile */
    .menu-nav-sticky {
        top: 56px;
    }
    
    .menu-nav-list {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .menu-nav-link {
        font-size: 0.8125rem;
        padding: 0.875rem 0;
    }
    
    .accordion-item {
        scroll-margin-top: 120px;
    }
    
    /* Booking hero mobile */
    .booking-hero {
        padding: 2rem 0 2.5rem;
    }
    
    .booking-hero-container {
        padding: 0 0.5rem;
    }
    
    .booking-hero-subheadline {
        font-size: 0.9375rem;
        max-width: 100%;
    }
    
    .booking-hero-headline-sub {
        max-width: 100%;
    }
    
    .booking-hero-action {
        gap: 0.5rem;
    }
    
    .booking-hero-trust {
        padding: 1rem 1.25rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .booking-hero-trust::before {
        display: block;
    }
    
    .booking-hero-trust-step {
        flex-direction: column;
        gap: 0.375rem;
        align-items: center;
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .booking-hero-trust-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8125rem;
    }
    
    .booking-hero-trust-label {
        font-size: 0.8125rem;
    }
    
    .booking-hero-trust-arrow {
        display: none; /* Hide arrows on mobile for cleaner look */
    }
    
    .sticky-booking-mobile {
        display: block;
    }
    
    .footer {
        padding-bottom: calc(3rem + 80px);
    }
    
    /* Hero section */
    .hero-content-panel {
        padding: 2rem 1rem;
        flex: 0 0 auto;
        /* Compact padding on mobile: content-driven height, no forced spacing */
    }
    
    .hero-image-panel {
        min-height: 40vh;
        flex: 1 1 auto;
        width: 100%;
        background-image: url('images/uncle-johns-bbq-hero.jpg');
        background-size: cover;
        background-position: center 90%;
        background-repeat: no-repeat;
        display: block;
        /* Reduced image height on mobile: allows About section to begin sooner, display: block ensures background renders */
    }
    
    /* Hero text spacing handled by .hero-content-inner gap, no individual margins needed */
    
    .hero-buttons {
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        min-height: 48px;
    }
    
    .sticky-order-mobile {
        display: block;
    }
    
    /* Form mobile improvements */
    .form-image-container {
        margin-bottom: 1.5rem;
    }
    
    .form-cover-image {
        max-height: 200px;
    }
    
    .form-field {
        margin-bottom: 1.5rem;
    }
    
    .form-label {
        margin-bottom: 0.75rem;
        font-size: 0.875rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 1.5rem;
        width: 100%;
    }
    
    .form-field-half,
    .form-field-third,
    .form-field-quarter {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .booking-form {
        padding: 1.5rem 1rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .booking-form input[type="text"],
    .booking-form input[type="email"],
    .booking-form input[type="tel"],
    .booking-form input[type="number"],
    .booking-form textarea,
    .booking-form select {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        padding: 0.875rem;
    }
    
    /* Fix for date and time fields expanding past container */
    .booking-form input[type="date"],
    .booking-form input[type="time"] {
        display: inline-flex;    /* Better alignment for internal icons */
        padding-left: 0.5rem;    /* Reduced padding to make room for internal icons */
        padding-right: 0.5rem;   /* Reduced padding */
        padding-top: 0;
        padding-bottom: 0;
        min-width: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 48px;
        align-items: center;
    }
    
    .booking-form input[type="date"]::-webkit-date-and-time-value {
        height: 1.5rem;
        margin: 0;
    }
    
    /* Ensure the browser doesn't add extra internal height/width for icons */
    .booking-form input[type="date"]::-webkit-calendar-picker-indicator,
    .booking-form input[type="time"]::-webkit-calendar-picker-indicator {
        cursor: pointer;
        margin-left: 0.5rem;
        filter: invert(0.5);
    }
    
    .radio-group {
        gap: 0.45rem;
    }
    
    .radio-option {
        padding: 0.75rem 0.5rem;
        min-height: 48px;
    }
    
    .radio-option input[type="radio"] {
        min-width: 24px;
        min-height: 24px;
        margin-right: 1rem;
    }
    
    .checkbox-label {
        padding: 1rem 0.75rem;
        min-height: 48px;
        margin-bottom: 1rem;
    }
    
    .checkbox-label input[type="checkbox"] {
        min-width: 24px;
        min-height: 24px;
        margin-right: 1rem;
    }
    
    .form-submit {
        margin-top: 2.5rem;
    }
    
    .form-submit .btn {
        width: 100%;
        min-height: 48px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .booking-form h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0;
    }
    
    .terms-section {
        font-size: 0.875rem;
        margin: 2rem 0;
        padding-top: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
    
    .form-error,
    .form-success {
        padding: 0.875rem;
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding-bottom: calc(3rem + 80px);
    }
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-split {
        flex-direction: row;
        align-items: stretch;
        /* Flex row with stretch ensures both panels match height, height determined by image */
    }
    
    .hero-content-panel {
        flex: 0 0 48%;
        height: 50vh;
        max-height: 50vh;
        padding: 1.75rem 2rem;
        position: relative;
        overflow: hidden;
        /* Fixed height matches image panel exactly, wider column for better text space */
    }
    
    .hero-content-panel::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 100%;
        /* Subtle angled edge between content panel and image */
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
        background-color: var(--color-off-white);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-inner {
        /* Left padding shifts text block right for optical balance, prevents feeling pinned to edge */
        padding-left: 2rem;
        max-width: 550px;
    }
    
    .hero-image-panel {
        flex: 1;
        width: 100%;
        height: 50vh;
        background-image: url('images/uncle-johns-bbq-hero.jpg');
        background-size: cover;
        background-position: center 85%;
        background-repeat: no-repeat;
        display: block;
        /* Fixed height based on image proportions, content panel matches via align-items: stretch */
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.875rem;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }
    
    /* Primary Actions tablet */
    .action-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    /* About Modern tablet */
    .about-modern-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    
    /* Atmosphere Break tablet */
    .atmosphere-break {
        height: 450px;
        background-position: center 75%;
    }
    
    /* Live Music Simple tablet */
    .live-music-simple-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .live-music-simple-text {
        text-align: left;
        margin: 0;
    }
    
    /* Order Callout tablet */
    .order-callout {
        padding: 5rem 2rem;
    }
    
    /* Location tablet */
    .location-hours-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    /* Location tablet */
    .location-hours {
        padding: 5rem 2rem;
    }
    
    .location-hours-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    /* Photo Collage tablet */
    .photo-collage {
        padding: 5rem 0;
    }
    
    .photo-collage-heading {
        padding: 0 2rem;
    }
    
    .photo-collage-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
    }
    
    .footer {
        padding: 4rem 2rem 2rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
    
    .menu-category {
        margin-bottom: 5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.75rem;
    }
    
    .about-content {
        gap: 5rem;
    }
    
    .live-music-content {
        gap: 5rem;
    }
    
    .location-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }
    
    .location-info {
        flex: 1;
    }
    
    .map-container {
        flex: 1;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
    
    .footer-social {
        margin-top: 1rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    
    .hero-split {
        align-items: stretch;
        /* Flex with stretch ensures both panels match height, height determined by image */
    }
    
    .hero-content-panel {
        flex: 0 0 50%;
        height: 50vh;
        max-height: 50vh;
        padding: 1.75rem 2.5rem;
        position: relative;
        overflow: hidden;
        /* Fixed height matches image panel exactly, wider column for better text space */
    }
    
    .hero-content {
        height: 100%;
        align-items: center;
        justify-content: center;
    }
    
    .hero-content-inner {
        /* Left padding shifts text block right for optical balance, creates visual alignment closer to viewport center */
        padding-left: 3rem;
        max-width: 550px;
    }
    
    .hero-image-panel {
        flex: 1;
        width: 100%;
        height: 50vh;
        background-image: url('images/uncle-johns-bbq-hero.jpg');
        background-size: cover;
        background-position: center 85%;
        background-repeat: no-repeat;
        display: block;
        /* Fixed height based on image proportions, content panel matches via align-items: stretch */
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }
    
    .menu-category {
        margin-bottom: 5.5rem;
    }
    
    .accordion-header h3 {
        font-size: 1.875rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.1rem;
    }
    
    .photo-grid img {
        width: 75%;
    }
    
    .menu-item-image {
        height: 220px;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .menu-category {
        margin-bottom: 5.5rem;
    }
    
    /* Photo Collage desktop */
    .photo-collage {
        padding: 5rem 0;
    }
    
    .photo-collage-heading {
        padding: 0 2rem;
    }
    
    .photo-collage-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
    }
    
    .photo-collage-item:nth-child(1),
    .photo-collage-item:nth-child(2),
    .photo-collage-item:nth-child(3),
    .photo-collage-item:nth-child(4),
    .photo-collage-item:nth-child(5),
    .photo-collage-item:nth-child(6),
    .photo-collage-item:nth-child(7),
    .photo-collage-item:nth-child(8),
    .photo-collage-item:nth-child(9),
    .photo-collage-item:nth-child(10) {
        height: auto;
        min-height: 400px;
    }
    
    .accordion-header h3 {
        font-size: 2.5rem;
    }
    
    .menu-item-content {
        padding: 1.75rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .hero-buttons,
    .order-callout,
    .footer-social {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
}
