.closed-day {
    color: #dc2626;
    font-weight: 700;
}

.hours-row.closed-day {
    color: #dc2626;
}

.hours-row.closed-day .time {
    font-weight: 700;
}

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

:root {
    --wood-dark: #6B5744;
    --wood-mid: #9B8370;
    --wood-light: #C4A88A;
    --green-dark: #3A5A40;
    --green-mid: #588157;
    --green-light: #A3B18A;
    --cream: #FAF7F0;
    --beige: #E8DFD0;
    --black: #1A1A1A;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--cream);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(107, 87, 68, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(250, 247, 240, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s ease;
}

header.scrolled .header-container {
    padding: 16px 30px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--wood-dark);
    letter-spacing: 0.5px;
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

header.scrolled .logo-img {
    height: 100px;
    transition: height 0.4s ease;
}

.logo::after {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 38px;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: var(--green-mid);
    transition: transform 0.3s ease;
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.header-cta {
    display: flex;
    gap: 18px;
    align-items: center;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    padding: 11px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--green-mid);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--wood-dark);
    padding: 11px 26px;
    border: 1.5px solid var(--wood-dark);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--wood-dark);
    color: var(--white);
}

.phone-link {
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--wood-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.mobile-active {
    display: flex;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 120px;
}

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

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1533777857889-4be7c70b33f7?w=1920') center/cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(58, 90, 64, 0.92) 0%, rgba(107, 87, 68, 0.88) 50%, rgba(58, 90, 64, 0.9) 100%);
    mix-blend-mode: multiply;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(163, 177, 138, 0.15) 0%, transparent 60%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    color: var(--white);
    animation: heroSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-light);
    margin-bottom: 24px;
    position: relative;
    padding-left: 50px;
}

.hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 1px;
    background: var(--green-light);
}

.hero-title {
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

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

.title-line:first-child {
    animation: titleSlide1 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.title-line:last-child {
    animation: titleSlide1 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
}

@keyframes titleSlide1 {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-light), transparent);
    margin-bottom: 28px;
    animation: dividerGrow 1s ease 0.6s backwards;
}

@keyframes dividerGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.hero-description {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
    opacity: 0.95;
    animation: heroFadeIn 1s ease 0.8s backwards;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeIn 1s ease 1s backwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: var(--white);
    color: var(--wood-dark);
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-light);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.hero-btn-primary:hover::before {
    transform: translateX(0);
}

.hero-btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.hero-btn-primary svg {
    transition: transform 0.4s ease;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: heroSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s backwards;
    animation-name: heroSlideInRight;
}

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

.hero-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateX(8px);
}

.card-icon {
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.card-icon svg {
    opacity: 0.95;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.hero-features {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    z-index: 3;
    animation: heroFadeIn 1s ease 1.2s backwards;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
}

.feature-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 16px;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--green-light);
    border-radius: 50%;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: heroFadeIn 1s ease 1.4s backwards;
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(30px);
        opacity: 0;
    }
}

.concept-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}

.section-title {
    font-size: clamp(38px, 5vw, 58px);
    margin-bottom: 16px;
    color: var(--wood-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--green-mid);
}

.section-subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    color: var(--green-dark);
    font-style: italic;
    font-weight: 400;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 0;
}

.concept-card {
    background: var(--cream);
    padding: 44px 36px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(107, 87, 68, 0.08);
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.concept-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--green-mid);
    transition: height 0.4s ease;
    border-radius: 8px 0 0 8px;
}

.concept-card:hover::before {
    height: 100%;
}

.concept-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.concept-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    color: var(--green-mid);
}

.concept-icon svg {
    opacity: 0.85;
}

.concept-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--wood-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.concept-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.menu-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.menu-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-category {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.menu-category:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.category-title {
    font-size: 32px;
    color: var(--wood-dark);
    margin-bottom: 8px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--green-mid);
}

.category-note {
    font-size: 14px;
    font-style: italic;
    color: var(--green-dark);
    margin-bottom: 32px;
    display: block;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.menu-item {
    background: var(--cream);
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.menu-item:hover {
    background: var(--white);
    border-left-color: var(--green-mid);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    gap: 20px;
}

.item-header h4 {
    font-size: 19px;
    color: var(--wood-dark);
    font-weight: 600;
    line-height: 1.3;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
}

.menu-item p {
    font-size: 14px;
    color: #5A5A5A;
    line-height: 1.7;
}

.menu-note {
    text-align: center;
    font-style: italic;
    color: #6A6A6A;
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.specialties-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.specialty-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(107, 87, 68, 0.08);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.specialty-image {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    position: relative;
    overflow: hidden;
}

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

.specialty-card h3 {
    font-size: 24px;
    padding: 0px 28px 12px;
    color: var(--wood-dark);
}

.specialty-card p {
    padding: 0 28px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
}

.homemade-highlight {
    color: var(--green-dark);
    font-weight: 700;
    background: linear-gradient(120deg, rgba(88, 129, 87, 0.15) 0%, rgba(163, 177, 138, 0.15) 100%);
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.key-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 32px;
}

.key-points span {
    background: var(--green-mid);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.reservation-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--wood-mid) 0%, var(--green-dark) 100%);
    color: var(--white);
    position: relative;
}

.reservation-section .section-title,
.reservation-section .section-subtitle {
    color: var(--white);
}

.reservation-section .section-title::after {
    background: var(--white);
}

.reservation-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px;
    font-size: 17px;
    opacity: 0.95;
}

.reservation-form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wood-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--beige);
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-mid);
    background: var(--white);
}

.reservation-form button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.reservation-info {
    text-align: center;
    margin-top: 24px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reservation-info p {
    font-size: 14px;
    opacity: 0.92;
}

.phone-reservation {
    text-align: center;
    margin-top: 24px;
    font-size: 16px;
}

.phone-reservation a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--white);
}

.events-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.events-media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.event-video-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.event-video-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.event-video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(58, 90, 64, 0.85);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.event-video-wrapper:hover .video-play-overlay {
    background: rgba(58, 90, 64, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal video {
    width: auto;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.event-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.events-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(163, 177, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.events-content {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.events-intro {
    position: relative;
}

.events-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.events-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 1px;
    background: var(--green-mid);
}

.events-intro h3 {
    font-size: 42px;
    color: var(--wood-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
}

.events-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #4A4A4A;
    margin-bottom: 32px;
}

.events-capacity {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.capacity-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-mid), var(--wood-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.capacity-text {
    display: flex;
    flex-direction: column;
}

.capacity-text strong {
    font-size: 18px;
    color: var(--wood-dark);
    font-weight: 600;
}

.capacity-text span {
    font-size: 13px;
    color: #6A6A6A;
}

.events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.events-list span {
    background: var(--cream);
    color: var(--wood-dark);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(107, 87, 68, 0.1);
    transition: all 0.3s ease;
}

.events-list span:hover {
    background: var(--green-mid);
    color: var(--white);
    border-color: var(--green-mid);
    transform: translateY(-2px);
}

.events-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background: var(--white);
    padding: 28px;
    border-radius: 10px;
    border-left: 4px solid var(--green-mid);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

.benefit-card h4 {
    font-size: 20px;
    color: var(--wood-dark);
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    position: relative;
    z-index: 1;
}

.events-note {
    text-align: center;
    font-style: italic;
    color: #6A6A6A;
    margin-top: 32px;
    font-size: 14px;
    line-height: 1.8;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.events-images-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.event-gallery-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.event-gallery-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.brunch-pictures-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--beige) 100%);
    position: relative;
    overflow: hidden;
}

.brunch-pictures-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(163, 177, 138, 0.05) 0%, transparent 70%);
    animation: rotateBackground 30s linear infinite;
}

.brunch-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.gallery-item-wrapper {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
}

.brunch-item {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
}

.brunch-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(58, 90, 64, 0.4) 0%, rgba(107, 87, 68, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.brunch-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
    transform: translateZ(20px);
}

.gallery-item-wrapper:hover .brunch-item {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: translateZ(30px) scale(1.02);
}

.gallery-item-wrapper:hover .brunch-item::before {
    opacity: 1;
}

.gallery-item-wrapper:hover .brunch-item::after {
    opacity: 1;
}

.reviews-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.reviews-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    margin-top: 40px;
    align-items: start;
}

.overall-rating-sidebar {
    position: sticky;
    top: 100px;
}

.restaurant-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--wood-dark);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.overall-rating-sidebar .rating-score {
    background: var(--white);
    padding: 28px 24px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--green-dark);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.rating-stars-large {
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 13px;
    color: #6A6A6A;
    margin-top: 4px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-left: 4px solid var(--green-mid);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-size: 16px;
    color: var(--wood-dark);
    font-weight: 600;
}

.review-author span {
    font-size: 13px;
    color: #6A6A6A;
}

.google-reviews-link {
    text-align: center;
    margin-top: 40px;
}

.google-reviews-link .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hours-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--green-dark) 100%);
    color: var(--white);
}

.hours-section .section-title,
.hours-section .section-subtitle {
    color: var(--white);
}

.hours-section .section-title::after {
    background: var(--white);
}

.hours-content {
    max-width: 560px;
    margin: 32px auto 0;
    text-align: center;
}

.hours-table {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 36px;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 17px;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 500;
}

.time {
    font-weight: 700;
}

.hours-highlight {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hours-info p {
    font-size: 14px;
    margin: 8px 0;
    opacity: 0.9;
}

.contact-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-header {
    max-width: 680px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.contact-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-mid);
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.contact-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 1px;
    background: var(--green-mid);
}

.contact-title {
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--wood-dark);
    letter-spacing: -1px;
}

.contact-title .title-line {
    display: block;
}

.contact-divider {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-mid), transparent);
    margin-bottom: 24px;
}

.contact-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.contact-left {
    position: relative;
    display: flex;
}

.contact-map-container {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.contact-map-container:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
    transform: translateY(-3px);
}

.contact-map-container iframe {
    filter: grayscale(0.3) contrast(1.1);
    transition: filter 0.4s ease;
}

.contact-map-container:hover iframe {
    filter: grayscale(0) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 10px;
    max-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-overlay:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.map-info svg {
    color: var(--green-mid);
    margin-bottom: 16px;
}

.map-info h3 {
    font-size: 22px;
    color: var(--wood-dark);
    margin-bottom: 12px;
}

.map-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.map-link:hover {
    gap: 12px;
}

.map-link svg {
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(4px);
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: var(--cream);
    padding: 24px;
    border-radius: 10px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid rgba(107, 87, 68, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}



.info-card:hover {
    background: var(--white);
    transform: translateX(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-mid);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    background: var(--green-mid);
    color: var(--white);
    transform: scale(1.05);
}

.info-content h4 {
    font-size: 17px;
    color: var(--wood-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.info-link {
    display: block;
    color: var(--green-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--green-mid);
}

.info-meta {
    font-size: 13px;
    color: #6A6A6A;
}

.info-hours {
    font-size: 15px;
    color: #4A4A4A;
    line-height: 1.8;
}

.contact-cta-section {
    background: linear-gradient(135deg, var(--wood-mid) 0%, var(--green-dark) 100%);
    padding: 32px;
    border-radius: 10px;
    color: var(--white);
}

.contact-cta-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.contact-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-btn-primary {
    background: var(--white);
    color: var(--wood-dark);
    flex: 1;
    justify-content: center;
}

.contact-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn-primary svg {
    transition: transform 0.3s ease;
}

.contact-btn-primary:hover svg {
    transform: translateX(4px);
}

.contact-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.contact-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.contact-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    opacity: 0.95;
}

.feature-badge svg {
    flex-shrink: 0;
}

.footer {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.footer-logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.88;
    margin: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.88;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
}

.social-links a svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.social-links a:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .menu-container {
        grid-template-columns: 1fr;
    }
    
    .menu-nav {
        display: none;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        align-items: start;
    }
    
    .contact-map-container {
        height: 450px;
    }
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 120px 0 100px;
    }
    
    .hero-features {
        bottom: 30px;
        gap: 20px;
    }
    
    .feature-item {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 16px 20px;
        gap: 12px;
    }
    
    .logo {
        font-size: 20px;
        flex-shrink: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(250, 247, 240, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px 20px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
        border-bottom: 1px solid rgba(107, 87, 68, 0.1);
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-cta {
        gap: 12px;
    }
    
    .header-cta .btn-primary {
        display: none;
    }
    
    .phone-link {
        font-size: 13px;
        white-space: nowrap;
    }
    
    .hero-section {
        padding: 80px 0 32px;
        min-height: auto;
        display: flex;
        align-items: flex-start;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        width: 100%;
        margin-bottom: 28px;
        padding: 0;
        text-align: center;
    }
    
    .hero-label {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 16px;
        padding-left: 0;
        display: block;
    }
    
    .hero-label::before {
        display: none;
    }
    
    .hero-title {
        font-size: 52px;
        margin-bottom: 24px;
        letter-spacing: -1.5px;
        line-height: 0.9;
    }
    
    .hero-divider {
        width: 50px;
        margin: 0 auto 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 1.65;
        margin-bottom: 24px;
        max-width: 100%;
        opacity: 0.92;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .hero-btn {
        padding: 16px 28px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
        border-radius: 8px;
    }
    
    .hero-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-right {
        width: 100%;
        gap: 14px;
        margin-bottom: 0;
        padding: 0;
    }
    
    .hero-card {
        padding: 20px;
        gap: 16px;
        background: rgba(255, 255, 255, 0.16);
        border-radius: 10px;
        backdrop-filter: blur(24px);
    }
    
    .hero-card:hover {
        transform: translateY(-2px);
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .card-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .card-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
        font-weight: 600;
    }
    
    .card-content p {
        font-size: 13px;
        line-height: 1.6;
        opacity: 0.9;
    }
    
    .hero-features {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .brunch-pictures-section {
        padding: 40px 0 !important;
    }
    
    .brunch-pictures-section .section-title {
        font-size: 32px;
        text-align: center;
    }
    
    .brunch-pictures-section .section-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .brunch-gallery-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 24px;
    }
    
    .brunch-item {
        height: 280px;
    }
    
    /* Disable hover effects on mobile */
    .gallery-item-wrapper:hover .brunch-item {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transform: none;
    }
    
    .gallery-item-wrapper:hover .brunch-item::before,
    .gallery-item-wrapper:hover .brunch-item::after {
        opacity: 0;
    }
    
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .overall-rating-sidebar {
        position: relative;
        top: 0;
    }
    
    .overall-rating-sidebar .rating-score {
        padding: 24px 20px;
    }
    
    .rating-number {
        font-size: 48px;
    }
    
    .rating-stars-large {
        font-size: 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .concept-section,
    .menu-section,
    .specialties-section,
    .reservation-section,
    .events-section,
    .brunch-pictures-section,
    .gallery-section,
    .hours-section,
    .contact-section {
        padding: 40px 0;
    }
    
    .header-container {
        padding: 18px 20px;
    }
    
    .concept-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .events-media-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .events-images-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-gallery-item {
        height: 250px;
    }
    
    .event-video {
        height: 220px;
    }
    
    .event-image {
        height: 220px;
    }
    
    .events-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .events-intro h3 {
        font-size: 32px;
    }
    
    .section-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-cta .btn-primary,
    .section-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .menu-category {
        padding: 20px;
    }
    
    .menu-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-title {
        font-size: 26px;
    }
    
    .section-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .section-cta .btn-primary,
    .section-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .events-capacity {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .events-list {
        justify-content: flex-start;
    }
    
    .hero-actions {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    
    .hero-btn {
        justify-content: center;
    }
    
    .reservation-info {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .key-points {
        justify-content: flex-start;
        margin-top: 24px;
        gap: 10px;
    }
    
    .gallery-grid {
        gap: 12px;
        margin-top: 28px;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        align-items: start;
    }
    
    .contact-map-container {
        height: 350px;
    }
    
    .contact-content {
        gap: 24px;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.parallax {
    transition: transform 0.1s ease-out;
}

/* Professional Brunch Lightbox */
.brunch-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-image-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 20px;
    max-height: calc(100vh - 150px);
}

.lightbox-main-image {
    max-width: 90%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    padding: 20px;
    overflow-x: auto;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lightbox-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--green-mid);
    transform: scale(1.1);
}

.lightbox-main-video {
    max-width: 90%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.video-thumb {
    width: 100px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 3px solid transparent;
}

.video-thumb svg {
    width: 24px;
    height: 24px;
}

.video-thumb span {
    font-size: 12px;
    color: white;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-image-container {
        padding: 60px 10px 10px;
    }
    
    .lightbox-main-image {
        max-width: 95%;
    }
    
    .lightbox-thumbnails {
        padding: 10px;
        gap: 8px;
    }
    
    .lightbox-thumb {
        width: 60px;
        height: 60px;
    }
}
