﻿/* Front page specific styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.68) 100%),
        url('../../img/hero-bg.webp') center/cover no-repeat;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.15);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-big-logo {
    display: block;
    width: min(460px, 78vw);
    height: auto;
    margin: 0 auto 24px;
    object-fit: contain;
    transform: translateY(-20px);
}

.hero h1 {
    font-size: 82px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-muted);
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.lunch-highlight {
    background: var(--gold-gradient);
    padding: 2px;
    margin-top: 100px;
}

.lunch-inner {
    background: var(--bg-dark);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.lunch-inner > img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    justify-self: end;
}

.lunch-tag {
    background: var(--bronze-deep);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    margin-bottom: 20px;
    display: inline-block;
}

.delivery-section {
    background: #1a1a1a;
    display: flex;
    align-items: center;
}

.delivery-content {
    flex: 1;
    padding: 80px;
}

.delivery-image {
    flex: 1;
    height: 600px;
    background: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&q=80&w=2069') center/cover;
}

.delivery-hours {
    margin: 20px 0;
    font-family: monospace;
    color: var(--bronze-light);
}

.gift-vouchers {
    position: relative;
    overflow: hidden;
    padding-bottom: 56px;
    background:
        radial-gradient(circle at 78% 44%, rgba(226, 209, 163, 0.14), transparent 28%),
        linear-gradient(135deg, #0d0d0d 0%, #151515 48%, #0b0b0b 100%);
}

.gift-vouchers::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 92%);
    pointer-events: none;
    opacity: 0.3;
}

.gift-vouchers .container {
    position: relative;
    z-index: 1;
}

.gift-vouchers__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 60px;
    align-items: stretch;
}

.gift-vouchers__content {
    max-width: 560px;
}

.gift-vouchers__kicker {
    margin: 0 0 16px;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gift-vouchers__title {
    margin: 0 0 22px;
    font-size: clamp(38px, 4.2vw, 58px);
    line-height: 1.02;
}

.gift-vouchers__text {
    max-width: 520px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
}

.gift-vouchers__text p {
    margin: 0;
}

.gift-vouchers__cta-wrap {
    margin: 34px 0 0;
}

.gift-vouchers__visual {
    position: relative;
    min-height: clamp(540px, 64vh, 680px);
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

.gift-vouchers__glow {
    position: absolute;
    inset: auto 11% 7% 11%;
    height: 66%;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(226, 209, 163, 0.34) 0%, rgba(226, 209, 163, 0.12) 26%, rgba(226, 209, 163, 0) 72%);
    filter: blur(46px);
    transform: translateY(8%);
}

.gift-vouchers__fan {
    position: relative;
    width: min(100%, 700px);
    height: 100%;
}

.gift-vouchers__card {
    --gift-rotation: 0deg;
    --gift-start-x: 0px;
    --gift-start-y: 0px;
    --gift-delay: 0s;
    position: absolute;
    margin: 0;
    width: clamp(220px, 28vw, 340px);
    aspect-ratio: 800 / 377;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(226, 209, 163, 0.18);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.52),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    background: #111111;
    opacity: 0;
    filter: blur(10px);
    transform-origin: center center;
    transform: translate3d(var(--gift-start-x), var(--gift-start-y), 0) rotate(0deg) scale(0.72);
    transition:
        transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.65s ease,
        filter 0.75s ease;
    transition-delay: var(--gift-delay);
}

.gift-vouchers__card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gift-vouchers__card--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: var(--bronze-light);
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
    background:
        linear-gradient(135deg, rgba(226, 209, 163, 0.1), rgba(255, 255, 255, 0.02)),
        #111111;
}

.gift-vouchers__card--1 {
    --gift-rotation: -17deg;
    --gift-start-x: 172px;
    --gift-start-y: -40px;
    --gift-delay: 0.02s;
    left: 8px;
    top: 278px;
    bottom: auto;
    z-index: 1;
}

.gift-vouchers__card--2 {
    --gift-rotation: -9deg;
    --gift-start-x: 208px;
    --gift-start-y: 131px;
    --gift-delay: 0.08s;
    left: -28px;
    top: 23%;
    z-index: 2;
}

.gift-vouchers__card--3 {
    --gift-rotation: -1.5deg;
    --gift-start-x: 32px;
    --gift-start-y: 310px;
    --gift-delay: 0.14s;
    left: 148px;
    top: 0;
    z-index: 5;
}

.gift-vouchers__card--4 {
    --gift-rotation: 8deg;
    --gift-start-x: -208px;
    --gift-start-y: 131px;
    --gift-delay: 0.2s;
    right: -28px;
    top: 23%;
    z-index: 4;
}

.gift-vouchers__card--5 {
    --gift-rotation: 16deg;
    --gift-start-x: -172px;
    --gift-start-y: -40px;
    --gift-delay: 0.26s;
    right: 8px;
    top: 278px;
    bottom: auto;
    z-index: 3;
}

.gift-vouchers .reveal.active .gift-vouchers__card {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(var(--gift-rotation)) scale(1);
}

.google-reviews {
    background: linear-gradient(180deg, #111111 0%, #0b0b0b 100%);
    --reviews-surface: #0f0f0f;
    --review-card-width: 360px;
    --review-gap: 20px;
    --review-fade-size: 68px;
}

.google-reviews__kicker {
    margin: 0 0 14px;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.google-reviews__title {
    margin: 0 0 18px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.04;
}

.google-reviews__intro {
    margin: 0;
    max-width: 760px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.google-reviews__row {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
    gap: 28px;
    align-items: stretch;
}

.google-reviews__summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 28px;
    background: transparent;
    border: 0;
}

.google-reviews__rating {
    margin: 0;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.05;
    letter-spacing: 0.3px;
}

.google-reviews__source,
.google-reviews__count {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.google-reviews__rating span {
    color: var(--bronze-light);
    margin-right: 8px;
}

.google-reviews__source {
    margin-top: 10px;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
}

.google-reviews__source-brand {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    vertical-align: baseline;
}

.google-reviews__source-icon {
    width: 0.95em;
    height: 0.95em;
    flex: 0 0 auto;
    display: block;
    transform: translateY(-0.02em);
}

.google-reviews__source-word {
    display: inline-block;
}

.google-reviews__count {
    margin-top: 8px;
    color: var(--text-muted);
}

.google-reviews__slider-area {
    min-width: 0;
}

.google-reviews__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 14px;
}

.google-reviews__nav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(226, 209, 163, 0.45);
    background: rgba(17, 17, 17, 0.92);
    color: var(--bronze-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.google-reviews__nav:hover,
.google-reviews__nav:focus-visible {
    background: var(--bronze-light);
    border-color: var(--bronze-light);
    color: #0b0b0b;
}

.google-reviews__viewport {
    position: relative;
    overflow: hidden;
}

.google-reviews__viewport::before,
.google-reviews__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--review-fade-size);
    z-index: 2;
    pointer-events: none;
}

.google-reviews__viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--reviews-surface) 0%, rgba(15, 15, 15, 0) 100%);
}

.google-reviews__viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--reviews-surface) 0%, rgba(15, 15, 15, 0) 100%);
}

.google-reviews__track {
    display: flex;
    gap: var(--review-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: calc(var(--review-fade-size) + 24px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 52px 10px calc(var(--review-fade-size) + 24px);
}

.google-reviews__track::-webkit-scrollbar {
    display: none;
}

.google-reviews__card {
    flex: 0 0 var(--review-card-width);
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(226, 209, 163, 0.24);
    padding: 22px 22px 20px;
}

.google-reviews__card-stars {
    margin: 0 0 12px;
    color: var(--bronze-light);
    letter-spacing: 3px;
    font-size: 12px;
}

.google-reviews__card-text {
    margin: 0;
    color: rgba(245, 245, 245, 0.92);
    font-size: 15px;
    line-height: 1.62;
}

.google-reviews__card-meta {
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    font-size: 12px;
    color: var(--text-muted);
}

.google-reviews__card-author {
    color: var(--bronze-light);
    letter-spacing: 0.4px;
}

.google-reviews__cta-wrap {
    margin: 32px 0 0;
    text-align: center;
}

.res-block {
    background: #080808;
    --res-parallax-offset: 0px;
    text-align: center;
    padding: 180px 0;
    position: relative;
    overflow: hidden;
}

.res-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(226, 209, 163, 0.14), transparent 44%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.res-block::after {
    content: '';
    position: absolute;
    inset: -18px;
    background-image: var(--res-bg-image, url('../../img/rezervace-bg.webp'));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    filter: blur(2px) brightness(0.72);
    transform: translate3d(0, var(--res-parallax-offset), 0) scale(1.04);
    will-change: transform;
    z-index: 0;
}

.res-block .container {
    position: relative;
    z-index: 2;
}

.res-block__inner {
    max-width: 760px;
    margin: 0 auto;
}

.res-block__kicker {
    margin: 0 0 16px;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.res-block__title {
    font-size: clamp(44px, 5vw, 68px);
    line-height: 0.98;
    margin-bottom: 24px;
}

.res-block__text {
    margin: 0 auto;
    max-width: 640px;
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 300;
}

.res-block__cta-wrap {
    margin: 34px 0 0;
}

.res-block__contact {
    margin-top: 28px;
}

.res-block__contact-label {
    margin: 0 0 10px;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.phone-link {
    font-size: clamp(28px, 3.2vw, 38px);
    color: var(--bronze-light);
    text-decoration: none;
    display: inline-block;
    margin-top: 0;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: var(--text-main);
}

@media (min-width: 1025px) {
    .hero h1 {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .gift-vouchers {
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-big-logo {
        width: min(340px, 80vw);
        transform: translateY(-12px);
    }

    .lunch-inner,
    .delivery-section {
        grid-template-columns: 1fr;
    }

    .lunch-inner > img {
        width: 100%;
        max-width: 100%;
        justify-self: center;
    }

    .delivery-image {
        height: 300px;
    }

    .gift-vouchers__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gift-vouchers__content {
        max-width: 100%;
    }

    .gift-vouchers__visual {
        min-height: 500px;
    }

    .gift-vouchers__fan {
        width: min(100%, 560px);
    }

    .gift-vouchers__card {
        width: clamp(190px, 34vw, 280px);
    }

    .gift-vouchers__card--1 {
        --gift-start-x: 118px;
        --gift-start-y: -16px;
        left: 4%;
        top: 266px;
        bottom: auto;
    }

    .gift-vouchers__card--2 {
        --gift-start-x: 140px;
        --gift-start-y: 85px;
        left: 0;
        top: 23%;
    }

    .gift-vouchers__card--3 {
        --gift-start-x: -5px;
        --gift-start-y: 214px;
        left: 26%;
        top: 0;
    }

    .gift-vouchers__card--4 {
        --gift-start-x: -140px;
        --gift-start-y: 85px;
        right: 0;
        top: 23%;
    }

    .gift-vouchers__card--5 {
        --gift-start-x: -118px;
        --gift-start-y: -16px;
        right: 4%;
        top: 266px;
        bottom: auto;
    }

    .res-block {
        padding: 140px 0;
    }

    .res-block::after {
        background-attachment: scroll;
        filter: blur(1.5px) brightness(0.72);
        transform: translate3d(0, 0, 0) scale(1.03);
    }

    .res-block__title {
        font-size: clamp(38px, 7vw, 56px);
    }

    .res-block__text {
        font-size: 17px;
    }

    .google-reviews {
        --review-card-width: 320px;
        --review-fade-size: 44px;
    }

    .google-reviews__row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .google-reviews__summary {
        max-width: 100%;
        margin-top: 18px;
    }
}

@media (max-width: 680px) {
    .gift-vouchers {
        padding-bottom: 32px;
    }

    .gift-vouchers__visual {
        min-height: 390px;
    }

    .gift-vouchers__fan {
        width: min(100%, 360px);
    }

    .gift-vouchers__title {
        font-size: clamp(32px, 9vw, 42px);
    }

    .gift-vouchers__text {
        font-size: 16px;
    }

    .gift-vouchers__card {
        width: clamp(146px, 44vw, 190px);
        border-radius: 16px;
    }

    .gift-vouchers__card--1 {
        --gift-rotation: -14deg;
        --gift-start-x: 94px;
        --gift-start-y: -45px;
        left: 2%;
        top: 206px;
        bottom: auto;
    }

    .gift-vouchers__card--2 {
        --gift-rotation: -7deg;
        --gift-start-x: 108px;
        --gift-start-y: 79px;
        left: -2%;
        top: 23%;
    }

    .gift-vouchers__card--3 {
        --gift-rotation: -1deg;
        --gift-start-x: 26px;
        --gift-start-y: 178px;
        left: 21%;
        top: 0;
    }

    .gift-vouchers__card--4 {
        --gift-rotation: 6deg;
        --gift-start-x: -108px;
        --gift-start-y: 79px;
        right: -2%;
        top: 23%;
    }

    .gift-vouchers__card--5 {
        --gift-rotation: 12deg;
        --gift-start-x: -94px;
        --gift-start-y: -45px;
        right: 2%;
        top: 206px;
        bottom: auto;
    }

    .google-reviews {
        --review-card-width: min(300px, calc(100vw - 64px));
        --review-fade-size: 30px;
    }

    .res-block {
        padding: 110px 0;
    }

    .res-block__text {
        font-size: 16px;
    }

    .google-reviews__controls {
        margin-bottom: 10px;
    }

    .google-reviews__nav {
        width: 38px;
        height: 38px;
    }

    .google-reviews__rating {
        font-size: 28px;
    }

    .google-reviews__count {
        font-size: 16px;
    }

    .google-reviews__source {
        font-size: 16px;
    }

    .google-reviews__summary {
        margin-top: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gift-vouchers__card,
    .gift-vouchers .reveal.active .gift-vouchers__card {
        opacity: 1;
        filter: blur(0);
        transform: translate3d(0, 0, 0) rotate(var(--gift-rotation)) scale(1);
        transition: none;
    }
}

/* --- Homepage Structure Refresh --- */
.hero-content {
    max-width: 920px;
}

.hero .hero-kicker {
    margin: 0 0 12px;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--bronze-light);
}

.hero .hero-summary {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(245, 245, 245, 0.82);
}

.home-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.home-section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.home-section-heading__kicker {
    margin: 0 0 12px;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.home-section-heading__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.04;
}

.home-section-heading__text {
    margin: 16px 0 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.75;
}

.home-section-heading__cta {
    margin: 0;
}

.home-quick-actions {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 70px;
}

.home-quick-actions__panel {
    position: relative;
    z-index: 3;
    margin-top: -128px;
    padding: 44px 42px;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(13, 13, 13, 1) 100%);
    border: 1px solid rgba(226, 209, 163, 0.18);
    box-shadow: 0 34px 62px rgba(0, 0, 0, 0.34);
}

.quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.quick-actions__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 220px;
    padding: 30px 28px;
    color: var(--text-main);
    text-decoration: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(226, 209, 163, 0.12);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.quick-actions__card:hover,
.quick-actions__card:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(226, 209, 163, 0.28);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
}

.quick-actions__eyebrow {
    color: rgba(226, 209, 163, 0.7);
    font-size: 12px;
    letter-spacing: 1.8px;
}

.quick-actions__title {
    font-size: 28px;
    line-height: 1;
}

.quick-actions__text {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.quick-actions__arrow {
    margin-top: auto;
    color: var(--bronze-light);
    font-size: 20px;
}

.home-events {
    background: linear-gradient(180deg, #121212 0%, #0d0d0d 100%);
}

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

.home-events__card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(226, 209, 163, 0.12);
}

.home-events__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.home-events__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-events__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    padding: 8px 12px;
    background: rgba(10, 10, 10, 0.82);
    border: 1px solid rgba(226, 209, 163, 0.22);
    color: var(--bronze-light);
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.home-events__body {
    display: grid;
    gap: 14px;
    padding: 24px;
}

.home-events__date {
    margin: 0;
    color: var(--bronze-light);
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.home-events__card-title {
    margin: 0;
    font-size: 26px;
    line-height: 1.06;
}

.home-events__card-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.home-lunch {
    padding-top: 70px;
    background: #0d0d0d;
}

.home-lunch__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 36px;
    align-items: center;
    padding: 34px;
    background: #f4efe5;
    color: #161616;
    border: 1px solid rgba(226, 209, 163, 0.22);
}

.home-lunch__content {
    display: grid;
    gap: 0;
    align-content: start;
    min-width: 0;
}

.home-lunch__kicker {
    margin: 0 0 12px;
    color: #8e6d3d;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-lunch__title {
    margin: 0;
    color: #161616;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.02;
}

.home-lunch__text {
    margin: 18px 0 0;
    color: rgba(22, 22, 22, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.home-lunch__meta {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.home-lunch__meta li {
    position: relative;
    padding-left: 18px;
    color: rgba(22, 22, 22, 0.88);
}

.home-lunch__meta li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 1px;
    background: #8e6d3d;
}

.home-lunch__gallery {
    --home-lunch-gallery-gap: 16px;
    --home-lunch-gallery-card-width: 210px;
    margin: 0 0 30px;
    min-width: 0;
}

.home-lunch__gallery-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 14px;
}

.home-lunch__gallery-nav {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(142, 109, 61, 0.5);
    border-radius: 50%;
    background: rgba(244, 239, 229, 0.92);
    color: #8e6d3d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-lunch__gallery-nav:hover,
.home-lunch__gallery-nav:focus-visible {
    background: #8e6d3d;
    border-color: #8e6d3d;
    color: #f4efe5;
    transform: translateY(-1px);
}

.home-lunch__gallery-nav span {
    display: block;
    line-height: 1;
}

.home-lunch__gallery-viewport {
    position: relative;
    overflow: hidden;
}

.home-lunch__gallery-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 52px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(270deg, #f4efe5 0%, rgba(244, 239, 229, 0) 100%);
}

.home-lunch__gallery-track {
    display: flex;
    gap: var(--home-lunch-gallery-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0 10px;
}

.home-lunch__gallery-track::-webkit-scrollbar {
    display: none;
}

.home-lunch__gallery-card {
    flex: 0 0 var(--home-lunch-gallery-card-width);
    min-width: 0;
    scroll-snap-align: start;
}

.home-lunch__gallery-media {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: rgba(22, 22, 22, 0.08);
    border: 1px solid rgba(142, 109, 61, 0.18);
}

.home-lunch__gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-lunch__gallery-card:hover .home-lunch__gallery-image,
.home-lunch__gallery-card:focus-within .home-lunch__gallery-image {
    transform: scale(1.04);
}

.home-lunch__media {
    position: relative;
}

.home-lunch__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.home-lunch__cta {
    display: inline-flex;
    align-self: flex-start;
    justify-self: start;
    width: auto;
    color: #161616;
    border-color: rgba(22, 22, 22, 0.28);
}

.home-lunch__cta::before {
    background: var(--gold-gradient);
}

.home-lunch__cta:hover,
.home-lunch__cta:focus-visible {
    color: #f4efe5;
    border-color: #161616;
}

.signature-menu {
    background: linear-gradient(180deg, #101010 0%, #0a0a0a 100%);
    --signature-menu-gap: 22px;
    --signature-menu-card-width: calc((100% - (var(--signature-menu-gap) * 4)) / 5);
}

.signature-menu__controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 18px;
}

.signature-menu__nav {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(226, 209, 163, 0.45);
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.92);
    color: var(--bronze-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.signature-menu__nav:hover,
.signature-menu__nav:focus-visible {
    background: var(--bronze-light);
    border-color: var(--bronze-light);
    color: #0b0b0b;
    transform: translateY(-1px);
}

.signature-menu__nav span {
    display: block;
    line-height: 1;
}

.signature-menu__slider {
    position: relative;
}

.signature-menu__viewport {
    position: relative;
    overflow: hidden;
}

.signature-menu__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(270deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
}

.signature-menu__track {
    display: flex;
    gap: var(--signature-menu-gap);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 2px 0 14px;
}

.signature-menu__track::-webkit-scrollbar {
    display: none;
}

.signature-menu__card {
    flex: 0 0 var(--signature-menu-card-width);
    min-width: 0;
    scroll-snap-align: start;
}

.signature-menu__link {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(226, 209, 163, 0.12);
    background: #090909;
    aspect-ratio: 3 / 4;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.signature-menu__link:hover,
.signature-menu__link:focus-visible {
    transform: translateY(-6px);
    border-color: rgba(226, 209, 163, 0.32);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
}

.signature-menu__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.signature-menu__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.signature-menu__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.12) 0%, rgba(10, 10, 10, 0.26) 38%, rgba(10, 10, 10, 0.92) 100%);
    pointer-events: none;
}

.signature-menu__link:hover .signature-menu__image,
.signature-menu__link:focus-visible .signature-menu__image {
    transform: scale(1.05);
}

.signature-menu__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    align-content: end;
    min-height: 100%;
    padding: 22px;
}

.signature-menu__card-title {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(24px, 2.4vw, 30px);
    line-height: 1.08;
}

.signature-menu__cta {
    margin: 32px 0 0;
    text-align: center;
}

.about-story {
    background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.about-story__text {
    display: grid;
    gap: 16px;
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.about-story__values {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.about-story__values li {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 10px 16px;
    border: 1px solid rgba(226, 209, 163, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.about-story__values li::before {
    content: '';
    width: 22px;
    height: 1px;
    background: var(--bronze-light);
}

.about-story__media {
    position: relative;
    min-height: 760px;
}

.about-story__frame {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(226, 209, 163, 0.14);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.about-story__frame--primary {
    inset: -60px auto auto 0;
    width: calc(100% - 88px);
    aspect-ratio: 3 / 4;
}

.about-story__frame--secondary {
    inset: 272px 0 0 180px;
    aspect-ratio: 1 / 1;
    transform: translateY(50.0%);
    transform-origin: top center;
}

.about-story__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.celebrations {
    background: linear-gradient(180deg, #121212 0%, #0b0b0b 100%);
}

.celebrations__layout {
    display: grid;
    gap: 18px;
}

.celebrations__row {
    display: grid;
    gap: 18px;
}

.celebrations__row--top {
    grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
    align-items: stretch;
}

.celebrations__row--bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.celebrations__content {
    display: grid;
    gap: 18px;
    align-content: center;
    min-height: 320px;
    padding: 12px 0;
}

.celebrations__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.celebrations__event {
    min-width: 0;
}

.celebrations__event-link {
    position: relative;
    display: block;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #0a0a0a;
    border: 1px solid rgba(226, 209, 163, 0.14);
    text-decoration: none;
    color: var(--text-main);
}

.celebrations__event-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.08) 0%, rgba(10, 10, 10, 0.2) 34%, rgba(10, 10, 10, 0.92) 100%);
    pointer-events: none;
}

.celebrations__event-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.celebrations__event-link:hover .celebrations__event-image,
.celebrations__event-link:focus-visible .celebrations__event-image {
    transform: scale(1.04);
}

.celebrations__event-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 22px 20px 18px;
    align-content: end;
}

.celebrations__event-title {
    margin: 0;
    color: var(--text-main);
    line-height: 1.08;
}

.celebrations__event-text {
    margin: 0;
    color: rgba(245, 245, 245, 0.8);
    font-size: 14px;
    line-height: 1.65;
}

.celebrations__cta-panel {
    display: grid;
    gap: 18px;
    align-content: center;
    justify-items: end;
    align-items: center;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: right;
}

.celebrations__cta-label {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.salonek-highlight {
    background:
        radial-gradient(circle at 76% 34%, rgba(226, 209, 163, 0.1), transparent 28%),
        linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
}

.salonek-highlight__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 48px;
    align-items: center;
}

.salonek-highlight__content {
    display: grid;
    gap: 20px;
    align-content: center;
    max-width: 640px;
}

.salonek-highlight__text {
    display: grid;
    gap: 14px;
}

.salonek-highlight__text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.salonek-highlight__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.salonek-highlight__benefits li {
    position: relative;
    min-height: 100%;
    padding: 16px 18px 16px 42px;
    border: 1px solid rgba(226, 209, 163, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(245, 245, 245, 0.86);
    font-size: 15px;
    line-height: 1.6;
}

.salonek-highlight__benefits li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bronze-light);
    box-shadow: 0 0 0 4px rgba(226, 209, 163, 0.12);
}

.salonek-highlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
    align-items: center;
    width: 100%;
}

.salonek-highlight__more-link {
    display: inline-block;
    padding: 0 0 4px;
    line-height: 1;
    margin-left: auto;
}

.salonek-highlight__reserve {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 55px;
    padding: 18px 42px;
    border: 1px solid var(--bronze-deep);
    font: inherit;
    line-height: 1;
    cursor: pointer;
}

.salonek-highlight__media {
    min-width: 0;
}

.salonek-highlight__frame {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 209, 163, 0.16);
    background: #0a0a0a;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
}

.salonek-highlight__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.salonek-modal .delivery-modal__dialog {
    width: min(620px, calc(100vw - 32px));
    text-align: center;
}

.salonek-modal__contacts {
    display: grid;
    gap: 14px;
    margin-top: 26px;
    justify-items: center;
}

.salonek-modal__contact-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    min-width: min(100%, 460px);
    border: 1px solid rgba(226, 209, 163, 0.14);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-main);
    text-align: left;
    text-decoration: none;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.salonek-modal__contact-link:hover,
.salonek-modal__contact-link:focus-visible {
    border-color: rgba(226, 209, 163, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: var(--bronze-light);
}

.salonek-modal__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(226, 209, 163, 0.2);
    border-radius: 50%;
    color: var(--bronze-light);
    flex: 0 0 36px;
}

.salonek-modal__contact-icon svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.salonek-modal__contact-copy {
    display: grid;
    gap: 4px;
}

.salonek-modal__contact-label {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.salonek-modal__contact-value {
    color: rgba(245, 245, 245, 0.96);
    font-size: 18px;
    line-height: 1.4;
}

.salonek-modal__microtext {
    margin: 18px auto 0;
    max-width: 460px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.gallery-showcase {
    background: linear-gradient(180deg, #0b0b0b 0%, #131313 100%);
}

.gallery-showcase__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    gap: 42px;
    align-items: center;
}

.gallery-showcase__content {
    display: grid;
    gap: 18px;
    align-content: center;
    align-self: center;
    max-width: 360px;
}

.gallery-showcase__kicker {
    margin: 0;
    color: var(--bronze-light);
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.gallery-showcase__title {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.98;
}

.gallery-showcase__text {
    margin: 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.gallery-showcase__cta {
    margin: 10px 0 0;
}

.gallery-showcase__visual {
    display: grid;
    align-items: start;
    gap: 18px;
}

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

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

.gallery-showcase__visual--columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-showcase__column {
    display: grid;
    gap: 18px;
    align-content: start;
}

.gallery-showcase__column--1 {
    padding-top: 54px;
    padding-bottom: 12px;
}

.gallery-showcase__column--2 {
    padding-top: 0;
    padding-bottom: 64px;
}

.gallery-showcase__column--3 {
    padding-top: 96px;
    padding-bottom: 0;
}

.gallery-showcase__item {
    position: relative;
}

.gallery-showcase__media {
    position: relative;
    overflow: hidden;
    background: #0b0b0b;
}

.gallery-showcase__link {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 4.7;
    cursor: zoom-in;
}

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

.gallery-showcase__item--portrait .gallery-showcase__link {
    aspect-ratio: 4 / 5.3;
}

.gallery-showcase__item--medium .gallery-showcase__link {
    aspect-ratio: 4 / 4.5;
}

.gallery-showcase__item--square .gallery-showcase__link {
    aspect-ratio: 1 / 1;
}

.gallery-showcase__item--landscape .gallery-showcase__link {
    aspect-ratio: 4 / 3.15;
}

.gallery-showcase__item:hover .gallery-showcase__image,
.gallery-showcase__item:focus-within .gallery-showcase__image {
    transform: scale(1.04);
}

.gallery-showcase__badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    color: var(--text-main);
    text-decoration: none;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(226, 209, 163, 0.18);
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    z-index: 2;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox__dialog {
    position: relative;
    width: min(1320px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.gallery-lightbox__figure {
    position: relative;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.gallery-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 210px);
    height: auto;
    object-fit: contain;
    background: #0b0b0b;
}

.gallery-lightbox__meta {
    width: min(880px, 100%);
    display: grid;
    gap: 8px;
    text-align: center;
}

.gallery-lightbox__title {
    margin: 0;
    color: var(--text-main);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 0.98;
}

.gallery-lightbox__caption {
    margin: 0;
    color: #d9c8a0;
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.gallery-lightbox__nav {
    width: 52px;
    height: 52px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 200, 160, 0.75);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.82);
    color: #d9c8a0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
    background: rgba(24, 24, 24, 0.94);
    border-color: rgba(217, 200, 160, 0.95);
    transform: translateY(-1px);
}

.gallery-lightbox__nav[hidden] {
    display: none !important;
}

.gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(217, 200, 160, 0.75);
    border-radius: 999px;
    background: rgba(14, 14, 14, 0.82);
    color: #d9c8a0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
    background: rgba(24, 24, 24, 0.94);
    border-color: rgba(217, 200, 160, 0.95);
}

.gallery-lightbox__icon {
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-lightbox__icon--arrow {
    width: 14px;
    height: 24px;
}

body.is-gallery-lightbox-open {
    overflow: hidden;
}

.delivery-showcase {
    background: linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.delivery-showcase__grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.94fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.delivery-showcase__content {
    max-width: 560px;
    justify-self: end;
}

.delivery-showcase__text {
    margin-top: 18px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

.delivery-showcase__text p {
    margin: 0;
}

.delivery-showcase__trigger {
    margin-top: 28px;
}

.delivery-showcase__media {
    overflow: hidden;
    border: 1px solid rgba(226, 209, 163, 0.14);
}

.delivery-showcase__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .quick-actions__grid,
    .signature-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-events__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-showcase__layout,
    .about-story__grid,
    .delivery-showcase__grid,
    .home-lunch__panel {
        grid-template-columns: 1fr;
    }

    .about-story__media,
    .delivery-showcase__media,
    .home-lunch__media {
        min-height: 0;
    }

    .delivery-showcase__content {
        max-width: 100%;
        justify-self: start;
    }

    .gallery-showcase__content {
        max-width: 100%;
        align-self: start;
        align-content: start;
    }
}

@media (max-width: 1024px) {
    .home-quick-actions {
        padding-bottom: 56px;
    }

    .home-quick-actions__panel {
        margin-top: -96px;
        padding: 34px 30px;
    }

    .signature-menu {
        --signature-menu-card-width: calc((100% - var(--signature-menu-gap)) / 2);
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding: 190px 0 120px;
    }

    .hero .hero-summary {
        font-size: 17px;
    }

    .home-section-heading--split {
        grid-template-columns: 1fr;
    }

    .quick-actions__grid,
    .home-events__grid,
    .signature-menu__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-showcase__visual--columns-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-showcase__column {
        padding-top: 0;
        padding-bottom: 0;
    }

    .gallery-showcase__column--3 {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__dialog {
        width: min(100%, calc(100vw - 32px));
        max-height: calc(100vh - 32px);
    }

    .home-lunch__panel {
        padding: 24px;
    }

    .home-lunch {
        padding-top: 56px;
    }

    .home-lunch__gallery {
        --home-lunch-gallery-card-width: 240px;
    }

    .about-story__media {
        min-height: 680px;
    }

    .salonek-highlight__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .salonek-highlight__content {
        max-width: 100%;
    }

    .salonek-highlight__image {
        aspect-ratio: 16 / 10;
    }

    .salonek-modal__contact-link {
        min-width: 100%;
    }

    .about-story__frame--primary {
        inset: -28px auto auto 0;
        width: calc(100% - 72px);
        aspect-ratio: 3 / 4;
    }

    .about-story__frame--secondary {
        inset: 242px 0 0 132px;
        aspect-ratio: 1 / 1;
    }

    .celebrations__row--top {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    }

    .celebrations__row--bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .celebrations__cta-panel {
        grid-column: 1 / -1;
        justify-items: center;
        text-align: center;
        min-height: 0;
    }
}

@media (max-width: 680px) {
    .home-quick-actions {
        padding-bottom: 40px;
    }

    .home-quick-actions__panel {
        margin-top: -56px;
        padding: 26px 22px;
    }

    .signature-menu {
        --signature-menu-gap: 16px;
        --signature-menu-card-width: 100%;
    }

    .hero {
        padding: 170px 0 96px;
    }

    .hero-big-logo {
        width: min(300px, 70vw);
        transform: translateY(-6px);
    }

    .hero h1 {
        font-size: clamp(42px, 14vw, 58px);
    }

    .hero-ctas {
        flex-direction: column;
        gap: 14px;
    }

    .quick-actions__grid,
    .home-events__grid,
    .signature-menu__grid,
    .salonek-highlight__benefits,
    .celebrations__row--top,
    .celebrations__row--bottom {
        grid-template-columns: 1fr;
    }

    .gallery-showcase__visual,
    .gallery-showcase__visual--columns-2,
    .gallery-showcase__visual--columns-3,
    .gallery-showcase__column--3 {
        grid-template-columns: 1fr;
    }

    .quick-actions__card {
        min-height: 0;
    }

    .signature-menu__controls {
        width: 100%;
        justify-content: flex-end;
        margin-bottom: 14px;
    }

    .signature-menu__viewport::after {
        width: 44px;
    }

    .signature-menu__nav {
        width: 38px;
        height: 38px;
    }

    .home-lunch__panel {
        padding: 20px;
    }

    .home-lunch {
        padding-top: 40px;
    }

    .home-lunch__gallery {
        --home-lunch-gallery-gap: 14px;
        --home-lunch-gallery-card-width: min(72vw, 240px);
    }

    .home-lunch__gallery-controls {
        margin-bottom: 12px;
    }

    .home-lunch__gallery-nav {
        width: 38px;
        height: 38px;
    }

    .home-lunch__gallery-viewport::after {
        width: 40px;
    }

    .about-story__media {
        min-height: 500px;
    }

    .salonek-highlight__actions {
        flex-direction: column;
    }

    .salonek-highlight__actions .secondary-btn,
    .salonek-highlight__actions .bronze-btn {
        width: 100%;
    }

    .salonek-highlight__reserve {
        margin-left: 0;
    }

    .salonek-highlight__more-link {
        margin-left: 0;
    }

    .salonek-modal__contact-link {
        align-items: flex-start;
    }

    .salonek-modal__contact-value {
        font-size: 16px;
    }

    .about-story__frame--primary {
        inset: -18px auto auto 0;
        width: calc(100% - 32px);
        aspect-ratio: 3 / 4;
    }

    .about-story__frame--secondary {
        inset: 212px 0 0 88px;
    }

    .celebrations__content,
    .celebrations__cta-panel {
        min-height: 0;
    }

    .celebrations__cta-panel {
        justify-items: stretch;
        text-align: left;
    }

    .gallery-lightbox__dialog {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-lightbox__figure {
        width: min(100%, calc(100vw - 32px));
        max-height: calc(100vh - 32px);
    }

    .gallery-lightbox__image {
        max-height: calc(100vh - 210px);
    }

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

    .gallery-lightbox__nav {
        width: 46px;
        height: 46px;
        font-size: 32px;
    }
}
