/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette - Premium & Warm */
    --primary: #B91C1C;
    /* Deeper, richer red */
    --primary-dark: #991B1B;
    --accent: #D97706;
    /* Warm gold/amber */
    --text-dark: #1F2937;
    /* Softer black */
    --text-light: #4B5563;
    --bg-cream: #FFFBF0;
    /* Warmer cream */
    --bg-white: #FFFFFF;
    --border-light: #E5E7EB;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container-full {
    width: 100%;
    padding: 0 24px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.logo img {
    width: 130px;
    height: auto;
    aspect-ratio: 100 / 37;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.nav-link {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    color: var(--text-dark);
    padding: 4px 0;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 11px 18px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.cta-nav-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.cta-nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-nav-button--delivery {
    background: var(--text-dark);
}

.cta-nav-button--delivery:hover {
    background: #111827;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)),
        url('Photos/Vibe/beijing-cafe-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 0 24px;
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 48px;
    letter-spacing: 0.05em;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.8;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
}

.about-badge {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--accent);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
    text-align: center;
    line-height: 1.2;
    padding: 20px;
}

.about-content .section-subtitle,
.about-content .section-title {
    text-align: left;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    background: var(--bg-cream);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== MENU SECTION ===== */
.menu-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}

.menu-carousel-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    text-align: center;
}

.menu-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    background: white;
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 32px 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.4);
}

.btn-menu-pdf {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: white;
    padding: 16px 36px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    margin-top: 32px;
}

.btn-menu-pdf:hover {
    background: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

.gallery-footer {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.gallery-footer .btn {
    opacity: 1;
    visibility: visible;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: var(--shadow-2xl);
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(217, 119, 6, 0.14), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(185, 28, 28, 0.2), transparent 35%),
        var(--text-dark);
}

.reviews-header .section-title,
.reviews-header .section-description {
    color: white;
}

.reviews-header .section-description {
    opacity: 0.72;
}

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

.review-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 36px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

.review-stars {
    margin-bottom: 20px;
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 0.18em;
}

.review-card blockquote {
    flex: 1;
    margin: 0;
}

.review-card blockquote p {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.55;
}

.review-card footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.review-author {
    color: var(--text-dark);
    font-weight: 700;
}

.review-source {
    color: var(--text-light);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.reviews-footer {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 9999px;
}

.reviews-link:hover {
    color: white;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
}



.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: 600;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    margin-bottom: 32px;
}

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

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: white;
    padding: 80px 0 30px;
}



.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-privacy-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 8px;
}

.footer-privacy-links a,
.footer-privacy-links button {
    color: inherit;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== ANALYTICS SETTINGS ===== */
.analytics-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 920px;
    margin: 0 auto;
    padding: 22px 24px;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(185, 28, 28, 0.16);
    border-radius: 18px;
    box-shadow: var(--shadow-2xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.analytics-consent[hidden] {
    display: none;
}

.analytics-consent__content {
    max-width: 590px;
}

.analytics-consent h2 {
    margin-bottom: 4px;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.2;
}

.analytics-consent p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.analytics-consent p a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.analytics-consent__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.analytics-consent__button {
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    font: 600 0.78rem/1 var(--font-body);
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.analytics-consent__button:hover {
    transform: translateY(-1px);
}

.analytics-consent__button:focus-visible {
    outline: 3px solid rgba(217, 119, 6, 0.35);
    outline-offset: 2px;
}

.analytics-consent__button--primary {
    color: white;
    background: var(--primary);
}

.analytics-consent__button--primary:hover {
    background: var(--primary-dark);
}

.analytics-consent__button--secondary {
    color: var(--primary);
    background: white;
}

.footer-analytics-settings {
    display: inline-block;
    padding: 2px 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font: inherit;
    cursor: pointer;
    opacity: 0.8;
}

/* ===== PRIVACY POLICY ===== */
.privacy-page {
    min-height: 100vh;
    color: var(--text-dark);
    background: var(--bg-cream);
}

.privacy-header {
    padding: 24px 0;
    background: #111;
}

.privacy-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.privacy-header img {
    display: block;
    width: 190px;
    height: auto;
}

.privacy-header a:last-child {
    color: white;
    font-weight: 600;
}

.privacy-content {
    max-width: 820px;
    padding-top: 72px;
    padding-bottom: 80px;
}

.privacy-content h1 {
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1;
}

.privacy-content h2 {
    margin: 40px 0 10px;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.privacy-content p,
.privacy-content li {
    color: var(--text-light);
    line-height: 1.8;
}

.privacy-content ul {
    margin: 12px 0 0 22px;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-effective-date {
    margin-bottom: 36px;
}

.privacy-opt-out {
    margin-top: 18px;
    padding: 14px 18px;
    color: white;
    background: var(--primary);
    border: 0;
    border-radius: 10px;
    font: 600 0.85rem/1 var(--font-body);
    cursor: pointer;
}

.privacy-opt-out:hover {
    background: var(--primary-dark);
}

.privacy-status {
    display: inline-block;
    margin-left: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.footer-analytics-settings:hover,
.footer-analytics-settings:focus-visible {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .nav-menu {
        gap: 18px;
    }

    .cta-nav-button {
        padding: 10px 14px;
        font-size: 11px;
    }
}

@media (max-width: 900px) {
    .analytics-consent {
        right: 14px;
        bottom: 14px;
        left: 14px;
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .analytics-consent__actions {
        justify-content: flex-end;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 40px;
    }

    .review-card {
        padding: 28px;
    }

    .review-card blockquote p {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 12px 20px;
    }

    .logo img {
        width: 114px;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .carousel-btn {
        position: absolute;
        z-index: 2;
        width: 44px;
        height: 44px;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }

    .menu-carousel {
        gap: 0;
    }

    .carousel-container {
        width: 100%;
    }


}
