/* ==========================================================================
   Heaven's Garden — inner pages
   Shared chrome for every non-home page: the masthead, section rhythm and the
   card/grid primitives the individual pages compose. Depends on css/ui.css.
   ========================================================================== */

.hgp {
    background: var(--paper);
}

/* ---------- page masthead ---------------------------------------------- */

.hgp-head {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(210px, 28vh, 330px);
    padding-block: clamp(34px, 4vw, 60px);
    background: var(--ink);
    color: #fff;
    overflow: hidden;
}

.hgp-head__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hgp-head__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
}

.hgp-head__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(8, 6, 5, .72) 0%, rgba(8, 6, 5, .2) 40%, rgba(8, 6, 5, 0) 60%),
            linear-gradient(180deg, rgba(8, 6, 5, 0) 30%, rgba(8, 6, 5, .55) 75%, rgba(8, 6, 5, .85) 100%);
}

/* width comes from .hg-shell — do not set it here, that override is what
   pushed the masthead flush against the viewport edge */
.hgp-head__inner {
    position: relative;
    z-index: 2;
}

.hgp-head__title {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 3.4vw, 50px);
    line-height: 1;
    letter-spacing: -.015em;
    color: #fff;
    margin: clamp(14px, 2vw, 24px) 0 0;
}

.hgp-head__lede {
    font-family: var(--sans);
    font-size: clamp(14px, 1vw, 17px);
    line-height: 1.8;
    color: rgba(255, 255, 255, .78);
    max-width: 52ch;
    margin: clamp(14px, 1.6vw, 22px) 0 0;
}

/* breadcrumb */
.hgp-crumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 12px;
    margin: 0 0 clamp(16px, 2vw, 26px);
    padding: 0;
    list-style: none;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
}

.hgp-crumbs li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hgp-crumbs li + li::before {
    content: "/";
    color: rgba(255, 255, 255, .28);
    font-weight: 400;
    letter-spacing: 0;
}

.hgp-crumbs a {
    color: inherit;
    text-decoration: none;
    transition: color .3s var(--e-out);
}

.hgp-crumbs a:hover {
    color: var(--gold-lt);
}

.hgp-crumbs [aria-current] {
    color: var(--gold-lt);
}

/* ---------- section rhythm ---------------------------------------------- */

.hgp-sec {
    padding-block: var(--section-y);
}

/* the first section sits directly under the masthead, which already carries
   plenty of air — a full section pad on top of it reads as a dead gap */
.hgp-head + .hgp-sec {
    padding-top: clamp(44px, 5vw, 88px);
}

.hgp-sec--tight {
    padding-block: clamp(48px, 6vw, 100px);
}

.hgp-sec--sand {
    background: var(--sand);
}

.hgp-sec--ink {
    background: var(--ink);
    color: #fff;
}

.hgp-sec--ink .hg-h2,
.hgp-sec--ink .hgp-prose {
    color: #fff;
}

/* ---------- long-form copy ---------------------------------------------- */

.hgp-prose {
    font-family: var(--sans);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.85;
    color: var(--body);
    max-width: 74ch;
}

.hgp-prose > :first-child {
    margin-top: 0;
}

.hgp-prose p {
    margin: 0 0 1.15em;
}

.hgp-prose h2,
.hgp-prose h3,
.hgp-prose h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin: 1.8em 0 .6em;
}

.hgp-prose h2 { font-size: clamp(24px, 2.4vw, 38px); }
.hgp-prose h3 { font-size: clamp(20px, 1.8vw, 28px); }
.hgp-prose h4 { font-size: clamp(17px, 1.4vw, 22px); }

.hgp-prose ul,
.hgp-prose ol {
    margin: 0 0 1.15em 1.3em;
    padding: 0;
}

.hgp-prose li {
    margin-bottom: .5em;
}

.hgp-prose ul {
    list-style: none;
    margin-left: 0;
}

.hgp-prose ul > li {
    position: relative;
    padding-left: 1.6em;
}

.hgp-prose ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 1px;
    background: var(--gold);
}

.hgp-prose a {
    color: var(--gold-dk);
    text-underline-offset: 3px;
}

.hgp-prose img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.6em 0;
}

.hgp-prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.4em 0;
    font-size: 15px;
}

.hgp-prose th,
.hgp-prose td {
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
    text-align: left;
}

.hgp-prose th {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

/* ---------- empty state -------------------------------------------------- */

.hgp-empty {
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 30px);
    color: var(--body);
    text-align: center;
    padding: clamp(48px, 8vw, 110px) 0;
}

@media (max-width: 760px) {
    .hgp-head {
        min-height: clamp(180px, 24vh, 250px);
    }
}

/* ==========================================================================
   ROOMS — a plain, scannable card grid
   ========================================================================== */

.hgr-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.4vw, 38px);
}

.hgr-card {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line);
    transition: border-color .4s var(--e-out), box-shadow .4s var(--e-out), transform .4s var(--e-out);
}

.hgr-card:hover {
    border-color: var(--line-gold);
    box-shadow: 0 22px 44px -28px rgba(22, 18, 14, .38);
    transform: translateY(-3px);
}

/* ---------- media ------------------------------------------------------- */

.hgr-gal {
    position: relative;
}

.hgr-gal__frame {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand-2);
}

.hgr-gal__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .5s var(--e-out);
}

.hgr-gal__img.is-active {
    opacity: 1;
}

.hgr-gal__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 38px;
    height: 38px;
    margin-top: -19px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(16, 13, 10, .34);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .35s var(--e-out), background-color .35s var(--e-out),
    border-color .35s var(--e-out), color .35s var(--e-out);
}

.hgr-gal__nav svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.hgr-gal__nav--prev { left: 10px; }
.hgr-gal__nav--next { right: 10px; }

.hgr-card:hover .hgr-gal__nav,
.hgr-gal:focus-within .hgr-gal__nav {
    opacity: 1;
}

.hgr-gal__nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.hgr-gal__count {
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 3;
    margin: 0;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .08em;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.hgr-gal__count b { font-weight: 500; color: var(--gold-lt); }
.hgr-gal__count span { opacity: .5; }
.hgr-gal__count i { font-style: normal; opacity: .75; }

/* dots rather than a thumbnail strip — less furniture inside a card */
.hgr-gal__dots {
    position: absolute;
    left: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 6px;
}

.hgr-gal__dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background-color .3s var(--e-out), transform .3s var(--e-out);
}

.hgr-gal__dot.is-active {
    background: var(--gold-lt);
    transform: scale(1.25);
}

/* ---------- card copy ---------------------------------------------------- */

.hgr-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: clamp(18px, 1.7vw, 26px);
}

.hgr-card__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
}

.hgr-card__size {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--body);
    white-space: nowrap;
}

.hgr-card__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(21px, 1.55vw, 27px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 12px;
}

.hgr-card__desc {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--body);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hgr-card__desc p { margin: 0; }

/* ---------- rates -------------------------------------------------------- */

.hgr-rates {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 6px 22px;
    padding: 14px 0 0;
    border-top: 1px solid var(--line-gold);
    margin-top: auto;
}

.hgr-rate {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.hgr-rate__label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-dk);
    white-space: nowrap;
}

.hgr-rate__amount {
    display: flex;
    align-items: baseline;
    gap: .3em;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(21px, 1.55vw, 27px);
    line-height: 1.1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.hgr-rate__amount i {
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgr-rate--peak .hgr-rate__amount {
    color: var(--gold-dk);
}

.hgr-card__unit {
    width: 100%;
    font-family: var(--sans);
    font-size: 11.5px;
    color: var(--body);
    margin: 2px 0 0;
}

.hgr-card__cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}

.hgr-card__cta .hg-btn {
    flex: 1 1 auto;
    padding-inline: 1.2em;
}

.hgr-card__more {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid var(--line-gold);
    padding-bottom: 3px;
    transition: color .3s var(--e-out), border-color .3s var(--e-out);
}

.hgr-card__more:hover {
    color: var(--gold-dk);
    border-color: var(--gold);
}

.hgr-pagination {
    margin-top: clamp(34px, 4vw, 60px);
    display: flex;
    justify-content: center;
}

@media (max-width: 1100px) {
    .hgr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hgr-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hgr-gal__nav {
        opacity: 1;
    }
}

/* ==========================================================================
   ROOM DETAIL — gallery + copy, with a sticky booking rail
   ========================================================================== */

.hgv-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
    gap: clamp(28px, 3.4vw, 60px);
    align-items: start;
}

/* ---------- gallery ------------------------------------------------------ */

.hgv-gal__frame {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--sand-2);
}

.hgv-gal__img {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s var(--e-out), visibility .5s var(--e-out);
    cursor: zoom-in;
}

.hgv-gal__img.is-active {
    opacity: 1;
    visibility: visible;
}

.hgv-gal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hgv-gal__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(16, 13, 10, .34);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background-color .35s var(--e-out), border-color .35s var(--e-out), color .35s var(--e-out);
}

.hgv-gal__nav svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.hgv-gal__nav--prev { left: 14px; }
.hgv-gal__nav--next { right: 14px; }

.hgv-gal__nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.hgv-gal__count {
    position: absolute;
    right: 14px;
    bottom: 12px;
    z-index: 3;
    margin: 0;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    color: #fff;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.hgv-gal__count b { font-weight: 500; color: var(--gold-lt); }
.hgv-gal__count span { opacity: .5; margin: 0 3px; }
.hgv-gal__count i { font-style: normal; opacity: .75; }

.hgv-gal__thumbs {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.hgv-gal__thumbs::-webkit-scrollbar { display: none; }

.hgv-gal__thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    min-width: 72px;
    padding: 0;
    border: 0;
    background: var(--sand-2);
    overflow: hidden;
    cursor: pointer;
    opacity: .55;
    transition: opacity .35s var(--e-out);
}

.hgv-gal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hgv-gal__thumb::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .4s var(--e-out);
}

.hgv-gal__thumb:hover { opacity: .8; }
.hgv-gal__thumb.is-active { opacity: 1; }
.hgv-gal__thumb.is-active::after { transform: scaleX(1); }

/* ---------- copy --------------------------------------------------------- */

.hgv-body {
    margin-top: clamp(28px, 3.2vw, 48px);
}

.hgv-h2 {
    margin-bottom: clamp(14px, 1.6vw, 22px);
}

.hgv-amen {
    margin-top: clamp(28px, 3.2vw, 48px);
    padding-top: clamp(24px, 2.6vw, 36px);
    border-top: 1px solid var(--line-gold);
}

.hgv-amen__title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin: 0 0 clamp(16px, 1.8vw, 24px);
}

.hgv-amen__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgv-amen__grid li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--sans);
    font-size: 14.5px;
    color: var(--ink-2);
}

.hgv-amen__grid svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
}

/* ---------- booking rail -------------------------------------------------- */

.hgv-side {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2vw, 28px);
    min-width: 0;
}

.hgv-book {
    position: sticky;
    top: calc(var(--header-h, 88px) + 20px);
    background: var(--sand);
    border: 1px solid var(--line-gold);
    padding: clamp(20px, 2vw, 28px);
}

.hgv-book__size {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line-gold);
}

.hgv-book__size span {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgv-book__size b {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 20px;
    color: var(--ink);
}

.hgv-book__rates {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 26px;
}

.hgv-rate {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hgv-rate__label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-dk);
    white-space: nowrap;
}

.hgv-rate__amount {
    display: flex;
    align-items: baseline;
    gap: .3em;
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(22px, 1.7vw, 28px);
    line-height: 1.1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.hgv-rate__amount i {
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgv-rate--peak .hgv-rate__amount { color: var(--gold-dk); }

.hgv-book__unit {
    width: 100%;
    margin: 4px 0 0;
    font-family: var(--sans);
    font-size: 11.5px;
    color: var(--body);
}

.hgv-book__cta {
    width: 100%;
    margin-top: 18px;
}

.hgv-book__phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 11px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line-gold);
    border-radius: 2px;
    font-variant-numeric: tabular-nums;
    transition: background-color .35s var(--e-out), color .35s var(--e-out);
}

.hgv-book__phone svg {
    width: 15px;
    height: 15px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.hgv-book__phone:hover {
    background: var(--paper);
    color: var(--gold-dk);
}

.hgv-book__note {
    margin: 14px 0 0;
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--body);
}

/* ---------- other rooms --------------------------------------------------- */

.hgv-others__title {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin: 0 0 14px;
}

.hgv-others ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.hgv-others li {
    border-bottom: 1px solid var(--line);
}

.hgv-others a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    text-decoration: none;
    color: var(--ink);
    transition: color .3s var(--e-out);
}

.hgv-others__thumb {
    flex: 0 0 62px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sand-2);
}

.hgv-others__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--e-out);
}

.hgv-others a:hover .hgv-others__thumb img { transform: scale(1.07); }

.hgv-others__name {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.25;
}

.hgv-others a svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.6;
    transition: transform .35s var(--e-out);
}

.hgv-others a:hover { color: var(--gold-dk); }
.hgv-others a:hover svg { transform: translateX(3px); }

@media (max-width: 900px) {
    .hgv-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hgv-book {
        position: static !important;
    }

    .hgv-gal__frame {
        aspect-ratio: 3 / 2;
    }
}

/* ==========================================================================
   SERVICES — informational card grid (no detail route exists for these)
   ========================================================================== */

.hgs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(20px, 2.2vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgs-card {
    display: flex;
    flex-direction: column;
}

.hgs-card__media {
    position: relative;
}

.hgs-card__media img {
    transition: transform 1s var(--e-out);
}

.hgs-card:hover .hgs-card__media img {
    transform: scale(1.06);
}

.hgs-card__num {
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    color: var(--gold-lt);
    font-variant-numeric: tabular-nums;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.hgs-card__body {
    padding-top: clamp(12px, 1.2vw, 18px);
}

.hgs-card__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(19px, 1.4vw, 24px);
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 7px;
}

.hgs-card__text {
    font-family: var(--sans);
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--body);
    margin: 0;
}

/* closing call to action */
.hgs-cta__lede {
    margin: clamp(10px, 1.2vw, 16px) 0 0;
}

.hgs-cta__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    margin-top: clamp(20px, 2.4vw, 32px);
}

@media (max-width: 1200px) {
    .hgs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .hgs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
    .hgs-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==========================================================================
   RESTAURANT — menu pages + photo grid, both fancybox groups
   ========================================================================== */

.hgt-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: clamp(20px, 2.4vw, 34px);
}

/* ---------- menu pages (portrait scans) ---------------------------------- */

.hgt-menu {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

/* The scans are all 1170x2080, so the box matches the source ratio and the
   whole page is visible — these are meant to be read, not cropped.
   `contain` guards the ratio in case a future upload differs. */
.hgt-menu__card {
    position: relative;
    display: block;
    aspect-ratio: 1170 / 2080;
    overflow: hidden;
    background: var(--sand-2);
    cursor: zoom-in;
    border: 1px solid var(--line);
    transition: border-color .4s var(--e-out), transform .4s var(--e-out), box-shadow .4s var(--e-out);
}

.hgt-menu__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform .9s var(--e-out);
}

.hgt-menu__card:hover {
    border-color: var(--line-gold);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -26px rgba(22, 18, 14, .4);
}

.hgt-menu__card:hover img {
    transform: scale(1.04);
}

.hgt-menu__zoom {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    background: rgba(22, 18, 14, .42);
    opacity: 0;
    transition: opacity .35s var(--e-out);
}

.hgt-menu__zoom svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-lt);
    fill: none;
    stroke-width: 1.4;
}

.hgt-menu__card:hover .hgt-menu__zoom,
.hgt-menu__card:focus-visible .hgt-menu__zoom {
    opacity: 1;
}

/* ---------- photo grid ---------------------------------------------------- */

.hgt-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgt-grid__item.is-hidden {
    display: none;
}

.hgt-tile {
    display: block;
    cursor: zoom-in;
}

.hgt-tile img {
    transition: transform .9s var(--e-out), filter .5s var(--e-out);
}

.hgt-tile:hover img {
    transform: scale(1.07);
}

.hgt-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(22, 18, 14, .28);
    opacity: 0;
    transition: opacity .35s var(--e-out);
}

.hgt-tile:hover::after,
.hgt-tile:focus-visible::after {
    opacity: 1;
}

.hgt-more {
    display: flex;
    justify-content: center;
    margin-top: clamp(24px, 3vw, 40px);
}

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

@media (max-width: 680px) {
    .hgt-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hgt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ==========================================================================
   GALLERY — photo grid + guest reviews
   ========================================================================== */

.hgg-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 16px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgg-grid__item.is-hidden {
    display: none;
}

/* ---------- reviews ------------------------------------------------------ */

.hgg-reviews__lede {
    margin: clamp(6px, .8vw, 12px) 0 clamp(24px, 3vw, 40px);
}

.hgg-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(18px, 2.2vw, 32px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgg-quote {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    border: 1px solid var(--line-gold);
    padding: clamp(24px, 2.6vw, 38px);
}

.hgg-quote__mark {
    width: 30px;
    height: 22px;
    fill: var(--gold);
    opacity: .35;
    margin-bottom: clamp(14px, 1.6vw, 20px);
}

.hgg-quote__text {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.55;
    color: var(--ink);
    margin: 0;
    flex: 1 1 auto;
}

.hgg-quote__name {
    margin: clamp(16px, 1.8vw, 24px) 0 0;
    padding-top: clamp(12px, 1.4vw, 18px);
    border-top: 1px solid var(--line);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

@media (max-width: 1000px) {
    .hgg-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .hgg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ==========================================================================
   CONTACTS — details beside the map
   ========================================================================== */

.hgc-grid {
    display: grid;
    grid-template-columns: minmax(0, 4.2fr) minmax(0, 7.8fr);
    gap: clamp(28px, 3.4vw, 60px);
    align-items: start;
}

.hgc-info {
    display: flex;
    flex-direction: column;
}

.hgc-block {
    padding-bottom: clamp(18px, 2vw, 26px);
    margin-bottom: clamp(18px, 2vw, 26px);
    border-bottom: 1px solid var(--line);
}

.hgc-block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hgc-block--cta {
    padding-top: 4px;
}

.hgc-block__label {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin: 0 0 12px;
}

.hgc-block__value {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(19px, 1.5vw, 25px);
    line-height: 1.35;
    color: var(--ink);
    margin: 0;
}

.hgc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hgc-list a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 6px 0;
    font-family: var(--sans);
    font-size: 15.5px;
    color: var(--ink);
    text-decoration: none;
    font-variant-numeric: tabular-nums;
    transition: color .3s var(--e-out);
}

.hgc-list svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.hgc-list a:hover {
    color: var(--gold-dk);
}

.hgc-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.hgc-social a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-gold);
    border-radius: 50%;
    transition: background-color .35s var(--e-out), border-color .35s var(--e-out);
}

.hgc-social .hg-footer__mark {
    width: 17px;
    height: 17px;
    fill: var(--gold-dk);
    transition: fill .35s var(--e-out);
}

.hgc-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hgc-social a:hover .hg-footer__mark {
    fill: var(--ink);
}

.hgc-social i {
    font-size: 17px;
    color: var(--gold-dk);
}

/* ---------- map ---------------------------------------------------------- */

.hgc-map__tabs {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
}

.hgc-map__tab {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--body);
    background: none;
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 10px 18px;
    cursor: pointer;
    transition: color .3s var(--e-out), border-color .3s var(--e-out), background-color .3s var(--e-out);
}

.hgc-map__tab:hover {
    color: var(--gold-dk);
    border-color: var(--line-gold);
}

.hgc-map__tab.is-active {
    color: var(--ink);
    background: var(--sand);
    border-color: var(--gold);
}

.hgc-map__panel {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--sand-2);
    overflow: hidden;
}

.hgc-map__panel[hidden] {
    display: none;
}

.hgc-map__panel iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hgc-route {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px 20px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-gold);
}

.hgc-route__label {
    margin: 0;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgc-route__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hgc-route__btn {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line-gold);
    border-radius: 2px;
    padding: 10px 18px;
    transition: background-color .3s var(--e-out), color .3s var(--e-out);
}

.hgc-route__btn:hover {
    background: var(--gold);
    color: var(--ink);
}

@media (max-width: 900px) {
    .hgc-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hgc-map__panel {
        aspect-ratio: 4 / 3;
    }
}

/* ==========================================================================
   BOOKING — form beside a live summary
   ========================================================================== */

.hgb-grid {
    display: grid;
    grid-template-columns: minmax(0, 7.5fr) minmax(0, 4.5fr);
    gap: clamp(28px, 3.4vw, 56px);
    align-items: start;
}

.hgb-main { min-width: 0; }

.hgb-alert {
    background: #fdf3f2;
    border: 1px solid #e3bdb7;
    padding: 16px 18px;
    margin-bottom: clamp(20px, 2.4vw, 30px);
    font-family: var(--sans);
    font-size: 14px;
    color: #8d3b32;
}

.hgb-alert ul { margin: 8px 0 0 18px; padding: 0; }

.hgb-set {
    border: 0;
    padding: 0;
    margin: 0 0 clamp(26px, 3vw, 42px);
}

.hgb-set__title {
    display: block;
    width: 100%;
    float: none;
    padding: 0 0 12px;
    margin: 0 0 clamp(16px, 1.8vw, 24px);
    border-bottom: 1px solid var(--line-gold);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgb-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: clamp(14px, 1.6vw, 22px);
    margin-bottom: clamp(14px, 1.6vw, 22px);
}

.hgb-row:last-child { margin-bottom: 0; }

.hgb-field {
    flex: 1 1 190px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.hgb-field--wide { flex: 1 1 100%; }
.hgb-field--sm   { flex: 1 1 150px; }

/* Reserve two lines for every label and sit the text on the bottom of that
   box. Translations vary in length — "Количество взрослых" wraps where
   "Check-in" does not — and without a fixed track the inputs in a row end up
   at different heights. */
.hgb-label {
    display: flex;
    align-items: flex-end;
    min-height: 2.6em;
    line-height: 1.3;
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgb-input {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 12px 14px;
    width: 100%;
    min-width: 0;
    transition: border-color .3s var(--e-out), box-shadow .3s var(--e-out);
}

.hgb-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(191, 153, 72, .16);
}

select.hgb-input {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-dk) 50%),
    linear-gradient(135deg, var(--gold-dk) 50%, transparent 50%);
    background-position: right 18px center, right 13px center;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.hgb-err {
    font-family: var(--sans);
    font-size: 12.5px;
    color: #b4463a;
}

/* ---------- summary ------------------------------------------------------- */

.hgb-side { min-width: 0; }

.hgb-sum {
    position: sticky;
    top: calc(var(--header-h, 88px) + 20px);
    background: var(--sand);
    border: 1px solid var(--line-gold);
}

.hgb-sum__media {
    background: var(--sand-2);
}

.hgb-sum__body {
    padding: clamp(18px, 2vw, 26px);
}

.hgb-sum__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(21px, 1.6vw, 27px);
    line-height: 1.15;
    color: var(--ink);
    margin: 0;
}

.hgb-sum__size {
    margin: 6px 0 0;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--body);
}

.hgb-sum__size:empty { display: none; }

.hgb-sum__rows {
    margin: clamp(16px, 1.8vw, 22px) 0 0;
    padding: clamp(14px, 1.6vw, 18px) 0 0;
    border-top: 1px solid var(--line-gold);
}

.hgb-sum__rows > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
}

.hgb-sum__rows dt {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 400;
    color: var(--body);
}

.hgb-sum__rows dd {
    margin: 0;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.hgb-sum__total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin: clamp(12px, 1.4vw, 16px) 0 0;
    padding-top: clamp(12px, 1.4vw, 16px);
    border-top: 1px solid var(--line-gold);
}

.hgb-sum__total span {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgb-sum__total b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(22px, 1.8vw, 30px);
    line-height: 1.1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.hgb-sum__submit {
    width: 100%;
    margin-top: clamp(16px, 1.8vw, 22px);
}

.hgb-sum__note {
    margin: 12px 0 0;
    font-family: var(--sans);
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--body);
}

@media (max-width: 900px) {
    .hgb-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hgb-side { order: -1; }

    .hgb-sum {
        position: static;
    }

    .hgb-sum__media { display: none; }
}

/* ==========================================================================
   BOOKING CONFIRMATION
   ========================================================================== */

.hgk-card {
    max-width: 620px;
    margin-inline: auto;
    background: var(--sand);
    border: 1px solid var(--line-gold);
    padding: clamp(28px, 3.4vw, 52px);
    text-align: center;
}

.hgk-check {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto clamp(16px, 2vw, 24px);
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: var(--paper);
}

.hgk-check svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-dk);
    fill: none;
    stroke-width: 1.8;
}

.hgk-no {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0 0 clamp(12px, 1.4vw, 18px);
}

.hgk-no span {
    font-family: var(--sans);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold-dk);
}

.hgk-no b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

.hgk-lede {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin: 0 auto;
    max-width: 44ch;
}

.hgk-rows {
    margin: clamp(22px, 2.6vw, 34px) 0 0;
    padding: 0;
    text-align: left;
    border-top: 1px solid var(--line-gold);
}

.hgk-rows > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.hgk-rows dt {
    font-family: var(--sans);
    font-size: 12.5px;
    color: var(--body);
    flex: 0 0 auto;
}

.hgk-rows dd {
    margin: 0;
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    text-align: right;
    min-width: 0;
    overflow-wrap: anywhere;
}

.hgk-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.8vw, 26px);
    margin-top: clamp(22px, 2.6vw, 34px);
}

.hgk-print {
    font-family: var(--sans);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    background: none;
    border: 1px solid var(--line-gold);
    border-radius: 2px;
    padding: 1.05em 1.6em;
    cursor: pointer;
    transition: background-color .3s var(--e-out), color .3s var(--e-out);
}

.hgk-print:hover {
    background: var(--gold);
    color: var(--ink);
}

/* the printed sheet is the booking record, not the web page */
.hgk-paper {
    display: none;
}

@media print {
    .hgp-head,
    .hgk-actions,
    .hgk-check {
        display: none !important;
    }

    .hgp-sec {
        padding: 0 !important;
    }

    .hgk-paper {
        display: block;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 2px solid #000;
    }

    .hgk-paper__brand {
        font-family: var(--serif);
        font-size: 22pt;
        font-weight: 600;
        margin: 0;
    }

    .hgk-paper__title {
        font-family: var(--sans);
        font-size: 10pt;
        letter-spacing: .14em;
        text-transform: uppercase;
        margin: 4px 0 0;
    }

    .hgk-card {
        border: 0;
        background: none !important;
        max-width: none;
        padding: 0;
        text-align: left;
    }

    .hgk-no {
        align-items: flex-start;
        margin-bottom: 14px;
    }

    .hgk-no b {
        font-size: 20pt;
    }

    .hgk-lede {
        margin: 0;
        max-width: none;
        font-size: 10pt;
    }

    .hgk-rows {
        margin-top: 16px;
        border-top: 1px solid #000;
    }

    .hgk-rows > div {
        padding: 7px 0;
        border-bottom: 1px solid #bbb;
        page-break-inside: avoid;
    }

    .hgk-rows dt,
    .hgk-rows dd {
        font-size: 10.5pt;
        color: #000 !important;
    }
}
