/* ============================================
   Little Woo's Brews — Stylesheet
   Palette: Deep Navy (#1a2744) + Warm Gold (#c9a84c)
   Fonts: Cormorant Garamond + Inter
   ============================================ */

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

:root {
    --navy: #1a2744;
    --navy-light: #243556;
    --navy-dark: #0f1a2e;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #b8943f;
    --cream: #faf8f4;
    --cream-dark: #f0ebe3;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --border: #e8e4dc;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 2rem;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.01em;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.nav.scrolled .nav-logo-mark {
    background: var(--navy);
}

.nav-logo:hover .nav-logo-mark {
    background: var(--gold);
    color: var(--navy);
    transition: background 0.3s, color 0.3s;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-medium);
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--navy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    border: 1px solid var(--navy);
    padding: 0.625rem 1.5rem;
    transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
    background: var(--navy);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

/* ============================================
   Mobile Menu
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy);
    padding: 0.5rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--navy);
    padding: 1rem 0;
    transition: color 0.3s;
    opacity: 0.9;
}

.mobile-menu-link:hover {
    color: var(--gold);
    opacity: 1;
}

.mobile-menu-divider {
    width: 48px;
    height: 1px;
    background: var(--border);
    margin: 1.5rem 0;
}

.mobile-menu-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--navy);
    letter-spacing: 0.05em;
    padding: 0.75rem 0;
}

/* ============================================
   Hero
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

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

.hero-bg-inner {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-content {
    padding-right: 1rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

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

/* Hero Image Column */
.hero-image-col {
    position: relative;
    height: 75vh;
    min-height: 500px;
}

.hero-image-hero {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: 2px;
    overflow: hidden;
}

.hero-image-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26, 39, 68, 0.4) 100%);
}

.hero-image-stack {
    position: absolute;
    bottom: 5%;
    left: -5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-image-small {
    width: 55%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ============================================
   Divider
   ============================================ */
.divider {
    background: var(--navy);
    padding: 1.5rem 2rem;
    text-align: center;
}

.divider-dark {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.divider-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
    letter-spacing: 0.02em;
}

.divider-dark .divider-text {
    color: var(--text-light);
    font-style: italic;
}

/* ============================================
   Section shared
   ============================================ */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

.text-accent {
    color: var(--gold-dark);
    font-style: italic;
}

/* ============================================
   About
   ============================================ */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

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

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

.about-image-main {
    border-radius: 2px;
    overflow: hidden;
}

.about-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 55%;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--cream);
}

.about-image-accent img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--navy);
    line-height: 1;
}

.about-stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

/* ============================================
   Menu
   ============================================ */
.menu {
    padding: 8rem 0;
    background: var(--white);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 5rem;
}

.menu-header .section-eyebrow {
    justify-content: center;
}

.menu-intro {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.menu-category {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 40px rgba(26, 39, 68, 0.06);
}

.menu-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 300;
    white-space: nowrap;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 4rem;
    padding: 1.25rem 1.5rem;
    background: var(--cream);
    border-radius: 2px;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 300;
}

.menu-note svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* ============================================
   Visit
   ============================================ */
.visit {
    padding: 8rem 0;
    background: var(--cream);
}

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

.visit-detail {
    display: flex;
    gap: 1.25rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.visit-detail-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.375rem;
}

.visit-detail-value {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

.visit-link {
    color: var(--navy);
    border-bottom: 1px solid var(--border);
    transition: border-color 0.3s, color 0.3s;
}

.visit-link:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.visit-map {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/5;
}

.visit-map-placeholder {
    width: 100%;
    height: 100%;
}

.visit-map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    padding: 8rem 0;
    background: var(--navy);
}

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

.contact .section-eyebrow span {
    color: var(--gold);
}

.contact .section-title {
    color: var(--white);
}

.contact-desc {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.contact-info-item:hover {
    color: var(--gold);
}

.contact-info-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-col {
    background: var(--navy-light);
    border-radius: 2px;
    padding: 3rem;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.625rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 0;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-bottom-color: var(--gold);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 2px;
    color: var(--gold);
    font-size: 0.9375rem;
    margin-top: 1rem;
}

.form-success svg {
    flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--navy-dark);
    padding: 5rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    font-style: italic;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-title {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-col a {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-col span {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

/* ============================================
   Scroll Reveal (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        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; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image-col {
        height: 50vh;
        min-height: 400px;
        order: -1;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .about-grid,
    .visit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-col {
        order: -1;
    }

    .about-image-main img {
        height: 450px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 6rem;
    }

    .hero-image-col {
        height: 40vh;
        min-height: 300px;
    }

    .hero-image-hero {
        width: 100%;
        height: 100%;
    }

    .hero-image-stack {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about,
    .menu,
    .visit,
    .contact {
        padding: 5rem 0;
    }

    .about-image-accent {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-image-accent img {
        height: 250px;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-form-col {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-inner {
        padding: 0;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .menu-category {
        padding: 1.75rem;
    }
}
