/* CSS Variables */
:root {
    --primary-color: #d4a574;
    --secondary-color: #1a1a1a;
    --accent-color: #ff6b6b;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --background-light: #ffffff;
    --background-section: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition-base: all 0.3s ease;
    --max-width: 1200px;
}

/* Reset/Normalize */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-light);
}

/* Base Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent-color);
}

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

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

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

/* Layout Components */
.section__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section__subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

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

.navbar__brand {
    display: flex;
    flex-direction: column;
}

.navbar__title {
    font-size: 1.5rem;
    margin: 0;
    color: var(--secondary-color);
}

.navbar__tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.navbar__toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition-base);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.navbar__link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.navbar__cta {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 80px;
    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%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide--active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(212, 165, 116, 0.4));
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero__subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero__button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-base);
}

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

.hero__button--primary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.hero__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero__button--secondary:hover {
    background: white;
    color: var(--secondary-color);
}

.hero__info {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero__info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.hero__info-value {
    font-size: 1.125rem;
    font-weight: 600;
}

.hero__rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-base);
    z-index: 3;
}

.hero__nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.hero__nav--prev {
    left: 20px;
}

.hero__nav--next {
    right: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-section);
}

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

.feature__card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.feature__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature__description {
    color: var(--text-secondary);
    margin: 0;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
}

.about__text {
    max-width: 600px;
}

.about__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about__subtitle {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about__list {
    list-style: none;
}

.about__list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.about__stats {
    display: flex;
    gap: 2rem;
}

.stat__card {
    background: var(--background-section);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
}

.stat__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Specialties Section */
.specialties {
    padding: 80px 0;
    background: var(--background-section);
}

.specialties__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.specialty__card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

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

.specialty__image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.specialty__content {
    padding: 1.5rem;
}

.specialty__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.specialty__description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.specialty__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--background-section);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery__categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    background: white;
    font-weight: 500;
    transition: var(--transition-base);
}

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

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

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

.gallery__item:hover {
    transform: scale(1.05);
}

.gallery__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

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

.lightbox--active {
    display: flex;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox__close:hover {
    transform: scale(1.2);
}

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

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 3rem;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition-base);
}

.lightbox__prev:hover,
.lightbox__next:hover {
    transform: translateY(-50%) scale(1.2);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: var(--background-section);
}

.reviews__summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
}

.reviews__rating {
    text-align: center;
    border-right: 1px solid var(--border-color);
    padding-right: 2rem;
}

.reviews__score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.reviews__count {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.reviews__distribution {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}

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

.distribution__label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.distribution__bar {
    height: 8px;
    background: var(--background-section);
    border-radius: 4px;
    overflow: hidden;
}

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

.distribution__count {
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Rating Stars */
.rating__stars {
    display: inline-flex;
    gap: 2px;
}

.rating__stars::before {
    content: '★★★★★';
    color: var(--border-color);
    letter-spacing: 2px;
}

.rating__stars::after {
    content: '★★★★★';
    position: absolute;
    color: var(--primary-color);
    letter-spacing: 2px;
    overflow: hidden;
    width: var(--rating-width, 0);
}

.rating__stars {
    position: relative;
}

.rating__stars[data-rating="5"]::after {
    width: 100%;
}

.rating__stars[data-rating="4"]::after {
    width: 80%;
}

.rating__stars[data-rating="3"]::after {
    width: 60%;
}

.rating__stars[data-rating="2"]::after {
    width: 40%;
}

.rating__stars[data-rating="1"]::after {
    width: 20%;
}

.rating__stars--large::before,
.rating__stars--large::after {
    font-size: 1.5rem;
}

/* Reviews Carousel */
.reviews__carousel {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.reviews__track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.review__card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.review__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review__avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review__meta {
    flex: 1;
}

.review__author {
    font-weight: 600;
    display: block;
}

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

.review__text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 1rem 0;
}

.review__details {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.review__detail {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--background-section);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
}

.carousel__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    box-shadow: var(--shadow-md);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

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

.carousel__button--prev {
    left: 0;
}

.carousel__button--next {
    right: 0;
}

.reviews__tags {
    margin-top: 3rem;
    text-align: center;
}

.reviews__tags-title {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.reviews__tags-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review__tag {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

/* Busy Times Section */
.busy-times {
    padding: 80px 0;
}

.busy-times__content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.busy-times__live {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--background-section);
    border-radius: 10px;
}

.busy-times__status {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.busy-times__status--busy {
    background: rgba(255, 107, 107, 0.1);
    color: var(--accent-color);
}

.busy-times__percentage {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.busy-times__days {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.busy-times__day {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background: white;
    font-weight: 500;
    transition: var(--transition-base);
}

.busy-times__day:hover,
.busy-times__day--active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.busy-times__chart {
    position: relative;
    height: 200px;
    margin-bottom: 1rem;
}

.busy-times__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 180px;
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.busy-times__bar {
    flex: 1;
    background: var(--primary-color);
    margin: 0 2px;
    border-radius: 5px 5px 0 0;
    transition: var(--transition-base);
    position: relative;
}

.busy-times__bar:hover {
    opacity: 0.8;
}

.busy-times__hours {
    display: flex;
    justify-content: space-around;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-section);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact__info {
    display: grid;
    gap: 2rem;
}

.contact__item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.contact__subtitle {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact__text {
    color: var(--text-secondary);
    line-height: 1.8;
}

address {
    font-style: normal;
}

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

.contact__phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.hours__list {
    list-style: none;
}

.hours__item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.hours__day {
    font-weight: 500;
}

.hours__time {
    color: var(--text-secondary);
}

.contact__order-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

.contact__order-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

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

.contact__services {
    background: white;
    padding: 2rem;
    border-radius: 15px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.service__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service__icon {
    color: var(--primary-color);
    font-weight: bold;
}

.service__text {
    color: var(--text-secondary);
}

/* Reservation Section */
.reservation {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
}

.reservation .section__title {
    color: white;
}

.reservation .section__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.reservation__button {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.reservation__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.reservation__text {
    font-size: 1.125rem;
}

.reservation__text a {
    color: white;
    text-decoration: underline;
}

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

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

.footer__title {
    color: white;
    margin-bottom: 1rem;
}

.footer__subtitle {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.footer__order-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: var(--transition-base);
}

.footer__order-link:hover {
    background: var(--accent-color);
}

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

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

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

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

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

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

/* Media Queries */
@media (max-width: 1023px) {
    .navbar__toggle {
        display: flex;
    }

    .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
    }

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

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

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

    .about__stats {
        justify-content: center;
    }

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

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

    .reviews__rating {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }

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

@media (max-width: 767px) {
    .section__title {
        font-size: 2rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

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

    .hero__button {
        width: 100%;
    }

    .hero__info {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

    .review__card {
        min-width: 280px;
    }

    .busy-times__days {
        flex-wrap: wrap;
    }

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