:root {
    --color-primary: #D4AF37;
    --color-dark: #2D2D2D;
    --color-light: #FFFFFF;
    --color-text: #333333;
    --color-bg-light: #F9F9F9;
    --font-serif: 'Palatino', 'Georgia', serif;
    --font-sans: 'Helvetica', 'Arial', sans-serif;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-dark);
    font-weight: 800;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.section-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.8rem;
    text-align: center;
    max-width: 60rem;
    margin: 0 auto 4rem auto;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
}

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

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

.btn--secondary {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

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

.header {
    width: 100%;
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
}

.header__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 5rem;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 3rem;
}

.nav__link {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--color-dark);
    padding-bottom: 0.5rem;
    position: relative;
    transition: color var(--transition-fast);
}

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

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link--active {
    color: var(--color-primary);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.burger__line {
    width: 2.5rem;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: all 0.4s ease;
}

.burger.active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
    opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.burger.active .burger__line {
    background-color: var(--color-light); 
}
main {
    padding-top: 9rem;
}

section {
    padding: 8rem 2rem;
}

.hero-banner {
    min-height: calc(85vh - 9rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/1.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}

.hero-banner__title {
    font-size: 7rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-light);
}

.hero-banner__subtitle {
    font-size: 2.2rem;
    margin-bottom: 4rem;
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
}

.philosophy {
    display: flex;
    align-items: center;
    gap: 6rem;
    background-color: var(--color-bg-light);
    max-width: 120rem;
    margin: 0 auto;
}

.philosophy__image-wrapper {
    flex: 0 0 40%;
}

.philosophy__image {
    border-radius: 1.5rem;
}

.philosophy__text-content {
    flex: 1;
}

.philosophy .section-title {
    text-align: left;
}

.craftsmanship {
    max-width: 120rem;
    margin: 0 auto;
}

.craftsmanship__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.craft-card {
    display: flex;
    flex-direction: column; 
    align-items: center;   
    text-align: center;    
    gap: 1.5rem;           
}

.craft-card__icon-wrapper {
    width: 100%;             
    aspect-ratio: 4 / 3;     
    border-radius: 1.5rem;   
    overflow: hidden;        
    margin-bottom: 2rem;     
}

.craft-card__icon {
    width: 100%;             
    height: 100%;            
    object-fit: cover;       
    transition: transform 0.4s ease; 
}

.craft-card:hover .craft-card__icon {
    transform: scale(1.05);  
}

.craft-card__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.interactive-toppings {
    background-color: var(--color-bg-light);
    text-align: center;
}

.toppings-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    max-width: 120rem;
    margin: 0 auto 4rem auto;
}

.topping-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.topping-item:hover,
.topping-item.active {
    background-color: var(--color-light);
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.topping-icon {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

.toppings-display-area {
    max-width: 70rem;
    margin: 0 auto;
    min-height: 10rem;
}

.topping-info {
    display: none;
}

.topping-info.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.commitment {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.commitment__text-content {
    flex: 1;
}

.commitment .section-title {
    text-align: left;
}

.commitment__image-wrapper {
    flex: 0 0 45%;
}

.commitment__image {
    border-radius: 1.5rem;
}

.featured-pizza {
    background-color: var(--color-bg-light);
}

.accordion {
    max-width: 80rem;
    margin: 0 auto;
}

.accordion__item {
    border-bottom: 1px solid #ddd;
}

.accordion__header {
    width: 100%;
    padding: 2rem;
    font-size: 2rem;
    font-family: var(--font-serif);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.accordion__header:hover {
    background-color: #f0f0f0;
}

.accordion__icon {
    width: 1.5rem;
    height: 1.5rem;
    border-right: 2px solid var(--color-dark);
    border-bottom: 2px solid var(--color-dark);
    transform: rotate(45deg);
    transition: transform var(--transition-fast);
    flex-shrink: 0;
    margin-left: 2rem;
}

.accordion__header.active .accordion__icon {
    transform: rotate(-135deg);
}

.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion__content p {
    padding: 0 2rem 2rem 2rem;
}

.team {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.team__image-wrapper {
    flex: 0 0 35%;
}

.team__image {
    border-radius: 50%;
}

.team__text-content {
    flex: 1;
}

.team .section-title {
    text-align: left;
}

.perfect-pairings {
    background-color: var(--color-bg-light);
}

.perfect-pairings__container {
    display: flex;
    align-items: center;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.perfect-pairings__tabs-container {
    flex: 1;
}

.perfect-pairings__tabs-container .section-title {
    text-align: left;
}

.perfect-pairings__tabs-container .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.pairing-tabs {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.tab-button {
    padding: 1rem 2rem;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #ddd;
    border-radius: 5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tab-button:hover {
    border-color: var(--color-primary);
}

.tab-button.active {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}

.perfect-pairings__content-area {
    flex: 0 0 40%;
    position: relative;
    min-height: 40rem;
}

.pairing-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.pairing-content.active {
    opacity: 1;
    visibility: visible;
}

.pairing-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.testimonials {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slider {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider__wrapper {
    display: flex;
    transition: transform var(--transition-fast);
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 2rem 4rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-slide__text {
    font-size: 2.2rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.testimonial-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-slider__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
}

.testimonial-slider__btn--prev {
    left: 0;
}

.testimonial-slider__btn--next {
    right: 0;
}

.cta {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}

.cta .section-title {
    text-align: left;
}

.cta__content {
    flex: 1;
}

.cta p {
    margin-bottom: 3rem;
}

.cta__image-wrapper {
    flex: 0 0 35%;
}

.cta__image {
    border-radius: 1.5rem;
}

.footer {
    background-color: var(--color-dark);
    color: #a9a9a9;
    padding-top: 6rem;
}

.footer__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer__column {
    flex: 1;
    min-width: 22rem;
}

.footer__column--logo {
    flex: 1.5;
}

.footer__logo .logo-text-golden {
    font: 800 48px 'Palatino', 'Georgia', serif;
    fill: var(--color-primary);
    letter-spacing: 1px;
}

.footer__logo .logo-text-crust {
    font: 400 48px 'Helvetica', sans-serif;
    fill: var(--color-light);
}

.footer__tagline {
    margin-top: 1rem;
    font-style: italic;
}

.footer__heading {
    font-size: 2rem;
    color: var(--color-light);
    margin-bottom: 2rem;
}

.footer__nav-list li {
    margin-bottom: 1rem;
}

.footer__link {
    transition: color var(--transition-fast);
}

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

.footer__bottom-bar {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #444;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    html {
        font-size: 58%;
    }
    .section-title {
        font-size: 3.5rem;
    }
    .hero-banner__title {
        font-size: 5.5rem;
    }
    .philosophy, .commitment, .team, .cta, .perfect-pairings__container {
        flex-direction: column;
    }
    .philosophy .section-title, .commitment .section-title, .team .section-title, .perfect-pairings__tabs-container .section-title, .cta .section-title {
        text-align: center;
    }
    .perfect-pairings__tabs-container .section-subtitle {
        text-align: center;
        margin: 0 auto 3rem auto;
    }
    .pairing-tabs {
        justify-content: center;
    }
    .craftsmanship__grid {
        grid-template-columns: 1fr;
    }

    .perfect-pairings__content-area {
        width: 100%;     
        min-height: 35rem;  
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark);
        transition: right 0.5s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .nav.active {
        right: 0;
    }
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }
    .nav__link {
        font-size: 3rem;
        color: var(--color-light);
    }
    .burger {
        display: flex;
    }
    .hero-banner__title {
        font-size: 5rem;
    }
    .testimonial-slide {
        padding: 1rem;
    }
}

@media (max-width: 375px) {
    .header__container, section, .footer__container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    section {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .section-title {
        font-size: 3.2rem;
    }
    .hero-banner__title {
        font-size: 4rem;
    }
}
.about-hero {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.about-hero__title {
    font-size: 7rem;
    line-height: 1.2;
}
.about-hero__title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.founder-story {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 110rem;
    margin: 0 auto;
}
.founder-story__image-wrapper {
    flex: 0 0 40%;
    border-radius: 1.5rem;
    overflow: hidden;
}
.founder-story__text-content {
    flex: 1;
    background-color: var(--color-bg-light);
    padding: 4rem;
    border-radius: 1.5rem;
    margin-left: -8rem;
    z-index: 2;
    box-shadow: var(--shadow-dark);
}
.founder-story .section-title {
    text-align: left;
}
.core-values {
    background-color: var(--color-bg-light);
}
.core-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    max-width: 120rem;
    margin: 0 auto;
}
.value-card {
    text-align: center;
}
.value-card__icon {
    width: 6rem;
    height: 6rem;
    fill: var(--color-primary);
    margin-bottom: 2rem;
}
.value-card__title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.comparison-slider-section {
    max-width: 90rem;
    margin: 0 auto;
    text-align: center;
}
.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 1.5rem;
    margin-top: 4rem;
}
.comparison-slider__before, .comparison-slider__after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.comparison-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comparison-slider__after {
    width: 50%;
    overflow: hidden;
}
.comparison-slider__resizer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background-color: var(--color-light);
    cursor: ew-resize;
    z-index: 10;
}
.comparison-slider__resizer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border: 3px solid var(--color-light);
    border-radius: 50%;
    background-color: rgba(0,0,0,0.3);
}
.comparison-slider__label {
    position: absolute;
    top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: rgba(0,0,0,0.5);
    color: var(--color-light);
    border-radius: 0.5rem;
    font-weight: bold;
}
.comparison-slider__before .comparison-slider__label {
    left: 1.5rem;
}
.comparison-slider__after .comparison-slider__label {
    right: 1.5rem;
}
.philosophy-deep {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/28.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.philosophy-deep__content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    color: var(--color-light);
}
.philosophy-deep .section-title {
    color: var(--color-light);
}
.philosophy-deep__text-wrapper {
    background-color: rgba(45, 45, 45, 0.7);
    padding: 3rem;
    border-radius: 1rem;
    backdrop-filter: blur(5px);
}
.philosophy-deep__more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}
.philosophy-deep__more-text.expanded {
    max-height: 50rem;
}
#read-more-btn {
    margin-top: 2rem;
}
.stats-counter-section {
    background-color: var(--color-bg-light);
}
.stats-counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 100rem;
    margin: 0 auto;
    text-align: center;
}
.stat__number {
    font-size: 5rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-serif);
}
.stat__label {
    display: block;
    font-size: 1.6rem;
    color: #666;
}
.team-showcase {
    max-width: 120rem;
    margin: 0 auto;
}
.team-slider {
    overflow: hidden;
}
.team-slider__wrapper {
    display: flex;
    gap: 3rem;
}
.team-slide {
    flex: 0 0 31%;
    text-align: center;
}
.team-slide img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
}
.team-slide__name {
    font-size: 2.4rem;
}
.team-slide__role {
    color: #777;
    font-style: italic;
}
.pizzeria-ambiance {
    background-color: var(--color-bg-light);
}
.pizzeria-ambiance__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
}
.pizzeria-ambiance .section-title {
    text-align: left;
}
.pizzeria-ambiance__image-stack {
    position: relative;
    height: 45rem;
}
.pizzeria-ambiance__image {
    position: absolute;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dark);
    object-fit: cover;
}
.pizzeria-ambiance__image--top {
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}
.pizzeria-ambiance__image--bottom {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.ingredient-focus__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 120rem;
    margin: 0 auto;
    margin-top: 4rem;
}
.ingredient-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    aspect-ratio: 3 / 4;
}
.ingredient-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ingredient-card:hover img {
    transform: scale(1.05);
}
.ingredient-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 4rem 2rem 2rem 2rem;
    color: var(--color-light);
}
.ingredient-card__overlay h3 {
    color: var(--color-light);
    font-size: 2.4rem;
}
.about-cta {
    text-align: center;
    max-width: 70rem;
    margin: 0 auto;
}
@media (max-width: 992px) {
    .founder-story {
        flex-direction: column;
    }
    .founder-story__text-content {
        margin-left: 0;
        margin-top: -5rem;
    }
    .core-values__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .stats-counter {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
    .pizzeria-ambiance__container {
        grid-template-columns: 1fr;
    }
    .pizzeria-ambiance__image-stack {
        height: 40rem;
    }
}
@media (max-width: 768px) {
    .about-hero__title {
        font-size: 5rem;
    }
    .team-slider__wrapper {
        padding-bottom: 2rem;
    }
    .team-slider {
        overflow: visible; 
    }

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

    .team-slide {
        width: 100%;            
        max-width: 35rem;       
    }
    .ingredient-focus__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
@media (max-width: 375px) {
    .about-hero__title {
        font-size: 4rem;
    }
    .stats-counter {
        grid-template-columns: 1fr;
    }
    .founder-story__text-content {
        padding: 2.5rem;
    }
    .team-slide {
       flex: 0 0 80%;
   }
}
.menu-filters {
    text-align: center;
    padding: 4rem 2rem 6rem 2rem;
}
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}
.filter-btn {
    padding: 1rem 2.5rem;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: transparent;
    border: 2px solid #ddd;
    border-radius: 5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.filter-btn.active {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 3rem;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem 8rem 2rem;
}
.menu-item {
    background-color: var(--color-light);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform 0.4s ease, opacity 0.4s ease, height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    will-change: transform, opacity;
}
.menu-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition-fast);
}
.menu-item:hover img {
    transform: scale(1.05);
}
.menu-item h3, .menu-item p, .menu-item .price {
    padding: 0 2rem;
}
.menu-item h3 {
    margin-top: 1.5rem;
    font-size: 2.2rem;
}
.menu-item p {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}
.menu-item .price {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    padding-bottom: 2rem;
}
.menu-item.hidden {
    transform: scale(0.9);
    opacity: 0;
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    pointer-events: none;
}
.special-offer {
    display: flex;
    align-items: center;
    gap: 4rem;
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 4rem;
}
.special-offer__image-wrapper {
    flex: 0 0 50%;
}
.special-offer img {
    border-radius: 1.5rem;
}
.special-offer__text-content {
    flex: 1;
}
.special-offer .section-title, .special-offer h3 {
    color: var(--color-light);
    text-align: left;
}
.special-offer h3 {
    font-size: 3rem;
    margin-top: 1rem;
}
.special-offer p {
    margin: 2rem 0 3rem 0;
}
.image-accordion {
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.image-accordion__container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 4rem;
}
.image-accordion__image-pane {
    flex: 1;
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
}
.image-accordion__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.image-accordion__image.active {
    opacity: 1;
}
.image-accordion__accordion-pane {
    flex: 1;
    width: 100%;
}
.combo-deals {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
}
.combo-deals__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    max-width: 100rem;
    margin: 4rem auto 0 auto;
}
.combo-card {
    background-color: var(--color-light);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}
.combo-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}
.combo-card h3 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2rem;
}
.combo-card ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.combo-card li {
    margin-bottom: 1rem;
}
.combo-card__price {
    text-align: center;
}
.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
}
.new-price {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-primary);
}
.read-more-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}
.read-more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
}
.read-more-text.expanded {
    max-height: 50rem;
}
.read-more-btn {
    margin-top: 2rem;
}
.menu-cta {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
    text-align: center;
}
.menu-cta__content {
    max-width: 70rem;
    margin: 0 auto;
}
.menu-cta p {
    margin: 2rem 0 3rem 0;
}
@media (max-width: 992px) {
    .special-offer {
        flex-direction: column;
        text-align: center;
    }
    .special-offer .section-title, .special-offer h3 {
        text-align: center;
    }
    .image-accordion__container {
        flex-direction: column;
    }
    .image-accordion__image-pane {
        margin-bottom: 3rem;
    }
    .combo-deals__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 375px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}
.deals-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/44.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}
.deals-hero h1 {
    font-size: 6rem;
    color: var(--color-light);
}
.deals-hero p {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
.countdown__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
}
.countdown__value {
    font-size: 4rem;
    font-weight: bold;
    font-family: var(--font-serif);
}
.countdown__label {
    font-size: 1.4rem;
    text-transform: uppercase;
}
.current-deals {
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.current-deals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}
.deal-card {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all var(--transition-fast);
}
.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}
.deal-card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}
.deal-card p {
    margin-bottom: 2.5rem;
}
.lunch-special {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 0 4rem 0 0;
}
.lunch-special__image-wrapper {
    flex: 0 0 50%;
}
.lunch-special__text-content {
    flex: 1;
    padding: 4rem;
}
.lunch-special .section-title, .lunch-special h3 {
    color: var(--color-light);
    text-align: left;
}
.lunch-special p {
    margin: 2rem 0;
}
.lunch-special__details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
}
.lunch-special .price {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--color-primary);
}
.loyalty-program {
    padding: 8rem 2rem;
    max-width: 100rem;
    margin: 0 auto;
}
.timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 4rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.5rem;
    height: 100%;
    width: 4px;
    background: #e0e0e0;
}
.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-light);
    border: 4px solid var(--color-primary);
    z-index: 1;
}
.timeline-content {
    padding-left: 6rem;
}
.timeline-content h3 {
    margin-bottom: 0.5rem;
}
.benefit-calculator {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
}
.benefit-calculator__container {
    max-width: 90rem;
    margin: 0 auto;
}
.calculator-controls {
    text-align: center;
    margin-bottom: 4rem;
}
.calculator-controls label {
    display: block;
    margin-bottom: 1.5rem;
}
.slider {
    -webkit-appearance: none;
    width: 100%;
    max-width: 40rem;
    height: 1rem;
    background: #ddd;
    border-radius: 0.5rem;
    outline: none;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--color-primary);
    cursor: pointer;
    border-radius: 50%;
}
#people-count {
    display: block;
    margin-top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
}
.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.calculator-results .combo-card {
    transition: all var(--transition-fast);
    border: 3px solid transparent;
}
.calculator-results .combo-card.recommended {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-dark);
}
.exclusive-offers {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
    overflow: hidden;
}
.exclusive-offers__image-wrapper {
    flex: 0 0 45%;
    transform: rotate(-3deg);
}
.exclusive-offers__image-wrapper img {
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dark);
}
.exclusive-offers__text-content {
    flex: 1;
}
.exclusive-offers .section-title {
    text-align: left;
}
.exclusive-offers p {
    margin-bottom: 3rem;
}
.rules-showcase {
    position: relative;
    padding: 8rem 0;
    background-color: var(--color-bg-light);
    overflow: hidden;
}
.rules-showcase__decorator {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--color-primary);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 1;
}
.rules-showcase__container {
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}
.rules-showcase__content {
    flex-basis: 55%;
    max-width: 60rem;
    background-color: var(--color-light);
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dark);
}
.rules-showcase__content .section-title {
    text-align: left;
}
.rules-showcase__content p {
    margin-bottom: 3rem;
}
.deals-cta {
    padding: 8rem 2rem;
    text-align: center;
}
.deals-cta__content {
    max-width: 70rem;
    margin: 0 auto;
}
.deals-cta p {
    margin: 2rem 0 3rem 0;
}
@media (max-width: 992px) {
    .lunch-special {
        flex-direction: column;
        padding: 0;
    }
    .lunch-special__image-wrapper {
        width: 100%;
    }
    .lunch-special__text-content {
        text-align: center;
        padding: 4rem 2rem;
    }
    .lunch-special .section-title {
        text-align: center;
    }
    .exclusive-offers {
        flex-direction: column;
    }
    .exclusive-offers .section-title {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .timeline::before {
        left: 1.5rem;
    }
    .loyalty-program__steps, .calculator-results {
        grid-template-columns: 1fr;
    }
    .rules-showcase__decorator {
        display: none;
    }
    .rules-showcase__container {
        justify-content: center;
    }
    .rules-showcase__content {
        flex-basis: 100%;
        text-align: center;
    }
    .rules-showcase__content .section-title {
        text-align: center;
    }
    .rules-showcase__content .btn {
       display: inline-block;
    }
}
@media (max-width: 375px) {
    .deals-hero h1 {
        font-size: 4rem;
    }
    .deals-hero p {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    .countdown {
        gap: 1rem;
    }
    .countdown__block {
        padding: 1.5rem 1rem;
    }
    .countdown__value {
        font-size: 3rem;
    }
    .countdown__label {
        font-size: 1.2rem;
    }
}
.legal-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.legal-content .section-title {
    margin-bottom: 1rem;
}
.last-updated {
    color: #777;
    margin-bottom: 4rem;
    text-align: center;
}
.legal-content h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}
.legal-content p {
    margin-bottom: 1.5rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}
.legal-content li {
    margin-bottom: 1rem;
}
.legal-content a {
    color: var(--color-primary); 
    text-decoration: underline;    
    font-weight: 500;              
    transition: color var(--transition-fast); 
}

.legal-content a:hover {
    color: #b8952d; 
}
.legal-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.legal-content .section-title {
    margin-bottom: 1rem;
}
.last-updated {
    color: #777;
    margin-bottom: 4rem;
    text-align: center;
}
.legal-content h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
}
.legal-content p {
    margin-bottom: 1.5rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}
.legal-content li {
    margin-bottom: 1rem;
}
.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color var(--transition-fast);
}
.legal-content a:hover {
    color: #b8952d;
}
.thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--color-bg-light);
}

.thank-you-content {
    max-width: 60rem;
}

.thank-you-icon {
    width: 8rem;
    height: 8rem;
    fill: var(--color-primary);
    margin: 0 auto 2rem auto;
}

.thank-you-page h1 {
    font-size: 5rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
}

.thank-you-page p {
    font-size: 1.8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.thank-you-page .btn {
    font-size: 1.6rem;
}
.body-thank-you main {
    padding-top: 0;
}
.locations-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/61.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}
.locations-hero h1 {
    font-size: 6rem;
    color: var(--color-light);
}
.locations-hero p {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}
.photostack-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.photostack-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.photostack-controls {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}
.photostack-container {
    position: relative;
    height: 40rem;
}
.stack-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stack-photo.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}
.stack-photo:nth-child(1).active { transform: rotate(-2deg); }
.stack-photo:nth-child(2).active { transform: rotate(3deg); }
.stack-photo:nth-child(3).active { transform: rotate(-1deg); }
.stack-photo:nth-child(4).active { transform: rotate(2deg); }
.locations-list {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
}
.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 110rem;
    margin: 0 auto 6rem auto;
}
.location-card:last-child {
    margin-bottom: 0;
}
.location-card--reverse .location-card__image-wrapper {
    order: 2;
}
.location-card img {
    border-radius: 1.5rem;
}
.location-card__content h2 {
    font-size: 3rem;
}
.location-card__content p {
    margin: 1.5rem 0;
}
.location-card__actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.ambiance-collage {
    padding: 8rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}
.ambiance-collage__text-content {
    max-width: 60rem;
    margin: 0 auto 4rem auto;
}
.ambiance-collage__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.ambiance-collage__grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1.5rem;
}
.private-events {
    display: flex;
    color: var(--color-light);
}
.private-events__image-wrapper { flex: 0 0 49%; }
.private-events__text-content {
    flex: 1;
    padding: 5rem;
    background: var(--color-dark);
    display: flex;                 
    flex-direction: column;        
    justify-content: center; 
    align-items: flex-start;
}
.private-events .section-title {
    color: var(--color-light);
    text-align: left;
}
.private-events p { margin: 2rem 0 3rem 0; }
.flora-guide {
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 2rem;
}
.flora-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.flip-card {
    perspective: 1000px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 40rem;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}
.flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1.5rem;
    overflow: hidden;
}
.flip-card-front {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--color-light);
}
.flip-card-front img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.flip-card-front::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}
.flip-card-front h3 {
    position: relative;
    z-index: 3;
    padding: 2rem;
    font-size: 2.4rem;
    color: var(--color-light);
}
.flip-card-back {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}
.flip-card-back h4 {
    color: var(--color-light);
    font-size: 2.2rem;
}
.locations-cta {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
    text-align: center;
}
.locations-cta__content {
    max-width: 70rem;
    margin: 0 auto;
}
.locations-cta p { margin: 2rem 0 3rem 0; }
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-light);
    z-index: 1001;
    width: 90%;
    max-width: 90rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 1.5rem;
    overflow: hidden;
}
.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}
.popup__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: 80vh;
}
.popup__close-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: var(--color-dark);
}
.popup__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup__text-content {
    padding: 4rem;
    overflow-y: auto;
}
.popup__text-content h2 { font-size: 3rem; }
.popup__text-content p { margin: 2rem 0; }
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
body.popup-active {
    overflow: hidden;
}
@media (max-width: 768px) {
    .photostack-section, .location-card, .location-card--reverse {
        grid-template-columns: 1fr;
    }
    .location-card--reverse .location-card__image-wrapper {
        order: 1;
    }
    .ambiance-collage__grid {
        grid-template-columns: 1fr;
    }
    .private-events { flex-direction: column; }
    .private-events__image-wrapper { width: 100%; }
    .private-events__text-content { text-align: center; }
    .private-events .section-title { text-align: center; }
    .flora-guide-grid { 
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .popup {
        top: 2rem;
        left: 2rem;
        right: 2rem;
        bottom: 2rem;
        width: auto;
        transform: scale(0.9); 
    }
    .popup.active {
        transform: scale(1);
    }
    .popup__content {
        display: flex;
        flex-direction: column;
        height: 100%; 
    }
    .popup__image-wrapper {
        height: 20rem; 
        flex-shrink: 0;
    }
    .popup__text-content {
        flex-grow: 1;
        overflow-y: auto;
    }
}
.gallery-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/78.webp');
    background-size: cover;
    background-position: center;
    color: var(--color-light);
}
.gallery-hero h1 {
    font-size: 6rem;
    color: var(--color-light);
}
.gallery-hero p {
    font-size: 2rem;
    margin-top: 1rem;
}
.gallery-main {
    max-width: 120rem;
    margin: 0 auto;
    padding: 8rem 2rem;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    grid-auto-rows: 25rem;
    grid-auto-flow: dense;
    gap: 1.5rem;
    margin-top: 4rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: 1.5rem;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.hidden {
    transform: scale(0.8);
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    pointer-events: none;
}
.showcase-section {
    padding: 8rem 2rem;
    overflow: hidden; 
}
.showcase-section__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 120rem;
    margin: 0 auto;
}
.showcase-section__image-wrapper {
    position: relative;
}
.showcase-section__background-shape {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-light);
    border-radius: 1.5rem;
    z-index: 1;
}
.showcase-section__image-wrapper img {
    position: relative;
    z-index: 2;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-dark);
}
.showcase-section__text-content h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}
.showcase-section__text-content p {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .showcase-section__container {
        grid-template-columns: 1fr;
    }
    .showcase-section__background-shape {
        display: none; 
    }
    .showcase-section__text-content {
        text-align: center; 
    }
}
.details-showcase {
    padding: 8rem 2rem;
    max-width: 120rem;
    margin: 0 auto;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.details-item {
    aspect-ratio: 1 / 1;
    border-radius: 1.5rem;
    overflow: hidden;
}
.details-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.panorama-section {
    padding: 8rem 0;
}
.panorama-image {
    height: 50rem;
    background-image: url('images/78.webp');
    background-size: cover;
    background-position: center;
}
.parallax-showcase {
    padding: 10rem 2rem;
    position: relative;
    color: var(--color-light);
    text-align: center;
    background-image: url('images/79.webp');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}
.parallax-showcase__content {
    max-width: 70rem;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    padding: 4rem;
    border-radius: 1.5rem;
}
.parallax-showcase .section-title {
    color: var(--color-light);
}
.chef-quote {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 8rem 2rem;
    max-width: 110rem;
    margin: 0 auto;
}
.chef-quote__image-wrapper img {
    border-radius: 50%;
}
.chef-quote blockquote {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    font-style: italic;
    line-height: 1.5;
    border-left: 4px solid var(--color-primary);
    padding-left: 2rem;
    margin-bottom: 2rem;
}
.chef-quote cite {
    font-weight: bold;
    color: #666;
}
.gallery-cta {
    background-color: var(--color-bg-light);
    padding: 8rem 2rem;
    text-align: center;
}
.gallery-cta__content {
    max-width: 70rem;
    margin: 0 auto;
}
.gallery-cta p {
    margin: 2rem 0 3rem 0;
}
.gallery-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .brick-oven-showcase {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }
    .brick-oven-showcase img {
        border-radius: 1.5rem;
    }
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .details-grid {
        grid-template-columns: 1fr;
    }
    .parallax-showcase {
        clip-path: none;
    }
    .chef-quote {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .chef-quote blockquote {
        border-left: none;
        border-top: 4px solid var(--color-primary);
        padding-left: 0;
        padding-top: 2rem;
    }
}
@media (max-width: 375px) {
    .gallery-hero h1 { font-size: 4.5rem; }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.dietary-info {
    background-color: var(--color-bg-light);
}

.dietary-info__container {
    max-width: 120rem;
    margin: 0 auto;
    text-align: center;
}

.dietary-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    text-align: left;
}

.dietary-card {
    background-color: var(--color-light);
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid #eee;
}

.dietary-card__title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.join-team {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: 8rem 2rem;
    text-align: center;
}

.join-team__content {
    max-width: 70rem;
    margin: 0 auto;
}

.join-team .section-title {
    color: var(--color-light);
}

.join-team p {
    color: #ccc;
    margin-bottom: 2rem;
}

.join-team .btn {
    margin-top: 2rem;
}