@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Cutive+Mono&display=swap');

:root {
    /* Colors extracted from the user's interior reference image */
    --bg-dark: #e8e4db;       /* Plaster / concrete wall */
    --bg-surface: #d8d3c7;    /* Earthy concrete floor */
    --border-color: #b8b1a2;  /* Texture seams / concrete shadows */
    
    --text-main: #2b2825;     /* Black window frames / dark wood */
    --text-muted: #6e675e;    /* Concrete mist / taupe shades */
    
    /* Silver & Gold Accents */
    --gold-gradient: linear-gradient(135deg, #a37822, #cfab51, #7a5814);
    --silver-gradient: linear-gradient(135deg, #4d4d4d, #8a8a8a, #333333);
    
    --font-heading: 'Special Elite', cursive;
    --font-body: 'Cutive Mono', monospace;
    
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Wabi-sabi Noise Texture Overlay - adding to the plaster effect */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.text-metal {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-metal-silver {
    background: var(--silver-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Nav */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(232, 228, 219, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar-inner {
    width: 100%;
    padding: 0.75rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: clamp(44px, 5vw, 72px);
    width: auto;
    display: block;
}

@media (max-width: 480px) {
    .logo-img { height: 40px; }
}

nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}
nav a:hover, .nav-active { color: var(--text-main) !important; }

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001; /* Above nav menu */
}
.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

.btn-primary, .btn-large {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    border: 1px solid rgba(163, 120, 34, 0.4);
    padding: 0.75rem 2rem;
    border-radius: 0px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1rem 3rem;
    margin-top: 2rem;
    border-image: var(--gold-gradient) 1;
    border-width: 1px;
    border-style: solid;
}

.btn-primary::before, .btn-large::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold-gradient);
    opacity: 0.15;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover::before, .btn-large:hover::before { left: 0; }
.btn-primary:hover, .btn-large:hover { box-shadow: 0 0 15px rgba(163, 120, 34, 0.2); border-color: #a37822; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 2rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeUp 1s ease-out;
}

.hero h1 { font-size: 4.5rem; margin-bottom: 1.5rem; color: var(--text-main); }
.hero p { font-size: 1.1rem; color: var(--text-muted); font-weight: 300; }

.hero-image-container {
    flex: 1; display: flex; justify-content: center; align-items: center;
    animation: fadeInScale 1.5s ease-out 0.2s both;
    position: relative;
    padding: 10px;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border: 1px solid;
    border-image: var(--silver-gradient) 1;
    z-index: -1;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: sepia(0.05) contrast(1.05) brightness(0.95);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1); 
}

/* Shared Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* ── Home: Signature Drinks ── */
.home-signatures {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.home-sig-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.home-sig-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.home-sig-more {
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid rgba(163, 120, 34, 0.3);
    padding-bottom: 1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}
.home-sig-more:hover { color: var(--text-main); border-color: #a37822; }

.home-sig-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    align-items: stretch;
}

.home-sig-card {
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem;
    border-right: 1px solid var(--border-color);
}
.home-sig-card:last-child { border-right: none; }

.home-sig-num {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    opacity: 0.6;
}

.home-sig-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 0;
    letter-spacing: 0.03em;
    min-height: calc(1.4rem * 1.3 * 2);
    display: flex;
    align-items: flex-start;
}

.home-sig-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin: 1.25rem 0;
    display: block;
    filter: sepia(0.05) contrast(1.05) brightness(0.95);
}

.home-sig-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.home-sig-price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

@media (max-width: 860px) {
    .home-sig-grid { grid-template-columns: 1fr; }
    .home-sig-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1.75rem 0;
    }
    .home-sig-card:last-child { border-bottom: none; }
}

/* ── Home: Tea Cubes Feature ── */
.tea-cubes-feature {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 6rem 5%;
    text-align: center;
    outline: none;
    cursor: pointer;
}

.tea-cubes-inner {
    max-width: 700px;
    margin: 0 auto;
}

.tea-cubes-top {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.tea-cubes-rule {
    flex: 1;
    height: 1px;
    background: var(--border-color);
    max-width: 120px;
}

.tea-cubes-title {
    font-size: 2.8rem;
    letter-spacing: 6px;
    display: inline-block;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.tea-cubes-feature:hover .tea-cubes-title,
.tea-cubes-feature:focus .tea-cubes-title {
    letter-spacing: 8px;
}

.tea-cubes-teaser {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0;
    transition: opacity 0.8s ease;
}

.tea-cubes-feature:hover .tea-cubes-teaser,
.tea-cubes-feature:focus .tea-cubes-teaser {
    opacity: 0;
}

.tea-cubes-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    text-align: left;
    transition:
        max-height 1.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 1s ease 0.25s,
        margin-top 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.tea-cubes-feature:hover .tea-cubes-content,
.tea-cubes-feature:focus .tea-cubes-content {
    max-height: 600px;
    opacity: 1;
    margin-top: 2.5rem;
}

.tea-cubes-content h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    border-left: 2px solid;
    border-image: var(--gold-gradient) 1;
    padding-left: 1rem;
    font-family: var(--font-heading);
}

.tea-cubes-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    line-height: 1.85;
}

/* Home Menu Grid (kept for reference) */
.menu-section { padding: 5rem 5%; }
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card {
    background: var(--bg-surface);
    border: none;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: left;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.03);
    padding: 1.5rem;
}

.menu-card:hover { border-top-color: rgba(163, 120, 34, 0.6); transform: translateY(-5px); box-shadow: 5px 5px 20px rgba(0,0,0,0.08); }
.menu-card h3 { font-size: 1.5rem; margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--text-main); }
.menu-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; }
.price { font-size: 1.1rem; font-family: var(--font-body); color: var(--text-main); border-bottom: 1px solid var(--border-color); padding-bottom: 2px;}

.card-image {
    height: 250px; width: 100%;
    background-size: cover; background-position: center;
    filter: sepia(0.2) grayscale(0.5); 
    transition: var(--transition-smooth);
}
.menu-card:hover .card-image { filter: sepia(0) grayscale(0); }
.placeholder-brown { background: #8b6242; } /* Natural Wood */
.placeholder-matcha { background: #6c785f; } /* Faded matcha */
.placeholder-taro { background: #7c6872; } /* Faded purple */

/* Menu Page */
.page-container { padding: 8rem 5% 5rem; max-width: 900px; margin: 0 auto; }
.page-title { font-size: 3.5rem; text-align: center; margin-bottom: 0.5rem; animation: fadeUp 0.8s ease-out; color: var(--text-main); }
.subtitle { text-align: center; font-size: 1rem; color: var(--text-muted); margin-bottom: 5rem; font-weight: 300; letter-spacing: 1px; animation: fadeUp 1s ease-out; }

.category-title {
    font-size: 2rem;
    border-bottom: 1px solid;
    border-image: var(--silver-gradient) 1;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
    color: var(--text-main);
}
.category-desc { color: var(--text-muted); margin-bottom: 2rem; font-style: italic; }
.category-group h3 { font-size: 1.4rem; color: var(--text-main); margin-bottom: 1.5rem; margin-top: 2rem; opacity: 0.8; }

.menu-items-list { display: flex; flex-direction: column; gap: 2rem; }
.menu-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: border-bottom-color 0.4s ease;
    cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover { border-bottom-color: rgba(163, 120, 34, 0.4); }
}
.menu-item.expanded { border-bottom-color: rgba(163, 120, 34, 0.4); }

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.item-header h4 { font-size: 1.2rem; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--text-main); transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); margin: 0; }
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover .item-header h4 { transform: translateX(10px); }
}
.menu-item.expanded .item-header h4 { transform: translateX(10px); }
.cn-name { font-size: 0.95rem; font-family: var(--font-heading); color: var(--text-muted); border-left: 1px solid rgba(163, 120, 34, 0.5); padding-left: 10px; }
.item-price { font-size: 1.1rem; color: var(--text-main); white-space: nowrap; margin-left: 1rem; }

.item-body {
    display: flex;
    align-items: flex-start;
    margin-top: 0.8rem;
}
.item-image-wrapper {
    width: 0;
    height: 0;
    opacity: 0;
    margin-right: 0;
    overflow: hidden;
    transition:
        width 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        height 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        margin-right 0.65s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease 0.15s;
}
.item-image-wrapper img {
    width: 340px;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    transform: scale(0.97);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}
.item-desc {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6;
    max-height: 1.6rem;
    transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Pointer devices (mouse/trackpad) — hover to expand (menu page) */
@media (hover: hover) and (pointer: fine) {
    .menu-item:hover .item-image-wrapper {
        width: 340px;
        height: 400px;
        opacity: 1;
        margin-right: 2.5rem;
    }
    .menu-item:hover .item-image-wrapper img { transform: scale(1); }
    .menu-item:hover .item-desc {
        -webkit-line-clamp: 25;
        line-clamp: 25;
        max-height: 600px;
    }
}

/* Touch devices — tap to expand (menu page) */
.menu-item.expanded .item-image-wrapper {
    width: 340px;
    height: 400px;
    opacity: 1;
    margin-right: 2.5rem;
}
.menu-item.expanded .item-image-wrapper img { transform: scale(1); }
.menu-item.expanded .item-desc {
    -webkit-line-clamp: 25;
    line-clamp: 25;
    max-height: 600px;
}

@media (max-width: 768px) {
    .item-image-wrapper img {
        width: 100%;
        height: 200px;
    }
    .menu-item.expanded .item-image-wrapper {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .menu-item.expanded .item-body {
        flex-direction: column;
    }
}
@media (max-width: 768px) and (hover: hover) and (pointer: fine) {
    .menu-item:hover .item-image-wrapper {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .menu-item:hover .item-body {
        flex-direction: column;
    }
}


/* iOS date/time input fix */
.input-group input[type="date"],
.input-group input[type="time"] {
    -webkit-appearance: none;
    appearance: none;
}

/* Tea Cubes touch open state */
.tea-cubes-feature.touch-open .tea-cubes-teaser { opacity: 0; }
.tea-cubes-feature.touch-open .tea-cubes-title { letter-spacing: 8px; }
.tea-cubes-feature.touch-open .tea-cubes-content {
    max-height: 600px;
    opacity: 1;
    margin-top: 2.5rem;
}

/* --- Catering Form Styles --- */
.catering-form { max-width: 800px; margin: 0 auto; }
.form-section { animation: fadeUp 1s ease-out; }

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem 2rem;
}

.input-group { position: relative; width: 100%; }
.input-group.full-width { grid-column: 1 / -1; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0.8rem 0;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}
.input-group textarea { resize: vertical; border: 1px solid var(--border-color); padding: 1rem; border-radius: 4px; }

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none;
    border-bottom-color: transparent;
    border-image: var(--gold-gradient) 1;
}

.input-group label {
    position: absolute;
    top: 50%; left: 0;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-smooth);
    background: transparent;
}
.input-group textarea ~ label { top: 1.5rem; left: 1rem; transform: none; }

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label,
.input-group label.active {
    top: -12px;
    font-size: 0.8rem;
    color: var(--text-main);
    background: var(--bg-dark);
    padding: 0 4px;
}
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label { top: -12px; left: 0.5rem; }

.form-notice {
    background: rgba(43, 40, 37, 0.05);
    border-left: 2px solid;
    border-image: var(--gold-gradient) 1;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.6;
}

.drink-list { display: flex; flex-direction: column; gap: 0.8rem; }
.drink-cat-title { font-size: 1.1rem; color: #a37822; margin-bottom: 1rem; border-bottom: 1px solid var(--border-color); padding-bottom: 0.3rem;}
.drink-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.8rem 1rem; background: var(--bg-surface);
    border: 1px solid var(--border-color); transition: var(--transition-smooth);
}
.drink-item:hover { border-color: rgba(163, 120, 34, 0.4); box-shadow: 2px 2px 10px rgba(0,0,0,0.05); }
.drink-name { color: var(--text-main); font-size: 1.05rem; }
.quantity-control input {
    width: 60px; padding: 0.4rem; background: transparent;
    border: 1px solid var(--border-color); color: var(--text-main);
    text-align: center; font-family: var(--font-body); font-size: 1rem;
}
.quantity-control input:focus { outline: none; border-color: #a37822; }

footer { text-align: center; padding: 3rem 5%; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; border-top: 1px solid var(--border-color); }

/* Utility Classes */
.mt-10 { margin-top: 2.5rem; }
.mt-15 { margin-top: 3.75rem; }
.mt-20 { margin-top: 5rem; }
.mb-20 { margin-bottom: 5rem; }
.text-center { text-align: center; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInScale { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; padding-top: 8rem; }
    .hero h1 { font-size: 3rem; }
    .hero-image-container { display: none; }
    
    /* Hamburger & Responsive Nav */
    .hamburger { display: flex; }
    nav ul {
        flex-direction: column;
        position: fixed;
        left: -100%;
        top: 75px;
        background: rgba(232, 228, 219, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }
    nav ul.active { left: 0; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .menu-item { flex-direction: column; gap: 1rem; }
    .item-price { margin-left: 0; }
}

/* Category Nav */
.menu-category-nav {
    position: sticky;
    top: 82px; /* Adjusted to sit cleanly below the main navbar */
    z-index: 900;
    background: rgba(232, 228, 219, 0.95);
    backdrop-filter: blur(10px);
    
    /* Full width breakout */
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;

    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    margin-bottom: 3rem;
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.menu-category-nav::-webkit-scrollbar {
    display: none;
}
.menu-category-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0 auto;
    width: max-content;
    justify-content: flex-start;
}
.menu-category-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease; /* Only animate color so font-weight doesn't lag */
    padding: 0.5rem 0;
    display: inline-block;
    border-bottom: 2px solid transparent; /* Reserve space so nav doesn't jump */
}
.menu-category-nav a:hover, .menu-category-nav a.active {
    color: var(--text-main);
    border-bottom: 2px solid;
    border-image: var(--gold-gradient) 1;
    font-weight: 600;
}

@media (max-width: 768px) {
    .menu-category-nav {
        top: 75px;
        padding: 0.8rem 5%;
    }
    .menu-category-nav ul {
        gap: 1.5rem;
    }
}

/* ── Tablet (481px – 767px) ─────────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-content {
        padding: 2rem 5%;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .location-layout {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* ── Catering page ──────────────────────────────────────────────────────── */
.conditional-field { display: none; }
.conditional-field.field-visible {
    display: block;
    animation: fieldFadeIn 0.22s ease both;
}
@keyframes fieldFadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.catering-tagline {
    max-width: 560px;
    margin: 1.25rem auto 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
}
.catering-notice-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.75rem auto 0;
    padding: 0.75rem 1.5rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.notice-divider { font-size: 0.4rem; opacity: 0.4; }

@media (max-width: 600px) {
    .catering-notice-bar { flex-direction: column; gap: 0.4rem; text-align: center; }
    .notice-divider { display: none; }
}

/* Catering submit overlay */
.submit-overlay {
    position: fixed;
    inset: 0;
    background: rgba(242, 238, 230, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.submit-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.submit-modal {
    text-align: center;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.overlay-spinner {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border-color);
    border-top-color: #a37822;
    border-radius: 50%;
    animation: overlaySpinAnim 0.75s linear infinite;
}
@keyframes overlaySpinAnim {
    to { transform: rotate(360deg); }
}
.overlay-check {
    width: 44px;
    height: 44px;
    border: 1.5px solid #a37822;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a37822;
    font-size: 1.25rem;
    animation: overlayCheckAnim 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes overlayCheckAnim {
    from { transform: scale(0.5); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.overlay-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-main);
    letter-spacing: 0.02em;
}
.overlay-sub {
    font-family: var(--font-body);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.8;
}
.overlay-home-btn {
    margin-top: 1rem;
}

/* Catering form validation */
.input-group.has-error input,
.input-group.has-error select,
.input-group.has-error textarea { border-color: #a33a2a !important; }
.input-group.has-error label { color: #a33a2a; }
.error-msg {
    display: block;
    color: #a33a2a;
    font-size: 0.72rem;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    animation: fieldFadeIn 0.15s ease both;
}


/* Page Loader Overlay */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: clamp(40px, 10vw, 72px);
    height: auto;
    animation: gentleFloat 2.5s ease-in-out infinite;
    filter: drop-shadow(0 15px 10px rgba(163, 120, 34, 0.1));
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    letter-spacing: 4px;
    animation: pulseText 2s infinite ease-in-out;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulseText {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}
