/*
   ALESTA MEDITERRANEAN — EDITORIAL THEME
   ==========================================
   Dark/cream/gold editorial design
   Brand colors are defined as CSS variables below.
   ============================================= */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* === BRAND COLORS (CHANGE PER RESTAURANT) === */
    --primary-color: #2c1a0e;
    --secondary-color: #d4a043;
    --accent-color: #d4a043;
    /* === EDITORIAL PALETTE === */
    --dark-bg: #0c0907;
    --cream: #f8efe4;
    --warm-bg: #f4efe8;
    --gold: #d4a043;
    --text-dark: #15110d;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* =============================================
   LANGUAGE TOGGLE
   ============================================= */
.language-toggle {
    display: flex;
    gap: 5px;
}

.language-toggle button {
    padding: 6px 14px;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-family: Arial, sans-serif;
    letter-spacing: 0.1em;
}

.language-toggle button.active,
.language-toggle button:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--primary-color);
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

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

.logo-text {
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.38em;
    font-weight: 700;
    color: var(--cream);
    text-transform: uppercase;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
}

.nav-link {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    padding: 8px 10px;
    border-radius: 3px;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--gold);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-order:hover {
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100svh;
    background: var(--dark-bg);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 130px 24px 120px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 46%;
    display: block;
    filter: saturate(0.94) contrast(0.95) brightness(0.9);
    transform: scale(1.012);
    animation: heroImageBreath 22s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes heroImageBreath {
    from { transform: scale(1.012); }
    to { transform: scale(1.05); }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(12,9,7,.18), rgba(12,9,7,.42) 62%, rgba(12,9,7,.7)),
        linear-gradient(to right, rgba(12,9,7,.7), rgba(12,9,7,.24) 56%, rgba(12,9,7,.14));
}

.hero::before {
    content: "";
    position: absolute;
    width: 80vw;
    height: 80vw;
    left: -36vw;
    top: 10vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167,121,56,.18), rgba(167,121,56,.055) 38%, transparent 70%);
    filter: blur(28px);
    opacity: 0.26;
    z-index: 1;
    pointer-events: none;
    animation: ambientHeroLight 18s ease-in-out infinite alternate;
}

@keyframes ambientHeroLight {
    from { transform: translate3d(-3vw, 2vh, 0) scale(1); opacity: 0.22; }
    to { transform: translate3d(18vw, -5vh, 0) scale(1.16); opacity: 0.36; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(44px, 13.8vw, 72px);
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.052em;
    margin-bottom: 28px;
    max-width: 620px;
    text-wrap: balance;
    color: var(--cream);
}

.hero-subtitle {
    font-family: Arial, sans-serif;
    max-width: 345px;
    font-size: 15px;
    line-height: 1.65;
    opacity: 0.84;
    color: var(--cream);
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: rgba(248,239,228,.86);
    color: rgba(12,9,7,.86);
    border-radius: 7px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--cream);
    border: 2px solid rgba(248,239,228,0.7);
    border-radius: 7px;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(248,239,228,0.12);
    border-color: var(--cream);
    transform: translateY(-2px);
}

.gallery-cta {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =============================================
   ORDER BENEFITS SECTION
   ============================================= */
.order-benefits {
    background: var(--dark-bg);
    color: var(--cream);
    padding: 80px 0;
    border-top: 1px solid rgba(167,121,56,0.2);
}

.order-benefits h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-align: center;
    margin-bottom: 48px;
    color: var(--cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.benefit-item p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.72;
    color: var(--cream);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--warm-bg);
    padding: 100px 0;
}

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

.about-text h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.about-text p {
    font-family: Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #4a3f35;
    margin-bottom: 20px;
    opacity: 0.88;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 2px;
}

/* =============================================
   FAVORITES SECTION
   ============================================= */
.favorites {
    background: var(--dark-bg);
    color: var(--cream);
    padding: 100px 0;
}

.favorites h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 16px;
    color: var(--cream);
    text-align: center;
}

.section-subtitle {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    text-align: center;
    margin-bottom: 56px;
    opacity: 0.84;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.favorite-item {
    position: relative;
    overflow: hidden;
    background: #1a1208;
}

.favorite-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    filter: saturate(0.9) brightness(0.85);
}

.favorite-item:hover img {
    transform: scale(1.04);
    filter: saturate(1) brightness(0.9);
}

.favorite-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 20px;
    background: linear-gradient(to top, rgba(12,9,7,.90), transparent);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.favorite-item h3 {
    position: static;
    padding: 0;
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--cream);
    background: none;
    margin: 0;
    z-index: 2;
}

.favorite-item p {
    display: block;
    position: static;
    padding: 0;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(248,239,228,0.72);
    margin: 0;
    letter-spacing: 0.02em;
    z-index: 2;
    background: transparent;
    line-height: 1.4;
}

.favorite-item:hover h3 {
    color: var(--cream);
}

/* Dish number overlay */
.favorite-item::before {
    content: attr(data-num);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 72px;
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    color: var(--cream);
    z-index: 1;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    background: var(--warm-bg);
    padding: 100px 0;
}

.testimonials h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 56px;
    color: var(--text-dark);
    text-align: center;
}

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

.testimonial-item {
    background: var(--dark-bg);
    color: var(--cream);
    padding: 48px 40px;
}

.stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.testimonial-item p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.82;
    margin-bottom: 20px;
    color: var(--cream);
}

.customer-name {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold) !important;
    font-weight: 700;
    opacity: 1 !important;
}

.rating-summary {
    text-align: center;
    margin-top: 48px;
}

.rating-summary p {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 700;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery {
    background: var(--dark-bg);
    padding: 100px 0;
}

.gallery h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 16px;
    color: var(--cream);
    text-align: center;
}

.gallery .section-subtitle {
    color: var(--gold);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #1a1208;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.5s ease;
    filter: saturate(0.85) brightness(0.82);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: saturate(1) brightness(0.9);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(to top, rgba(12,9,7,.78), transparent);
    color: var(--cream);
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    background: var(--warm-bg);
    padding: 100px 0;
}

.faq h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 56px;
    color: var(--text-dark);
    text-align: center;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(21,17,13,.14);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question span:first-child {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
}

.faq-answer p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #4a3f35;
    opacity: 0.88;
}

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

.contact h2 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin-bottom: 56px;
    color: var(--cream);
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

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

.contact-item h3 {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-item p,
.contact-item a {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--cream);
    opacity: 0.78;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 1;
    color: var(--gold);
}

.contact-map iframe {
    width: 100%;
    height: 420px;
    border: none;
    filter: grayscale(0.2) contrast(0.9);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #1a1a1a;
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-section .footer-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-section p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1.65;
    color: #ccc;
    opacity: 0.78;
}

.footer-section h3 {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #ccc;
    opacity: 0.72;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(167,121,56,0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #ccc;
    opacity: 1;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

.devournow-link,
.privacy-link {
    color: #ccc !important;
    opacity: 1;
    transition: color 0.3s ease;
}

.devournow-link:hover,
.privacy-link:hover {
    color: var(--white) !important;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--dark-bg);
    color: var(--cream);
    border: 1px solid rgba(167,121,56,0.4);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark-bg);
}

.back-to-top.visible {
    display: flex;
}

/* =============================================
   LOYALTY POPUP
   ============================================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.visible {
    display: flex;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.7);
    pointer-events: none;
}

.popup.visible {
    display: flex;
    pointer-events: all;
}

.popup-content {
    background: var(--dark-bg);
    color: var(--cream);
    padding: 48px 40px;
    max-width: 440px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(167,121,56,0.3);
    text-align: center;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--cream);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    opacity: 1;
}

.popup-content h3 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--cream);
}

.popup-content p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    opacity: 0.8;
    margin-bottom: 28px;
    color: var(--cream);
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 1.05s cubic-bezier(0.22, 0.61, 0.36, 1),
        transform 1.05s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   FILM GRAIN TEXTURE OVERLAY
   ============================================= */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.03;
    mix-blend-mode: soft-light;
    background-image:
        radial-gradient(circle at 25% 20%, rgba(255,255,255,.55) 0 1px, transparent 1px),
        radial-gradient(circle at 78% 64%, rgba(0,0,0,.42) 0 1px, transparent 1px);
    background-size: 3px 3px, 4px 4px;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-content {
        gap: 40px;
    }

    .favorites-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
    /* Header */
    .navbar .container {
        height: 60px;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        display: none;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        z-index: 99;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu .nav-link {
        color: var(--text-dark);
        padding: 12px 16px;
        border-radius: 4px;
        font-size: 11px;
        width: 100%;
    }

    .nav-menu .nav-link:hover {
        background: var(--warm-bg);
        color: var(--primary-color);
    }

    .header-right {
        display: none;
    }

    /* Mobile Order + Lang in nav */
    .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid rgba(0,0,0,0.08);
        margin-top: 8px;
    }

    .mobile-full-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 6px;
        font-family: Arial, sans-serif;
        font-size: 10px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
    }

    .mobile-lang-toggle {
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 8px 0;
    }

    .mobile-lang-toggle button {
        padding: 8px 20px;
        border: 2px solid var(--primary-color);
        background: transparent;
        color: var(--primary-color);
        cursor: pointer;
        font-weight: 700;
        border-radius: 4px;
        font-family: Arial, sans-serif;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .mobile-lang-toggle button.active {
        background: var(--primary-color);
        color: var(--white);
    }

    /* Hero */
    .hero {
        min-height: 88svh;
        padding: 108px 22px 104px;
        justify-content: center;
    }

    .hero-content h1 {
        max-width: 300px;
        font-size: clamp(39px, 11.8vw, 50px);
        line-height: 0.98;
        letter-spacing: -0.048em;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 320px;
    }

    /* Favorites */
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .favorite-item img {
        height: 320px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        height: 240px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 80px;
        right: 14px;
    }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-image img {
        animation: none !important;
        transform: none !important;
    }
}
