/* /assets/css/styles.css */


/* * ATTENTION: PROPRIETARY SOURCE CODE
 * Copyright (c) 2025 ConstantReality.com. All Rights Reserved.
 * Unauthorized copying, modification, or distribution is strictly prohibited.
 * Use of this code for any purpose other than viewing this website is strictly forbidden.
 */


:root {
    --bg: #050505;
    --bg-alt: #101010;
    --brick: #050505;
    --accent: #f29e3d;
    --accent-soft: #f6b96d;
    --text: #f7f7f7;
    --muted: #b8b8b8;
    --border-soft: rgba(255, 255, 255, 0.06);
    --radius: 8px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.65);
    --max-width: 1100px;
    --font-head: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--brick) url("/assets/images/brick-bg.jpg") repeat;
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
}

a {
    color: var(--accent-soft);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Layout shells */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.75));
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 122px;
    height: 122px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Nav */

.site-nav {
    margin-left: auto;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.site-nav a {
    color: var(--text);
    position: relative;
    padding-bottom: 0.2rem;
}

.site-nav li.active a::after,
.site-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    padding: 0.35rem 0.5rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    margin: 3px 0;
}

/* Main / sections */

.site-main {
    min-height: 60vh;
}

.section {
    padding: 3.5rem 1rem;
}

.section-alt {
    background: rgba(0, 0, 0, 0.8);
}

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-head);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.95rem;
    color: var(--accent-soft);
    margin-bottom: 0.75rem;
}

.section-inner > h2:first-child {
    margin-top: 0;
}

.section-inner h2 + p.section-intro {
    margin-top: 0.25rem;
}

.section-intro {
 
    color: var(--muted);
    font-size: 0.95rem;
}

.two-column {
    display: grid;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.small {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Hero */

.hero {
    position: relative;
    padding: 3.5rem 1rem 2.75rem;
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.18), transparent 65%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, transparent, rgba(0, 0, 0, 0.9));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--accent-soft);
    margin-bottom: 0.85rem;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
    font-family: var(--font-head);
}

.hero-body {
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 34rem;
}

.hero-actions {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
 

.hero-body + .hero-body {
    margin-top: 0.4rem;
}

.hero-body-secondary {
    font-style: italic;
    color: #e1d1b0; /* a warmer, more vintage-feeling tone */
}

/* Video */

.video-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-caption {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: var(--accent-soft);
    color: #000;
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-soft);
    color: var(--accent-soft);
}

/* Links */

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-top: 1rem;
}

/* Story teaser */

.story-image img,
.story-photo {
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    width: 100%;
    display: block;
}

/* Menu cards */

.menu-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.menu-card {
    background: rgba(0, 0, 0, 0.88);
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
}

.menu-card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.menu-card-body {
    padding: 0.85rem 1rem 1rem;
}

.menu-card-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 0.98rem;
}

.menu-card-title .price {
    font-weight: 700;
    color: var(--accent-soft);
    font-size: 0.95rem;
}

.menu-card-meta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin: 0.15rem 0 0.4rem;
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.menu-note {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--accent-soft);
}

.section-cta-center {
    margin-top: 2rem;
    text-align: center;
}

/* Kin cards */

.section-kin {
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.14), rgba(0, 0, 0, 0.95));
}

.kin-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); /* max 3 across */
    gap: 24px;
}
/* Tablets: 2 across */
@media (max-width: 900px) {
    .kin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Phones: 1 across */
@media (max-width: 600px) {
    .kin-grid {
        grid-template-columns: 1fr;
    }
}
.kin-card {
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius);
    border: 1px solid var(--border-soft);
    padding: 1.25rem 1rem 1.4rem;
    box-shadow: var(--shadow-soft);
}

.kin-image {
    width: 120px;
    height: 120px;
    border-radius: 22px;
    object-fit: cover;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.kin-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.kin-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Page hero */

.page-hero {
    position: relative;
    padding: 4rem 1rem 3rem;
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.16), rgba(0, 0, 0, 0.95));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero-small {
    padding-top: 3rem;
    padding-bottom: 2.5rem;
}

.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-hero-inner h1 {
    margin: 0 0 0.5rem;
    font-family: var(--font-head);
    font-size: 1.8rem;
}

.page-hero-inner p {
    margin: 0;
    color: var(--muted);
}

/* Story layout */

.story-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
    align-items: flex-start;
}

.story-main p {
    margin-bottom: 1rem;
    color: #dadada;
}

.story-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-side-card {
    background: rgba(0, 0, 0, 0.9);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

/* Contact form */

.contact-form {
    margin-top: 0.5rem;
    max-width: 480px;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.55rem 0.65rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 6, 6, 0.94);
    color: var(--text);
    font-size: 0.9rem;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

/* Map placeholder */

.map-placeholder {
    border-radius: var(--radius);
    border: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.85);
    color: var(--muted);
    font-size: 0.9rem;
}

/* Make title + price behave well side-by-side */
.menu-card-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

/* Price block on the right */
.menu-card-title .price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
    line-height: 1.2;
}

/* Original price (when discounted) */
.menu-card-title .price-old {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

/* Discount price – highlight it */
.menu-card-title .price-new {
    color: #ffb24c;          /* your orange accent */
    font-weight: 600;
}

/* When there’s no discount (single price), keep it bold & orange */
.menu-card-title .price:not(:has(.price-old)) {
    color: #ffb24c;
    font-weight: 600;
}

/* Footer */

.site-footer {
    margin-top: 3rem;
    padding: 2.5rem 1rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.92));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.75rem;
}

.footer-logo {
    width: 176px;
    height: 176px;
    object-fit: contain;
    margin-bottom: 0.4rem;
}

.footer-name {
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.12em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-block h4 {
    margin: 0 0 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    color: var(--accent-soft);
}

.footer-block p {
    margin: 0.1rem 0;
    font-size: 0.9rem;
}



.social-links {
    display: flex;
    flex-direction: column;   
    gap: 0.5rem;
    align-items: flex-start;      
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #f5f5f5;
    margin: 0; 
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 178, 76, 0.3);
    background: radial-gradient(circle at top left, rgba(255,178,76,0.16), rgba(0,0,0,0.8));
    transition: background 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.social-links a i {
    font-size: 0.95rem;
}

.social-links a:hover {
    border-color: rgba(255, 178, 76, 0.9);
    background: radial-gradient(circle at top left, rgba(255,178,76,0.28), rgba(0,0,0,0.9));
    transform: translateY(-1px);
}


.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Responsive */

@media (max-width: 800px) {
    .hero-inner,
    .two-column,
    .story-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.75rem;
    }
}

@media (max-width: 720px) {
    .site-header-inner {
        align-items: center;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.98);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.16s ease-out;
    }

    .site-nav ul {
        flex-direction: column;
        padding: 0.75rem 1rem 1rem;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
    }
}


/* -------------------------------------------------
   Menu page – Phase 1 & 2 polish
   -------------------------------------------------- */

/* Category pill nav section */
.section-menu-nav {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: radial-gradient(circle at top, rgba(255, 153, 51, 0.14), rgba(0, 0, 0, 0.96));
}

.menu-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.menu-category-nav::-webkit-scrollbar {
    height: 4px;
}

.menu-category-nav::-webkit-scrollbar-track {
    background: transparent;
}

.menu-category-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 999px;
}

.menu-category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.9);
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-decoration: none;
    transition:
        background 0.16s ease-out,
        color 0.16s ease-out,
        border-color 0.16s ease-out,
        box-shadow 0.16s ease-out,
        transform 0.16s ease-out;
}

.menu-category-pill:hover,
.menu-category-pill:focus-visible {
    background: rgba(0, 0, 0, 0.98);
    border-color: var(--accent-soft);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Menu section header tweaks */
.menu-section-header {
    border-left: 3px solid rgba(242, 158, 61, 0.7);
    border-right: 3px solid rgba(242, 158, 61, 0.7);
    padding: 0 0.75rem 0.75rem 0.75rem; /* top | right | bottom | left */
    margin-bottom: 0.75rem;
}

/* Card micro-interactions (lift on hover / focus) */
.menu-card {
    transition:
        transform 0.16s ease-out,
        box-shadow 0.16s ease-out,
        border-color 0.16s ease-out,
        background 0.16s ease-out;
}

.menu-card:hover,
.menu-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.85);
    border-color: rgba(242, 158, 61, 0.55);
    background: rgba(0, 0, 0, 0.96);
}

/* Keep title & name tidy when price wraps */
.menu-card-name {
    flex: 1 1 auto;
    min-width: 0;
}

/* Sold-out visual treatment */
.menu-card-soldout .menu-card-image {
    filter: grayscale(0.9) saturate(0.6);
    opacity: 0.7;
}

.menu-card-soldout .menu-card-meta strong {
    color: #ff8585;
}

.menu-card-soldout .menu-card-title,
.menu-card-soldout .menu-card-desc {
    opacity: 0.9;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .menu-category-pill,
    .menu-card {
        transition: none;
    }
}
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
}

/* Floating "Back to top" button */

.back-to-top-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 40;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(0, 0, 0, 0.9);
    color: var(--text);
    font-size: 0.8rem;
    padding: 0.55rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);

    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition:
        opacity 0.18s ease-out,
        transform 0.18s ease-out,
        background 0.18s ease-out,
        border-color 0.18s ease-out,
        color 0.18s ease-out;
}

.back-to-top-fab.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top-fab:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent-soft);
}

@media (max-width: 600px) {
    .back-to-top-fab {
        right: 1rem;
        bottom: 1rem;
        font-size: 1.3rem;
        padding: 0.45rem 0.8rem;
    }
}


/* Business hours list */

.hours-list {
    margin: 0.5rem 0 0;
    padding: 0;
    font-size: 0.9rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.hours-row + .hours-row {
    margin-top: 0.15rem;
}

.hours-row dt {
    font-weight: 600;
}

.hours-row dd {
    margin: 0;
    color: var(--muted);
}

/* Slightly smaller variant in footer */
.hours-list-footer {
    font-size: 0.85rem;
}

/* Back to top button */

.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.9);
    color: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
    z-index: 50;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- Hours layout – tighten spacing --- */

/* Keep the hours block itself compact on wide screens */
.hours-table {
    margin-top: 0.5rem;
    max-width: 280px;      /* adjust to taste */
}

/* Rows: keep day + time close together instead of opposite sides */
.hours-row {
    display: flex;
    justify-content: flex-start;  /* was space-between */
    align-items: baseline;
    gap: 0.85rem;                 /* consistent small gap */
    font-size: 0.9rem;
}

/* Day label */
.hours-day {
    font-weight: 600;
    min-width: 80px;              /* enough for “Wednesday” */
}

/* Time text */
.hours-time {
    color: var(--muted);
    white-space: nowrap;
}

/* Optional: keep footer hours block from stretching too wide */
.footer-hours .hours-table,
.contact-hours .hours-table {
    max-width: 280px;
}

/* Contact form anti-spam honeypot (hidden from humans) */
.hp-field-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


.menu-section-header-image {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.menu-section-header-image img {
    display: block;
    width: 100%;
    max-height: 260px;       /* tweak if you want taller/shorter */
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Category header banner image on public menu */
.menu-section-header-image {
    margin: 1.25rem 0 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* fixed banner height box */
    height: 220px;              /* adjust if you want taller/shorter */
}

/* Center + crop any aspect ratio into that box */
.menu-section-header-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;          /* fill the box */
    object-position: center;    /* use the center of the photo */
}

/* Slightly shorter banner on small screens, so it doesn’t dominate */
@media (max-width: 768px) {
    .menu-section-header-image {
        height: 180px;
    }
}

/* keep the map from getting huge */
.contact-map-card {
    max-width: 480px;      /* tweak to taste: 420–520px looks nice */
    margin: 0 auto;        /* center it in its column */
}

/* make sure the image scales down cleanly */
.contact-map-thumb img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;   /* optional, to keep it on-brand */
}


/* Base menu card image (real photos) */
.menu-card-image {
    display: block;
    width: 100%;
    height: 220px;        /* or whatever you’re using now */
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

/* Placeholder: smaller and visually lighter */
.menu-card-image-placeholder {
    height: 130px;        /* SHRUNK: tweak 120–150px to taste */
    object-fit: contain;  /* avoid weird cropping of the text */
    opacity: 0.8;         /* a bit softer than full-strength */
}
.is-hidden-by-filter { display:none !important; }

.section-menu-filters .menu-public-filters{
  display:flex; flex-wrap:wrap; gap:10px; align-items:center;
}

.menu-public-search{
 
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color:#fff;
}

.menu-public-tag-pills{
  display:flex; flex-wrap:wrap; gap:8px;
}
/* ---------- Public menu: search + tag pills ---------- */
.menu-public-toolbar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
}

.menu-public-search{
 
  min-width: 220px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  outline: none;
}

.menu-public-search::placeholder{
  color: rgba(255,255,255,0.55);
}

.menu-public-tag-pills{
  display:flex;
  gap:8px;
  flex-wrap:nowrap;
  overflow:auto;
  padding-bottom:4px;
  max-width: 100%;
}

.menu-tag-pill{
  appearance:none;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.25);
  color:#ddd;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  line-height: 1;
  cursor:pointer;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
}

.menu-tag-pill:hover{
  background: rgba(208,139,26,0.12);
  border-color: rgba(208,139,26,0.40);
}

.menu-tag-pill.is-active{
  background: rgba(208,139,26,0.20);
  border-color: rgba(208,139,26,0.55);
  color:#fff;
}

@media (max-width: 720px){
  .menu-public-toolbar{ flex-direction: column; align-items: stretch; }
  .menu-public-tag-pills{ width: 100%; }
}

/* ---------- Public menu: show tags on item cards ---------- */
.menu-card-tags{
  margin-top: 8px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.menu-item-tag{
  appearance:none;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  color: #cfcfcf;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1;
  cursor:pointer;
}

.menu-item-tag:hover{
  border-color: rgba(208,139,26,0.40);
  background: rgba(208,139,26,0.12);
  color:#fff;
}

/* ---------- Filter hide helper ---------- */
.is-hidden-by-filter{ display:none !important; }
.menu-category-pill.is-hidden-by-filter{ display:none !important; }

.menu-public-row{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
}

.menu-public-label{
  flex: 0 0 auto;
  min-width: 84px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}

.menu-public-row-cats{ margin-top: 10px; }

@media (max-width: 720px){
  .menu-public-row{
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .menu-public-label{
    min-width: 0;
  }
}


/* Back Story strip with parallax brick feel */
.story-teaser {
    position: relative;
    overflow: hidden;
    /* layered background: brick with fixed scroll + dark vignette */
    background:
        radial-gradient(circle at top, rgba(0,0,0,0.2), rgba(0,0,0,0.96)),
        url("/assets/images/brick-bg.jpg") center / cover fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* soften on mobile where fixed-attachment can be janky */
@media (max-width: 900px) {
    .story-teaser {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }
}

.story-copy h2 {
    margin-top: 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--accent-soft);
}

.story-copy p {
    color: #e7e1d8;
}
.kin-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.kin-quote {
    margin-top: 0.7rem;
    font-style: italic;
    color: #f6b96d;
    font-size: 0.85rem;
}
.btn {
    /* existing styles */
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.7);
    transform: translateY(0);
    transition:
        background 0.15s ease-out,
        color 0.15s ease-out,
        box-shadow 0.15s ease-out,
        transform 0.1s ease-out;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.85);
}
.hero {
    position: relative;
    padding: 3.5rem 1rem 2.75rem;
    background:
        radial-gradient(circle at top, rgba(255, 153, 51, 0.18), transparent 65%);
}

/* subtle “age” on hero content */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
    opacity: 0.28;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 3px
        );
}
/* Back Story strip: brick + slight parallax (you already have something similar, tweak it to this) */
.story-teaser.section.section-story-strip {
    position: relative;
    overflow: hidden;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background:
        radial-gradient(circle at top, rgba(0,0,0,0.3), rgba(0,0,0,0.96)),
        url("/assets/images/brick-bg.jpg") center / cover fixed;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* mobile: turn off fixed attachment to avoid jank */
@media (max-width: 900px) {
    .story-teaser.section.section-story-strip {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }
}

/* The “paper” card */
.story-strip-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 1.75rem 1.75rem 1.6rem;
    border-radius: 10px;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.05), rgba(0,0,0,0.96));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 16px 35px rgba(0,0,0,0.8);
}

/* little label on top */
.story-strip-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

/* text inside card */
.story-strip-card p {
    margin: 0 0 0.6rem;
    color: #e7e1d8;
    font-size: 0.95rem;
}

.story-strip-card p:last-child {
    margin-bottom: 0;
}

/* keep the link neat under the paragraphs */
.story-strip-card .link-arrow {
    margin-top: 0.6rem;
}
/* TEMP: hide individual menu item images (public menu) */
.menu-grid .menu-card-image{
  display: none !important;
}


/* ===== Home: Back Story + Slider layout ===== */
.section-story-strip .story-strip-grid{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
}

.as-slider-wrap{ min-width: 0; }
.as-slider{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}

.as-slider-viewport{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.as-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}

.as-slide.is-active{ opacity: 1; }

.as-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(.9);
}

.as-slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.45);
  color: rgba(255,255,255,.92);
  cursor: pointer;
  z-index: 2;
}

.as-slider-btn:hover{ background: rgba(0,0,0,.65); }
.as-slider-btn:active{ transform: translateY(-50%) scale(.98); }

.as-prev{ left: 10px; }
.as-next{ right: 10px; }

.as-slider-dots{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}

.as-slider-dots .as-dot{
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.18);
  cursor: pointer;
}

.as-slider-dots .as-dot.is-active{
  background: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.75);
}

.as-slider-caption{
  margin: 10px 0 0;
  opacity: .8;
  font-size: .92rem;
}

/* Mobile: stack slider above story card */
@media (max-width: 900px){
  .section-story-strip .story-strip-grid{
    grid-template-columns: 1fr;
  }
}

/* ===== Audio: bottom-right Play button (only shows when autoplay blocked) ===== */
.as-intro-play{
  position: fixed;
  right: 78px;
  bottom: 18px;
  z-index: 9999;
  box-shadow: 0 14px 50px rgba(0,0,0,.55);
}

/* ===== Meet Our Kin: alternate left/right rows (CSS-only, no markup rewrite) ===== */
.section-kin .kin-grid{
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}

.section-kin .kin-card{
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 18px;
  align-items: center;
}

.section-kin .kin-card .video-frame{
  margin: 0;
}

/* Put text in the right column */
.section-kin .kin-card h3,
.section-kin .kin-card p{
  grid-column: 2;
}

/* Keep video on the left for odd rows */
.section-kin .kin-card .video-frame{
  grid-column: 1;
  grid-row: 1 / span 10;
}

/* Even rows swap sides */
.section-kin .kin-card:nth-child(even){
  grid-template-columns: 1fr minmax(280px, 420px);
}
.section-kin .kin-card:nth-child(even) .video-frame{
  grid-column: 2;
}
.section-kin .kin-card:nth-child(even) h3,
.section-kin .kin-card:nth-child(even) p{
  grid-column: 1;
}

@media (max-width: 900px){
  .section-kin .kin-card{
    grid-template-columns: 1fr;
  }
  .section-kin .kin-card .video-frame,
  .section-kin .kin-card h3,
  .section-kin .kin-card p{
    grid-column: 1;
  }
}


/* ===== Meet Our Kin: force sane mobile stacking ===== */
@media (max-width: 900px){
  .section-kin .kin-card{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Remove any column forcing from the alternating layout */
  .section-kin .kin-card .video-frame,
  .section-kin .kin-card h3,
  .section-kin .kin-card p{
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .section-kin .kin-card .video-frame{
    margin: 0 auto 12px !important;
    width: 100% !important;
    max-width: 560px;
  }

  .section-kin .kin-card h3{
    margin-top: 0 !important;
  }

  .section-kin .kin-card p{
    max-width: 65ch;
  }
}

/* On very small screens, just hard-stack everything (bulletproof) */
@media (max-width: 650px){
  .section-kin .kin-card{
    display: block !important;
  }

  .section-kin .kin-card .video-frame{
    width: 100% !important;
    max-width: 560px;
    margin: 0 auto 12px !important;
  }
}


/* ==============================
   Landing Pages (only)
   ============================== */

.section .landing-body{
  /* readable centered container */
  max-width: 980px;
  margin: 0 auto;

  /* “card” treatment so text isn’t floating on the brick */
  padding: clamp(16px, 2.2vw, 28px);
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 18px 60px rgba(0,0,0,0.60);
}

/* Hero image (optional per landing page) */
.landing-hero-image{
  margin: 0 0 18px 0;
}
.landing-hero-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55);
}

/* Rich text defaults for TinyMCE output */
.landing-content{
  max-width: 860px;            /* keeps Holiday Specials from stretching too wide */
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Clean spacing for arbitrary HTML */
.landing-content > :first-child{ margin-top: 0 !important; }
.landing-content > :last-child{  margin-bottom: 0 !important; }

.landing-content p{
  margin: 0 0 14px 0;
}

/* Headings inside body_html (TinyMCE) */
.landing-content h1{
  font-size: 1.55rem;
  margin: 18px 0 10px 0;
}
.landing-content h2{
  font-size: 1.35rem;
  margin: 18px 0 10px 0;
}
.landing-content h3{
  font-size: 1.15rem;
  margin: 16px 0 8px 0;
}

/* Lists look “menu-like” and readable */
.landing-content ul,
.landing-content ol{
  margin: 10px 0 16px 0;
  padding-left: 22px;
}
.landing-content li{
  margin: 6px 0;
}
.landing-content ul ul,
.landing-content ol ol{
  margin-top: 8px;
}

/* Links: keep visible without forcing a new color scheme */
.landing-content a{
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}
.landing-content a:hover{
  text-decoration-color: rgba(255,255,255,0.75);
}

/* Images inserted in TinyMCE */
.landing-content img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* Optional: tables if you ever paste them in */
.landing-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
}
.landing-content th,
.landing-content td{
  border: 1px solid rgba(255,255,255,0.10);
  padding: 10px 12px;
  vertical-align: top;
}
.landing-content th{
  background: rgba(255,255,255,0.06);
}

/* CTA button alignment */
.landing-cta{
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.landing-cta .btn{
  min-width: 240px;
}

/* Mobile tuning */
@media (max-width: 640px){
  .section .landing-body{
    padding: 14px;
    border-radius: 14px;
  }
  .landing-content{
    font-size: 1rem;
  }
  .landing-cta .btn{
    width: 100%;
    min-width: 0;
  }
}

/* Footer credit */
.site-footer .footer-bottom .site-credit{
  margin: 8px 0 0;
  font-size: 0.85rem;
  opacity: 0.85;
}

.site-footer .footer-bottom .site-credit-link{
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.site-footer .footer-bottom .site-credit-link:hover{
  border-bottom-color: rgba(255,255,255,0.75);
}

.site-credit {
  padding-bottom: 48px;
}
