/* ==========================================================================
   MAIN STYLESHEET — O'Leary's Firehouse Bar & Grill
   Mobile-first. Loaded deferred. Supplements critical.css.
   ========================================================================== */

/* ---- Google Fonts (loaded externally for perf) ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&family=Barlow+Condensed:wght@500;600;700&display=swap');

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.mobile-drawer[hidden] { display: none; }
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
}
.mobile-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    animation: fadeIn 0.25s ease;
}
.mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--c-charcoal);
    padding: 1.5rem;
    overflow-y: auto;
    animation: slideInRight 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-drawer__close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-nav-list a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-text);
    border-bottom: 1px solid var(--c-border);
}
.mobile-drawer__info {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-drawer__info address {
    font-style: normal;
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } }

/* ==========================================================================
   QUICK ACTIONS
   ========================================================================== */
.quick-actions {
    background: var(--c-charcoal);
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--c-border);
}
.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    text-align: center;
}
.quick-actions__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius);
    transition: background 0.2s;
    color: var(--c-text);
}
.quick-actions__item:hover {
    background: rgba(201,168,76,0.08);
    color: var(--c-gold);
}
.quick-actions__icon { font-size: 1.5rem; line-height: 1; }
.quick-actions__label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--c-white);
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-sub {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--c-dark);
}
.about-section__grid {
    display: grid;
    gap: var(--gap);
    align-items: center;
}
.about-section__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--c-white);
    margin-bottom: 1rem;
}
.about-section__text p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    font-size: 1.02rem;
    line-height: 1.7;
}
.about-section__text .btn { margin-top: 0.5rem; }
.about-section__img {
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-section__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   MENU HIGHLIGHTS (CARDS)
   ========================================================================== */
.menu-highlights {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--c-charcoal);
}
.menu-highlights__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.menu-card {
    background: var(--c-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--c-border);
}
.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.menu-card__image img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}
.menu-card__body {
    padding: 1.25rem;
}
.menu-card__body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--c-white);
    margin-bottom: 0.4rem;
}
.menu-card__body p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.menu-card__price {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--c-gold);
    font-size: 1.1rem;
}
.menu-highlights__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==========================================================================
   GALLERY STRIP
   ========================================================================== */
.gallery-strip {
    padding: 1rem 0;
    background: var(--c-dark);
    overflow: hidden;
}
.gallery-strip__scroll {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
    scrollbar-width: none;
}
.gallery-strip__scroll::-webkit-scrollbar { display: none; }
.gallery-strip__item {
    flex: 0 0 auto;
    width: clamp(160px, 30vw, 240px);
    scroll-snap-align: start;
}
.gallery-strip__img {
    border-radius: var(--radius);
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

@media (min-width: 768px) {
    .gallery-strip__scroll {
        justify-content: center;
    }
}

/* ==========================================================================
   TRUST / REVIEWS
   ========================================================================== */
.trust-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--c-charcoal);
}
.trust-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.review-card {
    background: var(--c-dark);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-gold);
}
.review-card__text {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--c-text);
    margin-bottom: 1rem;
    font-style: italic;
}
.review-card__footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.review-card__author {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--c-white);
    font-style: normal;
}
.review-card__source {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    padding: 0.15rem 0.5rem;
    background: rgba(201,168,76,0.1);
    border-radius: 999px;
}
.trust-section__cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--c-dark);
}
.faq-list {
    max-width: 720px;
    margin: 2rem auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--c-border);
}
.faq-item__question {
    padding: 1.25rem 0;
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--c-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item__question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--c-gold);
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] .faq-item__question::after {
    transform: rotate(45deg);
}
.faq-item__answer {
    padding: 0 0 1.25rem;
}
.faq-item__answer p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.faq-item__question::-webkit-details-marker { display: none; }

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: var(--c-charcoal);
}
.location-section__grid {
    display: grid;
    gap: 2rem;
}
.location-section__info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    color: var(--c-white);
    margin-bottom: 1rem;
}
.location-section__info address {
    font-style: normal;
    color: var(--c-text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.location-section__info address strong {
    color: var(--c-white);
    font-size: 1.1rem;
}
.location-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.location-section__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 300px;
}
.location-section__map iframe {
    display: block;
}

@media (min-width: 768px) {
    .location-section__grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
    }
}

/* ==========================================================================
   MOBILE CTA BAR
   ========================================================================== */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(17,17,17,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--c-border);
    display: flex;
    justify-content: space-around;
    padding: 0.5rem 0;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.mobile-cta-bar.is-visible { transform: translateY(0); }

.mobile-cta-bar__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.4rem 0.75rem;
    color: var(--c-text);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}
.mobile-cta-bar__btn svg { stroke: var(--c-gold); }
.mobile-cta-bar__btn--call:active svg { stroke: var(--c-green); }

@media (min-width: 768px) {
    .mobile-cta-bar { display: none; }
}

/* ==========================================================================
   MENU PAGE
   ========================================================================== */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 2rem) 0 2rem;
}
.page-hero__media {
    position: absolute;
    inset: 0;
}
.page-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.4) 100%);
}
.page-hero__content {
    position: relative;
    z-index: 1;
}
.page-hero__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--c-white);
    margin-bottom: 0.5rem;
}
.page-hero__content p {
    color: var(--c-text-muted);
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 0.75rem; }
.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
}
.breadcrumb li + li::before {
    content: '›';
    margin-right: 0.5rem;
    color: var(--c-text-muted);
}
.breadcrumb a { color: var(--c-gold); }
.breadcrumb [aria-current] { color: var(--c-text-muted); }

/* Menu Section Nav */
.menu-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 100;
    background: rgba(42,42,42,0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}
.menu-nav__list {
    list-style: none;
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.menu-nav__list::-webkit-scrollbar { display: none; }
.menu-nav__list a {
    display: block;
    padding: 0.85rem 1rem;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--c-text-muted);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.menu-nav__list a:hover,
.menu-nav__list a.is-active {
    color: var(--c-gold);
    border-bottom-color: var(--c-gold);
}

/* Menu Content */
.menu-page {
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.menu-section {
    margin-bottom: 3rem;
}
.menu-section__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    color: var(--c-gold);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--c-border);
    margin-bottom: 1.25rem;
}
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-white);
    margin-bottom: 0.2rem;
}
.menu-item__desc {
    font-size: 0.88rem;
    color: var(--c-text-muted);
    line-height: 1.5;
}
.menu-item__price {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1rem;
    color: var(--c-gold);
    flex-shrink: 0;
}
.menu-item__price--market {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    color: var(--c-text-muted);
    font-style: italic;
}

.menu-page__cta {
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid var(--c-border);
    margin-top: 1.5rem;
}
.menu-page__cta p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
}

/* ==========================================================================
   HOURS TABLE
   ========================================================================== */
.hours-table table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table td {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-day {
    font-weight: 600;
    color: var(--c-white);
}
.hours-time {
    text-align: right;
    color: var(--c-text-muted);
}
.hours-time--closed {
    color: var(--c-text-muted);
    opacity: 0.5;
}

/* ==========================================================================
   MAP EMBED
   ========================================================================== */
.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.map-embed iframe {
    display: block;
    width: 100%;
}

/* ==========================================================================
   PAGE CONTENT (generic)
   ========================================================================== */
.page-content {
    padding: calc(var(--header-h) + 2rem) 0 4rem;
    max-width: 720px;
}
.page-content__header h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--c-white);
    margin-bottom: 1.5rem;
}
.entry-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--c-white);
    margin: 2rem 0 0.75rem;
}
.entry-content p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.entry-content a { color: var(--c-gold); text-decoration: underline; }
.entry-content ul, .entry-content ol {
    color: var(--c-text-muted);
    margin: 0 0 1rem 1.5rem;
}

/* ==========================================================================
   404
   ========================================================================== */
.error-404 {
    padding: calc(var(--header-h) + 4rem) 0 6rem;
    text-align: center;
}
.error-404 h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--c-white);
    margin-bottom: 1rem;
}
.error-404 p { color: var(--c-text-muted); margin-bottom: 2rem; }
.error-404__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.error-404__info { color: var(--c-text-muted); font-size: 0.9rem; }
.error-404__info a { color: var(--c-gold); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--c-black);
    border-top: 1px solid var(--c-border);
    padding: 3rem 0 0;
    padding-bottom: max(2rem, calc(env(safe-area-inset-bottom) + 70px));
}
.site-footer__grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
.site-footer__brand img { margin-bottom: 0.75rem; }
.site-footer__tagline {
    font-family: var(--font-accent);
    color: var(--c-text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.site-footer h3 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--c-gold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}
.site-footer__contact address {
    font-style: normal;
    color: var(--c-text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-nav-list a {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--c-gold); }

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--c-border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--c-text-muted);
}
.site-footer__address-seo {
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    }
    .site-footer {
        padding-bottom: 2rem;
    }
}

/* ==========================================================================
   PAGE HERO SHORT — Inner page headers
   Fluid padding, safe text zone, works portrait + landscape all devices
   ========================================================================== */
.page-hero--short {
    position: relative;
    min-height: clamp(160px, 20vh, 260px);
    padding: calc(var(--header-h) + clamp(1.5rem, 4vw, 3rem)) 0 clamp(1.5rem, 3vw, 2.5rem);
    background: var(--c-charcoal);
    display: flex;
    align-items: flex-end;
}
.page-hero--short .page-hero__content h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    color: var(--c-white);
    margin-bottom: 0.35rem;
    line-height: 1.15;
}
.page-hero--short .page-hero__content p {
    color: var(--c-text-muted);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 540px;
}

/* ==========================================================================
   SHARED INNER PAGE CTA BLOCK
   ========================================================================== */
.page-cta-block {
    text-align: center;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 1.5rem);
    border-top: 1px solid var(--c-border);
    margin-top: clamp(2rem, 5vw, 3rem);
}
.page-cta-block p {
    color: var(--c-text-muted);
    margin-bottom: 1rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.page-cta-block .btn { margin: 0.35rem; }

/* ==========================================================================
   FAQ PAGE — Accessible accordion, fluid spacing
   ========================================================================== */
.faq-section .faq-list {
    max-width: 780px;
    margin: clamp(1.5rem, 4vw, 2.5rem) auto 0;
}
.faq-item {
    border-bottom: 1px solid var(--c-border);
}
.faq-item__question {
    padding: clamp(1rem, 2.5vw, 1.35rem) 0;
    font-family: var(--font-accent);
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    font-weight: 600;
    color: var(--c-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    -webkit-tap-highlight-color: transparent;
}
.faq-item__question::after {
    content: '+';
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--c-gold);
    transition: transform 0.2s;
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] .faq-item__question::after { transform: rotate(45deg); }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__answer {
    padding: 0 0 clamp(1rem, 2.5vw, 1.35rem);
}
.faq-item__answer p {
    color: var(--c-text-muted);
    font-size: clamp(0.88rem, 2vw, 0.98rem);
    line-height: 1.75;
}
.faq-item__answer a { color: var(--c-gold); text-decoration: underline; }
.faq-item__answer a:hover { color: var(--c-gold-light); }

/* Focus ring for keyboard users */
.faq-item__question:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 4px;
    border-radius: var(--radius);
}

/* ==========================================================================
   CONTACT PAGE — Responsive grid, accessible form-like layout
   ========================================================================== */
.contact-page {
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.contact-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}
.contact-block {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.contact-block h2 {
    font-family: var(--font-accent);
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--c-border);
}
.contact-block address {
    font-style: normal;
    color: var(--c-text-muted);
    line-height: 1.7;
    font-size: clamp(0.9rem, 2vw, 1rem);
}
.contact-block address strong {
    color: var(--c-white);
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}
.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: clamp(280px, 40vw, 500px);
}
.contact-map iframe { display: block; width: 100%; }
.phone-link {
    color: var(--c-gold);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
}
.phone-link:hover { color: var(--c-gold-light); }

/* Tablet+ */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        align-items: start;
    }
}
/* Wide desktop / Smart TV */
@media (min-width: 1400px) {
    .contact-grid { grid-template-columns: 1fr 1.8fr; }
    .contact-map { min-height: 550px; }
}
/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .contact-block { margin-bottom: 1rem; }
}

/* ==========================================================================
   ABOUT PAGE — Long-form story layout, sticky images on desktop
   ========================================================================== */
.about-page {
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.about-page__story {
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}
.about-page__text h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3.5vw, 1.9rem);
    color: var(--c-gold);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0 0.75rem;
    line-height: 1.2;
}
.about-page__text h2:first-child { margin-top: 0; }
.about-page__text p {
    color: var(--c-text-muted);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.8;
    margin-bottom: clamp(0.75rem, 2vw, 1.15rem);
    max-width: 65ch;
}
.about-page__text p strong { color: var(--c-white); }
.about-page__images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-page__images img {
    border-radius: var(--radius-lg);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Tablet+ — side-by-side */
@media (min-width: 768px) {
    .about-page__story { grid-template-columns: 1.4fr 1fr; }
    .about-page__images { position: sticky; top: calc(var(--header-h) + 2rem); }
}
/* Wide desktop */
@media (min-width: 1200px) {
    .about-page__story { grid-template-columns: 1.5fr 1fr; gap: 4rem; }
    .about-page__images img { max-height: 600px; }
}
/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
    .about-page__story { grid-template-columns: 1fr 1fr; }
    .about-page__images img { max-height: 300px; }
}

/* ==========================================================================
   SPECIALS PAGE — Card grid, fluid, accessible
   ========================================================================== */
.specials-page {
    padding: clamp(2rem, 5vw, 4rem) 0;
}
.specials-block {
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.specials-block__title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3.5vw, 1.9rem);
    color: var(--c-white);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}
.specials-block__sub {
    color: var(--c-text-muted);
    font-size: clamp(0.88rem, 2vw, 1.02rem);
    margin-bottom: clamp(1rem, 3vw, 1.75rem);
}
.specials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(0.75rem, 2vw, 1.25rem);
}
.special-card {
    background: var(--c-dark);
    border: 1px solid var(--c-border);
    border-left: 4px solid var(--c-gold);
    border-radius: var(--radius-lg);
    padding: clamp(1rem, 2.5vw, 1.5rem);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.special-card:hover, .special-card:focus-within {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border-left-color: var(--c-gold-light);
}
.special-card__price {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    color: var(--c-gold);
    line-height: 1;
}
.special-card h3 {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    color: var(--c-white);
}
.special-card p {
    color: var(--c-text-muted);
    font-size: clamp(0.82rem, 1.8vw, 0.92rem);
    line-height: 1.55;
}

/* 2-up on small tablets / large phones */
@media (min-width: 480px) {
    .specials-grid { grid-template-columns: repeat(2, 1fr); }
}
/* 3-up on tablets */
@media (min-width: 768px) {
    .specials-grid { grid-template-columns: repeat(3, 1fr); }
}
/* 4-up on wide desktop / Smart TV */
@media (min-width: 1200px) {
    .specials-grid { grid-template-columns: repeat(4, 1fr); }
}
/* Landscape phone — 2-up compact */
@media (max-height: 500px) and (orientation: landscape) {
    .specials-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
    .special-card { padding: 0.85rem; }
    .specials-block { margin-bottom: 1.5rem; }
}

/* ==========================================================================
   FOCUS STYLES — Accessibility for keyboard navigation
   ========================================================================== */
a:focus-visible, .btn:focus-visible, summary:focus-visible {
    outline: 2px solid var(--c-gold);
    outline-offset: 3px;
    border-radius: var(--radius);
}

/* ==========================================================================
   REDUCED MOTION — Respect user preference
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .special-card:hover,
    .menu-card:hover,
    .special-card:focus-within {
        transform: none;
        box-shadow: none;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */
@media print {
    .site-header, .mobile-cta-bar, .mobile-drawer, .site-footer__nav,
    .quick-actions, .gallery-strip, .map-embed { display: none !important; }
    body { background: #fff; color: #000; }
    .menu-item { break-inside: avoid; }
}
