/* ============================================================
   Hotel service — variant 2 "The Menu Card"
   The page is a printed room-service card: double-ruled frame,
   centred menu typography, no photography.
   ============================================================ */

.v2-wrap {
    /* Top air comes from the subpage layout (same offset below the nav
       rule as every other page); the wrap adds none of its own. */
    padding: 0 1.25rem clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
}

.v2-card {
    position: relative;
    max-width: 680px;
    margin-inline: auto;
    background: var(--lr-surface);
    border: 1px solid var(--lr-line);
    box-shadow: var(--lr-shadow);
    padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.5rem, 6vw, 4rem);
}

/* the inner rule of the double frame */
.v2-card::before {
    content: "";
    position: absolute;
    inset: 13px;
    border: 1px solid var(--lr-line);
    pointer-events: none;
}

.v2-rose {
    color: var(--lr-rose);
    margin-bottom: 1rem;
}

.v2-rose svg {
    width: 34px;
    height: 34px;
}

.v2-house {
    font-family: "Jost", sans-serif;
    font-size: .72rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--lr-muted);
    margin-bottom: 1.4rem;
}

.v2-title {
    font-size: clamp(2.3rem, 5.5vw, 3.4rem);
    font-weight: 500;
    letter-spacing: .01em;
    margin-bottom: .45rem;
}

.v2-title em {
    font-style: italic;
    color: var(--lr-rose);
}

.v2-tag {
    font-style: italic;
    font-size: 1.12rem;
    color: var(--lr-muted);
    margin-bottom: 0;
}

.v2-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: clamp(1.75rem, 4vw, 2.5rem) auto;
    max-width: 300px;
    color: var(--lr-rose);
}

.v2-rule::before,
.v2-rule::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--lr-line);
}

.v2-rule span {
    letter-spacing: .4em;
    font-size: .8rem;
    transform: translateX(.2em); /* optical centring of the dot group */
}

/* --- The menu proper --- */

.v2-menu {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.9rem;
    max-width: 30em;
}

.v2-menu li + li {
    margin-top: 1.5rem;
}

.v2-menu h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .15rem;
}

.v2-menu p {
    font-style: italic;
    color: var(--lr-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.v2-prices {
    font-family: "Jost", sans-serif;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--lr-rose);
    max-width: 30em;
    margin: 0 auto;
    line-height: 2;
}

/* --- How to order --- */

.v2-order-title {
    font-family: "Jost", sans-serif;
    font-size: .8rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--lr-ink);
    margin-bottom: 1.4rem;
}

.v2-order ol {
    list-style: none;
    counter-reset: v2-step;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 24em;
    text-align: left;
}

.v2-order ol li {
    counter-increment: v2-step;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.55;
}

.v2-order ol li + li {
    margin-top: .8rem;
}

.v2-order ol li::before {
    content: counter(v2-step);
    position: absolute;
    left: 0;
    top: .08em;
    width: 1.6rem;
    height: 1.6rem;
    display: grid;
    place-items: center;
    font-family: "Jost", sans-serif;
    font-size: .8rem;
    color: var(--lr-rose);
    border: 1px solid var(--lr-line);
    border-radius: 50%;
}

.v2-foot {
    margin-top: clamp(1.9rem, 4vw, 2.6rem);
    font-family: "Jost", sans-serif;
    font-size: .7rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--lr-muted);
}
