/* ============================================
   Queen Lounge — Café & Bar, Seattle
   Clean Minimalist · Plum + Amber
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum palette */
    --plum-50: #fdf2f8;
    --plum-100: #fce7f3;
    --plum-200: #fbcfe8;
    --plum-300: #f9a8d4;
    --plum-400: #f472b6;
    --plum-500: #db2777;
    --plum-600: #be185d;
    --plum-700: #9d174d;
    --plum-800: #831843;
    --plum-900: #500724;
    --plum-950: #2d0515;

    /* Deep plum (near-black) */
    --plum-deep: #1a0a12;
    --plum-deep-soft: #2a1520;

    /* Amber palette */
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #faf8f7;
    --cream: #f5f0ec;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--off-white);
    -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;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

/* --- Section Titles --- */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--plum-deep);
    margin-bottom: var(--space-xl);
}

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

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

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 520px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background-color: var(--plum-800);
    color: var(--white);
    border: 1px solid var(--plum-800);
}

.btn--primary:hover {
    background-color: var(--plum-900);
    border-color: var(--plum-900);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(80, 7, 36, 0.2);
}

.btn--ghost {
    background-color: transparent;
    color: var(--plum-800);
    border: 1px solid var(--plum-200);
}

.btn--ghost:hover {
    background-color: var(--plum-50);
    border-color: var(--plum-400);
}

.btn--ghost.btn--light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost.btn--light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn--full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(26, 10, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-base);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-letter {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--amber-400);
    line-height: 1;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--amber-400);
    transition: width var(--transition-base);
}

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

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

.nav-link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.nav-toggle {
    display: none;
    color: var(--white);
    padding: var(--space-sm);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--plum-deep);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.mobile-menu-link:hover {
    color: var(--amber-400);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--plum-deep);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 10, 18, 0.88) 0%,
        rgba(42, 21, 32, 0.75) 50%,
        rgba(26, 10, 18, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px var(--space-xl) 80px;
    width: 100%;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.hero-greeting-line {
    width: 48px;
    height: 1px;
    background-color: var(--amber-400);
    flex-shrink: 0;
}

.hero-greeting-text {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-400);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-xl);
    max-width: 700px;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--amber-300);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.hero-actions .btn--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-actions .btn--ghost:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* Floating Stat Cards */
.hero-cards {
    position: absolute;
    right: var(--space-xl);
    bottom: var(--space-4xl);
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    min-width: 220px;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(-4px);
}

.stat-card--1 { transform: translateX(12px); }
.stat-card--1:hover { transform: translateX(8px); }
.stat-card--2 { transform: translateX(6px); }
.stat-card--2:hover { transform: translateX(2px); }
.stat-card--3 { transform: translateX(0px); }
.stat-card--3:hover { transform: translateX(-4px); }

.stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: rgba(251, 205, 212, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-300);
    flex-shrink: 0;
}

.stat-card-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

.stat-card-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
}

/* ============================================
   SECTIONS (general)
   ============================================ */
.section {
    padding: var(--space-5xl) 0;
}

.section--about {
    background-color: var(--off-white);
}

.section--menu {
    background-color: var(--white);
}

.section--gallery {
    background-color: var(--cream);
}

.section--hours {
    background-color: var(--off-white);
}

.section--cta {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-800) 100%);
    padding: var(--space-5xl) 0;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

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

.about-image-wrap img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content {
    padding: var(--space-xl) 0;
}

.section-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-2xl);
    color: var(--plum-700);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
}

.about-signature svg {
    opacity: 0.5;
}

/* ============================================
   MENU
   ============================================ */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.menu-tab {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
    background-color: transparent;
}

.menu-tab:hover {
    color: var(--plum-700);
    border-color: var(--plum-200);
}

.menu-tab.active {
    background-color: var(--plum-800);
    color: var(--white);
    border-color: var(--plum-800);
}

.menu-panel {
    display: none;
}

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

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

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

.menu-item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--gray-100);
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--plum-deep);
    white-space: nowrap;
}

.menu-item-divider {
    flex: 1;
    height: 1px;
    background-color: var(--gray-200);
    min-width: 24px;
    margin: 0 var(--space-sm);
}

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

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item--large {
    grid-column: 1 / 6;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 500px;
}

.gallery-item:not(.gallery-item--large) img {
    height: 240px;
}

.gallery-item--wide {
    grid-column: 1 / 13;
    grid-row: 2 / 3;
}

.gallery-item--wide img {
    height: 300px;
}

/* ============================================
   HOURS & LOCATION
   ============================================ */
.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.hours-list {
    border-top: 1px solid var(--gray-200);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-100);
}

.hours-day {
    font-size: 0.95rem;
    color: var(--plum-deep);
    font-weight: 400;
}

.hours-time {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.hours-location {
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
}

.location-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum-deep);
    margin-bottom: var(--space-lg);
}

.location-address {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.location-phone,
.location-email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--plum-700);
    margin-bottom: var(--space-md);
    transition: color var(--transition-fast);
}

.location-phone:hover,
.location-email:hover {
    color: var(--plum-500);
}

.map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: var(--space-xl);
}

/* ============================================
   CTA
   ============================================ */
.cta-card {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: var(--space-md);
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.cta-body {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.95rem;
    color: var(--gray-600);
    transition: color var(--transition-fast);
}

.contact-detail a {
    color: var(--gray-600);
}

.contact-detail a:hover {
    color: var(--plum-700);
}

.contact-detail svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
    background-color: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-100);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-800);
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--plum-400);
    box-shadow: 0 0 0 3px rgba(219, 39, 119, 0.08);
}

.form-input::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background-color: var(--plum-50);
    border: 1px solid var(--plum-200);
    border-radius: var(--radius-sm);
    color: var(--plum-800);
    font-size: 0.9rem;
    margin-top: var(--space-md);
}

.form-success.is-visible {
    display: flex;
}

.form-success svg {
    color: var(--plum-600);
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--plum-deep);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo-letter {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--amber-400);
}

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

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--amber-400);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--transition-fast);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-contact-item a:hover {
    color: var(--amber-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-cards {
        display: none;
    }

    .about-grid,
    .hours-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image-wrap {
        max-width: 500px;
    }

    .gallery-item--large {
        grid-column: 1 / 7;
    }

    .gallery-item--wide {
        grid-column: 1 / 13;
    }

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

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

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content {
        padding: 100px var(--space-xl) 60px;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .section {
        padding: var(--space-4xl) 0;
    }

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

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

    .gallery-item--large {
        grid-column: 1 / 3;
    }

    .gallery-item--large img,
    .gallery-item:not(.gallery-item--large) img,
    .gallery-item--wide img {
        height: 220px;
    }

    .gallery-item--wide {
        grid-column: 1 / 3;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .menu-tabs {
        gap: var(--space-xs);
    }

    .menu-tab {
        padding: 8px 16px;
        font-size: 0.72rem;
    }

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

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: 1 / 1;
    }

    .gallery-item img {
        height: 260px !important;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }
}
