/* ===================================
   CSS VARIABLES & ROOT STYLES
   =================================== */
:root {
    /* Colors */
    --primary-color: #d4a574;
    --primary-dark: #b88b5e;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   LAYOUT & UTILITIES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header--light {
    color: var(--text-white);
}

.section-header__label {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.section-header__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.section-header__description {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-header__description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    text-align: center;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.navbar__brand h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
}

.navbar__tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

.navbar__toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-base);
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.navbar__menu a {
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.navbar__menu a:hover {
    color: var(--primary-color);
}

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

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-white);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero__controls {
    position: absolute;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 3;
    display: flex;
    gap: var(--spacing-sm);
}

.hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.hero__arrow:hover {
    background: var(--primary-color);
}

/* ===================================
   STARS & RATINGS
   =================================== */
.stars {
    display: inline-flex;
    gap: 2px;
}

.stars--large {
    gap: 4px;
}

.star {
    color: #ddd;
    font-size: 1.25rem;
}

.stars--large .star {
    font-size: 1.5rem;
}

.star.filled {
    color: var(--primary-color);
}

.rating__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* ===================================
   FEATURES BAR
   =================================== */
.features-bar {
    background: var(--bg-light);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.features-bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    justify-content: center;
}

.feature-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.feature-badge span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about__intro {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.about__text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    line-height: 1.8;
}

.about__highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.highlight {
    text-align: center;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    background: var(--bg-light);
}

.highlight h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.highlight p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* ===================================
   SPECIALTIES SECTION
   =================================== */
.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.specialty-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.specialty-card__icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.specialty-card h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
}

.specialty-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.service-option {
    text-align: center;
}

.service-option__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    stroke: var(--primary-color);
    stroke-width: 1.5;
    transition: var(--transition-base);
}

.service-option:hover .service-option__icon {
    background: var(--primary-color);
    stroke: var(--text-white);
    transform: scale(1.1);
}

.service-option h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-option p {
    color: var(--text-light);
}

/* ===================================
   MENU SECTION
   =================================== */
.menu__categories {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    font-weight: 500;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-color);
    color: var(--text-white);
}

.menu__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-item__image {
    height: 220px;
    overflow: hidden;
}

.menu-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-item__content {
    padding: var(--spacing-md);
}

.menu-item__content h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
    color: var(--text-white);
}

.menu-item__content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.menu-item__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu__cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ===================================
   BADGES
   =================================== */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--popular {
    background: var(--accent-color);
    color: var(--text-white);
}

.badge--chef {
    background: var(--primary-color);
    color: var(--text-white);
}

.badge--vegetarian {
    background: #27ae60;
    color: var(--text-white);
}

.badge--traditional {
    background: #8e44ad;
    color: var(--text-white);
}

.badge--fresh {
    background: #3498db;
    color: var(--text-white);
}

.badge--warning {
    background: #f39c12;
    color: var(--text-white);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.gallery__item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery__item--large {
    grid-column: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery__item:hover img {
    transform: scale(1.1);
}

.gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: var(--transition-base);
}

.gallery__item:hover::after {
    background: rgba(212, 165, 116, 0.3);
}

/* ===================================
   REVIEWS SECTION
   =================================== */
.reviews__summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    align-items: center;
}

.reviews__score {
    text-align: center;
    padding: var(--spacing-md);
}

.reviews__score h3 {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.reviews__score p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.rating-bar {
    display: grid;
    grid-template-columns: 30px 1fr 50px;
    gap: var(--spacing-sm);
    align-items: center;
    font-size: 0.9rem;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar__fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 1s ease;
}

.reviews__slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.review-card__date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.review-card__text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.review-card__details {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-sm);
}

.review-card__details .badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.review-card__ratings {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ORDER SECTION
   =================================== */
.order__platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.platform-card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.platform-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.platform-card__logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.platform-card h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
}

.platform-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   HOURS SECTION
   =================================== */
.hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.hours__schedule {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.day {
    font-weight: 600;
}

.hours {
    color: rgba(255, 255, 255, 0.7);
}

.day-hours--closed .hours {
    color: var(--accent-color);
}

.day-hours--busy {
    background: rgba(212, 165, 116, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.hours__tips {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.hours__tips h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.peak-time {
    margin-bottom: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
}

.peak-time strong {
    color: var(--primary-color);
}

.hours__note {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact__card {
    background: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.contact__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.contact__icon svg {
    stroke: var(--text-white);
    stroke-width: 2;
}

.contact__card h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-xs);
}

.contact__card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.contact__card a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact__note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.contact__features h3 {
    font-family: var(--font-heading);
    margin-bottom: var(--spacing-sm);
}

.features__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
    box-shadow: var(--shadow-md);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: var(--spacing-xs);
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer__column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.footer__column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer__column a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

/* ===================================
   SCROLL TO TOP
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.scroll-top svg {
    stroke: var(--text-white);
    stroke-width: 2;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    .section-header__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

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

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

    .contact__map {
        height: 350px;
    }

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

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

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        align-items: flex-start;
    }

    .navbar__menu.active {
        left: 0;
    }

    .navbar__menu li {
        width: 100%;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .section-header__title {
        font-size: 1.75rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .features-bar__grid {
        grid-template-columns: 1fr;
    }

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

    .specialties__grid,
    .services__grid,
    .menu__items,
    .order__platforms {
        grid-template-columns: 1fr;
    }

    .gallery__item--large {
        grid-column: span 1;
    }

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

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

    .menu__categories {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .footer__bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero {
        min-height: 500px;
    }

    .section-header__title {
        font-size: 1.5rem;
    }

    .hero__controls {
        bottom: var(--spacing-sm);
        right: var(--spacing-sm);
    }

    .hero__arrow {
        width: 40px;
        height: 40px;
    }
}