/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Colors - Fast Food theme with warm tones */
    --primary: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff6659;
    --secondary: #ffa000;
    --secondary-dark: #f57c00;
    --secondary-light: #ffc947;

    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #757575;
    --text-white: #ffffff;

    --bg-white: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --bg-accent: #fff3e0;

    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

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

    /* Spacing */
    --section-padding: 80px;
    --container-max: 1140px;

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

/* ========================================
   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;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.section--accent {
    background-color: var(--bg-accent);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: inherit;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.navbar__brand {
    color: var(--text-white);
}

.navbar__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.navbar__subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.navbar__toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    transition: var(--transition);
}

.navbar__menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar__link {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link--cta {
    background-color: var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
}

.navbar__link--cta::after {
    display: none;
}

.navbar__link--cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.85) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero__content {
    text-align: center;
    color: var(--text-white);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero__rating {
    margin-bottom: 32px;
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
}

.rating__stars {
    color: var(--secondary);
    font-size: 1.25rem;
}

.rating__score {
    font-size: 1.5rem;
    font-weight: 700;
}

.rating__count {
    opacity: 0.9;
}

.hero__badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

.btn--secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    opacity: 0.8;
    animation: bounce 2s infinite;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about__heading {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary);
}

.about__text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature__text {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

.offerings {
    background-color: var(--bg-accent);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.offerings__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.offerings__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
}

.offerings__icon {
    color: var(--primary);
    flex-shrink: 0;
}

.payment-options {
    padding: 24px;
    border: 2px solid var(--border);
    border-radius: 12px;
}

.payment-options__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.payment-options__list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.payment-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-size: 0.875rem;
}

.about__image-container {
    position: relative;
}

.about__image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 24px;
}

.about__amenities {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 24px;
    border-radius: 12px;
}

.about__amenities h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.about__amenities ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about__amenities li {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery__item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(211, 47, 47, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--text-white);
    font-weight: 600;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox__close {
    top: 20px;
    right: 20px;
    font-size: 2rem;
}

.lightbox__prev {
    left: 40px;
}

.lightbox__next {
    right: 40px;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews__stats {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.reviews__stats-main {
    text-align: center;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.reviews__stars {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.reviews__count {
    font-size: 1.125rem;
    opacity: 0.8;
}

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

.rating-bar {
    display: grid;
    grid-template-columns: 40px 1fr 50px;
    gap: 12px;
    align-items: center;
}

.rating-bar__label {
    font-size: 0.9375rem;
}

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

.rating-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    transition: width 1s ease;
}

.rating-bar__count {
    font-size: 0.9375rem;
    opacity: 0.8;
    text-align: right;
}

.reviews__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
}

.review-tag {
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
}

.reviews__carousel {
    position: relative;
    overflow: hidden;
}

.reviews__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px;
}

.reviews__track::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 350px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 16px;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.08);
}

.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-card__stars {
    color: var(--secondary);
    font-size: 1.125rem;
}

.review-card__date {
    font-size: 0.875rem;
    opacity: 0.7;
}

.review-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}

.review-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.review-card__service,
.review-card__meal,
.review-card__price {
    padding: 4px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8125rem;
}

.review-card__ratings {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.875rem;
    opacity: 0.8;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel__btn--prev {
    left: -24px;
}

.carousel__btn--next {
    right: -24px;
}

.carousel__btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* ========================================
   HOURS SECTION
   ======================================== */
.hours__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.hours__table {
    background-color: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
}

.hours__row:last-child {
    border-bottom: none;
}

.hours__day {
    font-weight: 600;
    font-size: 1.0625rem;
}

.hours__time {
    color: var(--text-medium);
    font-size: 1.0625rem;
}

.hours__chart {
    background-color: var(--bg-accent);
    padding: 32px;
    border-radius: 16px;
}

.hours__chart-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hours__chart-subtitle {
    color: var(--text-medium);
    margin-bottom: 32px;
}

.busy-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.busy-chart__row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: center;
}

.busy-chart__label {
    font-weight: 600;
}

.busy-chart__bar {
    height: 32px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.busy-chart__fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    position: relative;
    transition: width 1s ease;
}

.busy-chart__fill--high {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
}

.busy-chart__fill--peak {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.busy-chart__tooltip {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
}

.hours__tip {
    padding: 16px;
    background-color: var(--bg-white);
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   ORDER SECTION
   ======================================== */
.order__platforms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.platform-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border);
}

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

.platform-card__icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.platform-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.platform-card__text {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.platform-card__btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.platform-card:hover .platform-card__btn {
    background-color: var(--primary-dark);
}

.order__direct {
    text-align: center;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 16px;
}

.order__direct-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.order__phone {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.order__phone:hover {
    color: var(--primary-dark);
    transform: scale(1.05);
}

.order__direct-note {
    color: var(--text-medium);
    font-size: 1.125rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact__item {
    display: flex;
    gap: 20px;
}

.contact__icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background-color: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__details {
    flex: 1;
}

.contact__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact__value {
    font-size: 1.125rem;
    line-height: 1.6;
}

.contact__value--link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.contact__value--link:hover {
    color: var(--primary-dark);
}

.contact__link {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.contact__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.contact__map iframe {
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 32px;
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand {
    max-width: 400px;
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.footer__subtitle {
    font-size: 0.9375rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    opacity: 0.7;
}

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

.footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer__list a,
.footer__list li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer__list a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer__bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    margin-bottom: 8px;
    opacity: 0.7;
    font-size: 0.9375rem;
}

.footer__note {
    opacity: 0.5;
    font-size: 0.875rem;
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   MEDIA QUERIES
   ======================================== */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --section-padding: 60px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .about__grid,
    .hours__content,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (320px - 767px) */
@media (max-width: 767px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 16px;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    /* Navigation */
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        padding: 24px 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .navbar__menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .navbar__link--cta {
        margin-top: 12px;
    }

    /* Hero */
    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1.125rem;
    }

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

    .btn {
        width: 100%;
        padding: 14px 32px;
    }

    /* Features */
    .offerings__list {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Reviews */
    .review-card {
        min-width: 280px;
    }

    .carousel__btn--prev {
        left: 0;
    }

    .carousel__btn--next {
        right: 0;
    }

    /* Hours */
    .hours__row {
        flex-direction: column;
        gap: 8px;
        padding: 16px 20px;
    }

    .busy-chart__row {
        grid-template-columns: 80px 1fr;
    }

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

    /* Lightbox */
    .lightbox {
        padding: 20px;
    }

    .lightbox__prev,
    .lightbox__next {
        width: 40px;
        height: 40px;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .hero__title {
        font-size: 1.75rem;
    }

    .hero__badges {
        flex-direction: column;
        align-items: center;
    }

    .rating {
        flex-direction: column;
        gap: 8px;
    }

    .review-card {
        min-width: 260px;
    }

    .order__phone {
        font-size: 2rem;
    }
}