* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage-green: #9CAF88;
    --warm-beige: #F5F1E8;
    --soft-grey: #E8E6E1;
    --charcoal: #3A3A3A;
    --wood-brown: #8B6F47;
    --stone-grey: #7A7A7A;
    --cream: #FEFCF7;
    --accent-green: #7A8471;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 230, 225, 0.3);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(58, 58, 58, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--sage-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 120px 40px 80px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
}

.hero h1 {
    margin-bottom: 30px;
}

.hero-logo-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero .tagline {
    font-size: 20px;
    color: var(--stone-grey);
    margin-bottom: 30px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    color: var(--charcoal);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--sage-green);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: lowercase;
}

.cta-button:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 175, 136, 0.3);
}

/* Video Section */
.video-section {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('interior1.JPG');
    background-size: cover;
    background-position: center;
    display: none;
}

@media (max-width: 768px) {
    .background-video {
        display: none;
    }
    
    .video-fallback {
        display: block;
    }
}

/* Story Section */
.story-section {
    padding: 100px 40px;
    background: var(--cream);
    text-align: center;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Crimson Text', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.section-title .accent {
    color: var(--sage-green);
    font-style: italic;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--charcoal);
    max-width: 700px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 40px;
    background: var(--white);
}

.gallery-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(58, 58, 58, 0.08);
    transition: all 0.4s ease;
    aspect-ratio: 4/5;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(58, 58, 58, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(156, 175, 136, 0.85), 
        rgba(122, 132, 113, 0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    text-align: center;
    padding: 20px;
}

.overlay-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 400;
}

.overlay-content p {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 300;
}

/* Food Gallery Section */
/* Food Gallery Section */
.food-section {
    padding: 100px 40px;
    background: var(--soft-grey);
}

/* Reduce bottom white space after Signature Creations */
.food-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.food-grid {
    margin-bottom: 0 !important;
}

.food-item:last-child {
    margin-bottom: 0 !important;
}

.food-grid {
    max-width: 1200px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, 120px);
    gap: 20px;
}

.food-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(58, 58, 58, 0.08);
    transition: all 0.4s ease;
}

.food-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(58, 58, 58, 0.15);
}

/* Grid positions */
.food-item:nth-child(1) {
    grid-column: span 5;
    grid-row: span 3;
}

.food-item:nth-child(2) {
    grid-column: span 4;
    grid-row: span 4;
}

.food-item:nth-child(3) {
    grid-column: span 3;
    grid-row: span 2;
}

.food-item:nth-child(4) {
    grid-column: span 4;
    grid-row: span 3;
}

.food-item:nth-child(5) {
    grid-column: span 3;
    grid-row: span 3;
}

.food-item:nth-child(6) {
    grid-column: span 5;
    grid-row: span 2;
}

.food-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(156, 175, 136, 0.85), 
        rgba(139, 111, 71, 0.75));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-item:hover .food-overlay {
    opacity: 1;
}

.food-content {
    color: white;
    text-align: center;
    padding: 20px;
}

.food-content h3 {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 400;
}

.food-content p {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 300;
}

/* Location Section */
.location-section {
    padding: 100px 40px;
    background: var(--white);
}

.location-grid {
    max-width: 1000px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--cream);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(232, 230, 225, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(156, 175, 136, 0.15);
    background: var(--white);
}

.location-card h3 {
    font-family: 'Crimson Text', serif;
    color: var(--sage-green);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.location-card p {
    color: var(--charcoal);
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.location-card .highlight {
    font-weight: 600;
    color: var(--wood-brown);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: rgba(254, 252, 247, 0.8);
    padding: 60px 40px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-left p {
    font-weight: 300;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-left .brand {
    font-family: 'Crimson Text', serif;
    font-size: 20px;
    color: var(--sage-green);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(254, 252, 247, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    font-weight: 300;
}

.social-links a:hover {
    color: var(--sage-green);
}

.footer-right {
    flex: 0 0 auto;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-logo {
        height: 90px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-logo-img {
        max-width: 200px;
    }

    .hero .tagline {
        font-size: 18px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

    .story-section,
    .gallery-section,
    .food-section,
    .location-section {
        padding: 80px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .food-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(12, 100px);
        gap: 15px;
    }

    .food-item:nth-child(1) {
        grid-column: span 4;
        grid-row: span 2;
    }

    .food-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 3;
    }

    .food-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .food-item:nth-child(4) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .food-item:nth-child(5) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .food-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 1;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 160px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .food-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(15, 80px);
    }

    .food-item:nth-child(1) {
        grid-column: span 4;
        grid-row: span 2;
    }

    .food-item:nth-child(2) {
        grid-column: span 4;
        grid-row: span 3;
    }

    .food-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .food-item:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .food-item:nth-child(5) {
        grid-column: span 4;
        grid-row: span 2;
    }

    .food-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 2;
    }
}

        /* Hide video on mobile, show fallback */
        @media (max-width: 768px) {
            .background-video {
                display: none;
            }
            
            .video-fallback {
                display: block;
            }
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .video-content {
            text-align: center;
            color: white;
            z-index: 3;
        }

        .video-title {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .video-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            opacity: 0.9;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 1s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Story Section */
        .story-section {
            padding: 120px 30px;
            background: var(--cream);
            position: relative;
        }

        .story-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--warm-beige), var(--cream));
        }

        .story-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Crimson Text', serif;
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 4rem;
            letter-spacing: 1px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--sage-green);
    opacity: 0.6;
    display: none;
}

        .section-title .accent {
            color: var(--sage-green);
            font-style: italic;
            position: relative;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
            align-items: center;
        }

        .story-text {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--charcoal);
        }

        .story-text p {
            margin-bottom: 2rem;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .story-text p:hover {
            opacity: 1;
        }

        .story-image {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(58, 58, 58, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .story-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(156, 175, 136, 0.1) 0%, transparent 50%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .story-image:hover::before {
            opacity: 1;
        }

        .story-image:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 30px 60px rgba(58, 58, 58, 0.12);
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        /* Team Section */
        .team-section {
            padding: 120px 30px;
            background: linear-gradient(135deg, var(--warm-beige) 0%, var(--soft-grey) 100%);
            position: relative;
        }

        .team-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--cream), var(--warm-beige));
        }

        .team-intro {
            max-width: 700px;
            margin: 0 auto 5rem;
            text-align: center;
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--charcoal);
            opacity: 0.9;
        }

        .team-grid {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
        }

        .team-member {
            text-align: center;
            background: rgba(254, 252, 247, 0.7);
            backdrop-filter: blur(10px);
            padding: 40px 30px;
            border-radius: 25px;
            border: 1px solid rgba(156, 175, 136, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(156, 175, 136, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .team-member:hover::before {
            transform: scale(1);
        }

        .team-member:hover {
            transform: translateY(-8px);
            background: rgba(254, 252, 247, 0.95);
            box-shadow: 0 20px 40px rgba(156, 175, 136, 0.15);
        }

        .member-image {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-green) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: white;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .team-member:hover .member-image {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(156, 175, 136, 0.3);
        }

        .member-name {
            font-family: 'Crimson Text', serif;
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 2;
        }

        .member-role {
            color: var(--sage-green);
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .member-bio {
            color: var(--stone-grey);
            font-size: 0.95rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        /* Journey Timeline */
        .journey-section {
            padding: 120px 30px;
            background: var(--cream);
            position: relative;
        }

        .journey-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--soft-grey), var(--cream));
        }

        .journey-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, var(--sage-green), var(--accent-green));
            opacity: 0.4;
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            margin-bottom: 80px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            background: linear-gradient(135deg, var(--warm-beige) 0%, rgba(245, 241, 232, 0.8) 100%);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 25px;
            margin: 0 40px;
            position: relative;
            border: 1px solid rgba(156, 175, 136, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: inherit;
            transform: translateY(-50%) rotate(45deg);
            border: 1px solid rgba(156, 175, 136, 0.1);
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -10px;
            border-left: none;
            border-bottom: none;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -10px;
            border-right: none;
            border-top: none;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(156, 175, 136, 0.15);
            background: var(--warm-beige);
        }

        .timeline-year {
            font-family: 'Crimson Text', serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--sage-green);
            margin-bottom: 1rem;
        }

        .timeline-text {
            color: var(--charcoal);
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-green) 100%);
            border-radius: 50%;
            border: 4px solid var(--cream);
            box-shadow: 0 4px 15px rgba(156, 175, 136, 0.3);
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: translateX(-50%) scale(1.2);
            box-shadow: 0 6px 20px rgba(156, 175, 136, 0.4);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 30px;
            background: linear-gradient(135deg, var(--soft-grey) 0%, var(--warm-beige) 100%);
            text-align: center;
            position: relative;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to bottom, var(--cream), var(--soft-grey));
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Crimson Text', serif;
            font-size: 2.2rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            font-size: 1.15rem;
            color: var(--stone-grey);
            margin-bottom: 3rem;
            line-height: 1.8;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--sage-green) 0%, var(--accent-green) 100%);
            color: white;
            padding: 20px 40px;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 400;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            text-transform: lowercase;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(156, 175, 136, 0.35);
        }

        /* Enhanced Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .timeline-line {
                left: 30px;
            }

            .timeline-item {
                flex-direction: row !important;
                margin-left: 60px;
            }

            .timeline-content {
                margin: 0;
            }

            .timeline-content::before {
                display: none;
            }

            .timeline-dot {
                left: 30px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .nav-container {
                padding: 0 20px;
            }

            .story-section,
            .team-section,
            .journey-section {
                padding: 100px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 55vh;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .story-section,
            .team-section,
            .journey-section,
            .cta-section {
                padding: 80px 20px;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

        /* Visit Us Section */
        .visit-section {
            padding: 120px 30px;
            background: linear-gradient(135deg, var(--cream) 0%, var(--warm-beige) 100%);
            position: relative;
        }

        .visit-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Crimson Text', serif;
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--charcoal);
            margin-bottom: 4rem;
            letter-spacing: 1px;
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: var(--sage-green);
            opacity: 0.6;
        }

        .section-title .accent {
            color: var(--sage-green);
            font-style: italic;
        }

        /* Main content grid */
        .visit-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
            align-items: start;
        }

        /* Location Info Cards */
        .location-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: rgba(254, 252, 247, 0.8);
            backdrop-filter: blur(10px);
            padding: 35px;
            border-radius: 25px;
            border: 1px solid rgba(156, 175, 136, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .info-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(156, 175, 136, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .info-card:hover::before {
            transform: scale(1);
        }

        .info-card:hover {
            transform: translateY(-5px);
            background: rgba(254, 252, 247, 0.95);
            box-shadow: 0 15px 35px rgba(156, 175, 136, 0.15);
        }

        .info-card h3 {
            font-family: 'Crimson Text', serif;
            font-size: 1.6rem;
            color: var(--sage-green);
            margin-bottom: 1.5rem;
            font-weight: 400;
            position: relative;
            z-index: 2;
        }

        .info-card p {
            color: var(--charcoal);
            margin-bottom: 0.8rem;
            font-size: 1rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }

        .info-card .highlight {
            font-weight: 600;
            color: var(--wood-brown);
        }

        .info-card .address {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }

        .info-card .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            gap: 10px;
        }

        .contact-icon {
            width: 20px;
            height: 20px;
            background: var(--cream);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        /* Map Container */
        .map-container {
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(58, 58, 58, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            height: 500px;
        }

        .map-container:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(58, 58, 58, 0.12);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 25px;
        }

        /* Additional Info Section */
        .additional-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .info-highlight {
            background: linear-gradient(135deg, var(--soft-grey) 0%, rgba(232, 230, 225, 0.7) 100%);
            padding: 40px;
            border-radius: 25px;
            text-align: center;
            border: 1px solid rgba(156, 175, 136, 0.1);
            transition: all 0.3s ease;
        }

        .info-highlight:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(156, 175, 136, 0.15);
        }

        .info-highlight h4 {
            font-family: 'Crimson Text', serif;
            color: var(--sage-green);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .info-highlight p {
            color: var(--stone-grey);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Transportation Info */
        .transport-info {
            background: rgba(156, 175, 136, 0.1);
            padding: 30px;
            border-radius: 20px;
            margin-top: 40px;
        }

        .transport-info h4 {
            font-family: 'Crimson Text', serif;
            color: var(--charcoal);
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            text-align: center;
        }

        .transport-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .transport-item {
            background: rgba(254, 252, 247, 0.9);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
        }

        .transport-item .transport-icon {
            width: 40px;
            height: 40px;
            background: var(--sage-green);
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .transport-item h5 {
            color: var(--charcoal);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .transport-item p {
            color: var(--stone-grey);
            font-size: 0.9rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-delay-1 { transition-delay: 0.1s; }
        .stagger-delay-2 { transition-delay: 0.3s; }
        .stagger-delay-3 { transition-delay: 0.5s; }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .visit-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .map-container {
                height: 350px;
                order: -1;
            }

            .additional-info {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .transport-grid {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .visit-section {
                padding: 80px 20px;
            }
        }

        @media (max-width: 480px) {
            .info-card {
                padding: 25px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .map-container {
                height: 300px;
            }
        }

/* IMAGES */
.images-section {
    padding: 60px 20px;
    background-color: #ffffff; /* white background */
}

.images-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.image-item {
    flex: 1;
    text-align: center;
    max-width: 450px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-image {
    width: auto;          /* Let width adjust automatically */
    max-width: 100%;      /* Stay within container width */
    height: 300px;        /* Fixed uniform height */
    object-fit: contain;  /* Show full image without cropping */
    transition: transform 0.3s ease;
}


.section-image:hover {
    transform: translateY(-5px);
}

.image-caption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: lowercase;
}

        /* Hamburger Menu Styles */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1002;
            position: relative;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background-color: #2c3e50;
            margin: 4px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-6px, -6px);
        }

                @media (max-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .logo {
        order: 1;
    }


            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 70%;
                max-width: 300px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 30px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                order: 2;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.3rem;
                padding: 10px 0;
                border-bottom: 1px solid rgba(125, 155, 118, 0.2);
            }

            .logo-img {
                height: 40px;
            }
        }

        @media (max-width: 768px) {
    .images-section {
        padding: 40px 20px;
    }

    @media (max-width: 768px) {
  .images-container {
      flex-direction: row;
      justify-content: space-between;
      gap: 10px;
      overflow: visible; /* no scrolling */
  }

  .image-item {
      flex: 1;
      min-width: 0; /* allow shrinking */
  }

  .section-image {
      width: 100%;
      height: auto;
      max-height: 180px; /* adjust size so all fit */
      object-fit: cover;
  }
}

    .image-caption {
        font-size: 1.1rem;
        margin-top: 15px;
    }
}

.mobile-video { display: none; }

@media (max-width: 768px) {
  .desktop-video { display: none !important; }
  .mobile-video { display: block !important; }
}
