:root {
    --green: #075736;
    --red: #BE1717;
    --soft-pink: #FFF2F2;
    --beige: #f3e9e5;
    --white: #ffffff;
    --text: #1d1d1d;
    --container: 1200px;
    --transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: var(--beige);
    color: var(--text);
}

img {
    width: 100%;
    display: block;
}

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

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

.container-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

/* ======================================
   GLOBAL LAYOUT
====================================== */

.section {
    padding: 120px 0;
}

.section-sm {
    padding: 80px 0;
}

.section-lg {
    padding: 160px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: center;
}

.section-center {
    text-align: center;
}

/* ======================================
   TYPOGRAPHY
====================================== */

.section-label {
    display: inline-block;
    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #b85b5b;
}

.section-title {
    margin: 0;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;

    color: var(--green);
}

.section-text {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;
    color: var(--green);
}

.section-text p + p {
    margin-top: 20px;
}


/* ======================================
   BUTTONS
====================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 224px;
    height: 48px;
    padding: 0 32px;

    background: var(--green);
    border: 1px solid transparent;

    font-family: 'Averia Serif Libre', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;

    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;

    color: var(--soft-pink);

    transition: var(--transition);
}

.btn-primary:hover {
    opacity: .9;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 46px;
    padding: 0 26px;

    border: 1px solid var(--green);

    color: var(--green);
    background: transparent;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: var(--transition);
}

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


/* ======================================
   IMAGES
====================================== */

.image-cover {
    overflow: hidden;
}

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

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--soft-pink);
    border-bottom: 2px solid var(--green);
}

.header-wrapper {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
}

.logo img {
    width: 180px;
}

.desktop-nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
}

.desktop-nav a {
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 14px;
    font-weight: 600;
}

.header-right .btn-primary {
    min-width: 175px;
    height: 32px;
    padding: 0 16px;

    font-size: 12px;
    line-height: 16px;
}

.desktop-nav a,
.phone {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: var(--green);
}

.logo img {
    width: 189px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;

    width: 24px;
    height: 24px;

    border: 0;
    background: transparent;
    cursor: pointer;

    padding: 0;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green);

    display: block;
}

/* HERO */

.hero {
    position: relative;
    height: 540px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
            linear-gradient(
                    90deg,
                    rgba(7,87,54,.5) 14%,
                    rgba(255,242,242,.5) 25%,
                    rgba(255,242,242,.5) 75%,
                    rgba(190,23,23,.5) 86%
            );
}

.hero-content {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 50px;

    text-align: center;
    color: var(--white);

    z-index: 2;
}

.hero h1 {
    max-width: 876px;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 84px;

    text-align: center;
    color: var(--soft-pink);

    -webkit-text-stroke: 2px var(--green);
}

.hero .btn-primary {
    width: 370px;
}


/* ======================================
   HERO RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .hero {
        height: 480px;
        min-height: 480px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        max-width: 335px;

        font-size: 30px;
        line-height: 40px;
    }

    .hero .btn-primary {
        width: 335px;
        min-width: unset;
    }
}


/* ======================================
   CONTENT SECTIONS
====================================== */

.content-sections {
    background: var(--soft-pink);
    padding: 60px 0;
}

.fifty-fifty {
    display: grid;
    grid-template-columns: 560px 560px;
    gap: 80px;
    align-items: center;
}

.fifty-fifty + .fifty-fifty {
    margin-top: 60px;
}

.fifty-fifty__content {
    width: 560px;

    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fifty-fifty__heading {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fifty-fifty__content .btn-primary {
    align-self: flex-start;
}

.fifty-fifty__image {
    width: 560px;
    height: 462px;
    overflow: hidden;
}

.fifty-fifty__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.fifty-fifty__image:hover img {
    transform: scale(1.03);
}

.fifty-fifty--reverse .fifty-fifty__content {
    order: 2;
}

.fifty-fifty--reverse .fifty-fifty__image {
    order: 1;
}

/* ======================================
   50/50 RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .content-sections {
        padding: 40px 0 0;
    }

    .fifty-fifty {
        display: flex;
        flex-direction: column;

        gap: 32px;
    }

    .fifty-fifty + .fifty-fifty {
        margin-top: 40px;
    }

    .fifty-fifty__content {
        width: 100%;
        max-width: 335px;

        gap: 32px;
    }

    .fifty-fifty__heading {
        gap: 4px;
    }

    .fifty-fifty__content .btn-primary {
        width: 335px;
        min-width: unset;

        align-self: stretch;
    }

    .fifty-fifty__image {
        width: 100%;
        height: 309px;
    }

    .fifty-fifty--reverse .fifty-fifty__content {
        order: 1;
    }

    .fifty-fifty--reverse .fifty-fifty__image {
        order: 2;
    }
}

/* ======================================
   TESTIMONIAL SECTION
====================================== */

.testimonial-section {
    background: var(--soft-pink);
    padding: 40px 0;
}

.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    text-align: center;
}

.testimonial__rating {
    display: flex;
    gap: 4px;

    font-size: 16px;
    line-height: 1;
    letter-spacing: 4px;

    color: var(--red);
}

.testimonial__quote {
    max-width: 843px;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;

    color: var(--green);

    margin: 0;
    text-align: center;
}

.testimonial__author {
    margin: 0;

    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;

    color: var(--green);
}

.testimonial__logo {
    width: 229px;
}

.testimonial__logo img {
    width: 100%;
    height: auto;
}

/* ======================================
   TESTIMONIAL RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .testimonial-section {
        padding: 40px 20px;
    }

    .testimonial {
        gap: 24px;
    }

    .testimonial__quote {
        max-width: 335px;

        font-size: 16px;
        line-height: 19px;

        font-style: normal;
    }

    .testimonial__logo {
        width: 229px;
    }
}
/* ======================================
   USP BAR
====================================== */

.usp-bar {
    height: 96px;
    background: var(--green);

    overflow: hidden;
}

.usp-bar__marquee {
    height: 100%;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.usp-bar__track {
    display: flex;
    align-items: center;
    gap: 24px;

    width: max-content;

    animation: usp-scroll 60s linear infinite;
}

.usp-bar:hover .usp-bar__track {
    animation-play-state: paused;
}

.usp-bar__item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.usp-bar__icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
}

.usp-bar__item span {
    display: block;
    white-space: nowrap;

    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;

    color: var(--soft-pink);
}

@keyframes usp-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/* ======================================
   USP RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .usp-section {
        height: 80px;
    }

    .usp-track {
        height: 80px;
    }

    .usp-bar__item span {
        font-size: 20px;
        line-height: 28px;
    }

}

/* ======================================
   RESERVATION SECTION
====================================== */

.reservation-section {
    position: relative;
    background: var(--soft-pink);
    padding: 60px 0 80px;
    overflow: hidden;

    min-height: 724px;
}

.reservation-section::before {
    content: "";

    position: absolute;

    width: 318px;
    height: 455px;

    left: -120px;
    top: 152px;

    background-image: url("../images/ornament.svg");
    background-repeat: no-repeat;
    background-size: contain;
}
.reservation-section::after {
    content: "";

    position: absolute;

    width: 318px;
    height: 455px;

    right: -120px;
    top: 168px;

    background-image: url("../images/ornament.svg");
    background-repeat: no-repeat;
    background-size: contain;

    transform: scaleX(-1);
}

.reservation-section::before,
.reservation-section::after {
    pointer-events: none;
}

.reservation-section::before,
.reservation-section::after {
    z-index: 0;
}

.reservation-section .container-inner {
    position: relative;
    z-index: 1;
}

.reservation-section__heading {
    width: 840px;
    margin: 0 auto;

    text-align: center;
}

.reservation-section__form {
    max-width: 840px;
    margin: 60px auto 0;
}

.reservation-section__description {
    max-width: 560px;
    margin: 16px auto 0;

    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;

    text-align: center;
    color: var(--green);
}

/* ======================================
   RESERVATION FORM / WPFORMS
====================================== */

.reservation-section__form {
    width: 100%;
    max-width: 560px;
    margin: 32px auto 0;
}

.reservation-section .wpforms-container {
    margin: 0;
}

.reservation-section .wpforms-field-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hide labels visually - placeholders are used in the design */
.reservation-section .wpforms-field-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Fields */
.reservation-section .wpforms-field {
    padding: 0 !important;
}

.reservation-section .wpforms-field input {
    width: 100% !important;
    max-width: none !important;
    height: 48px !important;

    padding: 0 32px !important;

    background: transparent !important;
    border: 1px solid var(--green) !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: 'Averia Serif Libre', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    letter-spacing: .1em !important;

    color: var(--green) !important;
}

/* Placeholder */
.reservation-section .wpforms-field input::placeholder {
    color: var(--green) !important;
    opacity: 1 !important;

    text-transform: uppercase;
}

/* Focus */
.reservation-section .wpforms-field input:focus {
    border-color: var(--green) !important;
    outline: 2px solid rgba(7, 87, 54, .12) !important;
    outline-offset: 0;
}

/* Submit wrapper */
.reservation-section .wpforms-submit-container {
    display: flex;
    justify-content: center;

    padding-top: 20px !important;
}

/* Submit button */
.reservation-section .wpforms-submit {
    width: auto !important;
    min-width: 172px !important;
    height: 48px !important;

    padding: 0 24px !important;

    background: var(--green) !important;
    border: 1px solid var(--soft-pink) !important;
    border-radius: 0 !important;

    font-family: 'Averia Serif Libre', serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 22px !important;
    letter-spacing: .1em !important;

    text-transform: uppercase !important;

    color: var(--soft-pink) !important;

    cursor: pointer;
}

.reservation-section .wpforms-submit:hover {
    background: var(--green) !important;
    opacity: .9;
}

/* ======================================
   RESERVATION RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .reservation-section {
        padding: 40px 20px 60px;
    }

    .reservation-section__heading {
        max-width: 335px;
        margin: 0 auto;
    }

    .reservation-section__heading .section-title {
        font-size: 30px;
        line-height: 40px;

        text-align: center;
    }

    .reservation-section__description {
        max-width: 335px;

        margin: 16px auto 0;

        font-size: 16px;
        line-height: 28px;

        text-align: center;
    }

    .reservation-section__form {
        margin-top: 40px;
        max-width: 335px;
    }

    .reservation-section::before,
    .reservation-section::after {
        display: none;
    }
}

@media (max-width: 768px) {

    .reservation-section__description {
        max-width: 335px;
    }
}


/* ======================================
   RESERVATION FORM RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .reservation-section__form {
        max-width: 335px;
        margin-top: 32px;
    }

    .reservation-section .wpforms-field-container {
        gap: 16px;
    }

    .reservation-section .wpforms-field input {
        height: 48px !important;
        padding: 0 20px !important;

        font-size: 14px !important;
    }

    .reservation-section .wpforms-submit {
        width: 100% !important;
    }
}

/* ======================================
   FOOTER
====================================== */

.site-footer {
    background: var(--green);
    padding: 80px 0 32px;
}

.footer-main {
    display: grid;
    grid-template-columns: 190px 286px 286px 185px;
    gap: 85px;
}

.footer-logo img {
    width: 189px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-menu a,
.footer-address p,
.footer-address a {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;
    color: var(--soft-pink);
}

.footer-divider {
    margin: 32px 0;

    height: 1px;
    background: #1D7B54;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Averia Serif Libre', serif;
    font-size: 12px;
    line-height: 20px;
    color: var(--soft-pink);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 21px;
}

.footer-social span {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--soft-pink);
}

.footer-social__icons {
    display: flex;
    gap: 12px;
}


/* ======================================
   FOOTER RESPONSIVE
====================================== */
@media (max-width: 768px) {

    .site-footer {
        padding: 48px 20px 32px;
    }

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

    .footer-logo {
        order: 1;
        text-align: center;
    }

    .footer-logo img {
        width: 159px;
        margin: 0 auto;
    }

    .footer-menu:first-of-type {
        order: 2;
    }

    .footer-menu:last-of-type {
        order: 3;
    }

    .footer-address {
        order: 4;

        align-items: center;
        text-align: center;
    }

    .footer-menu {
        width: 100%;
        gap: 0;
    }

    .footer-menu a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #1D7B54;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .footer-social {
        width: 100%;
        justify-content: center;
        gap: 21px;
        order: 1;
    }

    .footer-copyright {
        width: 100%;
        text-align: center;
        order: 2;
    }
}

/* MOBILE MENU */

.mobile-menu {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: var(--soft-pink);

    z-index: 9999;

    transform: translateX(-100%);
    transition: var(--transition);

    padding: 0;
    max-width: 420px;
}

.mobile-menu.active {
    transform: translateX(0);
    left: 0;
}

.mobile-menu-header {
    height: 56px;

    padding: 8px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 2px solid var(--green);

    margin-bottom: 0;
}

.mobile-menu-header img {
    width: 145px;
}

.mobile-close {
    background: transparent;
    border: 0;
    font-size: 42px;
    color: var(--green);
    cursor: pointer;
}

.mobile-nav {
    padding: 42px 25px 0;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    font-family: 'Averia Serif Libre', serif;
    font-size: 20px;
    line-height: 28px;

    color: var(--green);
}

.mobile-contact {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 40px;

    text-align: center;

    border: 0;
    padding: 0;
}

.mobile-contact a[href^="tel"] {
    display: block;

    font-family: 'Averia Serif Libre', serif;
    font-size: 20px;
    line-height: 28px;

    color: var(--green);

    margin-bottom: 30px;
}

.mobile-contact .btn-primary {
    width: 335px;
    min-width: unset;
}

.mobile-contact p,
.mobile-contact a {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;
    color: var(--green);
}

.full-width {
    width: 100%;
    min-width: unset;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-contact .btn-primary,
.mobile-contact .btn-primary:visited {
    color: var(--soft-pink);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .desktop-nav,
    .phone,
    .header-right .btn-primary {
        display: none;
    }
    .header-right {
        margin-left: auto;
    }
    .mobile-toggle {
        display: flex;
    }


    .mobile-toggle {
        display: flex;
        margin-right: auto;
    }

    .header-wrapper {
        height: 70px;
    }

    .logo img {
        width: 160px;
    }
}

@media (max-width: 768px) {

    .header-wrapper {
        height: 74px;
    }

    .logo img {
        width: 150px;
    }

    .mobile-nav a {
        font-size: 28px;
    }
}

@media (max-width: 992px) {

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section {
        padding: 90px 0;
    }

    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
        line-height: 40px;
    }

    .section-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {


}

/* ======================================
   MENU NAVIGATION
====================================== */

.menu-navigation {
    position: sticky;
    top: 70px;

    z-index: 50;

    background: var(--soft-pink);

    padding: 10px 0;

    border-bottom: 1px solid rgba(7,87,54,.1);
}

.menu-navigation__wrapper {
    display: flex;
    gap: 10px;

    overflow-x: auto;
    scrollbar-width: none;
}

.menu-navigation__wrapper::-webkit-scrollbar {
    display: none;
}

.menu-navigation__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 13px 32px;

    white-space: nowrap;

    background: var(--soft-pink);
    border: 1px solid var(--green);

    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--green);

    transition: var(--transition);
}

.menu-navigation__link.active {
    background: var(--green);
    border-color: var(--soft-pink);

    color: var(--soft-pink);
}

.menu-navigation__link:hover {
    background: var(--green);
    color: var(--soft-pink);
}

/* ======================================
   MENU NAVIGATION RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .menu-navigation {
        top: 56px;
    }

    .menu-navigation__wrapper {
        padding-bottom: 4px;
    }

    .menu-navigation__link {
        min-width: max-content;
    }

}

/* ======================================
   MENU CONTENT
====================================== */

.menu-content {
    padding: 80px 0;
}

.menu-category + .menu-category {
    margin-top: 40px;
}

.menu-category {
    scroll-margin-top: 170px;
}

.menu-category__title {
    margin: 0 0 24px;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    line-height: 64px;

    color: var(--green);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    gap: 24px;

    padding: 16px 0;

    border-bottom: 1px solid rgba(7, 87, 54, 0.15);
}

.menu-item__content {
    max-width: 700px;
}

.menu-item__title {
    margin: 0 0 4px;

    font-family: 'Averia Serif Libre', serif;
    font-size: 24px;
    line-height: 32px;

    color: var(--green);
}

.menu-item__description {
    margin: 0;

    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;

    color: var(--green);
}

.menu-item__price {
    flex-shrink: 0;

    font-family: 'Averia Serif Libre', serif;
    font-size: 24px;
    line-height: 32px;

    color: var(--green);
}

.menu-category__note {
    margin-top: 24px;
    color: #b00000;
    font-size: inherit;
    line-height: inherit;
}

.menu-page__note {
    margin-top: 48px;
    text-align: center;
    font-size: inherit;
    line-height: inherit;
}

.menu-item__description,
.menu-category__note,
.menu-page__note {
    font-size: 16px;
    line-height: 1.5;
}

.menu-category__note {
    color: #b00000;
}

.menu-page__note {
    text-align: center;
    color: var(--green);
}

/* ======================================
   MENU RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .menu-content {
        padding: 40px 20px 60px;
    }

    .menu-category + .menu-category {
        margin-top: 60px;
    }

    .menu-category__title {
        margin: 0 0 40px;

        font-size: 48px;
        line-height: 1;
    }

    .menu-item {
        display: flex;
        flex-direction: column;

        gap: 8px;

        padding: 0 0 20px;
        margin-bottom: 20px;
    }

    .menu-item__content {
        max-width: 100%;
    }

    .menu-item__title {
        margin: 0;

        font-size: 24px;
        line-height: 28px;
    }

    .menu-item__description {
        font-size: 16px;
        line-height: 28px;
    }

    .menu-item__price {
        font-size: 24px;
        line-height: 28px;

        text-align: right;
    }
}
@media (max-width: 768px) {

    .menu-navigation {
        top: 56px;
        padding: 10px 0;
    }

    .menu-navigation__wrapper {
        padding: 0 20px;
    }

}
/* ======================================
   LEGAL PAGE
====================================== */

.legal-page {
    background: var(--soft-pink);
    padding: 90px 0;
}

.legal-content {
    max-width: 900px;
}

.legal-content > *:first-child {
    margin-top: 0;
}

.legal-content > *:last-child {
    margin-bottom: 0;
}

.legal-content h1 {
    margin: 0 0 40px;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 64px;
    line-height: 1.1;

    color: var(--green);
}

.legal-content h2 {
    margin: 60px 0 20px;

    font-family: 'Averia Serif Libre', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;

    color: var(--green);
}

.legal-content h3 {
    margin: 40px 0 16px;

    font-family: 'Averia Serif Libre', serif;
    font-size: 28px;
    line-height: 1.3;

    color: var(--green);
}

.legal-content h4 {
    margin: 30px 0 12px;

    font-family: 'Averia Serif Libre', serif;
    font-size: 22px;
    line-height: 1.4;

    color: var(--green);
}

.legal-content p,
.legal-content li {
    margin: 0 0 20px;

    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;

    color: var(--green);
}

.legal-content ul,
.legal-content ol {
    margin: 0 0 30px 24px;
}

.legal-content strong {
    font-weight: 700;
}

.legal-content em {
    font-style: italic;
}

.legal-content a {
    color: var(--red);

    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    opacity: .8;
}

.legal-content blockquote {
    margin: 30px 0;
    padding-left: 20px;

    border-left: 2px solid var(--green);

    font-style: italic;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    border: 1px solid rgba(7, 87, 54, 0.15);
}

.legal-content img {
    max-width: 100%;
    height: auto;
}

/* ======================================
   LEGAL PAGE RESPONSIVE
====================================== */

@media (max-width: 768px) {

    .legal-page {
        padding: 40px 0 60px;
    }

    .legal-content {
        max-width: 325px;
        margin: 0 auto;
    }

    .legal-content h1 {
        font-size: 48px;
        line-height: 1.1;
    }

    .legal-content h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .legal-content h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .legal-content h4 {
        font-size: 20px;
        line-height: 1.4;
    }

    .legal-content p,
    .legal-content li {
        font-size: 16px;
        line-height: 28px;
    }

}

/* ======================================
   TEXT SECTION
====================================== */

.text-section {
    background: var(--soft-pink);
    padding: 60px 0;
}

.text-section__content {
    max-width: 900px;
}

.text-section__content h2,
.text-section__content h3,
.text-section__content h4 {
    font-family: 'Averia Serif Libre', serif;
    color: var(--green);
}

.text-section__content h2 {
    margin: 0 0 24px;

    font-style: italic;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
}

.text-section__content h3 {
    margin: 32px 0 16px;

    font-size: 30px;
    line-height: 1.3;
}

.text-section__content h4 {
    margin: 24px 0 12px;

    font-size: 22px;
    line-height: 1.4;
}

.text-section__content p,
.text-section__content li {
    font-family: 'Averia Serif Libre', serif;
    font-size: 16px;
    line-height: 28px;

    color: var(--green);
}

.text-section__content p {
    margin: 0 0 20px;
}

.text-section__content ul,
.text-section__content ol {
    margin: 20px 0 20px 24px;
}

.text-section__content strong {
    font-weight: 700;
}

.text-section__content em {
    font-style: italic;
}

.text-section__content a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.text-section__content a:hover {
    opacity: .8;
}

.text-section__content > *:first-child {
    margin-top: 0;
}

.text-section__content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .text-section {
        padding: 40px 0;
    }

    .text-section__content h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .text-section__content h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .text-section__content h4 {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ======================================
   CONTACT SPLIT
====================================== */

.contact-split__content {
    gap: 40px;
}

.contact-split__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-split__item .section-title {
    margin: 0;
}

.contact-split__map,
.contact-split__map iframe {
    width: 100%;
    height: 100%;
}

.contact-split__map iframe {
    display: block;
    border: 0;
}

/* ======================================
   FAQ
====================================== */

.faq-section {
    background: var(--green);
    padding: 60px 0;
    color: var(--soft-pink);
}

.faq-section__title {
    margin: 0 0 40px;

    font-family: 'Averia Serif Libre', serif;
    font-size: 48px;
    line-height: 64px;
    font-weight: 400;

    text-align: center;
    color: var(--soft-pink);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 242, 242, .35);
}

.faq-item__question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 8px;

    border: 0;
    background: transparent;

    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;

    text-align: left;
    color: var(--soft-pink);

    cursor: pointer;
}

.faq-item__icon {
    flex-shrink: 0;

    font-size: 22px;
    line-height: 1;

    transition: transform var(--transition);
}

.faq-item__answer {
    display: none;

    padding: 0 36px 16px 8px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;

    color: var(--soft-pink);
}

.faq-item.is-open .faq-item__answer {
    display: block;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(45deg);
}
@media (max-width: 768px) {

    .faq-section {
        padding: 40px 20px;
    }

    .faq-section__title {
        margin-bottom: 30px;

        font-size: 30px;
        line-height: 40px;
    }

    .faq-item__question {
        padding-left: 0;
        padding-right: 0;
    }

    .faq-item__answer {
        padding-left: 0;
    }
}

/* ======================================
   GALLERY: SECTION
====================================== */

.gallery-section {
    background: var(--soft-pink);
    padding: 60px 0;
}


/* ======================================
   GALLERY: GRID
====================================== */

.gallery-grid {
    columns: 3;
    column-gap: 8px;
}


/* ======================================
   GALLERY: ITEM
====================================== */

.gallery-item {
    display: block;

    width: 100%;
    margin: 0 0 8px;

    padding: 0;
    border: 0;
    background: transparent;

    break-inside: avoid;

    cursor: pointer;
}


/* ======================================
   GALLERY: ITEM IMAGE
====================================== */

.gallery-item img {
    display: block;

    width: 100%;
    height: auto;

    transition: transform .35s ease;
}


/* ======================================
   GALLERY: ITEM HOVER
====================================== */

.gallery-item:hover img {
    transform: scale(1.01);
}


/* ======================================
   GALLERY LIGHTBOX: OVERLAY
====================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(0, 0, 0, .88);

    opacity: 0;
    visibility: hidden;

    transition:
            opacity .25s ease,
            visibility .25s ease;
}


/* ======================================
   GALLERY LIGHTBOX: OPEN STATE
====================================== */

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}


/* ======================================
   GALLERY LIGHTBOX: CONTENT
====================================== */

.gallery-lightbox__content {
    position: relative;

    width: auto;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ======================================
   GALLERY LIGHTBOX: MEDIA
====================================== */

.gallery-lightbox__media {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ======================================
   GALLERY LIGHTBOX: IMAGE
====================================== */

.gallery-lightbox__image {
    display: block;

    max-width: 520px;
    max-height: 60vh;

    width: auto;
    height: auto;

    object-fit: contain;
}


/* ======================================
   GALLERY LIGHTBOX: CONTROLS
====================================== */

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
    position: absolute;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: 0;

    color: var(--soft-pink);

    cursor: pointer;

    z-index: 2;
}


/* ======================================
   GALLERY LIGHTBOX: CLOSE
====================================== */

.gallery-lightbox__close {
    top: 10px;
    right: 10px;

    width: 36px;
    height: 36px;

    background: rgba(0, 0, 0, .45);
    border-radius: 50%;

    font-size: 28px;
    line-height: 1;

    z-index: 3;
}


/* ======================================
   GALLERY LIGHTBOX: ARROWS
====================================== */

.gallery-lightbox__prev,
.gallery-lightbox__next {
    top: 50%;

    width: 40px;
    height: 40px;

    background: rgba(0, 0, 0, .35);
    border-radius: 50%;

    font-size: 40px;
    line-height: 1;

    transform: translateY(-50%);
}


/* ======================================
   GALLERY LIGHTBOX: PREVIOUS ARROW
====================================== */

.gallery-lightbox__prev {
    left: 6px;
}


/* ======================================
   GALLERY LIGHTBOX: NEXT ARROW
====================================== */

.gallery-lightbox__next {
    right: 6px;
}


/* ======================================
   GALLERY: GRID --RESPONSIVE TABLET
====================================== */

@media (max-width: 992px) {

    .gallery-grid {
        columns: 2;
    }

}


/* ======================================
   GALLERY --RESPONSIVE MOBILE
====================================== */

@media (max-width: 768px) {


    /* ======================================
       GALLERY: SECTION --RESPONSIVE
    ====================================== */

    .gallery-section {
        padding: 40px 0;
    }


    /* ======================================
       GALLERY: GRID --RESPONSIVE
    ====================================== */

    .gallery-grid {
        columns: 1;
    }


    /* ======================================
       GALLERY LIGHTBOX: OVERLAY --RESPONSIVE
    ====================================== */

    .gallery-lightbox {
        padding: 60px 45px 30px;
    }


    /* ======================================
       GALLERY LIGHTBOX: IMAGE --RESPONSIVE
    ====================================== */

    .gallery-lightbox__image {
        max-width: 90%;
        max-height: 55vh;
    }


    /* ======================================
       GALLERY LIGHTBOX: CLOSE --RESPONSIVE
    ====================================== */

    .gallery-lightbox__close {
        top: 16px;
        right: 16px;
    }


    /* ======================================
       GALLERY LIGHTBOX: ARROWS --RESPONSIVE
    ====================================== */

    .gallery-lightbox__prev,
    .gallery-lightbox__next {
        width: 36px;
        height: 36px;

        font-size: 42px;
    }


    /* ======================================
       GALLERY LIGHTBOX: PREVIOUS ARROW --RESPONSIVE
    ====================================== */

    .gallery-lightbox__prev {
        left: 8px;
    }


    /* ======================================
       GALLERY LIGHTBOX: NEXT ARROW --RESPONSIVE
    ====================================== */

    .gallery-lightbox__next {
        right: 8px;
    }

}