/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image--placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

/*  HOME - About Preview Section */

.home-about {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.home-about__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .home-about__container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.home-about__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.home-about__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.home-about__text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.home-about__link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.home-about__link:hover {
    opacity: 0.7;
}

.home-about__image {
    position: relative;
    overflow: hidden;
}

.home-about__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.home-about__image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
}

/* HOME - Featured Dishes Section */

.home-dishes {
    padding: 6rem 2rem;
    background: #fafaf9;
}

.home-dishes__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.home-dishes__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.home-dishes__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    line-height: 1.2;
}

.home-dishes__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 600px) {
    .home-dishes__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .home-dishes__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home-dish {
    background: #fff;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-dish:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-dish__image {
    position: relative;
    overflow: hidden;
}

.home-dish__image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-dish:hover .home-dish__image img {
    transform: scale(1.05);
}

.home-dish__image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
}

.home-dish__content {
    padding: 1.5rem;
}

.home-dish__name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.home-dish__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.home-dish__price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
    font-weight: 500;
}

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

/* HOME - Gallery Section */

.home-gallery {
    padding: 6rem 2rem;
    background: var(--color-light);
}

.home-gallery__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.home-gallery__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
}

.home-gallery__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    line-height: 1.2;
}

.home-gallery__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 600px) {
    .home-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.home-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

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

.home-gallery__item:hover img {
    transform: scale(1.08);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero__content {
    position: relative;
    padding: 4rem 2rem;
    max-width: 900px;
}

.hero__subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.hero__title {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero__description {
    font-size: 1.125rem;
    max-width: 480px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero__buttons {
    display: flex;
    gap: 1rem;
}

/* Menu Page */
.menu-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

.menu-header {
    padding: 6rem 0 2rem;
}

.menu-header__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a8a29e;
    margin-bottom: 0.75rem;
}

.menu-header__title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 2rem;
}

/* Tab Buttons */
.menu-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    overflow-x: auto;
}

.menu-tabs__btn {
    font-family: var(--font-body);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    color: #a8a29e;
    background: none;
    border: none;
    padding: 0 0.25rem 1rem;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.menu-tabs__btn:hover {
    color: #57534e;
}

.menu-tabs__btn.active {
    color: var(--color-dark);
}

.menu-tabs__btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-dark);
}

/* Menu Content */
.menu-content {
    padding-top: 2rem;
}

.menu-content.hidden {
    display: none;
}

.menu-content__intro {
    font-family: var(--font-body);
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    max-width: 40rem;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
}

.section-header__title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-dark);
}

.section-header__subtitle {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #a8a29e;
}

.menu-section__note {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-style: italic;
    color: #a8a29e;
    margin-bottom: 1.5rem;
}

/* Menu Item */
.menu-item {
    margin-bottom: 1.5rem;
}

.menu-item__header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.menu-item__name {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-dark);
}

.menu-item__dots {
    flex: 1;
    border-bottom: 1px dotted #d6d3d1;
    margin-bottom: 0.25rem;
    min-width: 1rem;
}

.menu-item__price {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #57534e;
    white-space: nowrap;
}

.price-unit {
    font-size: 0.75rem;
    color: #a8a29e;
}

.menu-item__desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
    line-height: 1.5;
}

.menu-item__pairing {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: italic;
    color: #a8a29e;
    margin-top: 0.25rem;
}

.menu-item__tag {
    font-family: var(--font-body);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a8a29e;
    display: block;
    margin-bottom: 0.5rem;
}

/* Allergen Badges */
.allergen-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.allergen-badge {
    font-family: var(--font-body);
    font-size: 0.5625rem;
    background: var(--color-dark);
    color: white;
    padding: 0.2rem 0.5rem;
    letter-spacing: 0.025em;
}

.allergen-badge--vegan {
    background: #16a34a;
}

.allergen-badge--vegetarian {
    background: #65a30d;
}

/* Featured Dish */
.featured-dish {
    background: #ebebeb;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
}

.featured-dish__tag {
    font-family: var(--font-body);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a8a29e;
}

.featured-dish__name {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-dark);
    margin: 0.5rem 0 0.75rem;
}

.featured-dish__desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: #57534e;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.featured-dish__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-dish__price {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-dark);
}

/* Wine Recommendations */
.wine-recommendations {
    margin-top: 3rem;
}

.menu-item--recommendation {
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 1.5rem;
}

.menu-item--recommendation .menu-item__header {
    margin-top: 0.5rem;
}

.menu-item--recommendation .menu-item__name {
    font-size: 1.0625rem;
}

.menu-item--wine {
    border-bottom: 1px solid var(--color-border-light);
    padding-bottom: 1.25rem;
}

/* Allergen Notice */
.menu-allergen-notice {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: #a8a29e;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

/* Contact Page
   -------------------------------- */
.contact-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0;
}

.contact-header {
    padding: 6rem 0 3rem;
}

.contact-header__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a8a29e;
    margin-bottom: 0.75rem;
}

.contact-header__title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--color-dark);
    line-height: 1.1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-block__heading {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a8a29e;
    margin-bottom: 0.75rem;
}

.contact-block__text {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-dark);
}

.contact-block__link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--color-muted);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.contact-block__link:hover {
    color: var(--color-dark);
}

.contact-block__phone {
    font-family: var(--font-body);
    font-size: 2rem;
    color: var(--color-dark);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-block__phone:hover {
    opacity: 0.6;
}

.contact-block__phone-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-muted);
    display: block;
    margin-top: 0.25rem;
}

.contact-hours {
    list-style: none;
    font-family: var(--font-body);
    font-size: 0.9375rem;
}

.contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.contact-hours span:first-child {
    color: var(--color-muted);
}

.contact-hours span:last-child {
    color: var(--color-dark);
    text-align: right;
}

.contact-hours--closed span:last-child {
    color: #dc2626;
}

.contact-social {
    display: flex;
    gap: 1.5rem;
}

.contact-social a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--color-dark);
    text-decoration: none;
    position: relative;
}

.contact-social a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-dark);
    transition: width 0.3s ease;
}

.contact-social a:hover::after {
    width: 100%;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-map {
    background: var(--color-border);
    min-height: 400px;
}

.contact-map iframe {
    display: block;
}

/* About Page
   -------------------------------- */
.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-header {
    padding: 6rem 0 4rem;
    max-width: 700px;
}

.about-header__subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a8a29e;
    margin-bottom: 0.75rem;
}

.about-header__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.about-header__tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--color-muted);
    margin: 0;
}

.about-intro {
    padding: 2rem 0 4rem;
    border-bottom: 1px solid var(--color-border);
}

.about-intro__text {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 800px;
    margin: 0;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid var(--color-border);
}

.about-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.about-section__text {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-muted);
    margin: 0;
}

.about-section__image-placeholder {
    background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
    width: 100%;
    height: 350px;
}

.about-values {
    padding: 5rem 0;
}

.about-values__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-value {
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    transition: border-color 0.3s ease;
}

.about-value:hover {
    border-color: var(--color-dark);
}

.about-value__number {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: #a8a29e;
    display: block;
    margin-bottom: 1rem;
}

.about-value__title {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.about-value__text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--color-muted);
    margin: 0;
}

.about-cta {
    padding: 5rem 0;
    text-align: center;
    background: #fafaf9;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-cta__title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.about-cta__text {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.about-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer*/
.footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.footer__brand {
    margin-bottom: 1rem;
}

.footer__logo {
    font-size: 1.75rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer__logo:hover {
    opacity: 0.8;
}

.footer__tagline {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.footer__address {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer__phone {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer__phone:hover {
    opacity: 0.7;
}

.footer__hours {
    list-style: none;
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__hours li:last-child {
    border-bottom: none;
}

.footer__hours span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.footer__hours span:last-child {
    color: #fff;
    text-align: right;
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__social-link {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: #fff;
}

.footer__bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer__reserve {
    background-color: #fff;
    color: var(--color-dark);
}

.footer__reserve:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Footer Sponsors / Subvenciones */
.footer__sponsors {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__sponsors-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 1.5rem 0;
}

.footer__sponsors-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer__sponsor-logo {
    max-height: 200px;
    max-width: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer__sponsor-logo:hover {
    opacity: 1;
}

/* Optional: Add this class to convert logos to white */
.footer__sponsors--white-logos .footer__sponsor-logo {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer__sponsors--white-logos .footer__sponsor-logo:hover {
    opacity: 1;
}

/* If you want colored logos instead of white */
.footer__sponsors--colored .footer__sponsor-logo {
    filter: none;
    opacity: 1;
}

/* Responsive  */
@media (min-width: 600px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .about-section {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .about-section--reverse .about-section__content {
        order: 2;
    }

    .about-section--reverse .about-section__image {
        order: 1;
    }
    
    .footer__container {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2rem;
    }
}

@media (min-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        min-height: 600px;
    }
    
    .about-values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 899px) {
    .contact-page {
        padding: 0 1.5rem;
    }

    .contact-header {
        padding: 5rem 0 2rem;
    }

    .contact-hours li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-hours span:last-child {
        text-align: left;
    }

    .contact-map {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .menu-page {
        padding: 0 1rem 3rem;
    }
    
    .menu-header {
        padding: 5rem 0 1.5rem;
    }
    
    .featured-dish {
        padding: 1.25rem 1.5rem;
    }
    
    .featured-dish__name {
        font-size: 1.5rem;
    }
    
    .menu-tabs {
        gap: 1rem;
    }
    
    .about-page {
        padding: 0 1.5rem;
    }

    .about-header {
        padding: 5rem 0 3rem;
    }

    .about-section__image-placeholder {
        height: 250px;
    }

    .about-cta {
        margin: 0 -1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer__hours li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer__hours span:last-child {
        text-align: left;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}