/* ===== Custom Properties ===== */
:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --cream-50: #fefdf8;
    --cream-100: #fdf9f0;
    --cream-200: #faf3e0;
    --cream-300: #f5e6c8;
    --cream-400: #e8d5a8;
    --sand: #d4a574;
    --sand-light: #e8c9a0;
    --coral: #f4845f;
    --coral-light: #f7a072;
    --mint: #a7f3d0;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* ===== 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-sans);
    color: var(--text-dark);
    background: var(--cream-50);
    overflow-x: hidden;
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== Decorative Blobs (Global) ===== */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.blob-1 { width: 600px; height: 600px; background: var(--emerald-500); top: -200px; right: -200px; }
.blob-2 { width: 500px; height: 500px; background: var(--coral); bottom: 20%; left: -150px; }
.blob-3 { width: 400px; height: 400px; background: var(--sand); top: 50%; right: -100px; }

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(5, 150, 105, 0.1);
    padding: 10px 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--emerald-800);
}
.nav-logo-icon {
    color: var(--emerald-600);
    background: var(--emerald-100, #d1fae5);
    border-radius: 50%;
    padding: 6px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-accent { color: var(--emerald-600); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: all 0.25s ease;
}
.nav-link:hover { color: var(--emerald-700); background: rgba(5, 150, 105, 0.08); }
.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--emerald-600);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 8px;
    transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--emerald-700); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3); }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald-800);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.active .hamburger:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .hamburger:nth-child(2) { opacity: 0; }
.nav-toggle.active .hamburger:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 78, 59, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--cream-50);
    z-index: 1000;
    padding: 100px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-overlay.active .mobile-menu { transform: translateX(0); }
.mobile-link {
    padding: 14px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}
.mobile-link:hover { background: rgba(5, 150, 105, 0.08); color: var(--emerald-700); }
.mobile-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--emerald-600);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-700) 40%, var(--emerald-600) 100%);
    padding: 120px 24px 80px;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}
.hero-shape-1 { width: 400px; height: 400px; background: var(--cream-300); top: -100px; left: -100px; }
.hero-shape-2 { width: 250px; height: 250px; background: var(--coral); bottom: 10%; right: 30%; animation: float 6s ease-in-out infinite; }
.hero-shape-3 { width: 150px; height: 150px; background: var(--sand); top: 30%; right: 10%; animation: float 8s ease-in-out infinite reverse; }
.hero-shape-4 { width: 80px; height: 80px; background: var(--white); top: 20%; left: 20%; animation: float 5s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    flex: 1;
    max-width: 560px;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    color: var(--cream-100);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge svg { color: var(--cream-300); }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-title-line:nth-child(2) { font-size: 0.7em; opacity: 0.85; }
.serif-italic { font-style: italic; font-weight: 700; }
.hero-highlight {
    background: linear-gradient(135deg, var(--cream-200) 0%, var(--sand-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}
.btn-primary {
    background: var(--white);
    color: var(--emerald-800);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    background: var(--cream-100);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--coral);
    color: var(--white);
}
.btn-accent:hover { background: var(--coral-light); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { padding: 14px 16px; }

.hero-image {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    margin-left: 40px;
}
.hero-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}
.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 78, 59, 0.3) 0%, transparent 40%);
    z-index: 1;
}
.hero-image-frame img {
    width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    z-index: 3;
    animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 { bottom: 60px; left: -40px; animation-delay: 0s; }
.float-card-2 { top: 60px; right: -30px; animation-delay: 2s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.float-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-100, #d1fae5);
    color: var(--emerald-700);
    flex-shrink: 0;
}
.float-icon--warm { background: #fef3c7; color: var(--coral); }
.float-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.float-value { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ===== Section Shared ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(5, 150, 105, 0.1);
    color: var(--emerald-700);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.section-tag--light { background: rgba(255, 255, 255, 0.15); color: var(--cream-200); }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Menu Section ===== */
.menu-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.section-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.deco-circle {
    position: absolute;
    border-radius: 50%;
}
.deco-circle-1 { width: 300px; height: 300px; background: rgba(5, 150, 105, 0.05); top: -50px; right: -80px; }
.deco-circle-2 { width: 200px; height: 200px; background: rgba(244, 132, 95, 0.06); bottom: 40px; left: -60px; }
.deco-dots {
    position: absolute;
    top: 80px;
    left: 40px;
    display: grid;
    grid-template-columns: repeat(4, 8px);
    gap: 12px;
    opacity: 0.3;
}
.deco-dots::before, .deco-dots::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--emerald-400);
    border-radius: 50%;
}
.deco-dots::before { grid-column: 1; grid-row: 1; }
.deco-dots::after { grid-column: 3; grid-row: 2; }

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
}
.menu-cat {
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-mid);
    background: var(--cream-200);
    transition: all 0.25s ease;
}
.menu-cat:hover { background: rgba(5, 150, 105, 0.1); color: var(--emerald-700); }
.menu-cat.active {
    background: var(--emerald-600);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.menu-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    background: var(--emerald-600);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.menu-card-badge--popular { background: var(--coral); }
.menu-card-badge--new { background: var(--sand); color: var(--text-dark); }
.menu-card-body {
    padding: 24px;
}
.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.menu-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.menu-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--cream-200);
    color: var(--emerald-800);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    position: relative;
    background: var(--cream-100);
    overflow: hidden;
}
.about-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(212, 165, 116, 0.08));
    border-radius: 50%;
    top: -150px;
    right: -150px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.about-img-main img { width: 100%; height: 400px; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--cream-100);
}
.about-img-secondary img { width: 250px; height: 200px; object-fit: cover; }
.about-stats {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--emerald-700);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; }
.stat-label { display: block; font-size: 0.75rem; opacity: 0.8; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.about-content { position: relative; z-index: 2; }
.about-text {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--emerald-100, #d1fae5);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.feature-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== Location Section ===== */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--emerald-800) 0%, var(--emerald-700) 100%);
    position: relative;
    overflow: hidden;
}
.location-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(255,255,255,0.04) 0%, transparent 40%),
                       radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 35%);
}
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.location-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
}
.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.location-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.detail-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 2px; }
.detail-value { display: block; font-size: 1rem; color: var(--white); font-weight: 600; line-height: 1.5; }
.detail-link { transition: color 0.2s ease; }
.detail-link:hover { color: var(--cream-300); }
.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.map-wrapper {
    aspect-ratio: 4/3;
    background: var(--emerald-600);
}
.map-wrapper iframe { width: 100%; height: 100%; }

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
}
.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.03) 0%, rgba(212, 165, 116, 0.05) 100%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.contact-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.contact-method:hover {
    border-color: var(--emerald-300);
    box-shadow: 0 4px 16px rgba(5, 150, 105, 0.1);
    transform: translateY(-2px);
}
.method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--emerald-100, #d1fae5);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.method-label { display: block; font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 2px; }
.method-value { display: block; font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; }

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all 0.25s ease;
    outline: none;
}
.form-input:focus {
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-input--dark { background: var(--cream-100); border-color: var(--cream-300); }
.form-input--dark:focus { border-color: var(--emerald-500); background: var(--white); }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px;
    text-align: center;
}
.form-success.show { display: flex; }
.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--emerald-100, #d1fae5);
    color: var(--emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-success p { font-size: 1rem; color: var(--text-mid); font-weight: 500; }

/* ===== Footer ===== */
.footer {
    background: var(--emerald-900);
    color: var(--cream-200);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%),
                       radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 35%);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream-100);
    margin-bottom: 16px;
}
.footer-logo-icon {
    color: var(--emerald-400);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-tagline { font-size: 0.95rem; color: rgba(254, 249, 240, 0.6); line-height: 1.7; max-width: 280px; }
.footer-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cream-300);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.95rem;
    color: rgba(254, 249, 240, 0.6);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--cream-200); }
.footer-links li:not(a) { font-size: 0.95rem; color: rgba(254, 249, 240, 0.6); }
.footer-newsletter-text { font-size: 0.9rem; color: rgba(254, 249, 240, 0.6); line-height: 1.6; margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(254, 249, 240, 0.4); }
.footer-bottom a { color: rgba(254, 249, 240, 0.5); transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--cream-200); }

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; padding-top: 100px; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-image { margin-left: 0; margin-top: 48px; }
    .hero-image-frame img { width: 100%; max-width: 400px; height: 480px; }
    .hero-float-card { display: none; }
    .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-secondary { right: 0; }
    .about-stats { left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { min-height: auto; padding: 120px 24px 80px; }
    .hero-title { font-size: 2.4rem; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-categories { gap: 6px; }
    .menu-cat { padding: 8px 16px; font-size: 0.85rem; }
    .contact-form-wrapper { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .about-img-secondary img { width: 180px; height: 150px; }
    .about-stats { flex-direction: column; gap: 8px; padding: 16px 20px; }
    .stat-divider { width: 40px; height: 1px; }
}
