/* ============================================
   SAIGON CAFE — Custom Styles
   Colors: Plum (#7B2D8E) + Amber (#F5A623)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-50: #FDF2F8;
    --plum-100: #FAE8F5;
    --plum-200: #F5D0EB;
    --plum-300: #EBAAF5;
    --plum-400: #D970E0;
    --plum-500: #B83FCF;
    --plum-600: #9B2BB0;
    --plum-700: #7B2D8E;
    --plum-800: #5C1D6A;
    --plum-900: #3D1147;
    --plum-950: #2A0A33;
    
    --amber-50: #FFFAF0;
    --amber-100: #FFF3D6;
    --amber-200: #FFE8A8;
    --amber-300: #FFD966;
    --amber-400: #F5A623;
    --amber-500: #E8930A;
    --amber-600: #C47A08;
    --amber-700: #9B5F06;
    --amber-800: #7A4B05;
    --amber-900: #5E3A04;
    --amber-950: #3A2302;
    
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #DDDDDD;
    --neutral-400: #BBBBBB;
    --neutral-500: #888888;
    --neutral-600: #666666;
    --neutral-700: #444444;
    --neutral-800: #2A2A2A;
    --neutral-900: #1A1A1A;
    --neutral-950: #0D0D0D;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.1);
}

/* --- 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-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background: var(--neutral-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
}

/* --- Utility Classes --- */
.text-amber {
    color: var(--amber-400);
}

.text-plum {
    color: var(--plum-700);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber-400);
    color: var(--neutral-900);
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
    background: var(--amber-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.45);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Section Header --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-700);
    background: var(--plum-100);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(245, 166, 35, 0.2);
    color: var(--amber-300);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.35s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar.scrolled .nav-logo-text {
    color: var(--neutral-900);
}

.navbar.scrolled .nav-link {
    color: var(--neutral-700);
}

.navbar.scrolled .nav-link:hover {
    color: var(--plum-700);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.35s ease;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle-bar {
    background: var(--neutral-800);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-400);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #fff;
}

.nav-cta {
    background: var(--amber-400);
    color: var(--neutral-900) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}

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

.nav-cta:hover {
    background: var(--amber-500);
    transform: translateY(-1px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--plum-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    padding: 8px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    padding: 12px 24px;
    transition: color 0.3s ease;
}

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

.mobile-link-cta {
    margin-top: 16px;
    background: var(--amber-400);
    color: var(--neutral-900) !important;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.8;
}

.mobile-menu-footer a {
    color: var(--amber-400);
    font-weight: 600;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--neutral-900);
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 17, 71, 0.88) 0%,
        rgba(123, 45, 142, 0.75) 40%,
        rgba(26, 26, 26, 0.82) 100%
    );
}

/* Geometric shapes */
.hero-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-shape-1 {
    width: 420px;
    height: 420px;
    background: var(--amber-400);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    opacity: 0.12;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--plum-400);
    top: 20%;
    right: 15%;
    transform: rotate(45deg);
    opacity: 0.15;
}

.hero-shape-3 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--amber-400);
    border-radius: 50%;
    bottom: 18%;
    right: 8%;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--amber-300);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 24px;
    max-width: 720px;
}

.hero-subheadline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
    background: var(--plum-900);
    padding: 0;
    position: relative;
    z-index: 4;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 40px 32px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(255,255,255,0.04);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: var(--neutral-50);
}

.menu-bg-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--plum-100);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    opacity: 0.5;
    pointer-events: none;
}

.menu-bg-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--amber-100);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
    opacity: 0.5;
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

/* Menu Categories */
.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.menu-cat-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--neutral-600);
    background: var(--neutral-100);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-cat-btn:hover {
    color: var(--plum-700);
    background: var(--plum-50);
    border-color: var(--plum-200);
}

.menu-cat-btn.active {
    color: #fff;
    background: var(--plum-700);
    border-color: var(--plum-700);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.menu-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

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

.menu-card-img {
    position: relative;
    height: 200px;
    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.08);
}

.menu-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber-400);
    color: var(--neutral-900);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.menu-card-body {
    padding: 20px 24px 24px;
}

.menu-card-body h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.menu-card-body p {
    font-size: 0.88rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--plum-50);
    border-radius: 12px;
    color: var(--plum-800);
    font-size: 0.9rem;
}

/* Hide non-active cards */
.menu-card.hidden {
    display: none;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

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

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid #fff;
}

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

.about-shape-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--amber-400);
    border-radius: 20px;
    top: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0.3;
    transform: rotate(15deg);
}

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

.about-text {
    font-size: 1.02rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--neutral-200);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--plum-700);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--neutral-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   SPECIALS SECTION
   ============================================ */
.specials-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.specials-bg {
    position: absolute;
    inset: 0;
}

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

.specials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 17, 71, 0.92) 0%,
        rgba(123, 45, 142, 0.85) 100%
    );
}

.specials-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(245,166,35,0.08) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.specials-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.section-title-light {
    color: #fff;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.special-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.special-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.special-card-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--amber-400);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.special-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.special-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 100px 0;
    background: var(--neutral-50);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-large img {
    height: 100%;
    min-height: 400px;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item-wide img {
    height: 100%;
    min-height: 250px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--neutral-50);
    border-radius: 20px;
    padding: 36px 32px;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--plum-200);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--plum-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--neutral-900);
}

.testimonial-location {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-500);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--plum-50);
    position: relative;
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--plum-100);
    border-radius: 50%;
    top: -300px;
    right: -200px;
    opacity: 0.6;
    pointer-events: none;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--plum-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--plum-700);
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 0.95rem;
    color: var(--neutral-700);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--plum-700);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.contact-map {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-wrapper > p {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--neutral-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(123, 45, 142, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success-icon {
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.3rem;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--neutral-950);
    padding: 64px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

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

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s ease;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    gap: 16px;
}

.footer-hours li span:last-child {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: var(--amber-400);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--amber-300);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-layout {
        gap: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .feature-item:last-child {
        border-bottom: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-img-float {
        right: -10px;
        bottom: -20px;
        width: 60%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item-large {
        grid-row: span 1;
    }
    
    .gallery-item-large img {
        min-height: 250px;
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item-wide {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .menu-categories {
        gap: 6px;
    }
    
    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
