/* CSS Variables */
:root {
    --color-primary: #d4552f;
    --color-primary-dark: #b43f1e;
    --color-primary-light: #ff7652;
    --color-secondary: #2c3e50;
    --color-accent: #e67e22;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-bg-dark: #1a1a1a;
    --color-border: #e0e0e0;
    --color-success: #27ae60;
    --color-warning: #f39c12;
    --color-star: #ffc107;

    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.2);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

ul, ol {
    list-style: none;
}

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

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

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.navbar__logo h1 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

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

.navbar__menu a {
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

.navbar__menu a:hover::after {
    width: 100%;
}

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

.navbar__toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    z-index: -1;
}

.hero__background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.4;
}

.hero__content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 40px 20px;
}

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

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 24px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    font-size: 1.5rem;
    color: var(--color-star);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

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

.star.half {
    background: linear-gradient(90deg, var(--color-star) 50%, rgba(255,255,255,0.3) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.hero__scroll span {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* About */
.about {
    padding: 100px 0;
    background: white;
}

.about__grid {
    display: grid;
    gap: 60px;
}

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

.about__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-bg-light);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

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

/* Specialties */
.specialties {
    padding: 100px 0;
    background: var(--color-bg-light);
}

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

.specialty-card {
    position: relative;
    background: white;
    padding: 40px 28px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.specialty-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.specialty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.specialty-card h3 {
    font-size: 1.375rem;
    color: var(--color-secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

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

.specialty-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price-info {
    text-align: center;
    margin: 48px 0;
}

.price-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 24px 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.price-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.amenities {
    margin-top: 60px;
}

.amenities h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--color-secondary);
    margin-bottom: 32px;
}

.amenities__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.amenity-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.amenity-item span {
    font-weight: 500;
    color: var(--color-secondary);
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.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 var(--transition-normal);
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 16px 20px;
    cursor: pointer;
    transition: background var(--transition-fast);
    border-radius: var(--border-radius);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox__close {
    top: 20px;
    right: 20px;
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.reviews__summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
    background: white;
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.summary__score {
    text-align: center;
}

.score-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.summary__score .stars {
    justify-content: center;
    margin-bottom: 12px;
}

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

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

.distribution-bar {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: 0.875rem;
    font-weight: 600;
    min-width: 32px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background: var(--color-bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--color-primary);
    transition: width 1s ease;
}

.bar-count {
    font-size: 0.875rem;
    color: var(--color-text-light);
    min-width: 32px;
    text-align: right;
}

.reviews__highlights {
    margin-bottom: 48px;
}

.reviews__highlights h3 {
    text-align: center;
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.highlights-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.tag {
    background: white;
    color: var(--color-secondary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.reviews__carousel {
    position: relative;
}

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

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

.review-card {
    flex: 0 0 400px;
    background: white;
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

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

.review-card__meta {
    flex: 1;
}

.review-card__name {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

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

.review-card__stars {
    display: flex;
    gap: 2px;
}

.review-card__text {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.review-card__details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-badge {
    background: var(--color-bg-light);
    color: var(--color-text);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--color-secondary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    z-index: 10;
}

.carousel__btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

/* Hours */
.hours {
    padding: 100px 0;
    background: white;
}

.hours__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.hours__schedule {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item.closed {
    opacity: 0.5;
}

.schedule-item .day {
    font-weight: 600;
    color: var(--color-secondary);
}

.schedule-item .time {
    font-weight: 500;
    color: var(--color-primary);
}

.hours__chart {
    background: var(--color-bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.hours__chart h3 {
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.chart-description {
    color: var(--color-text-light);
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.popularity-chart {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chart-day {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-day__label {
    min-width: 80px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.chart-day__bar {
    flex: 1;
    height: 24px;
    background: var(--color-bg);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.chart-day__fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
    transition: width 1s ease;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

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

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    font-size: 1.125rem;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.info-content a:hover {
    text-decoration: underline;
}

.order-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.contact__map {
    position: relative;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

.map-link {
    display: block;
    position: relative;
    height: 100%;
}

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

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay span {
    background: white;
    color: var(--color-secondary);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__col h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.footer__col h4 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: white;
}

.footer__col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 8px;
}

.footer__col a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

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

.footer-link {
    display: block;
    margin-bottom: 8px;
}

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

.footer__bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.footer__credits {
    font-size: 0.75rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 100;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .carousel__btn--prev {
        left: 0;
    }

    .carousel__btn--next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .navbar__menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

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

    .navbar__toggle {
        display: flex;
    }

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

    .navbar__toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

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

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

    .gallery__grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .review-card {
        flex: 0 0 300px;
    }

    .carousel__btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .review-card {
        flex: 0 0 280px;
    }

    .specialties__grid,
    .about__features,
    .amenities__grid {
        grid-template-columns: 1fr;
    }

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