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

:root {
    --emerald-deep: #064e3b;
    --emerald: #065f46;
    --emerald-light: #059669;
    --emerald-muted: #d1fae5;
    --cream: #faf8f5;
    --cream-warm: #f5f0e8;
    --cream-dark: #e8e0d0;
    --gold: #c9a84c;
    --gold-light: #d4b87a;
    --text-dark: #1a1a1a;
    --text-body: #2d2d2d;
    --text-muted: #6b6b6b;
    --text-light: #949494;
    --white: #ffffff;
    
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', system-ui, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background-color: 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: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--emerald-deep);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 200;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(6, 78, 59, 0.08);
    padding: var(--space-sm) 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--emerald-deep);
    letter-spacing: 0.02em;
}

.logo-icon {
    color: var(--emerald-deep);
    flex-shrink: 0;
}

.logo-text {
    font-style: italic;
}

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

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

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--emerald-deep);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--emerald-deep);
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.75rem;
}

.btn-primary {
    background: var(--emerald-deep);
    color: var(--white);
    border-color: var(--emerald-deep);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--emerald);
    border-color: var(--emerald);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-deep);
    border-color: var(--emerald-deep);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--emerald-deep);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(250, 248, 245, 0.5);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: var(--white);
    color: var(--emerald-deep);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--emerald-deep);
    color: var(--white);
    border-color: var(--emerald-deep);
}

.btn-dark:hover,
.btn-dark:focus {
    background: var(--emerald);
    border-color: var(--emerald);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #064e3b 0%, 
            #065f46 25%, 
            #059669 50%, 
            #d4b87a 75%, 
            #c9a84c 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(6, 78, 59, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(5, 150, 105, 0.5) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 78, 59, 0.3) 0%,
        rgba(6, 78, 59, 0.1) 50%,
        rgba(6, 78, 59, 0.4) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 760px;
    padding: var(--space-3xl) var(--space-lg);
}

.hero-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

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

.hero-sub {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.85);
    margin-bottom: var(--space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero-actions .btn-outline-light {
    border-color: rgba(250, 248, 245, 0.6);
}

.hero-actions .btn-outline-light:hover {
    background: var(--white);
    color: var(--emerald-deep);
}

.hero-actions .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--emerald-deep);
}

.hero-actions .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Section shared */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-light);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--emerald-deep);
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 520px;
}

/* Intro */
.intro {
    padding: var(--space-3xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-text p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: var(--space-md);
}

.intro-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--cream-dark);
}

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

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--emerald-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.intro-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

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

.image-frame:hover img {
    transform: scale(1.03);
}

.image-frame-wide {
    border-radius: var(--radius-lg);
}

.image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-light);
    border-radius: var(--radius-md);
    z-index: -1;
}

/* Divider */
.divider-section {
    padding: 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--cream-dark), transparent);
}

/* Menu */
.menu-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.menu-section .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.menu-section .section-subtitle {
    margin: 0 auto;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.menu-category {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.08);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-muted);
    border-radius: var(--radius-md);
    color: var(--emerald-deep);
    margin-bottom: var(--space-md);
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--emerald-deep);
    margin-bottom: var(--space-md);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--cream-dark);
}

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

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-dark);
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 300;
    text-align: right;
    line-height: 1.5;
}

/* Store */
.store-section {
    padding: var(--space-3xl) 0;
}

.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.store-content p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: var(--space-lg);
}

.store-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.store-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    color: var(--text-body);
}

.feature-icon {
    color: var(--gold);
    flex-shrink: 0;
}

/* Gallery */
.gallery-section {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.gallery-section .section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s 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: var(--space-lg) var(--space-md) var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 8; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 5 / 8; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 8 / 11; grid-row: 2 / 3; }

/* CTA */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--emerald-deep);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-section .section-eyebrow {
    color: var(--gold-light);
}

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

.cta-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.75);
    margin-bottom: var(--space-xl);
}

.cta-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.cta-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cta-detail-label {
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.cta-detail-value {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--white);
    line-height: 1.6;
}

.cta-detail-value a {
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 1px solid rgba(250, 248, 245, 0.3);
}

.cta-detail-value a:hover {
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--emerald-deep);
}

.cta-actions .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

/* Footer */
.site-footer {
    background: #043929;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(250, 248, 245, 0.5);
    margin-top: var(--space-sm);
    line-height: 1.6;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.875rem;
    color: rgba(250, 248, 245, 0.6);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.35);
}

/* Animations */
[data-animate] {
    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);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 1024px) {
    .menu-categories {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: auto; }
    
    .gallery-item img {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-lg);
        padding: var(--space-xl);
        transform: translateX(100%);
        transition: var(--transition);
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1rem;
    }
    
    .intro-grid,
    .store-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .intro-image {
        order: -1;
    }
    
    .image-accent {
        display: none;
    }
    
    .intro-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-divider {
        display: none;
    }
    
    .cta-details {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) { grid-column: auto; }
    .gallery-item:nth-child(2) { grid-column: auto; }
    .gallery-item:nth-child(3) { grid-column: auto; }
    .gallery-item:nth-child(4) { grid-column: auto; }
    .gallery-item:nth-child(5) { grid-column: auto; }
    
    .gallery-item img {
        height: 240px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .menu-category {
        padding: var(--space-md);
    }
    
    .menu-item-name {
        font-size: 0.9375rem;
    }
    
    .menu-item-desc {
        font-size: 0.75rem;
    }
}
