/* ===================================
   LA COFFEETERA — Design System
   Morsel-inspired, Mulish + Roboto
   =================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200;0,300;0,400;0,600;1,200;1,300&family=Roboto:ital,wght@0,300;0,400;0,500;1,300&display=swap');

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

:root {
    --slate: #141414;
    --slate-light: #2E2E2E;
    --gold: #C59764;
    --gold-hover: #B8854D;
    --cream: #F3F3F3;
    --offwhite: #FAFAFA;
    --charcoal: #3D3D3D;
    --gray: #989898;
    --light-gray: #BCBCBC;
    --border: #EBEBEB;
    --white: #FFFFFF;
    --danger: #C0392B;
    --success: #27AE60;

    --font-heading: 'Mulish', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --max-width: 1200px;
    --nav-height: 72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--offwhite);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
    letter-spacing: 2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; letter-spacing: 1.5px; }

.label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav--transparent { background: transparent; }

@media (max-width: 768px) {
    .nav--transparent {
        background: rgba(20, 20, 20, 0.97) !important;
        backdrop-filter: blur(12px);
    }
}
.nav--solid {
    background: rgba(20, 20, 20, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav__logo { height: 64px; }
.nav__logo img { height: 100%; width: auto; filter: brightness(0) invert(1); }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.btn-order {
    display: inline-block;
    padding: 0.5rem 1.4rem;
    background: var(--gold);
    color: #000 !important;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: background 0.2s;
}

.btn-order:hover { background: var(--gold-hover); }
.btn-order::after { display: none !important; }

/* Mobile menu */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #141414;
    z-index: 1001;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu__order {
    margin-top: 1rem;
    background: var(--gold) !important;
    color: #000 !important;
    font-size: 0.75rem !important;
    font-family: var(--font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    padding: 0.85rem 2.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    padding: 0.5rem;
}

.mobile-menu__close:hover { color: var(--white); }

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__hamburger { display: flex; }
}

/* ===================================
   HERO
   =================================== */
.hero {
    position: relative;
    height: 92vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #111010;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: #1a1a1a;
    opacity: 0.38;
    transform: scale(1.04);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(10,8,4,0.8) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 660px;
    padding: 2rem;
    animation: fadeUp 1s ease-out;
}

.hero__label {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
    display: block;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 200;
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.05;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    margin-bottom: 2.75rem;
    line-height: 1.75;
    letter-spacing: 0.2px;
}

.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.85rem 2.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 9999px;
    transition: all 0.2s;
    font-family: var(--font-body);
}

.btn--solid { background: var(--gold); color: #000; border: 1px solid var(--gold); }
.btn--solid:hover { background: var(--gold-hover); border-color: var(--gold-hover); }

.btn--outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.45); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--dark { background: transparent; color: var(--charcoal); border: 1px solid var(--border); }
.btn--dark:hover { border-color: var(--gold); color: var(--gold); }

/* ===================================
   SECTIONS
   =================================== */
.section {
    padding: 5.5rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section--cream { background: var(--cream); max-width: 100%; }
.section--cream .section__inner { max-width: var(--max-width); margin: 0 auto; padding: 5.5rem 2rem; }

.section--slate { background: var(--slate); max-width: 100%; color: var(--white); }
.section--slate .section__inner { max-width: var(--max-width); margin: 0 auto; }

.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section__header h2 { margin-bottom: 0.75rem; }
.section__header .label { margin-bottom: 0.75rem; display: block; }

.divider {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin: 1.25rem auto;
}

/* ===================================
   GRID / ABOUT TEASER
   =================================== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* ===================================
   FEATURED GRID (Homepage)
   =================================== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.featured-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(0,0,0,0.08);
}

.featured-card__img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: var(--cream);
}

.featured-card__body { padding: 1.5rem; }

.featured-card__name {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.45rem;
    letter-spacing: 1.5px;
}

.featured-card__desc {
    font-size: 0.84rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    font-weight: 300;
}

.featured-card__price {
    font-weight: 500;
    color: var(--gold);
    font-size: 1rem;
}

/* ===================================
   PHOTO GALLERY (Homepage)
   =================================== */
.photo-gallery {
    background: var(--white);
    padding: 5.5rem 2rem;
}

.photo-gallery__inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.photo-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.photo-gallery__item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--cream);
}

.photo-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.photo-gallery__item:hover img { transform: scale(1.06); }

.photo-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s;
    pointer-events: none;
}

.photo-gallery__item:hover::after { background: rgba(0,0,0,0.12); }

@media (max-width: 600px) {
    .photo-gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================
   INFO BAR
   =================================== */
.info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-bar__item {
    padding: 3.5rem 2.5rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.info-bar__item:last-child { border-right: none; }

.info-bar__item h3 {
    font-size: 0.68rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.info-bar__item p { font-size: 0.93rem; color: var(--gray); line-height: 1.75; font-weight: 300; }
.info-bar__item a { color: var(--gray); transition: color 0.2s; }
.info-bar__item a:hover { color: var(--gold); }

/* ===================================
   MENU PAGE
   =================================== */
.menu-nav {
    position: sticky;
    top: var(--nav-height);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-nav__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 0;
}

.menu-nav a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--light-gray);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.menu-nav a:hover,
.menu-nav a.active { color: var(--charcoal); border-bottom-color: var(--gold); }

.menu-category { padding-top: 1rem; margin-bottom: 3.5rem; }

.menu-category__header {
    margin: 0 -2rem 2.5rem;
    padding: 2.5rem 2rem 2rem;
    background: var(--cream);
    border-top: 3px solid var(--gold);
}

.menu-category__header h2 {
    font-size: clamp(2.4rem, 3vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 5px;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.menu-category__header p {
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
    font-weight: 300;
    margin-top: 0.5rem;
}

.menu-category__hours {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: block;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 420px), 1fr));
    gap: 0 3rem;
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.menu-item__img {
    width: 68px;
    height: 68px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--cream);
}

.menu-item__info { flex: 1; }

.menu-item__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.25rem;
}

.menu-item__name {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.menu-item__badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 9999px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.menu-item__badge--seasonal { background: var(--charcoal); color: var(--white); }
.menu-item__badge--popular { background: var(--gold); color: #000; }

.menu-item__price { font-weight: 500; color: var(--gold); white-space: nowrap; font-size: 0.95rem; }
.menu-item__price-note { font-size: 0.73rem; color: var(--light-gray); font-weight: 400; }
.menu-item__desc { font-size: 0.84rem; color: var(--gray); line-height: 1.55; font-weight: 300; }

/* ===================================
   ABOUT PAGE
   =================================== */
.about-hero {
    height: 50vh;
    min-height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--slate);
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.about-hero h1 {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content__text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-content__img {
    border-radius: 6px;
    object-fit: cover;
    width: 100%;
    max-height: 500px;
}

@media (max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
}

/* ===================================
   CONTACT PAGE
   =================================== */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--cream);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-form { max-width: 500px; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: #0D0D0D;
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 2rem 2.5rem;
}

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

.footer h4 {
    color: var(--gold);
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
}

.footer p, .footer a { font-size: 0.88rem; line-height: 2; font-weight: 300; }
.footer a { transition: color 0.2s; }
.footer a:hover { color: var(--gold); }

.footer__bottom {
    max-width: var(--max-width);
    margin: 2.5rem auto 0;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.social-links { display: flex; gap: 0.75rem; margin-top: 0.25rem; }
.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--gray);
    transition: border-color 0.2s, color 0.2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover { background: var(--gold-hover); }

/* ===================================
   ADMIN STYLES
   =================================== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: #1A1A1A;
    color: var(--white);
    padding: 1.5rem 0;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
}

.admin-sidebar__logo {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.admin-sidebar__logo small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.25rem;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.2s;
}

.admin-sidebar a:hover,
.admin-sidebar a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.admin-main {
    flex: 1;
    margin-left: 240px;
    padding: 2rem;
    background: var(--offwhite);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 1.5rem;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.admin-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.admin-stat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.25rem;
    text-align: center;
}

.admin-stat__number {
    font-size: 2rem;
    font-weight: 500;
    color: var(--charcoal);
}

.admin-stat__label {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0.25rem;
}

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; }

.admin-table th {
    text-align: left;
    padding: 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    border-bottom: 2px solid var(--border);
}

.admin-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(0,0,0,0.01); }

.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    color: var(--charcoal);
    transition: all 0.2s;
}

.admin-btn:hover { border-color: var(--charcoal); }
.admin-btn--primary { background: var(--gold); color: #000; border-color: var(--gold); }
.admin-btn--primary:hover { background: var(--gold-hover); }
.admin-btn--danger { color: var(--danger); border-color: var(--danger); }
.admin-btn--danger:hover { background: var(--danger); color: var(--white); }
.admin-btn--sm { padding: 0.25rem 0.5rem; font-size: 0.75rem; }

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.open { display: flex; }

.modal {
    background: var(--white);
    border-radius: 4px;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 2rem;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal__header h2 { font-size: 1.25rem; }

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    line-height: 1;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 3000;
    animation: slideIn 0.3s ease-out;
}

.toast--success { background: var(--success); }
.toast--error { background: var(--danger); }

/* Login page */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.login-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

.login-card h1 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.login-card .label { margin-bottom: 2rem; display: block; }

.login-error {
    background: rgba(192,57,43,0.1);
    color: var(--danger);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Floating order button */
.floating-order {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 500;
}

/* Terms & Conditions page */
.terms-body h2 { font-size: 1.1rem; margin: 2rem 0 0.75rem; color: var(--charcoal); }
.terms-body p { font-size: 0.95rem; line-height: 1.8; color: var(--gray); margin-bottom: 1rem; }
.terms-body ul { margin: 0 0 1rem 1.5rem; }
.terms-body ul li { font-size: 0.95rem; line-height: 1.8; color: var(--gray); }
.terms-body address { font-style: normal; font-size: 0.95rem; line-height: 1.9; color: var(--gray); }
.terms-body address a { color: var(--gold); }

/* Dynamic page content */
.page-body h1, .page-body h2, .page-body h3 { margin: 1.75rem 0 0.75rem; }
.page-body h2 { font-size: 1.3rem; }
.page-body h3 { font-size: 1.1rem; }
.page-body p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; color: var(--gray); }
.page-body ul, .page-body ol { margin: 0 0 1rem 1.5rem; }
.page-body li { font-size: 0.95rem; line-height: 1.8; }
.page-body a { color: var(--gold); }
.page-body strong { font-weight: 600; }

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.fade-in { animation: fadeUp 0.6s ease-out both; }
.fade-in-delay { animation: fadeUp 0.6s ease-out 0.2s both; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    /* Layout */
    .section { padding: 3.5rem 1.25rem; }
    .section--cream .section__inner { padding: 3.5rem 1.25rem !important; }
    .grid-2 { grid-template-columns: 1fr; gap: 2rem; }

    /* Hero */
    .hero { height: 88vh; min-height: 500px; }
    .hero__title { letter-spacing: 4px; }
    .about-hero { height: 40vh; min-height: 260px; }

    /* About content */
    .about-content { grid-template-columns: 1fr; }
    .about-content__img { max-height: 280px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .map-container { height: 260px; }

    /* Menu */
    .featured-grid { grid-template-columns: 1fr; }
    .menu-nav { padding: 0 1rem; }
    .menu-category__header { margin: 0 -1.25rem 2rem; padding: 2rem 1.25rem 1.5rem; }

    /* Info bar */
    .info-bar { grid-template-columns: 1fr; }
    .info-bar__item { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 1.5rem; }

    /* Photo gallery */
    .photo-gallery { padding: 3.5rem 1.25rem; }
    .photo-gallery__grid { grid-template-columns: repeat(2, 1fr); }

    /* Footer */
    .footer { padding: 3rem 1.25rem 1.5rem; }
    .footer__inner { gap: 1.5rem; }
    .footer__bottom { font-size: 0.75rem; padding-top: 1.5rem; }

    /* Nav */
    .nav__logo { height: 48px; }
    .admin-sidebar { display: none; }
    .admin-main { margin-left: 0; }

    /* Scroll top — raise above bottom nav */
    .scroll-top { bottom: 72px; right: 1.25rem; }

    /* Single-column menu items */
    .menu-items { grid-template-columns: 1fr; gap: 0; }

    /* Category tabs — gold underline active */
    .menu-nav__inner { gap: 0; }
    .menu-nav a { font-size: 0.72rem; padding: 0.9rem 1rem; white-space: nowrap; border-bottom: 2px solid transparent; }
    .menu-nav a.active { border-bottom-color: var(--gold); color: var(--charcoal); }

    /* Bottom padding so content clears the bottom nav */
    body { padding-bottom: 60px; }
}

/* ===================================
   BOTTOM NAV (mobile only)
   =================================== */
.bottom-nav { display: none !important; }

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        height: 60px;
        background: #fff;
        border-top: 1px solid var(--border);
        z-index: 900;
        justify-content: space-around;
        align-items: center;
    }
    .bottom-nav__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #aaa;
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        text-decoration: none;
        padding: 0 1rem;
        transition: color 0.2s;
    }
    .bottom-nav__item.active,
    .bottom-nav__item:hover { color: var(--slate); }
    .bottom-nav__item svg {
        width: 22px; height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
}
