/* ================================
   HAVEN CAFE — PREMIUM STYLES
   ================================ */

:root {
    --primary: #1a0f0a;
    --primary-light: #2d1e16;
    --accent: #c47d4e;
    --accent-dark: #9d5e38;
    --accent-light: #d9a87a;
    --accent-glow: rgba(196,125,78,0.25);
    --cream: #f9f6f1;
    --cream-dark: #ede8e0;
    --white: #ffffff;
    --text: #1a0f0a;
    --text-light: #6b5d52;
    --text-lighter: #9b8d82;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;

    --shadow-xs: 0 1px 4px rgba(26,15,10,0.04);
    --shadow-sm: 0 2px 10px rgba(26,15,10,0.07);
    --shadow-md: 0 6px 22px rgba(26,15,10,0.1);
    --shadow-lg: 0 12px 40px rgba(26,15,10,0.14);
    --shadow-xl: 0 24px 64px rgba(26,15,10,0.18);
    --shadow-accent: 0 8px 32px rgba(196,125,78,0.38);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --transition-fast: 0.18s cubic-bezier(0.4,0,0.2,1);
    --transition-base: 0.3s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.55s cubic-bezier(0.4,0,0.2,1);
    --transition-bounce: 0.65s cubic-bezier(0.34,1.56,0.64,1);
}

/* ---- RESET ---- */
*, *::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(--text); line-height: 1.7; background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--primary);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* ---- NAV ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26,15,10,0.07);
    transition: box-shadow var(--transition-base);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

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

.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.45rem; font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    transition: color var(--transition-base);
}

.nav-logo i { font-size: 1.5rem; color: var(--accent); }
.nav-logo:hover { color: var(--accent); }

.nav-menu { display: flex; gap: 2.5rem; list-style: none; }

.nav-link {
    position: relative;
    font-weight: 500; font-size: 0.92rem;
    color: var(--text);
    transition: color var(--transition-base);
    padding: 0.4rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 1.25rem; }

.nav-btn {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600; font-size: 0.87rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.nav-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.nav-toggle {
    display: none; flex-direction: column;
    gap: 5px; padding: 0.5rem; cursor: pointer;
}

.nav-toggle span {
    width: 24px; height: 2px;
    background: var(--primary);
    transition: all var(--transition-base);
    transform-origin: center;
    border-radius: 2px;
    display: block;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    padding-top: 76px;
}

.hero-bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1920&auto=format&fit=crop&q=85');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(26,15,10,0.80) 0%, rgba(26,15,10,0.60) 50%, rgba(26,15,10,0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative; z-index: 10;
    text-align: center;
    max-width: 860px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50px;
    font-size: 0.8rem; font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 2rem;
    letter-spacing: 0.06em;
    animation: heroUp 0.7s ease-out 0.15s both;
}

.hero-title {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    color: var(--white);
    letter-spacing: -0.025em;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-light);
}

.hero-title-line { display: block; }
.hero-title-line:nth-child(1) { animation: heroUp 0.7s ease-out 0.3s both; }
.hero-title-line:nth-child(2) { animation: heroUp 0.7s ease-out 0.45s both; }

.hero-subtitle {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    animation: heroUp 0.7s ease-out 0.6s both;
}

.hero-cta {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
    margin-bottom: 4.5rem;
    animation: heroUp 0.7s ease-out 0.75s both;
}

.hero-stats {
    display: flex;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    animation: heroUp 0.7s ease-out 0.9s both;
}

.stat-item {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.75rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-item i {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 0.4rem;
}

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

.stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}

.stat-content { display: flex; flex-direction: column; align-items: center; }

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollPulse 2s ease-in-out infinite;
}

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

@keyframes scrollPulse {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
    50% { transform: translate(-50%, 8px); opacity: 0.9; }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2rem;
    font-weight: 600; font-size: 0.92rem;
    border-radius: 50px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
}

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

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--accent-glow);
}

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: 3.5rem; }

/* ---- FEATURES ---- */
.features {
    padding: 8rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border-color: var(--cream-dark);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-icon {
    width: 62px; height: 62px;
    display: flex; align-items: center; justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-size: 1.55rem; color: var(--accent);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.feature-title { font-size: 1.3rem; margin-bottom: 0.75rem; }
.feature-description { color: var(--text-light); line-height: 1.8; font-size: 0.96rem; }

/* ---- MENU PREVIEW ---- */
.menu-preview {
    padding: 8rem 0;
    background: var(--cream);
}

.menu-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
}

.menu-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cream-dark);
}

.menu-item-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.menu-item-card:hover .menu-item-image img { transform: scale(1.07); }

.menu-item-badge {
    position: absolute; top: 1rem; right: 1rem;
    padding: 0.4rem 1rem;
    background: var(--accent); color: var(--white);
    border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 12px var(--accent-glow);
}

.menu-item-content { padding: 1.75rem; }
.menu-item-content h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.menu-item-content p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.93rem; }

.menu-item-footer { display: flex; justify-content: space-between; align-items: center; }

.price {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 700;
    color: var(--accent);
}

.quick-add {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: var(--cream);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.1rem;
    transition: all var(--transition-bounce);
}

.quick-add:hover {
    background: var(--accent);
    color: var(--white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: var(--shadow-accent);
}

.menu-cta { text-align: center; margin-top: 3.5rem; }

/* ---- PHOTO STRIP ---- */
.photo-strip {
    display: flex;
    height: 280px;
    overflow: hidden;
}

.photo-strip-item {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.photo-strip-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.photo-strip-item:hover img { transform: scale(1.07); }

.photo-strip-item::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(26,15,10,0.28);
    transition: opacity var(--transition-base);
}

.photo-strip-item:hover::after { opacity: 0; }

/* ---- ABOUT PREVIEW ---- */
.about-preview {
    padding: 8rem 0;
    background: var(--white);
}

.about-content-wrapper {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -18px; left: -18px;
    right: 18px; bottom: 18px;
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.45;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.link-arrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--accent); font-weight: 600;
    margin-top: 1rem;
    transition: all var(--transition-base);
    border-bottom: 1.5px solid transparent;
    padding-bottom: 1px;
}

.link-arrow:hover { gap: 1rem; border-bottom-color: var(--accent); }

/* ---- TESTIMONIALS ---- */
.testimonials {
    padding: 8rem 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    border: 1.5px solid transparent;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem; right: 1.75rem;
    font-family: var(--font-display);
    font-size: 6rem; line-height: 1;
    color: var(--accent);
    opacity: 0.1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--cream-dark);
}

.testimonial-rating {
    display: flex; gap: 3px;
    color: var(--accent);
    margin-bottom: 1.25rem;
    font-size: 0.88rem;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 1rem;
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2.5px solid var(--cream-dark);
}

.testimonial-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.testimonial-author-info span {
    color: var(--text-lighter);
    font-size: 0.83rem;
}

/* ---- CTA ---- */
.cta-section {
    padding: 7rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%; left: -5%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,125,78,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1rem; }
.cta-content p { font-size: 1.15rem; color: rgba(255,255,255,0.68); margin-bottom: 2.5rem; }

.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-section .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(196,125,78,0.45);
}

.cta-section .btn-secondary {
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ---- FOOTER ---- */
.footer {
    padding: 5rem 0 2.5rem;
    background: var(--primary-light);
    color: rgba(255,255,255,0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    display: flex; align-items: center; gap: 0.7rem;
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 800;
    color: var(--white); margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-logo i { font-size: 1.45rem; color: var(--accent); }
.footer-tagline { color: rgba(255,255,255,0.48); margin-bottom: 2rem; font-size: 0.92rem; }

.footer-social { display: flex; gap: 0.75rem; }

.footer-social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.footer-column h4 {
    color: var(--white); font-size: 0.97rem;
    font-weight: 700; margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-links, .footer-info {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.7rem;
}

.footer-links a {
    font-size: 0.9rem; color: rgba(255,255,255,0.62);
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links a:hover { color: var(--accent-light); transform: translateX(4px); }

.footer-info li {
    font-size: 0.9rem; color: rgba(255,255,255,0.62);
    display: flex; align-items: flex-start; gap: 0.6rem;
    line-height: 1.5;
}

.footer-info i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.82rem; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.85rem; color: rgba(255,255,255,0.38);
}

.footer-bottom a { color: var(--accent-light); font-weight: 600; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(155deg, rgba(26,15,10,0.78) 0%, rgba(26,15,10,0.58) 100%);
    z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-label { color: var(--accent-light); }
.page-hero-content .section-label::before { background: var(--accent-light); }
.page-hero-content h1 { color: var(--white); font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.12rem; color: rgba(255,255,255,0.72); max-width: 580px; margin: 0 auto; }

/* ---- MENU PAGE ---- */
.menu-nav {
    position: sticky; top: 69px; z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(26,15,10,0.07);
    box-shadow: 0 2px 12px rgba(26,15,10,0.05);
}

.menu-nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 2rem;
    display: flex; overflow-x: auto; scrollbar-width: none;
}

.menu-nav-inner::-webkit-scrollbar { display: none; }

.menu-tab {
    padding: 1.1rem 1.75rem;
    font-weight: 600; font-size: 0.88rem;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    transition: all var(--transition-base);
    cursor: pointer;
    letter-spacing: 0.02em;
}

.menu-tab:hover, .menu-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.menu-section { padding: 5rem 0; }
.menu-section:nth-child(even) { background: var(--cream); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem; margin-top: 3rem;
}

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--cream-dark);
}

.menu-card-image { height: 210px; overflow: hidden; position: relative; }

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

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

.menu-card-badge {
    position: absolute; top: 0.75rem; right: 0.75rem;
    padding: 0.35rem 0.85rem;
    background: var(--accent); color: var(--white);
    border-radius: 50px; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 10px var(--accent-glow);
}

.menu-card-body { padding: 1.5rem; }
.menu-card-body h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.menu-card-body p { color: var(--text-light); font-size: 0.87rem; margin-bottom: 1rem; line-height: 1.65; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-card-footer .price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--accent); }

/* ---- ABOUT PAGE ---- */
.about-story { padding: 8rem 0; }

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
}

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

.about-story-image img {
    width: 100%; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl); object-fit: cover;
    max-height: 560px; display: block;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: -16px; left: -16px; right: 16px; bottom: 16px;
    border: 2px solid var(--accent-light);
    border-radius: var(--radius-xl); z-index: -1; opacity: 0.45;
}

.about-story-text p { color: var(--text-light); font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-values { padding: 8rem 0; background: var(--cream); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem; margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem; border-radius: var(--radius-lg);
    text-align: center; box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1.5px solid transparent;
}

.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--cream-dark); }
.value-card .feature-icon { margin: 0 auto 1.5rem; }
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }
.value-card p { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }

.team-section { padding: 8rem 0; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem; margin-top: 3rem;
}

.team-card {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-md); background: var(--white);
    transition: all var(--transition-base);
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.team-card-image { height: 340px; overflow: hidden; }

.team-card-image img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: transform 0.65s ease;
}

.team-card:hover .team-card-image img { transform: scale(1.05); }
.team-card-info { padding: 1.75rem; }
.team-card-info h3 { font-size: 1.35rem; margin-bottom: 0.2rem; }

.team-card-info .role {
    color: var(--accent); font-weight: 700; font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 0.14em;
    margin-bottom: 0.75rem; display: block;
}

.team-card-info p { color: var(--text-light); font-size: 0.92rem; line-height: 1.75; }
.gallery-section { padding: 8rem 0; background: var(--cream); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 1rem; margin-top: 3rem;
}

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

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

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

.gallery-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,15,10,0.22) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover::after { opacity: 1; }
.gallery-item:first-child { grid-row: 1 / 3; }

/* ---- CONTACT PAGE ---- */
.contact-section { padding: 8rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 4rem; align-items: start;
}

.contact-form-wrapper h2 { font-size: 2.2rem; margin-bottom: 0.6rem; }
.contact-form-wrapper > p { color: var(--text-light); margin-bottom: 2.5rem; font-size: 1rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.form-group label {
    display: block; font-weight: 600; font-size: 0.86rem;
    margin-bottom: 0.5rem; color: var(--primary); letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 0.95rem 1.2rem;
    border: 1.5px solid var(--cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 0.95rem;
    color: var(--text); background: var(--white);
    transition: all var(--transition-base); outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-submit {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2.25rem;
    background: var(--accent); color: var(--white);
    border-radius: 50px; font-weight: 600; font-size: 0.97rem;
    cursor: pointer; transition: all var(--transition-base);
    box-shadow: 0 4px 18px var(--accent-glow);
}

.form-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-accent); }

.contact-info {
    background: var(--cream); border-radius: var(--radius-xl);
    padding: 2.5rem; border: 1.5px solid var(--cream-dark);
}

.contact-info h3 { font-size: 1.6rem; margin-bottom: 2rem; }

.info-item { display: flex; gap: 1.25rem; margin-bottom: 1.75rem; align-items: flex-start; }

.info-icon {
    width: 46px; height: 46px; min-width: 46px;
    background: var(--white); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.info-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--primary); font-weight: 700; }
.info-text span, .info-text p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.75rem; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.55rem 0; font-size: 0.87rem; color: var(--text-light); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--primary); }

.map-section { padding: 0 0 6rem; }
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); height: 440px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

.form-success {
    display: none;
    padding: 1.1rem 1.5rem;
    background: #e8f5ea; color: #1a5c2a;
    border-radius: var(--radius-sm);
    margin-top: 1rem; font-weight: 600;
    border: 1px solid #b7dfbf; font-size: 0.93rem;
}

/* ---- SCROLL ANIMATIONS ---- */
[data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }
[data-animate-delay="4"] { transition-delay: 0.4s; }
[data-animate-delay="5"] { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 69px; left: -100%;
        width: 100%; height: calc(100vh - 69px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem; gap: 0;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.active { left: 0; }
    .nav-link { padding: 1rem 0; border-bottom: 1px solid var(--cream); font-size: 1.1rem; }
    .nav-toggle { display: flex; }

    .about-content-wrapper,
    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr; gap: 3rem;
    }

    .about-image::before,
    .about-story-image::before { display: none; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .gallery-item:first-child { grid-row: auto; }
    .photo-strip { height: 200px; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }

    .hero-stats { max-width: 100%; }
    .stat-number { font-size: 1.25rem; }

    .features, .menu-preview, .about-preview, .testimonials,
    .about-story, .about-values, .team-section, .gallery-section, .contact-section {
        padding: 4rem 0;
    }

    .section-title { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 180px); }
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
    .menu-grid { grid-template-columns: 1fr; max-width: 400px; margin: 3rem auto 0; }
    .footer-grid .footer-column:first-child { grid-column: 1 / -1; }
    .photo-strip { height: 150px; }
    .photo-strip-item:nth-child(n+5) { display: none; }
}

/* ================================
   ADDITIONAL COMPONENTS
   ================================ */

/* ---- MARQUEE STRIP ---- */
.marquee-section {
    background: var(--accent);
    padding: 0.9rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 2.5rem;
    padding-right: 2.5rem;
    flex-shrink: 0;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.92);
}

.marquee-item i { color: rgba(255,255,255,0.55); font-size: 0.6rem; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- ABOUT STATS BANNER ---- */
.about-stats {
    background: var(--primary);
    padding: 5rem 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.07);
}

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

.about-stat-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: block;
}

/* ---- TOAST NOTIFICATION ---- */
.toast-container {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.4rem;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    font-size: 0.88rem;
    font-weight: 500;
    border-left: 3px solid var(--accent);
    animation: toastIn 0.35s var(--transition-bounce) forwards;
    pointer-events: all;
}

.toast.removing {
    animation: toastOut 0.25s ease forwards;
}

.toast i { color: var(--accent); font-size: 1rem; }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(24px); }
}

/* ---- LIGHTBOX ---- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0,0,0,0.93);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: min(90vw, 1100px);
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 0 80px rgba(0,0,0,0.8);
    transform: scale(0.92);
    transition: transform 0.35s ease;
}

.lightbox.active .lightbox-img { transform: scale(1); }

.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }

.lightbox-caption {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
}

/* ---- PAGE LOADER ---- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
    display: flex; align-items: center; gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.loader-logo i { color: var(--accent); font-size: 2rem; }

.loader-bar {
    width: 120px; height: 2px;
    background: var(--cream-dark);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loaderFill 0.8s ease forwards;
}

@keyframes loaderFill {
    from { width: 0; }
    to { width: 100%; }
}

/* ---- GALLERY OVERLAY (hover) ---- */
.gallery-item { cursor: zoom-in; }

/* ---- AWARD BADGE (Hero) ---- */
.hero-badge i { font-size: 0.9rem; }

/* ---- PROCESS / TIMELINE ---- */
.process-section {
    padding: 8rem 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0;
    position: relative;
    margin-top: 3rem;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 1px;
    background: var(--cream-dark);
    z-index: 0;
}

.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px; height: 80px;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 700;
    color: var(--accent);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
    background: var(--white);
}

.process-step:hover .process-number {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-accent);
}

.process-step h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* ---- PRESS LOGOS ---- */
.press-section {
    padding: 4rem 0;
    background: var(--cream);
    text-align: center;
}

.press-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-lighter);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

.press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.press-logo {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-lighter);
    letter-spacing: -0.01em;
    transition: color var(--transition-base);
    opacity: 0.55;
}

.press-logo:hover { color: var(--accent); opacity: 1; }

/* ---- NEWSLETTER ---- */
.newsletter-section {
    background: var(--primary);
    padding: 5rem 0;
    text-align: center;
}

.newsletter-inner { max-width: 540px; margin: 0 auto; }
.newsletter-inner h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 2rem; }
.newsletter-inner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.4rem 0;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.newsletter-form button:hover { background: var(--accent-dark); }

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 768px) {
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stat-item:nth-child(2) { border-right: none; }
    .about-stat-item:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
    .about-stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.07); border-right: none; }
    .process-grid::before { display: none; }
    .toast-container { bottom: 1rem; right: 1rem; left: 1rem; }
    .toast { font-size: 0.82rem; }
    .about-stat-number { font-size: 2rem; }
    .about-story-badges { flex-wrap: wrap; }
}

/* ---- ABOUT STORY BADGES ---- */
.about-story-badges {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    background: rgba(193,122,79,0.12);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid rgba(193,122,79,0.25);
}

.badge-pill i { font-size: 0.75rem; }

/* ---- CONTACT SOCIAL BLOCK ---- */
.contact-social-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
}

.contact-social-block strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-social {
    justify-content: flex-start !important;
}

.contact-social a {
    background: rgba(193,122,79,0.12) !important;
    color: var(--accent) !important;
}
