/* Honest Restaurant - Homepage Styles */
/* Based on honest-hero-v3-fixed.html - EXACT REPLICATION */

:root {
    /* Colors from hero reference */
    --cream: #F7F3EB;
    --cream-dark: #EDE6D6;
    --saffron: #E8A838;
    --chili-red: #C23A22;
    --gold: #BFA054;
    --brown-warm: #3D2314;
    --brown-deep: #1E0F07;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', -apple-system, sans-serif;

    /* Easing */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--brown-deep);
    overflow-x: hidden;
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--chili-red);
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-counter {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--cream);
    letter-spacing: 0.3em;
}

.preloader-slides {
    position: absolute;
    inset: 0;
    display: flex;
}

.preloader-slide {
    flex: 1;
    background: var(--cream);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--chili-red);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0.3);
    opacity: 0;
    transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
    mix-blend-mode: difference;
}

.cursor.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(232, 168, 56, 0.1);
}

/* ========== HOMEPAGE HEADER OVERRIDE ========== */
/* Override the unified header for homepage hero look */
.home-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: none;
    z-index: 100;
}

.home-page .header-container {
    padding: 1.5rem 3rem;
}

.home-page .header-logo img {
    height: 65px;
}

.home-page .header-nav .nav-link {
    color: var(--cream);
}

.home-page .header-nav .nav-link:hover,
.home-page .header-nav .nav-link.active {
    color: var(--saffron);
}

.home-page .header-nav .nav-link::after {
    background: var(--saffron);
}

.home-page .header-cart {
    background: rgba(255, 255, 255, 0.1);
    color: var(--cream);
}

.home-page .header-cart:hover {
    background: var(--saffron);
    color: var(--brown-deep);
}

.home-page .mobile-menu-toggle span {
    background: var(--cream);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

/* Dark Overlay - Always visible over video */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Also add overlay via video container for extra assurance */
.hero-video-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

/* Fallback solid color if no video */
.hero--no-video {
    background: var(--chili-red);
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30L30 0zm0 10L10 30l20 20 20-20-20-20z' fill='%23F7F3EB'/%3E%3C/svg%3E");
    z-index: 2;
}

.ornament {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 3;
}

.ornament-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
}

.ornament-2 {
    top: 20%;
    right: 8%;
    width: 120px;
    height: 120px;
}

.ornament-3 {
    bottom: 15%;
    left: 10%;
    width: 100px;
    height: 100px;
}

.ornament-4 {
    bottom: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.5rem;
    background: rgba(247, 243, 235, 0.1);
    border: 1px solid rgba(247, 243, 235, 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-badge span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
}

.hero-title {
    margin-bottom: 0;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-line span {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 500;
    line-height: 1;
    color: var(--cream);
    transform: translateY(105%);
}

.hero-title-line:nth-child(2) span {
    font-style: italic;
    color: var(--saffron);
}

.hero-subtitle {
    max-width: 500px;
    margin: 2rem auto;
}

.hero-subtitle p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(247, 243, 235, 0.7);
    opacity: 0;
}

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

.hero-btn {
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    display: inline-block;
}

.hero-btn-primary {
    background: var(--saffron);
    color: var(--brown-deep);
    border: 2px solid var(--saffron);
}

.hero-btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(247, 243, 235, 0.3);
}

.hero-btn-secondary:hover {
    border-color: var(--cream);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.scroll-indicator-text {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(247, 243, 235, 0.5);
}

/* ========== HORIZONTAL SCROLL SECTION ========== */
.horizontal-section {
    position: relative;
}

.horizontal-container {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.horizontal-wrapper {
    display: flex;
    height: 100%;
}

.h-panel {
    width: 100vw;
    min-width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Panel 1 - Heritage */
.h-panel-1 {
    background: var(--cream);
}

.h-panel-1 .panel-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1300px;
    padding: 0 4rem;
    align-items: center;
}

.panel-text {
    max-width: 480px;
}

.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.panel-label-line {
    width: 30px;
    height: 1px;
    background: var(--chili-red);
}

.panel-label span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--chili-red);
}

.panel-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
}

.panel-title em {
    font-style: italic;
    color: var(--chili-red);
}

.panel-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(30, 15, 7, 0.7);
}

.panel-image {
    width: 100%;
    height: 65vh;
    border-radius: 20px;
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.panel-image:hover img {
    transform: scale(1.05);
}

/* Panel 2 - Signature Dishes (matching honest-hero.html food cards) */
.h-panel-2 {
    background: var(--brown-deep);
    position: relative;
}

.h-panel-2::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(232, 168, 56, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(194, 58, 34, 0.04) 0%, transparent 50%);
}

.menu-showcase-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.menu-showcase-header {
    text-align: center;
}

.menu-showcase-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--cream);
    line-height: 1.1;
}

.menu-showcase-header h2 em {
    font-style: italic;
    color: var(--saffron);
}

.menu-showcase-header p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(247, 243, 235, 0.6);
    margin-top: 1rem;
    max-width: 500px;
    line-height: 1.8;
}

.menu-showcase {
    display: flex;
    gap: 2rem;
    perspective: 1000px;
}

/* Food Card - matching honest-hero.html design */
.menu-card {
    width: clamp(280px, 28vw, 350px);
    height: clamp(380px, 42vw, 480px);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.menu-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.menu-card-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

/* Gradient overlay like honest-hero.html */
.menu-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 9, 6, 0.9) 0%, rgba(13, 9, 6, 0.4) 40%, transparent 70%);
    pointer-events: none;
}

.menu-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.menu-card-category {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 0.75rem;
    display: block;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.menu-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(247, 243, 235, 0.6);
    margin-bottom: 0.75rem;
}

.menu-card-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--saffron);
}

/* Panel 3 - Stats */
.h-panel-3 {
    background: var(--saffron);
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: 0 4rem;
    max-width: 1300px;
}

.experience-text {
    max-width: 480px;
}

.experience-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
}

.experience-title em {
    font-style: italic;
    display: block;
}

.experience-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(30, 15, 7, 0.7);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--brown-deep);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brown-warm);
}

/* Panel 4 - Catering */
.h-panel-4 {
    background: var(--cream-dark);
}

.catering-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    padding: 0 4rem;
    align-items: center;
}

.catering-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.catering-img {
    border-radius: 14px;
    overflow: hidden;
    height: 200px;
}

.catering-img:first-child {
    grid-column: span 2;
    height: 260px;
}

.catering-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.catering-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--brown-deep);
    margin-bottom: 1.5rem;
}

.catering-title em {
    font-style: italic;
    color: var(--chili-red);
}

.catering-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(30, 15, 7, 0.7);
    margin-bottom: 2rem;
}

.catering-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.catering-feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(30, 15, 7, 0.05);
    border-radius: 100px;
}

.catering-feature-icon {
    width: 14px;
    height: 14px;
    background: var(--chili-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.catering-feature-icon svg {
    width: 8px;
    height: 8px;
    fill: var(--cream);
}

.catering-feature span {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--brown-deep);
}

.catering-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--chili-red);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.catering-btn:hover {
    background: var(--brown-deep);
    transform: translateY(-3px);
}

.catering-btn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: clamp(80px, 15vw, 150px) 2rem;
    background: var(--brown-deep);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(232, 168, 56, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(194, 58, 34, 0.05) 0%, transparent 50%);
}

.section-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.section-label-line {
    width: 30px;
    height: 1px;
}

.testimonials-section .section-label-line {
    background: var(--saffron);
}

.section-label span {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.testimonials-section .section-label span {
    color: var(--saffron);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.testimonials-section .section-title {
    color: var(--cream);
}

.section-title em {
    font-style: italic;
    color: var(--saffron);
}

.section-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.6;
}

.testimonials-section .section-desc {
    color: var(--cream);
}

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

.testimonial-card {
    background: rgba(247, 243, 235, 0.03);
    border: 1px solid rgba(247, 243, 235, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
    border-color: var(--saffron);
    background: rgba(247, 243, 235, 0.06);
    transform: translateY(-8px);
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-star {
    width: 18px;
    height: 18px;
    fill: var(--saffron);
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(247, 243, 235, 0.6);
}

/* ========== WHY CHOOSE US SECTION ========== */
.why-section {
    padding: clamp(80px, 15vw, 150px) 2rem;
    background: var(--cream);
}

.why-section .section-label-line {
    background: var(--chili-red);
}

.why-section .section-label span {
    color: var(--chili-red);
}

.why-section .section-title {
    color: var(--brown-deep);
}

.why-section .section-desc {
    color: var(--brown-deep);
}

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

.why-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(30, 15, 7, 0.05);
    transition: all 0.5s var(--ease-out-expo);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 15, 7, 0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--saffron), var(--chili-red));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--brown-deep);
    margin-bottom: 0.8rem;
}

.why-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(30, 15, 7, 0.6);
}

/* ========== INSTAGRAM REELS SECTION ========== */
.instagram-section {
    padding: clamp(80px, 15vw, 150px) 2rem;
    background: var(--cream-dark);
    overflow: hidden;
}

.instagram-section .section-label-line {
    background: var(--chili-red);
}

.instagram-section .section-label span {
    color: var(--chili-red);
}

.instagram-section .section-title {
    color: var(--brown-deep);
}

.instagram-section .section-desc {
    color: var(--brown-deep);
}

/* Instagram Reels Row - Single horizontal row */
.instagram-reels-row {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.instagram-reels-row::-webkit-scrollbar {
    display: none;
}

/* Individual Reel Card - Vertical 9:16 aspect ratio */
.instagram-reel {
    position: relative;
    flex: 0 0 auto;
    width: clamp(180px, 18vw, 220px);
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(30, 15, 7, 0.15);
    transition: all 0.5s var(--ease-out-expo);
}

.instagram-reel:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(30, 15, 7, 0.25);
}

.reel-image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.reel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.instagram-reel:hover .reel-image img {
    transform: scale(1.1);
}

/* Gradient overlay */
.reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.7) 100%
    );
    transition: opacity 0.4s;
}

/* Play button in center */
.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.instagram-reel:hover .reel-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.reel-play svg {
    width: 20px;
    height: 20px;
    fill: var(--chili-red);
    margin-left: 3px;
}

/* Content at bottom */
.reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    z-index: 2;
}

.reel-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Instagram icon in corner */
.reel-instagram-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.reel-instagram-icon svg {
    width: 16px;
    height: 16px;
    fill: #E1306C;
}

/* Instagram Follow Button */
.instagram-follow {
    margin-top: 3rem;
    text-align: center;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    color: white;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.4);
}

.instagram-follow-btn svg {
    width: 20px;
    height: 20px;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: clamp(80px, 15vw, 150px) 2rem;
    background: var(--brown-deep);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(232, 168, 56, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(194, 58, 34, 0.04) 0%, transparent 50%);
}

.blog-section .section-container {
    position: relative;
    z-index: 2;
}

.blog-section .section-label-line {
    background: var(--saffron);
}

.blog-section .section-label span {
    color: var(--saffron);
}

.blog-section .section-title {
    color: var(--cream);
}

.blog-section .section-desc {
    color: var(--cream);
}

/* Clean 3-column grid layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(247, 243, 235, 0.03);
    border: 1px solid rgba(247, 243, 235, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--saffron);
    transform: translateY(-12px);
    background: rgba(247, 243, 235, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Remove featured card special styling - all cards equal */
.blog-card-featured {
    grid-row: auto;
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-featured .blog-card-image {
    height: 220px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

/* Category badge overlay */
.blog-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(30, 15, 7, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.blog-card:hover .blog-card-image::after {
    opacity: 1;
}

.blog-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-featured .blog-card-content {
    padding: 1.75rem;
}

.blog-card-category {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brown-deep);
    background: var(--saffron);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--saffron);
}

.blog-card-featured .blog-card-title {
    font-size: 1.4rem;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(247, 243, 235, 0.6);
    margin-bottom: 1.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(247, 243, 235, 0.4);
    padding-top: 1rem;
    border-top: 1px solid rgba(247, 243, 235, 0.08);
}

.blog-card-read {
    color: var(--saffron);
    margin-left: auto;
}

/* ========== FOOTER CTA SECTION ========== */
.footer-cta {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--chili-red);
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(232, 168, 56, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 30, 63, 0.2) 0%, transparent 40%);
}

.footer-cta-content {
    text-align: center;
    max-width: 800px;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

.footer-cta-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 500;
    line-height: 1;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.footer-cta-title em {
    font-style: italic;
    color: var(--saffron);
    display: block;
}

.footer-cta-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(247, 243, 235, 0.7);
    max-width: 550px;
    margin: 0 auto 2.5rem;
}

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

.footer-btn {
    padding: 1.2rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s var(--ease-out-expo);
}

.footer-btn-primary {
    background: var(--saffron);
    color: var(--brown-deep);
}

.footer-btn-primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.footer-btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(247, 243, 235, 0.3);
}

.footer-btn-secondary:hover {
    border-color: var(--cream);
}

.footer-location {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 243, 235, 0.1);
}

.footer-location-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(247, 243, 235, 0.4);
    margin-bottom: 0.5rem;
}

.footer-location-address {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream);
}

.footer-location-phone {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--saffron);
    text-decoration: none;
    margin-top: 0.3rem;
    display: inline-block;
}

.footer-location-phone:hover {
    color: var(--cream);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--brown-deep);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--saffron);
}

.footer-col p,
.footer-col a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(247, 243, 235, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--saffron);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(247, 243, 235, 0.1);
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(247, 243, 235, 0.5);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .h-panel-1 .panel-content,
    .catering-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .experience-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .menu-showcase {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-center {
        display: none;
    }

    .panel-text {
        max-width: 100%;
    }

    .experience-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .nav-logo-text {
        display: none;
    }

    .menu-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .menu-card {
        width: 85vw;
        max-width: 320px;
        height: 400px;
    }

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

    .footer-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

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

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

    /* Instagram Reels - horizontal scroll on mobile */
    .instagram-reels-row {
        justify-content: flex-start;
        padding: 1rem 0;
        margin: 0 -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .instagram-reel {
        width: 160px;
    }

    .catering-images {
        grid-template-columns: 1fr;
    }

    .catering-img:first-child {
        grid-column: span 1;
    }

    /* Blog grid - single column on tablet/mobile */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-featured .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 1.3rem;
    }

    /* ===== HORIZONTAL SCROLL - DISABLED ON MOBILE ===== */
    .horizontal-section {
        height: auto !important;
    }

    .horizontal-container {
        height: auto !important;
        overflow: visible !important;
        position: relative !important;
    }

    .horizontal-wrapper {
        flex-direction: column;
        transform: none !important;
    }

    .h-panel {
        width: 100%;
        min-width: 100%;
        height: auto;
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .h-panel-1 .panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
        text-align: center;
    }

    .panel-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .panel-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    /* Panel 2 - Menu showcase */
    .h-panel-2 {
        padding: 3rem 1rem;
    }

    .menu-showcase-content {
        width: 100%;
        padding: 0 1rem;
    }

    .menu-showcase {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .menu-card {
        width: 90%;
        max-width: 320px;
        height: auto;
        min-height: 380px;
        transform: none !important;
        rotation: 0 !important;
    }

    .menu-card-image {
        height: 200px;
    }

    /* Panel 3 - Experience/Stats */
    .h-panel-3 {
        padding: 3rem 1.5rem;
    }

    .experience-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .experience-text {
        max-width: 100%;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Panel 4 - Catering */
    .h-panel-4 {
        padding: 3rem 1.5rem;
    }

    .catering-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .catering-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        order: -1;
    }

    .catering-img {
        height: 200px;
    }

    .catering-img:first-child {
        height: 250px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Blog grid - 2 columns on medium screens */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card:last-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .instagram-reel {
        width: 140px;
    }

    .reel-play {
        width: 40px;
        height: 40px;
    }

    .reel-play svg {
        width: 16px;
        height: 16px;
    }

    .blog-card-content {
        padding: 1.25rem;
    }
}
