/***** GLOBAL *****/

/* variables */

:root {
    --main-color: #E6C2A1;
    --main-text-color: #141414;

    --second-color: #D4AF67;
    --second-text-color: #f4eee9;

    --third-color: #222222;
    --third-text-color: #f4eee9;
}

/* reset / base */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: #141414;
    color: var(--third-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 300;
    margin: 0;
}

.spec-font {
    font-family: "Fraunces", Georgia, serif;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin-inline: auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* buttons */

.t-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1em 2.1em;
    border: none;
    border-radius: 999px;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.t-btn.theme {
    background: var(--second-color);
    color: var(--main-text-color);
}

.t-btn.theme:hover {
    opacity: 0.85;
}

.t-btn.theme2 {
    background: var(--main-color);
    color: var(--main-text-color);
}

.t-btn.theme2:hover {
    opacity: 0.85;
}

.t-btn.theme3 {
    background: var(--third-color);
    color: var(--third-text-color);
}

.t-btn.theme3:hover {
    opacity: 0.85;
}

/***** PAGE BANNER *****/

.page-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    overflow: hidden;
    background: #141414;
    text-align: center;
}

.page-banner-image,
.page-banner::before,
.page-banner::after {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.page-banner-image {
    z-index: 0;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-banner::before,
.page-banner::after {
    content: "";
    pointer-events: none;
}

.page-banner::before {
    z-index: 1;
    background: rgba(0, 0, 0, 0.35);
}

.page-banner::after {
    z-index: 2;
    background:
        linear-gradient(to top, #141414 0%, rgba(20, 20, 20, 0.94) 28%, rgba(20, 20, 20, 0.5) 72%),
        linear-gradient(to right, rgba(0, 0, 0, 0.82), transparent 35%, transparent 65%, rgba(0, 0, 0, 0.82));
}

.page-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    padding: 110px 25px 45px;
}

.page-banner h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    color: var(--main-color);
    font-size: clamp(38px, 4.7vw, 62px);
    font-weight: 300;
    line-height: 1.12;
}

.page-banner h1::before,
.page-banner h1::after {
    content: "";
    flex: 0 1 48px;
    height: 1px;
    background: var(--main-color);
    opacity: 0.75;
}

.page-banner p {
    margin: 12px 0 0;
    color: #d6d1ce;
    font-size: 17px;
    font-weight: 200;
    line-height: 1.6;
}

@media (max-width: 575px) {
    .page-banner-content {
        padding: 100px 25px 35px;
    }

    .page-banner p {
        font-size: 15px;
    }
}

/***** HEADER *****/

/* header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--second-text-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header .bar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 74px;
    gap: 16px;
}

/* logo */

.header .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.header .logo img {
    display: block;
    width: 270px;
    max-width: 100%;
    height: auto;
}

/* navigation */

.header .navigation ul {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header .navigation {
    justify-self: end;
}

.header .navigation a {
    display: block;
    padding: 0;
    background: transparent;
    text-decoration: none;
    color: #d6d1ce;
    font-size: 15px;
    font-weight: 300;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.header .navigation a:hover,
.header .navigation a:focus-visible {
    background: transparent;
    color: #d6d1ce;
}

.header .navigation .mobile-booking {
    display: none;
    background: var(--second-color);
    color: var(--main-text-color);
}

.header .navigation .mobile-booking:hover,
.header .navigation .mobile-booking:focus-visible {
    background: var(--second-color);
    color: var(--main-text-color);
}

.header .navigation a[aria-current="page"] {
    background: transparent;
    color: #d6d1ce;
}

/* actions */

.header .actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .booking-button,
.header .mobile-booking {
    padding: 0.75em 1.5em;
    font-size: 14px;
    font-weight: 400;
}

.header .actions .toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(230, 194, 161, 0.4);
    border-radius: 50%;
    cursor: pointer;
    color: var(--main-color);
}

.header .toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

@media (max-width: 1199px) {
    .header .bar {
        grid-template-columns: 1fr auto;
    }

    .header .actions {
        gap: 12px;
    }

    .header .actions .toggle {
        display: flex;
    }

    .header .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 22px 25px 26px;
        background: rgba(0, 0, 0, 0.2);
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .header .navigation.is-open {
        display: block;
    }

    .header .navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .header .navigation li a {
        padding: 14px 16px;
    }
}

@media (max-width: 575px) {
    .header .bar {
        min-height: 70px;
    }

    .header .logo img {
        width: 220px;
    }

    .header .booking-button {
        display: none;
    }

    .header .navigation .mobile-booking {
        display: inline-flex;
        margin-top: 24px;
        color: var(--main-text-color);
    }
}

/***** HOME *****/

/* hero */

.home-page .hero-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 100vh;
    background: #141414;
    color: var(--third-text-color);
    overflow: hidden;
}

.home-page .hero-copy-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 90px clamp(35px, 5vw, 85px);
}

.home-page .hero-photo {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    overflow: hidden;
}

.home-page .hero-photo img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-page .hero-photo::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: rgba(45, 45, 45, 0.3);
}

.home-page .hero-photo::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(20, 20, 20, 0.96) 0%, rgba(20, 20, 20, 0.42) 45%, transparent 82%);
}

.home-page .hero-plates {
    position: absolute;
    z-index: 3;
    inset: 0;
    pointer-events: none;
}

.home-page .hero-plate {
    position: absolute;
    display: block;
}

.home-page .hero-plate img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 16px rgba(0, 0, 0, 0.35));
    animation: plate-spin 36s linear infinite;
    will-change: transform;
}

.home-page .hero-plate-bread {
    top: 50%;
    left: 0;
    width: 215px;
    transform: translate(-50%, -50%);
}

.home-page .hero-plate-top {
    top: 50px;
    right: 50px;
    width: 185px;
}

.home-page .hero-plate-top img {
    animation-duration: 42s;
    animation-direction: reverse;
}

.home-page .hero-plate-bottom {
    bottom: 25px;
    left: 28px;
    width: 225px;
}

.home-page .hero-plate-bottom img {
    animation-duration: 48s;
}

@keyframes plate-spin {
    to { transform: rotate(360deg); }
}

.home-page .hero-section .content {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 520px;
    text-align: center;
}

.home-page .hero-section .heading {
    font-size: clamp(44px, 4.5vw, 70px);
    line-height: 1.1;
    margin-bottom: 22px;
    color: var(--main-color);
}

.home-page .hero-section .text {
    max-width: 440px;
    margin: 0 auto 30px;
    color: #fff;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
}

.home-page .hero-section .content > *,
.page-banner-content > * {
    animation: hero-reveal 0.8s ease-out both;
}

.home-page .hero-section .content > :nth-child(2),
.page-banner-content > :nth-child(2) {
    animation-delay: 0.15s;
}

.home-page .hero-section .content > :nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hero-reveal {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .home-page .hero-section {
        grid-template-columns: 1fr;
    }

    .home-page .hero-copy-panel {
        min-height: 720px;
        padding: 115px 30px 95px;
    }

    .home-page .hero-plate-bread {
        width: 150px;
    }

    .home-page .hero-plate-top {
        top: 50px;
        right: 50px;
        width: 135px;
    }

    .home-page .hero-plate-bottom {
        bottom: 12px;
        left: 20px;
        width: 175px;
    }

    .home-page .hero-photo {
        min-height: 380px;
        height: 45vh;
    }
}

@media (max-width: 480px) {
    .home-page .hero-copy-panel {
        min-height: 690px;
        padding: 115px 25px 90px;
    }

    .home-page .hero-section .heading {
        font-size: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .hero-plate img,
    .home-page .hero-section .content > *,
    .page-banner-content > * {
        animation: none;
    }
}

/* events */

.events-section {
    padding: 110px 0;
    background: #181818;
    border-top: 1px solid #333;
}

.events-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(48px, 7vw, 110px);
}

.events-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 25px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.events-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.events-content h2 {
    max-width: 570px;
    color: var(--main-color);
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.13;
}

.events-description {
    max-width: 540px;
    margin: 26px 0 26px;
    color: #d6d1ce;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
    color: #f4eee9;
    font-size: 14px;
    font-weight: 300;
}

.events-list li::before {
    content: "•";
    margin-right: 9px;
    color: var(--main-color);
}

.events-photo-wrap {
    position: relative;
    min-width: 0;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    border: 1px solid #444;
    border-radius: 4px;
}

.events-photo-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-photo-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 16px 20px;
    background: rgba(20, 20, 20, 0.9);
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .events-section {
        padding: 75px 0;
    }

    .events-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .events-photo-wrap {
        aspect-ratio: 4 / 3;
    }
}

/* events page */

.events-page-hero {
    padding: 90px 0 110px;
}

.events-page-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: clamp(50px, 7vw, 110px);
}

.events-page-intro h2 {
    max-width: 660px;
    color: var(--main-color);
    font-size: clamp(48px, 5vw, 76px);
    line-height: 1.1;
}

.events-page-intro > p:not(.events-eyebrow) {
    max-width: 570px;
    margin: 28px 0 35px;
    color: #d6d1ce;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

.events-page-photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid #444;
    border-radius: 4px;
}

.events-page-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.events-page-offer {
    padding: 105px 0 120px;
    background: #1a1a1a;
}

.events-page-offer-intro {
    max-width: 780px;
    margin-bottom: 55px;
}

.events-page-offer-intro h2,
.events-page-details h2,
.events-page-contact h2 {
    color: var(--main-color);
    font-size: clamp(40px, 4vw, 60px);
    line-height: 1.15;
}

.events-page-offer-intro > p:not(.events-eyebrow),
.events-page-details-layout > p,
.events-page-contact .container > p:not(.events-eyebrow) {
    max-width: 680px;
    color: #d6d1ce;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.events-page-offer-intro > p:not(.events-eyebrow) {
    margin: 22px 0 0;
}

.events-page-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.events-page-options article {
    min-height: 285px;
    padding: 32px;
    border: 1px solid #444;
}

.events-option-number {
    display: block;
    margin-bottom: 38px;
    color: var(--main-color);
    font-size: 13px;
}

.events-page-options h3 {
    margin-bottom: 16px;
    color: #f4eee9;
    font-size: 28px;
}

.events-page-options p {
    margin: 0;
    color: #bdb8b4;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.events-page-details {
    padding: 105px 0;
}

.events-page-details-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 70px;
}

.events-page-details-layout > p {
    margin: 0;
}

.events-page-contact {
    padding: 100px 0 110px;
    background: #1a1a1a;
    text-align: center;
}

.events-page-contact .events-eyebrow {
    justify-content: center;
}

.events-page-contact .container > p:not(.events-eyebrow) {
    margin: 20px auto 30px;
}

@media (max-width: 767px) {
    .events-page-hero,
    .events-page-offer,
    .events-page-details,
    .events-page-contact {
        padding: 75px 0;
    }

    .events-page-hero-layout,
    .events-page-details-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .events-page-photo {
        aspect-ratio: 4 / 3;
    }

    .events-page-options {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .events-page-options article {
        min-height: 0;
    }

    .events-option-number {
        margin-bottom: 22px;
    }
}

/* gallery slider */

.gallery-section {
    overflow: hidden;
    padding: 92px 0 110px;
    background: #1a1a1a;
}

.gallery-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 54px;
}

.gallery-copy {
    max-width: 600px;
}

.gallery-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 15px;
    color: #f4eee9;
    font-size: clamp(34px, 3.1vw, 44px);
    line-height: 1.2;
}

.gallery-heading::before {
    content: "";
    flex: 0 0 40px;
    height: 2px;
    background: var(--main-color);
}

.gallery-copy p {
    max-width: 520px;
    margin: 0 0 0 62px;
    color: #aaa7a5;
    font-size: 16px;
    line-height: 1.65;
}

.gallery-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 2.1em;
    border: 1px solid var(--main-color);
    border-radius: 999px;
    color: var(--main-color);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.gallery-link:hover,
.gallery-link:focus-visible {
    background: var(--main-color);
    color: #141414;
}

.gallery-slider {
    position: relative;
}

.gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(260px, 23vw, 365px);
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 max(25px, calc((100vw - 1250px) / 2 + 25px)) 5px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    display: block;
    height: 490px;
    overflow: hidden;
    border: 1px solid rgba(230, 194, 161, 0.2);
    border-radius: 4px;
    scroll-snap-align: start;
}

.gallery-slide:nth-child(even) {
    margin-top: 18px;
    height: 472px;
}

.gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-slide:hover img {
    transform: scale(1.04);
}

.gallery-arrow {
    position: absolute;
    z-index: 1;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    transform: translateY(-50%);
    border: 1px solid rgba(230, 194, 161, 0.65);
    border-radius: 50%;
    background: rgba(20, 20, 20, 0.9);
    color: var(--main-color);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
    background: var(--main-color);
    color: #141414;
}

.gallery-arrow:disabled {
    opacity: 0.4;
    cursor: default;
}

.gallery-arrow-prev {
    left: 20px;
}

.gallery-arrow-next {
    right: 20px;
}

/* gallery page */

.gallery-page {
    padding: 0 0 110px;
}

.gallery-page > .container {
    padding-top: 78px;
}

.gallery-page-intro {
    margin: 12px 0 42px;
    color: #aaa7a5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gallery-grid a {
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 70px 0 78px;
    }

    .gallery-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
        margin-bottom: 36px;
    }

    .gallery-track {
        grid-auto-columns: min(72vw, 340px);
        gap: 16px;
    }

    .gallery-slide {
        height: 400px;
    }

    .gallery-slide:nth-child(even) {
        height: 382px;
    }

    .gallery-arrow {
        width: 44px;
        height: 44px;
    }

    .gallery-arrow-prev {
        left: 8px;
    }

    .gallery-arrow-next {
        right: 8px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-heading {
        gap: 14px;
    }

    .gallery-heading::before {
        flex-basis: 26px;
    }

    .gallery-copy p {
        margin-left: 40px;
    }

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

/***** ABOUT *****/

.simple-page {
    min-height: 55vh;
    padding: 0 0 110px;
}

.simple-page > .container {
    padding-top: 90px;
}

.simple-page > .container p {
    max-width: 700px;
    color: #c9c6c4;
    font-size: 17px;
    line-height: 1.8;
}

.simple-page > .container a {
    color: var(--main-color);
}

/***** MENU *****/

/* daily menu — shared by home and the daily menu page */

.daily-menu {
    padding: 105px 0 110px;
    background: #1a1a1a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-menu--page {
    min-height: 75vh;
    background: #141414;
}

.daily-menu-intro {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.daily-menu-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 18px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.daily-menu-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.daily-menu-intro h1,
.daily-menu-intro h2 {
    color: var(--main-color);
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 1.1;
}

.daily-menu-description {
    max-width: 580px;
    margin: 20px 0 0;
    color: #d6d1ce;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
}

.daily-menu-service {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 20px;
    border-left: 1px solid var(--main-color);
    color: #d6d1ce;
    font-size: 14px;
    font-weight: 300;
}

.daily-menu-service strong {
    color: #f4eee9;
    font-size: 20px;
    font-weight: 400;
}

.daily-menu-week {
    margin: 0 0 17px;
    color: #a9a5a1;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.daily-menu-days {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.daily-menu-day {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 405px;
    padding: 22px 20px 19px;
    background: #202020;
    border: 1px solid #3c3c3c;
    border-radius: 4px;
}

.daily-menu-day.is-today {
    background: #25221f;
    border-color: var(--main-color);
}

.daily-menu-day-heading {
    position: relative;
    min-height: 75px;
}

.daily-menu-day-heading > span:first-child {
    color: var(--main-color);
    font-size: 12px;
    font-weight: 400;
}

.daily-menu-day-heading h3 {
    margin-top: 7px;
    color: #f4eee9;
    font-size: 27px;
    line-height: 1.1;
}

.daily-menu-today {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    border-radius: 999px;
    background: var(--main-color);
    color: #141414;
    font-size: 11px;
}

.daily-menu-dish {
    padding: 18px 0;
    border-top: 1px solid #3c3c3c;
}

.daily-menu-dish--main {
    flex: 1;
}

.daily-menu-dish-type {
    color: #a9a5a1;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.daily-menu-dish p {
    margin: 9px 0 12px;
    color: #f4eee9;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
}

.daily-menu-dish strong,
.daily-menu-combo strong {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 400;
}

.daily-menu-combo {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #3c3c3c;
    color: #bdb8b4;
    font-size: 12px;
}

.daily-menu-empty {
    padding: 45px;
    border: 1px solid #3c3c3c;
    background: #202020;
}

.daily-menu-empty h3 {
    color: var(--main-color);
    font-size: 30px;
}

.daily-menu-empty p {
    color: #d6d1ce;
    font-weight: 300;
}

.daily-menu-empty a,
.daily-menu-footer a:not(.t-btn) {
    color: var(--main-color);
}

.daily-menu-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 30px;
}

.daily-menu-footer p {
    margin: 0;
    color: #d6d1ce;
    font-size: 15px;
    font-weight: 300;
}

.daily-menu-footer a {
    text-decoration: none;
}

.daily-menu-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.daily-menu-source {
    font-size: 14px;
}

@media (max-width: 1100px) {
    .daily-menu-days {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .daily-menu {
        padding: 75px 0;
    }

    .daily-menu-intro,
    .daily-menu-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .daily-menu-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 540px) {
    .daily-menu-days {
        grid-template-columns: 1fr;
    }

    .daily-menu-day {
        min-height: 0;
    }

    .daily-menu-empty {
        padding: 30px 22px;
    }
}

/* page */

.menu-page {
    padding: 0 0 110px;
}

.menu-page > .container {
    padding-top: 78px;
}

.menu-page-intro {
    max-width: 700px;
    margin: 12px 0 30px;
    color: #c9c6c4;
    font-size: 17px;
    line-height: 1.8;
}

/* legend */

.menu-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

/* categories nav */

.menu-categories-nav {
    position: sticky;
    top: 84px;
    z-index: 5;
    margin: 0 0 50px;
    padding: 14px 0;
    background: rgba(20, 20, 20, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.menu-categories-nav ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    margin: 0;
    padding: 0 2px;
    list-style: none;
    scrollbar-width: none;
}

.menu-categories-nav ul::-webkit-scrollbar {
    display: none;
}

.menu-categories-nav a {
    display: block;
    padding: 8px 18px;
    border: 1px solid #444;
    border-radius: 999px;
    white-space: nowrap;
    color: #d6d1ce;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.menu-categories-nav a:hover,
.menu-categories-nav a:focus-visible {
    border-color: var(--main-color);
    color: var(--main-color);
}

/* category */

.menu-category {
    margin: 0 0 70px;
    scroll-margin-top: 150px;
}

.menu-category .head {
    margin-bottom: 28px;
}

.menu-category .head h2 {
    color: var(--main-color);
    font-size: clamp(28px, 3vw, 38px);
}

/* items */

.menu-category .items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.menu-category .items .item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
}

.menu-category .items .item .photo {
    flex: 0 0 auto;
    width: 84px;
    height: 84px;
    overflow: hidden;
    border-radius: 6px;
}

.menu-category .items .item .photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-category .items .item .info {
    flex: 1;
    min-width: 0;
}

.menu-category .items .item .top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.menu-category .items .item h3 {
    font-size: 17px;
    font-weight: 500;
    color: #f4eee9;
}

.menu-category .items .item .price {
    flex: 0 0 auto;
    color: var(--main-color);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.menu-category .items .item .unit {
    margin: 3px 0 6px;
    color: #8a8683;
    font-size: 13px;
}

.menu-category .items .item .desc {
    margin: 0 0 8px;
    color: #bdb8b4;
    font-size: 14px;
    line-height: 1.55;
}

/* badges */

.badge {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid #444;
    border-radius: 999px;
    color: #d6d1ce;
    font-size: 11px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.menu-category .items .item .badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge.akcia {
    border-color: var(--main-color);
    color: var(--main-color);
}

.badge.adult {
    border-color: #c0392b;
    color: #e07a6f;
}

@media (max-width: 767px) {
    .menu-categories-nav {
        top: 70px;
    }

    .menu-category .items {
        grid-template-columns: 1fr;
    }

    .menu-category .items .item {
        padding: 14px;
    }

    .menu-category .items .item .photo {
        width: 68px;
        height: 68px;
    }
}

/***** SERVICES *****/

/***** CONTACT *****/

/***** FOOTER *****/

.footer {
    background: #000;
    color: #d6d1ce;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
    padding: 85px 0 75px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
    gap: clamp(35px, 6vw, 100px);
}

.footer-logo {
    display: inline-block;
}

.footer-logo img {
    display: block;
    width: 245px;
    max-width: 100%;
    height: auto;
}

.footer-brand p {
    max-width: 340px;
    margin: 26px 0 30px;
    color: #aaa5a1;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.footer-wedding-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0.95em 1.5em;
    border-radius: 999px;
    background: #fff;
    color: #141414;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-wedding-button:hover {
    background: var(--main-color);
    color: #141414;
    transform: translateY(-2px);
}

.footer h2 {
    margin: 4px 0 24px;
    color: var(--main-color);
    font-size: 23px;
    line-height: 1.2;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: #d6d1ce;
    font-size: 15px;
    font-weight: 300;
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--main-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact h2 {
    margin-bottom: 12px;
}

.footer-contact p {
    margin: 0 0 8px;
    color: #aaa5a1;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
}

.footer-contact .footer-contact-link {
    margin-top: 12px;
    color: var(--main-color);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    color: #8e8986;
    font-size: 13px;
    font-weight: 300;
}

@media (max-width: 991px) {
    .footer-main {
        padding: 65px 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 55px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }
}
