/* ========================================
   Panda Kitchen Chinese — Custom Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --cream-50: #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fef08a;
    --warm-50: #faf9f6;
    --warm-100: #f5f0e8;
    --warm-200: #e8e0d0;
    --warm-300: #d4c9b5;
    --warm-400: #b8a892;
    --warm-500: #9c8b74;
    --warm-600: #7a6b56;
    --warm-700: #5c4f3e;
    --warm-800: #3d3428;
    --warm-900: #1f1a14;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06), 0 1px 2px rgba(6, 78, 59, 0.04);
    --shadow-md: 0 4px 16px rgba(6, 78, 59, 0.08), 0 2px 6px rgba(6, 78, 59, 0.05);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12), 0 4px 12px rgba(6, 78, 59, 0.06);
    --shadow-xl: 0 24px 60px rgba(6, 78, 59, 0.15), 0 8px 20px rgba(6, 78, 59, 0.08);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--warm-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--emerald-700);
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.08);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(254, 253, 248, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--emerald-700);
    text-decoration: none;
}

.nav-logo:hover {
    color: var(--emerald-800);
}

.logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--warm-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

.nav-cta {
    padding: 10px 22px;
    background: var(--emerald-600);
    color: white !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--emerald-700);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.nav-toggle:hover {
    background: var(--emerald-50);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--warm-700);
    position: relative;
    transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--warm-700);
    transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px 60px;
    background: linear-gradient(160deg, var(--cream-50) 0%, var(--emerald-50) 50%, var(--cream-100) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(254, 252, 232, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 1px solid var(--emerald-200);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-700);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--warm-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-headline span {
    color: var(--emerald-600);
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-600);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--emerald-600);
    color: white;
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3), var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--emerald-700);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35), var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--emerald-700);
    border: 2px solid var(--emerald-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-400);
    color: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

.btn-outline:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-500);
    color: var(--emerald-700);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    max-width: 520px;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 520/420;
}

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

.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(6, 78, 59, 0.7));
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.overlay-text {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

/* Floating Stat Cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-card-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.float-card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--warm-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.float-card-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--warm-800);
}

.float-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.3s;
}

.float-card-3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2.6s;
}

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

/* --- Section Divider --- */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 0 24px;
    color: var(--emerald-400);
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-header.light {
    color: white;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--emerald-100);
    color: var(--emerald-700);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--warm-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--warm-600);
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.8);
}

/* --- Menu Section --- */
.menu-section {
    padding: 100px 24px;
    background: var(--cream-50);
}

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.menu-cat-btn {
    padding: 10px 22px;
    background: white;
    border: 2px solid var(--warm-200);
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--warm-600);
    cursor: pointer;
    transition: all var(--transition);
}

.menu-cat-btn:hover {
    border-color: var(--emerald-300);
    color: var(--emerald-700);
}

.menu-cat-btn.active {
    background: var(--emerald-600);
    border-color: var(--emerald-600);
    color: white;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.menu-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(5, 150, 105, 0.06);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    position: relative;
    aspect-ratio: 400/260;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.05);
}

.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--emerald-600);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.menu-card-body {
    padding: 22px;
}

.menu-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--warm-900);
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--warm-600);
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 24px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    color: var(--emerald-800);
    font-size: 0.9rem;
    font-weight: 600;
}

.menu-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--emerald-500);
}

/* --- About Section --- */
.about-section {
    padding: 100px 24px;
    background: white;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 500/400;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid white;
    aspect-ratio: 400/300;
    max-width: 280px;
}

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

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald-600);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 220px;
    box-shadow: var(--shadow-lg);
}

.about-accent .accent-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.about-accent p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.95;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--warm-600);
    margin-bottom: 18px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--warm-800);
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--warm-500);
    line-height: 1.5;
}

/* --- Specials Section --- */
.specials-section {
    padding: 100px 24px;
    background: linear-gradient(160deg, var(--emerald-800) 0%, var(--emerald-900) 100%);
    position: relative;
    overflow: hidden;
}

.specials-bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.specials-section .container {
    position: relative;
    z-index: 1;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.special-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.special-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.special-card-img {
    aspect-ratio: 480/320;
    overflow: hidden;
}

.special-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-card:hover .special-card-img img {
    transform: scale(1.05);
}

.special-card-body {
    padding: 28px;
}

.special-tag {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--emerald-200);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.special-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.special-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Visit Section --- */
.visit-section {
    padding: 100px 24px;
    background: var(--cream-50);
}

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

.visit-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-600);
    margin-bottom: 36px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.detail-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-600);
}

.visit-detail h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--warm-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 1rem;
    color: var(--warm-800);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--emerald-600);
    font-weight: 700;
}

.visit-detail a:hover {
    color: var(--emerald-700);
}

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--warm-100);
    aspect-ratio: 1/1;
    max-height: 480px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 48px;
    text-align: center;
    background: linear-gradient(160deg, var(--emerald-50) 0%, var(--cream-100) 100%);
}

.map-icon {
    width: 72px;
    height: 72px;
    background: var(--emerald-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--warm-900);
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 1rem;
    color: var(--warm-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--emerald-600);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.map-link:hover {
    background: var(--emerald-700);
    color: white;
    transform: translateY(-1px);
}

/* --- Footer --- */
.footer {
    background: var(--warm-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 24px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 16px;
}

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

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-links li a:hover {
    color: var(--emerald-400);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--emerald-500);
}

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

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--emerald-600);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 1;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        order: 2;
    }
    
    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-map {
        max-height: 360px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(5, 150, 105, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 22px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    
    .float-card-1 {
        right: 0;
        top: 5%;
    }
    
    .float-card-2 {
        left: 0;
        bottom: 20%;
    }
    
    .float-card-3 {
        right: 5%;
        bottom: 0;
    }
    
    .menu-categories {
        gap: 8px;
    }
    
    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
        max-width: 200px;
    }
    
    .about-accent {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        border-radius: var(--radius-md);
        margin-bottom: 20px;
    }
    
    .about-images {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .about-img-main {
        aspect-ratio: 4/3;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .visit-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .float-card {
        padding: 10px 14px;
    }
    
    .float-card-value {
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
