/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
    --color-terracotta: #C0573E;
    --color-terracotta-dark: #A0442E;
    --color-terracotta-light: #D4735C;
    --color-sand: #F5E6D3;
    --color-sand-light: #FAF3EB;
    --color-sand-dark: #E8D5BF;
    --color-charcoal: #1E1E1E;
    --color-dark: #2A2520;
    --color-text: #3D352E;
    --color-text-light: #7A6E63;
    --color-white: #FFFFFF;
    --color-overlay: rgba(30, 25, 20, 0.65);

    --font-display: 'Anton', sans-serif;
    --font-body: 'Manrope', 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: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(30, 25, 20, 0.08);
    --shadow-md: 0 8px 30px rgba(30, 25, 20, 0.12);
    --shadow-lg: 0 20px 60px rgba(30, 25, 20, 0.15);
    --shadow-accent: 0 8px 30px rgba(192, 87, 62, 0.3);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-sand-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-accent {
    color: var(--color-terracotta);
}

/* ========================================
   BACKGROUND SHAPES
   ======================================== */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--color-terracotta);
    top: -150px;
    right: -100px;
    opacity: 0.12;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-sand-dark);
    bottom: 20%;
    left: -100px;
    opacity: 0.3;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--color-terracotta-light);
    bottom: -50px;
    right: 20%;
    opacity: 0.1;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 243, 235, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 87, 62, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 243, 235, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
}

.logo-icon {
    font-size: 1.5rem;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: var(--transition);
}

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

.nav-links a:hover {
    color: var(--color-terracotta);
}

.btn-nav {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-accent);
}

.btn-nav::after {
    display: none;
}

.btn-nav:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    color: var(--color-white) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(192, 87, 62, 0.4);
}

.btn-secondary {
    background: var(--color-charcoal);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: #3D352E;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-terracotta);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--color-sand);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-terracotta);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(192, 87, 62, 0.1);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 500px;
}

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

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

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    padding-bottom: var(--space-2xl);
    position: relative;
    overflow: hidden;
    background: var(--color-sand-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    padding-right: var(--space-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--color-white);
    border: 1px solid rgba(192, 87, 62, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-terracotta);
    line-height: 1;
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 580px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-main {
    width: 380px;
    height: 480px;
    top: 0;
    right: 0;
    z-index: 2;
}

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

.hero-img-accent {
    width: 260px;
    height: 200px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--color-sand-light);
}

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

.hero-badge-hero {
    position: absolute;
    bottom: 280px;
    left: 30px;
    z-index: 4;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-accent);
    transform: rotate(-3deg);
}

/* Hero Accent Shape */
.hero-accent {
    position: absolute;
    top: 50%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--color-terracotta);
    border-radius: 50%;
    opacity: 0.06;
    transform: translateY(-50%);
    z-index: 0;
}

/* ========================================
   MENU SECTION
   ======================================== */
.menu-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
    background: var(--color-white);
}

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

.menu-card {
    background: var(--color-sand-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(192, 87, 62, 0.15);
}

.menu-card--featured {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.menu-card--featured .menu-card-desc {
    color: rgba(255,255,255,0.7);
}

.menu-card--featured .menu-card-tag {
    background: var(--color-terracotta);
    color: var(--color-white);
}

.menu-card-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--color-terracotta);
    opacity: 0.1;
    border-radius: 0 var(--radius-lg) 0 100%;
}

.menu-card-icon {
    font-size: 2.2rem;
    margin-bottom: var(--space-sm);
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
    margin-bottom: var(--space-xs);
}

.menu-card--featured .menu-card-title {
    color: var(--color-white);
}

.menu-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.menu-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(192, 87, 62, 0.1);
    color: var(--color-terracotta);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
}

.menu-card-tag.spicy {
    background: rgba(220, 50, 50, 0.1);
    color: #DC3232;
}

.menu-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-sand);
    border-radius: var(--radius-lg);
}

.menu-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
    background: var(--color-sand-light);
}

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

.about-visual {
    position: relative;
    height: 550px;
}

.about-image-main {
    width: 320px;
    height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
}

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

.about-image-secondary {
    width: 240px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 4px solid var(--color-sand-light);
}

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

.about-floating-card {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-accent);
    z-index: 2;
}

.floating-card-number {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.floating-card-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.about-content {
    padding-left: var(--space-md);
}

.about-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.feature-item strong {
    display: block;
    color: var(--color-charcoal);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */
.experience-section {
    padding: var(--space-2xl) 0;
    position: relative;
    z-index: 1;
}

.experience-card {
    background: var(--color-charcoal);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
    position: relative;
}

.experience-pattern {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(192, 87, 62, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.experience-content {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.experience-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.experience-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 400px;
}

.experience-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.experience-visual {
    position: relative;
    overflow: hidden;
}

.experience-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-charcoal) 0%, transparent 40%);
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-section {
    padding: var(--space-3xl) 0;
    position: relative;
    z-index: 1;
    background: var(--color-white);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: var(--color-sand-light);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.location-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.location-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.location-card h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 0.3rem;
}

.location-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.5;
}

.location-card a {
    color: var(--color-terracotta);
    font-weight: 700;
}

.location-card a:hover {
    text-decoration: underline;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 350px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-2xl) 0 var(--space-md);
    position: relative;
    z-index: 1;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

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

.footer-links h5,
.footer-contact h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta-light);
    margin-bottom: var(--space-sm);
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

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

.footer-contact li {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.8;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: var(--space-md);
    text-align: center;
}

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

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

    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fallback: ensure content is visible even without JS */
.reveal {
    opacity: 1;
    transform: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

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

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

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

    .hero-visual {
        order: 1;
    }

    .hero-image-stack {
        height: 400px;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 280px;
        height: 360px;
    }

    .hero-img-accent {
        width: 180px;
        height: 140px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-visual {
        height: 400px;
        max-width: 450px;
        margin: 0 auto;
    }

    .about-content {
        padding-left: 0;
    }

    .experience-card {
        grid-template-columns: 1fr;
    }

    .experience-visual {
        height: 250px;
    }

    .experience-visual::after {
        background: linear-gradient(to bottom, var(--color-charcoal) 0%, transparent 40%);
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-sand-light);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-xl);
    }

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

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

    .menu-card--featured {
        grid-column: 1 / -1;
    }

    .about-visual {
        height: 320px;
    }

    .about-image-main {
        width: 220px;
        height: 280px;
    }

    .about-image-secondary {
        width: 160px;
        height: 120px;
    }

    .experience-content {
        padding: var(--space-lg);
    }

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

    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-image-stack {
        height: 320px;
    }

    .hero-img-main {
        width: 220px;
        height: 280px;
    }

    .hero-img-accent {
        width: 140px;
        height: 110px;
    }

    .hero-badge-hero {
        bottom: 200px;
        left: 10px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
