/* ========================================
   BAR BUNNY — Café & Bar
   Terracotta + Sand | Confident Corporate
   ======================================== */

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

:root {
    --terracotta: #B85C38;
    --terracotta-dark: #9A4B2C;
    --terracotta-light: #D4845E;
    --sand: #F5EDE4;
    --sand-light: #FAF6F1;
    --sand-dark: #E8DDD2;
    --charcoal: #1A1A1A;
    --charcoal-soft: #2D2D2D;
    --gray-900: #1C1C1C;
    --gray-700: #3D3D3D;
    --gray-500: #6B6B6B;
    --gray-300: #B0B0B0;
    --gray-100: #E8E8E8;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--sand-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
label { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-500); }

.skip-link {
    position: absolute; top: -100%; left: 1rem;
    background: var(--terracotta); color: var(--white);
    padding: 0.5rem 1rem; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 600;
    transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

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

/* ── Typography ───────────────────────── */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-center { text-align: center; }

/* ── Buttons ──────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(184, 92, 56, 0.3);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 92, 56, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
}
.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────── */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(250, 246, 241, 0.97);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.logo-icon { color: var(--terracotta); }

.logo--light { color: var(--white); }

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--terracotta); background: rgba(184,92,56,0.06); }

.btn-nav {
    background: var(--terracotta);
    color: var(--white) !important;
    border-radius: var(--radius-md);
    margin-left: 0.5rem;
}
.btn-nav:hover { background: var(--terracotta-dark); color: var(--white) !important; }

.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    transition: background var(--transition);
}
.menu-toggle:hover { background: rgba(0,0,0,0.05); }

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px; height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -6px; left: 0; }
.hamburger::after { content: ''; position: absolute; top: 6px; left: 0; }

.menu-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.menu-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ─────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(26,26,26,0.82) 0%, rgba(26,26,26,0.55) 50%, rgba(184,92,56,0.3) 100%);
    z-index: 1;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1.5rem 6rem;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 6px; height: 6px;
    background: var(--terracotta-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta-light);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.hero-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}
.meta-item a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.meta-item a:hover { color: var(--white); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Sections ─────────────────────────── */
.section {
    padding: 6rem 0;
}

/* ── About ────────────────────────────── */
.about { background: var(--sand-light); }

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

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 40%;
    background: var(--terracotta);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.15;
}

.about-content .section-title { margin-top: 0.25rem; }

.about-content p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--sand-dark);
}

.stat { flex: 1; text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.375rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    font-weight: 500;
}

.stat-divider {
    width: 1px; height: 40px;
    background: var(--sand-dark);
}

/* ── Menu ─────────────────────────────── */
.menu { background: var(--white); }

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    border: 1.5px solid var(--gray-100);
    border-radius: 100px;
    transition: all var(--transition);
    cursor: pointer;
}
.menu-tab:hover { color: var(--terracotta); border-color: var(--terracotta-light); }
.menu-tab.active {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item {
    padding: 1.5rem;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all var(--transition);
}
.menu-item:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--charcoal);
}

.menu-item-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(184,92,56,0.1);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── Ambiance / Gallery ───────────────── */
.ambiance { background: var(--sand-light); }

.gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-item--large { grid-column: span 7; grid-row: span 2; }
.gallery-item--large img { min-height: 500px; }
.gallery-item--tall { grid-column: span 5; grid-row: span 2; }
.gallery-item--tall img { min-height: 500px; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) img { min-height: 240px; }

/* ── Visit ────────────────────────────── */
.visit { background: var(--white); }

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.visit-info { padding: 1rem 0; }

.visit-info .section-title { margin-top: 0.25rem; }

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.visit-detail strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.visit-detail p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
}
.visit-detail a { color: var(--terracotta); transition: color var(--transition); }
.visit-detail a:hover { color: var(--terracotta-dark); }

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
}
.visit-map iframe { width: 100%; height: 100%; }

/* ── CTA ──────────────────────────────── */
.cta {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(184,92,56,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner .section-label { color: var(--terracotta-light); }

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.cta-headline em { font-style: italic; color: var(--terracotta-light); }

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* ── Contact ──────────────────────────── */
.contact { background: var(--sand-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info .section-title { margin-top: 0.25rem; }

.contact-info p {
    color: var(--gray-500);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-email, .contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}
.contact-email:hover, .contact-phone:hover {
    border-color: var(--terracotta-light);
    color: var(--terracotta);
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.form-group { margin-bottom: 1.5rem; }
.form-group--textarea { margin-bottom: 1.75rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background: var(--sand-light);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184,92,56,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    border-radius: var(--radius-md);
    color: #16a34a;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ── Footer ───────────────────────────── */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 260px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
    font-size: 0.9375rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--terracotta-light); }

.footer-links li span { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.9375rem; }

.footer-contact p { font-size: 0.9375rem; line-height: 1.8; margin-bottom: 0.25rem; }
.footer-contact a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-contact a:hover { color: var(--terracotta-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.35);
}

/* ── Mobile Nav Overlay ───────────────── */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(250,246,241,0.98);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

.nav-overlay .nav-list {
    flex-direction: column;
    gap: 0.5rem;
}
.nav-overlay .nav-link {
    font-size: 1.25rem;
    padding: 0.875rem 1.5rem;
}
.nav-overlay .btn-nav { margin-left: 0; margin-top: 1rem; }

/* ── Responsive ───────────────────────── */
@media (max-width: 1024px) {
    .about-grid { gap: 2.5rem; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }
    .gallery-item--large img { min-height: 300px; }
    .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
    .gallery-item--tall img { min-height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .menu-toggle { display: flex; }
    .nav { display: none; }

    .hero-content { padding: 7rem 1.5rem 5rem; }
    .hero-meta { flex-direction: column; gap: 0.75rem; align-items: center; }

    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { max-height: 400px; }
    .about-image-accent { display: none; }
    .about-stats { flex-direction: column; gap: 1.25rem; }
    .stat-divider { width: 40px; height: 1px; }

    .menu-grid { grid-template-columns: 1fr; }

    .gallery { grid-template-columns: 1fr; }
    .gallery-item--large,
    .gallery-item--tall { grid-column: span 1; }
    .gallery-item img { min-height: 220px !important; }

    .visit-grid { grid-template-columns: 1fr; }
    .visit-map { min-height: 300px; }

    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-form { padding: 1.75rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
    .menu-tabs { gap: 0.375rem; }
    .menu-tab { padding: 0.5rem 1rem; font-size: 0.8125rem; }
}

/* ── Animations ───────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
