:root {
    --v2-bg: #fbfaf7;
    --v2-surface: #ffffff;
    --v2-ink: #221c17;
    --v2-muted: #6d665e;
    --v2-line: rgba(34, 28, 23, 0.12);
    --v2-line-strong: rgba(84, 111, 69, 0.45);
    --v2-olive: #556f40;
    --v2-olive-deep: #425933;
    --v2-olive-soft: #dde5d6;
    --v2-dark: #23201f;
    --v2-dark-soft: #2b2726;
    --v2-booking-panel: rgba(38, 55, 40, 0.21);
    --v2-booking-white: #ffffff;
    --v2-booking-accent: #49643b;
    --v2-booking-text: #818181;
    --v2-booking-field: #fff4f4;
    --v2-booking-line: rgba(255, 244, 244, 0.1);
    --v2-shadow: 0 22px 54px rgba(31, 24, 18, 0.12);
    --v2-shadow-strong: 0 30px 70px rgba(19, 14, 10, 0.18);
    --v2-radius-xl: 40px;
    --v2-radius-lg: 30px;
    --v2-radius-md: 22px;
    --v2-radius-sm: 18px;
    --v2-font-display: "Cormorant Garamond", Georgia, serif;
    --v2-font-body: "Manrope", "Avenir Next", sans-serif;
    --v2-font-script: "Allura", cursive;
}

body.v2-page {
    background: var(--v2-surface);
    color: var(--v2-ink);
    font-family: var(--v2-font-body);
}

body.v2-page .shell {
    width: min(1280px, calc(100vw - 64px));
}

body.v2-page .section--dark-promo .shell {
    width: min(860px, calc(100vw - 48px));
}

body.v2-page main [id] {
    scroll-margin-top: 112px;
}

.v2-home {
    overflow: clip;
}

.v2-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.v2-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 34px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--v2-font-body);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.v2-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(28, 20, 13, 0.18);
}

.v2-button--solid {
    background: var(--v2-olive);
    color: #ffffff;
}

.v2-button--solid:hover {
    background: var(--v2-olive-deep);
}

.v2-button--light {
    background: #ffffff;
    color: var(--v2-olive-deep);
}

.v2-button--light:hover {
    color: var(--v2-dark);
}

.v2-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--v2-olive);
    font-size: 1rem;
    font-weight: 800;
}

.v2-text-link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.v2-text-link:hover::after {
    transform: translateX(3px) rotate(45deg);
}

.v2-section {
    position: relative;
    padding: 108px 0;
}

.v2-section-kicker,
.v2-kicker {
    margin: 0 0 18px;
    color: var(--v2-ink);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.36em;
    text-transform: uppercase;
}

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

.v2-section-kicker--light {
    color: rgba(255, 255, 255, 0.86);
}

.v2-section-title {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

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

.v2-side-art {
    position: absolute;
    width: min(330px, 24vw);
    height: 92px;
    background: url("../images/essentials/sarawak-art.webp") center / contain no-repeat;
    opacity: 0.22;
    pointer-events: none;
}

.v2-side-art--left {
    left: -72px;
}

.v2-side-art--right {
    right: -72px;
}

.v2-heading--decorated {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 780px) minmax(120px, 1fr);
    align-items: center;
    gap: 28px;
    margin-bottom: 46px;
}

.v2-heading__art {
    display: block;
    height: 84px;
    background: url("../images/essentials/sarawak-art.webp") center / contain no-repeat;
    opacity: 0.28;
}

.v2-heading__content {
    text-align: center;
}

.v2-heading__copy {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--v2-muted);
    font-size: 1.18rem;
    line-height: 1.65;
}

.v2-header {
    background: transparent;
    color: #ffffff;
    transition: background-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.v2-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* fade out over the last ~200px before the right edge, covering the Book Now button */
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.45) calc(100% - 220px), transparent calc(100% - 120px));
    opacity: 1;
    transition: opacity 220ms ease;
    pointer-events: none;
}


.v2-header__inner {
    min-height: 96px;
    gap: 28px;
}

.v2-header__brand img {
    width: auto;
    height: 58px;
}

.v2-header__nav {
    gap: clamp(18px, 2vw, 50px);
    color: rgba(255, 255, 255, 0.94);
}

.v2-header__nav a {
    padding: 0;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
}

.v2-header__nav a::after {
    display: none;
}

.v2-header__nav a:hover {
    color: #ffffff;
}

.v2-button--header {
    min-height: 64px;
    padding: 0 42px;
    font-size: 1rem;
}

.v2-header__toggle {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.2);
}

body.v2-page .site-header.is-scrolled,
body.v2-page .site-header.is-open {
    background: rgba(17, 14, 13, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 30px rgba(16, 12, 10, 0.18);
}

body.v2-page .site-header.is-scrolled::after,
body.v2-page .site-header.is-open::after {
    opacity: 0;
}

.v2-hero {
    position: relative;
    min-height: 880px;
    color: #ffffff;
    background: #101111;
}

.v2-hero__image,
.v2-hero__overlay {
    position: absolute;
    inset: 0;
}

.v2-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.v2-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.52) 36%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.14) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.v2-hero__frame {
    position: relative;
    z-index: 1;
    min-height: min(880px, 100svh);
    padding-top: 138px;
    display: flex;
    flex-direction: column;
}

.v2-hero__body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding: 76px 0 190px;
}

.v2-hero__content {
    max-width: 430px;
}

.v2-kicker {
    color: rgba(255, 255, 255, 0.94);
}

.v2-hero h1 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: clamp(5rem, 7.8vw, 6.9rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.v2-hero__copy {
    margin: 18px 0 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
    line-height: 1.65;
}

.v2-booking {
    position: relative;
    z-index: 4;
    margin-top: -66px;
}

.v2-booking-bar {
    --booking-control-height: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.95fr) minmax(170px, auto);
    align-items: end;
    gap: 15px;
    width: 100%;
    max-width: 1090px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.v2-booking-bar__field {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.v2-booking-bar__field--room {
    min-width: 0;
}

.v2-booking-bar__dates {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-width: 0;
}

.v2-booking-bar__date-arrow {
    position: absolute;
    left: 50%;
    bottom: 7px;
    z-index: 1;
    color: #000000;
    font-size: 20px;
    line-height: 1;
    transform: translateX(-50%);
    pointer-events: none;
}

.v2-booking-bar__date-field--checkout {
    margin-left: -1px;
}

.v2-booking-bar__label {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.2;
    text-transform: uppercase;
}

.v2-booking-bar__control {
    position: relative;
    display: flex;
    align-items: center;
    height: var(--booking-control-height);
    padding: 6px 10px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #000000;
}

.v2-booking-bar__date-field:first-child .v2-booking-bar__control {
    border-right: 0;
    border-radius: 8px 0 0 8px;
}

.v2-booking-bar__date-field--checkout .v2-booking-bar__label,
.v2-booking-bar__date-field--checkout input {
    text-align: right;
}

.v2-booking-bar__date-field--checkout .v2-booking-bar__control {
    border-left: 0;
    border-radius: 0 8px 8px 0;
}

.v2-booking-bar__control--room {
    padding: 0;
}

.v2-booking-bar__control select,
.v2-booking-bar__control input {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000000;
    font: inherit;
    font-size: 0.875rem;
    line-height: 20px;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.v2-booking-bar__guest-plus {
    position: absolute;
    right: 12px;
    top: 50%;
    color: #006060;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    transform: translateY(-50%);
    pointer-events: none;
}

.v2-booking-bar__control--room .booking-guests__stepper input {
    width: 42px;
    min-height: 32px;
    text-align: center;
    cursor: text;
}

.v2-button--booking {
    min-width: 280px;
    min-height: 58px;
    padding: 0 34px;
    border-radius: 999px;
    background: var(--v2-booking-accent);
    color: var(--v2-booking-white);
}

.v2-button--booking:hover {
    background: var(--v2-olive-deep);
}

.v2-booking-bar__feedback {
    grid-column: 1 / -1;
    margin: 0;
    color: #000000;
    font-size: 0.94rem;
    font-weight: 700;
}

.v2-booking-bar__feedback:empty {
    display: none;
}

.v2-about {
    padding-top: 120px;
    background: #ffffff;
}

.v2-about .v2-side-art {
    top: 170px;
}

.v2-about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 74px;
    align-items: center;
}

.v2-about__collage {
    position: relative;
    min-height: 720px;
    padding-left: 28px;
}

.v2-about__image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: var(--v2-radius-xl);
    box-shadow: var(--v2-shadow-strong);
}

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

.v2-about__image--back {
    left: 0;
    top: 60px;
    width: 44%;
    height: 58%;
}

.v2-about__image--main {
    top: 0;
    right: 0;
    width: 82%;
    height: 100%;
}

.v2-about__image--main img {
    object-position: center top;
}

.v2-about__copy {
    margin: 18px 0 0;
    color: var(--v2-muted);
    font-size: 1.2rem;
    line-height: 1.68;
}

.v2-about__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border: 1px solid var(--v2-line-strong);
    border-radius: 38px;
    overflow: hidden;
}

.v2-about__stat {
    padding: 28px 18px;
    text-align: center;
}

.v2-about__stat + .v2-about__stat {
    border-left: 1px solid rgba(84, 111, 69, 0.24);
}

.v2-about__stat strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--v2-font-display);
    font-size: 2.9rem;
    font-weight: 600;
    line-height: 1;
}

.v2-about__stat span {
    color: var(--v2-olive-deep);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.v2-blocks {
    padding-top: 74px;
    padding-bottom: 86px;
    background: #ffffff;
}

.v2-blocks__heading {
    margin-bottom: 76px;
}

.v2-blocks__heading .v2-heading__art:first-child {
    background-position: left center;
}

.v2-blocks__heading .v2-heading__art:last-child {
    background-position: right center;
}

.v2-blocks .v2-section-title {
    font-size: 3.6rem;
    letter-spacing: 0;
}

.v2-blocks__showcase {
    display: grid;
    gap: 72px;
}

.v2-blocks__row {
    display: grid;
    grid-template-columns: minmax(0, 1.78fr) minmax(300px, 0.96fr);
    min-height: 420px;
    background: #151715;
}

.v2-blocks__row--reverse {
    grid-template-columns: minmax(300px, 0.96fr) minmax(0, 1.78fr);
}

.v2-blocks__row--reverse .v2-blocks__feature {
    order: 2;
}

.v2-blocks__row--reverse .v2-blocks__gallery {
    order: 1;
}

.v2-blocks__feature,
.v2-blocks__thumb {
    position: relative;
    overflow: hidden;
}

.v2-blocks__feature {
    min-height: 420px;
    isolation: isolate;
}

.v2-blocks__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.16) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.34) 100%);
}

.v2-blocks__row--reverse .v2-blocks__feature::after {
    background:
        linear-gradient(270deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 44%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.v2-blocks__feature img,
.v2-blocks__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-blocks__feature img {
    position: absolute;
    inset: 0;
}

.v2-blocks__thumb img {
    position: absolute;
    inset: 0;
}

.v2-blocks__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 420px;
}

.v2-blocks__thumb {
    margin: 0;
    min-height: 420px;
}

.v2-blocks__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(28px, 7vw, 96px);
    width: min(460px, calc(100% - 56px));
    color: #ffffff;
    transform: translateY(-50%);
}

.v2-blocks__row--reverse .v2-blocks__content {
    right: clamp(28px, 7vw, 96px);
    left: auto;
    text-align: right;
}

.v2-blocks__label {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.42em;
    text-transform: uppercase;
}

.v2-blocks__content h3 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0;
}

.v2-blocks__content p:not(.v2-blocks__label) {
    max-width: 420px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    line-height: 1.68;
}

.v2-blocks__row--reverse .v2-blocks__content p:not(.v2-blocks__label) {
    margin-left: auto;
}

.v2-blocks__note {
    display: block;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    line-height: 1.5;
}

.v2-blocks__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
}

.v2-blocks__link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.v2-blocks__link:hover::after {
    transform: translateX(3px) rotate(45deg);
}

.v2-rooms {
    padding-top: 36px;
    padding-bottom: 90px;
}

.v2-carousel {
    position: relative;
}

.v2-carousel__track {
    display: flex;
    gap: 32px;
    padding: 8px 8px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.v2-carousel__track::-webkit-scrollbar {
    display: none;
}

.v2-carousel__track > .carousel__slide {
    flex: 0 0 calc((100% - 64px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    display: flex;
}

.v2-room-card,
.v2-meeting-card {
    overflow: hidden;
    border-radius: var(--v2-radius-lg);
    background: var(--bg, #f7f6f2);
    box-shadow: none;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v2-room-card__media,
.v2-meeting-card__media {
    position: relative;
    aspect-ratio: 1.14 / 1;
    flex: 0 0 auto;
}

.v2-room-card__media img,
.v2-meeting-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-meeting-card__media {
    overflow: hidden;
}

.v2-meeting-card__media img {
    position: absolute;
    inset: 0;
    max-width: none;
}

.v2-room-card__price,
.v2-meeting-card__capacity {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--v2-ink);
    font-size: 0.92rem;
    font-weight: 800;
}

.v2-room-card__body,
.v2-meeting-card__body {
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.v2-room-card__body h3,
.v2-meeting-card__body h3 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.03em;
}

.v2-room-card__meta,
.v2-meeting-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 14px;
    color: var(--v2-ink);
    font-size: 0.96rem;
    font-weight: 700;
}

.v2-room-card__meta span,
.v2-meeting-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.v2-room-card__meta svg,
.v2-meeting-card__meta svg {
    width: 16px;
    height: 16px;
    color: #77726b;
}

.v2-room-card__body p,
.v2-meeting-card__body p {
    margin: 14px 0 0;
    color: var(--v2-muted);
    font-size: 1rem;
    line-height: 1.6;
    flex: 1;
}

.v2-room-card .v2-text-link,
.v2-meeting-card .v2-text-link {
    margin-top: auto;
}

.v2-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 34px;
}

body.v2-page .v2-carousel__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.v2-page .carousel__dot {
    width: 12px;
    height: 12px;
    background: rgba(34, 28, 23, 0.14);
}

body.v2-page .carousel__dot.is-active {
    width: 40px;
    background: var(--v2-olive);
}

body.v2-page .v2-carousel__btn {
    width: 54px;
    height: 54px;
    border-color: rgba(34, 28, 23, 0.14);
    box-shadow: 0 10px 24px rgba(31, 24, 18, 0.08);
}

body.v2-page .v2-carousel__btn:hover:not(:disabled) {
    background: var(--v2-olive);
    border-color: var(--v2-olive);
}

.v2-facilities {
    padding-top: 20px;
    padding-bottom: 100px;
}

.v2-facilities__heading {
    margin-bottom: 42px;
}

.v2-facilities__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
}

.v2-facility {
    text-align: center;
}

.v2-facility__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    margin-bottom: 20px;
    color: #8d8983;
}

.v2-facility__icon svg {
    width: 66px;
    height: 66px;
}

.v2-facility h3 {
    margin: 0;
    color: #6b6762;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.v2-facility p {
    margin: 10px 0 0;
    color: #8d8780;
    font-size: 0.98rem;
    line-height: 1.5;
}

.v2-facilities__rule {
    margin-top: 54px;
    border-top: 1px solid rgba(34, 28, 23, 0.18);
}

.v2-meetings {
    padding-top: 50px;
    overflow: clip;
}

.v2-meetings__heading {
    margin-bottom: 46px;
}

.v2-meetings__edge-art {
    position: absolute;
    top: 112px;
    width: min(360px, 23vw);
    height: 92px;
    background: url("../images/essentials/sarawak-art.webp") center / contain no-repeat;
    opacity: 0.28;
    pointer-events: none;
}

.v2-meetings__edge-art--left {
    left: 0;
}

.v2-meetings__edge-art--right {
    right: 0;
}

.v2-meeting-card__media {
    aspect-ratio: 1.32 / 1;
}

.v2-promo {
    position: relative;
    background: var(--v2-dark);
    color: #ffffff;
    overflow: visible;
}

.v2-promo__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 52px;
    align-items: center;
    min-height: 400px;
    padding: 72px 0;
}

.v2-promo__content {
    max-width: 520px;
}

.v2-promo__title {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.v2-promo__subtitle {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1.08rem;
    font-weight: 800;
}

.v2-promo__copy {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.14rem;
    line-height: 1.72;
}

.v2-promo__validity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    font-weight: 800;
}

.v2-promo__validity svg {
    width: 24px;
    height: 24px;
}

.v2-promo .v2-button {
    margin-top: 26px;
}

.v2-promo__visual {
    position: relative;
    width: 100%;
    margin: -56px 0 -56px auto;
}

.v2-promo__offset-card {
    position: absolute;
    inset: 26px -18px -18px 24px;
    border-radius: 34px;
    background: rgba(85, 111, 64, 0.82);
}

.v2-promo__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 34px;
    box-shadow: var(--v2-shadow-strong);
}

.v2-restaurant {
    padding-top: 280px;
    padding-bottom: 120px;
}

.v2-side-art--restaurant {
    top: 338px;
}

.v2-restaurant__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: 74px;
    align-items: center;
}

.v2-restaurant__visual {
    position: relative;
    min-height: 560px;
}

.v2-restaurant__image {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: var(--v2-radius-xl);
    box-shadow: var(--v2-shadow-strong);
}

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

.v2-restaurant__image--main {
    left: 0;
    right: 18%;
    bottom: 0;
    height: 76%;
    z-index: 2;
}

.v2-restaurant__image--accent {
    top: 0;
    right: 0;
    width: 52%;
    height: 42%;
    z-index: 1;
}

.v2-restaurant__title {
    color: #835931;
}

.v2-restaurant__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 34px;
    margin-top: 36px;
}

.v2-restaurant__features h3 {
    margin: 0 0 8px;
    font-family: var(--v2-font-display);
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1;
}

.v2-restaurant__features p {
    margin: 0;
    color: var(--v2-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.v2-restaurant__quote {
    margin: 26px 0 28px;
    color: var(--v2-ink);
    font-family: var(--v2-font-script);
    font-size: clamp(3rem, 4vw, 4.2rem);
    line-height: 0.98;
}

.v2-final-cta {
    position: relative;
    min-height: 430px;
    padding: 110px 0;
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(38, 30, 18, 0.72) 0%, rgba(65, 49, 26, 0.38) 45%, rgba(59, 42, 19, 0.24) 100%),
        var(--v2-cta-image) center / cover no-repeat;
}

.v2-final-cta__content {
    position: relative;
    max-width: 500px;
    z-index: 2;
}

.v2-final-cta__bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.v2-final-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(38, 30, 18, 0.72) 0%, rgba(65, 49, 26, 0.38) 45%, rgba(59, 42, 19, 0.24) 100%);
    z-index: 1;
}

.v2-final-cta__title {
    margin: 0;
    font-family: var(--v2-font-display);
    font-size: clamp(2.4rem, 3.6vw, 3.6rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.v2-final-cta__copy {
    margin: 18px 0 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
    line-height: 1.66;
}

.v2-footer {
    background: var(--v2-dark);
    color: #ffffff;
    padding: 56px 0 72px;
}

.v2-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: 54px;
}

.v2-footer h3 {
    margin: 0 0 24px;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.v2-footer__address {
    display: grid;
    gap: 8px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.7;
}

.v2-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.6;
}

.v2-footer__list a {
    color: inherit;
    text-decoration: none;
}

.v2-footer__list a:hover {
    color: #ffffff;
}

@media (max-width: 1200px) {
    body.v2-page .shell {
        width: min(1200px, calc(100vw - 48px));
    }

    .v2-header__nav {
        gap: 24px;
    }

    .v2-about__grid,
    .v2-restaurant__grid {
        gap: 56px;
    }

    .v2-about__collage {
        min-height: 650px;
    }

    .v2-restaurant {
        padding-top: 250px;
    }

    .v2-side-art--restaurant {
        top: 306px;
    }
}

@media (max-width: 980px) {
    body.v2-page .shell {
        width: min(1180px, calc(100vw - 36px));
    }

    .v2-hero {
        min-height: 820px;
    }

    .v2-hero__frame {
        padding-top: 128px;
    }

    .v2-booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .v2-booking-bar__dates {
        grid-column: 1 / -1;
    }

    .v2-button--booking {
        min-width: 0;
        width: 100%;
        grid-column: 1 / -1;
    }

    .v2-about__grid,
    .v2-restaurant__grid,
    .v2-promo__grid,
    .v2-footer__grid {
        grid-template-columns: 1fr;
    }

    .v2-about__content,
    .v2-restaurant__content,
    .v2-promo__content,
    .v2-final-cta__content {
        max-width: none;
    }

    .v2-about .v2-side-art,
    .v2-restaurant .v2-side-art {
        display: none;
    }

    .v2-restaurant {
        padding-top: 220px;
    }

    .v2-about__collage,
    .v2-restaurant__visual {
        min-height: 580px;
    }

    .v2-blocks__heading {
        grid-template-columns: 1fr;
        width: min(760px, calc(100vw - 48px));
        margin-inline: auto;
    }

    .v2-blocks__heading .v2-heading__art {
        display: none;
    }

    .v2-blocks__row,
    .v2-blocks__row--reverse {
        grid-template-columns: 1fr;
    }

    .v2-blocks__row--reverse .v2-blocks__feature,
    .v2-blocks__row--reverse .v2-blocks__gallery {
        order: initial;
    }

    .v2-blocks__feature,
    .v2-blocks__gallery,
    .v2-blocks__thumb {
        min-height: 360px;
    }

    .v2-blocks__content h3 {
        font-size: 4.8rem;
    }

    .v2-blocks__row--reverse .v2-blocks__content {
        right: auto;
        left: clamp(28px, 7vw, 96px);
        text-align: left;
    }

    .v2-blocks__row--reverse .v2-blocks__content p:not(.v2-blocks__label) {
        margin-left: 0;
    }

    .v2-promo__visual {
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .v2-meetings__edge-art {
        width: 220px;
    }

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

    .v2-carousel__track > .carousel__slide {
        flex-basis: calc((100% - 32px) / 2);
    }
}

@media (max-width: 760px) {
    .v2-header__brand img {
        height: 50px;
    }

    .v2-button--header {
        min-height: 52px;
        padding-inline: 26px;
    }

    body.v2-page .site-header.is-open .site-nav {
        gap: 16px;
        padding: 6px 0 0;
        color: #ffffff;
    }

    body.v2-page .site-header.is-open .site-header__actions {
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .v2-hero {
        min-height: 760px;
    }

    .v2-hero__body {
        padding-top: 56px;
        padding-bottom: 150px;
    }

    .v2-hero__content {
        max-width: 340px;
    }

    .v2-booking {
        margin-top: -42px;
    }

    .v2-booking-bar {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .v2-booking-bar__dates {
        grid-template-columns: 1fr;
    }

    .v2-booking-bar__date-arrow {
        display: none;
    }

    .v2-booking-bar__date-field:first-child .v2-booking-bar__control,
    .v2-booking-bar__date-field--checkout .v2-booking-bar__control {
        border: 1px solid #000000;
        border-radius: 8px;
    }

    .v2-booking-bar__date-field--checkout {
        margin-left: 0;
    }

    .v2-booking-bar__date-field--checkout .v2-booking-bar__label,
    .v2-booking-bar__date-field--checkout input {
        text-align: left;
    }

    .v2-booking-bar__control--room {
        height: auto;
        min-height: var(--booking-control-height);
        align-items: stretch;
    }

    .v2-booking-bar__control--room .booking-guests {
        width: 100%;
    }

    .v2-about,
    .v2-blocks,
    .v2-rooms,
    .v2-facilities,
    .v2-meetings,
    .v2-restaurant {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .v2-blocks__heading {
        margin-bottom: 52px;
    }

    .v2-blocks .v2-section-title {
        font-size: 3rem;
    }

    .v2-blocks__showcase {
        gap: 48px;
    }

    .v2-blocks__content {
        width: min(430px, calc(100% - 40px));
        left: 20px;
    }

    .v2-blocks__row--reverse .v2-blocks__content {
        left: 20px;
    }

    .v2-blocks__gallery {
        grid-template-columns: 1fr 1fr;
    }

    .v2-blocks__feature {
        min-height: 420px;
    }

    .v2-blocks__thumb,
    .v2-blocks__gallery {
        min-height: 260px;
    }

    .v2-about__collage,
    .v2-restaurant__visual {
        min-height: 500px;
    }

    .v2-about__image--main {
        width: 82%;
    }

    .v2-about__stats,
    .v2-restaurant__features,
    .v2-facilities__grid {
        grid-template-columns: 1fr;
    }

    .v2-about__stat + .v2-about__stat {
        border-left: 0;
        border-top: 1px solid rgba(84, 111, 69, 0.24);
    }

    .v2-carousel__track > .carousel__slide {
        flex-basis: 100%;
    }

    .v2-meetings__edge-art {
        display: none;
    }

    .v2-promo__grid {
        padding: 60px 0;
    }

    .v2-promo__visual {
        margin-top: 12px;
    }

    .v2-final-cta {
        min-height: 480px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .v2-final-cta__content {
        padding: 48px 0;
    }
}

@media (max-width: 560px) {
    body.v2-page .shell {
        width: calc(100vw - 24px);
    }

    .v2-section-kicker,
    .v2-kicker {
        font-size: 0.82rem;
        letter-spacing: 0.28em;
    }

    .v2-hero__frame {
        padding-top: 112px;
    }

    .v2-hero h1 {
        font-size: 4.2rem;
    }

    .v2-hero__copy,
    .v2-about__copy,
    .v2-heading__copy,
    .v2-blocks__content p:not(.v2-blocks__label),
    .v2-promo__copy,
    .v2-final-cta__copy {
        font-size: 1rem;
    }

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

    .v2-blocks__feature {
        min-height: 440px;
    }

    .v2-blocks__thumb {
        min-height: 230px;
    }

    .v2-blocks__label {
        letter-spacing: 0.3em;
    }

    .v2-blocks .v2-section-title {
        font-size: 2.6rem;
    }

    .v2-blocks__content h3 {
        font-size: 4rem;
    }

    .v2-about__collage,
    .v2-restaurant__visual {
        min-height: 410px;
        padding-left: 0;
    }

    .v2-about__image--back {
        width: 46%;
        height: 52%;
        top: 40px;
    }

    .v2-about__image--main {
        width: 82%;
        height: 90%;
    }

    .v2-room-card__body,
    .v2-meeting-card__body {
        padding: 22px 18px 20px;
    }

    .v2-carousel__controls {
        gap: 14px;
    }

    body.v2-page .v2-carousel__btn {
        width: 48px;
        height: 48px;
    }

    .v2-promo__offset-card {
        inset: 20px -10px -14px 16px;
    }
}

/* Block A page */
body.block-a-page {
    background: #ffffff;
    color: #202020;
}

body.block-a-page .shell {
    width: min(1080px, calc(100vw - 80px));
}

body.block-a-page .v2-button,
body.block-a-page button,
body.block-a-page .block-a-room-card__button,
body.block-a-page .block-a-event__content a,
body.block-a-page .block-a-cafe__content a {
    border-radius: 8px;
    letter-spacing: 0;
}

body.block-a-page .v2-section-kicker,
body.block-a-page .v2-kicker,
body.block-a-page .v2-header__nav a,
body.block-a-page .v2-footer h3 {
    letter-spacing: 0;
}

body.block-a-page .v2-header__inner {
    min-height: 102px;
}

body.block-a-page .v2-header__brand img {
    height: 54px;
}

body.block-a-page .v2-header__nav {
    gap: 44px;
}

body.block-a-page .v2-header__nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
}

body.block-a-page .v2-button--header {
    min-width: 172px;
    min-height: 44px;
    padding-inline: 30px;
}

body.block-a-page .v2-hero--block {
    min-height: 404px;
}

body.block-a-page .v2-hero--block .v2-hero__image {
    object-position: center 48%;
}

body.block-a-page .v2-hero--block .v2-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.5) 46%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.18) 100%);
}

body.block-a-page .v2-hero--block .v2-hero__frame {
    min-height: 404px;
    padding-top: 104px;
}

body.block-a-page .v2-hero--block .v2-hero__body {
    align-items: center;
    justify-content: center;
    padding: 0 0 48px;
}

body.block-a-page .v2-hero--block .v2-hero__content {
    max-width: 620px;
    text-align: center;
}

body.block-a-page .v2-hero--block .v2-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

body.block-a-page .v2-hero--block h1 {
    font-size: 3.25rem;
    line-height: 1;
    letter-spacing: 0;
}

body.block-a-page .v2-hero--block .v2-hero__copy {
    max-width: none;
    margin-top: 12px;
    font-size: 0.92rem;
    line-height: 1.55;
}

body.block-a-page .v2-booking {
    margin-top: -48px;
}

body.block-a-page .v2-booking .shell {
    width: min(1090px, calc(100vw - 80px));
}

body.block-a-page .v2-booking-bar {
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.95fr) minmax(170px, auto);
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 22, 22, 0.16);
}

body.block-a-page .v2-booking-bar__label {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0;
}

body.block-a-page .v2-booking-bar__control {
    height: var(--booking-control-height);
    padding-inline: 10px;
    border-radius: 8px;
}

body.block-a-page .v2-booking-bar__control select,
body.block-a-page .v2-booking-bar__control input {
    font-size: 0.875rem;
}

body.block-a-page .v2-booking-bar__date-field:first-child .v2-booking-bar__control {
    border-right: 0;
    border-radius: 8px 0 0 8px;
}

body.block-a-page .v2-booking-bar__date-field--checkout .v2-booking-bar__control {
    border-left: 0;
    border-radius: 0 8px 8px 0;
}

body.block-a-page .v2-button--booking {
    min-width: 220px;
    min-height: 56px;
    font-size: 1rem;
}

.block-a-intro {
    padding: 62px 0 16px;
    background: #ffffff;
}

.block-a-intro__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
    gap: 72px;
    align-items: center;
}

.block-a-intro__grid--reverse {
    grid-template-columns: minmax(420px, 1fr) minmax(280px, 0.74fr);
}

.block-a-intro__grid--reverse .block-a-intro__media {
    order: -1;
}

.block-a-intro__content {
    max-width: 470px;
}

.block-a-intro .v2-section-kicker {
    margin-bottom: 12px;
    color: #262626;
    font-size: 0.78rem;
}

.block-a-intro h2,
.block-a-rooms__heading h2,
.block-a-event__content h2,
.block-a-cafe__content h2,
.block-a-help h2 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.block-a-intro h2 {
    font-size: 3.1rem;
    line-height: 1;
}

.block-a-intro__content p:not(.v2-section-kicker) {
    margin: 16px 0 0;
    color: #222222;
    font-size: 0.92rem;
    line-height: 1.35;
}

.block-a-intro__note {
    color: #202020;
}

.block-a-intro__media {
    margin: 0;
    overflow: hidden;
}

.block-a-intro__media img {
    width: 100%;
    aspect-ratio: 1.64 / 1;
    object-fit: cover;
}

.block-a-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0;
    background: #ffffff;
}

.block-a-gallery__item {
    margin: 0;
    min-height: 286px;
    overflow: hidden;
}

.block-a-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-a-rooms {
    padding: 78px 0 70px;
    background: #ffffff;
}

.block-a-rooms__heading {
    max-width: 560px;
    margin: 0 auto 76px;
    text-align: center;
}

.block-a-rooms__heading .v2-section-kicker {
    margin-bottom: 8px;
    color: #1f1f1f;
    font-size: 0.78rem;
}

.block-a-rooms__heading h2 {
    font-size: 3.4rem;
    line-height: 1;
}

.block-a-rooms__heading p {
    margin: 20px 0 0;
    color: #292929;
    font-size: 0.74rem;
    line-height: 1.45;
}

.block-a-rooms__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 56px;
}

.block-a-rooms__track {
    display: flex;
    gap: 56px;
    padding: 8px 2px 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.block-a-rooms__track::-webkit-scrollbar {
    display: none;
}

.block-a-rooms__track > .block-a-room-card {
    flex: 0 0 calc((100% - 56px) / 2);
    scroll-snap-align: start;
}

.block-a-room-card {
    display: grid;
    grid-template-columns: 198px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    min-height: 244px;
}

.block-a-room-card__media {
    position: relative;
    display: block;
    align-self: stretch;
    min-height: 244px;
    overflow: hidden;
    border-radius: 8px;
    background: #eceae6;
}

.block-a-room-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-a-room-card__badge {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 1;
    min-width: 60px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #3f5d34;
    color: #ffffff;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0;
}

.block-a-room-card__topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.block-a-room-card h3 {
    margin: 54px 0 0;
    color: #294423;
    font-family: var(--v2-font-display);
    font-size: 2.05rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.block-a-room-card__price {
    min-width: 108px;
    color: #395a2e;
    text-align: center;
}

.block-a-room-card__price span {
    display: block;
    color: #777777;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.block-a-room-card__price strong {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--v2-font-display);
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 1;
}

.block-a-room-card__price small {
    font-size: 0.52rem;
    font-weight: 800;
}

.block-a-room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    color: #1f1f1f;
    font-size: 0.66rem;
    font-weight: 700;
}

.block-a-room-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.block-a-room-card__meta svg {
    width: 14px;
    height: 14px;
    color: #4a4a4a;
}

.block-a-room-card__body p {
    margin: 8px 0 0;
    color: #777777;
    font-size: 0.68rem;
    line-height: 1.35;
}

.block-a-room-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.block-a-room-card__link {
    width: fit-content;
    color: #395a2e;
    font-size: 0.72rem;
    font-weight: 800;
}

.block-a-room-card__button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 30px;
    border: 1px solid #395a2e;
    color: #263f22;
    font-size: 0.7rem;
    font-weight: 800;
}

.block-a-room-card__button:hover {
    background: #395a2e;
    color: #ffffff;
}

.block-a-rooms__pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.block-a-rooms__pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(34, 34, 34, 0.12);
    background: #ffffff;
    color: #555555;
    box-shadow: 0 4px 12px rgba(20, 20, 20, 0.08);
    cursor: pointer;
}

.block-a-rooms__pager-btn svg {
    width: 18px;
    height: 18px;
}

.block-a-rooms__dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

body.v2-page .block-a-rooms__dots .carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #d7d7d7;
    box-shadow: none;
    cursor: pointer;
}

body.v2-page .block-a-rooms__dots .carousel__dot.is-active {
    width: 30px;
    background: #405e33;
}

.block-a-event {
    position: relative;
    isolation: isolate;
    min-height: 460px;
    overflow: hidden;
    color: #ffffff;
    background: #101010;
}

.block-a-event::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--block-a-event-image) center 45% / cover no-repeat;
    filter: saturate(0.95);
    transform: scale(1.03);
}

.block-a-event::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.84) 100%),
        rgba(20, 34, 18, 0.42);
}

.block-a-event__grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.02fr) minmax(360px, 0.92fr);
    gap: 78px;
    align-items: center;
    min-height: 460px;
    padding: 56px 0;
}

.block-a-event__grid--reverse {
    grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.02fr);
}

.block-a-event__grid--reverse .block-a-event__content {
    order: 1;
}

.block-a-event__grid--reverse .block-a-event__images {
    order: 2;
}

.block-a-event__images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
}

.block-a-event__images figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.block-a-event__images figure:first-child {
    margin-top: 52px;
}

.block-a-event__images figure:nth-child(3) {
    margin-top: 28px;
}

.block-a-event__images img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.block-a-event__content .v2-section-kicker {
    margin-bottom: 12px;
    font-size: 0.76rem;
}

.block-a-event__content h2 {
    font-size: 2.4rem;
    line-height: 1;
}

.block-a-event__content p {
    max-width: 520px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    line-height: 1.5;
}

.block-a-event__content a,
.block-a-cafe__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 30px;
    margin-top: 22px;
    border: 1px solid currentColor;
    background: #ffffff;
    color: #243a20;
    font-size: 0.72rem;
    font-weight: 900;
}

.block-a-event__content a:hover,
.block-a-cafe__content a:hover {
    background: #3f5d34;
    border-color: #3f5d34;
    color: #ffffff;
}

.block-a-cafe {
    padding: 116px 0 116px;
    background: #ffffff;
}

.block-a-cafe__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.58fr) minmax(560px, 1.42fr);
    gap: 70px;
    align-items: center;
}

.block-a-cafe__grid--reverse {
    grid-template-columns: minmax(560px, 1.42fr) minmax(260px, 0.58fr);
}

.block-a-cafe__grid--reverse .block-a-cafe__images {
    order: -1;
}

.block-a-cafe__content {
    max-width: 320px;
}

.block-a-cafe__content .v2-section-kicker {
    margin-bottom: 10px;
    color: #1f1f1f;
    font-size: 0.76rem;
}

.block-a-cafe__content h2 {
    font-size: 2.15rem;
    line-height: 1;
}

.block-a-cafe__content p {
    margin: 20px 0 0;
    color: #333333;
    font-size: 0.78rem;
    line-height: 1.5;
}

.block-a-cafe__content a {
    background: transparent;
}

.block-a-cafe__images {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: center;
}

.block-a-cafe__images figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.block-a-cafe__images figure:first-child {
    margin-top: 86px;
}

.block-a-cafe__images figure:nth-child(3) {
    margin-top: 58px;
}

.block-a-cafe__images img {
    width: 100%;
    height: 306px;
    object-fit: cover;
}

.block-a-cafe__images figure:first-child img {
    object-position: 50% 70%;
}

.block-a-help {
    padding: 12px 0 132px;
    background: #ffffff;
}

.block-a-help__content {
    text-align: center;
}

.block-a-help h2 {
    font-size: 2rem;
    line-height: 1;
}

.block-a-help p {
    max-width: 240px;
    margin: 14px auto 0;
    color: #222222;
    font-size: 0.78rem;
    line-height: 1.45;
}

.block-a-help a {
    display: inline-flex;
    margin-top: 18px;
    color: #111111;
    font-size: 1rem;
    font-weight: 900;
}

body.block-a-page .v2-final-cta {
    min-height: 316px;
    padding: 78px 0;
    background:
        linear-gradient(90deg, rgba(74, 63, 35, 0.74) 0%, rgba(98, 82, 40, 0.48) 50%, rgba(92, 76, 37, 0.34) 100%),
        var(--v2-cta-image) center / cover no-repeat;
}

body.block-a-page .v2-final-cta__content {
    width: min(1080px, calc(100vw - 80px));
    max-width: none;
}

body.block-a-page .v2-final-cta__title {
    max-width: 470px;
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: 0;
}

body.block-a-page .v2-final-cta__copy {
    max-width: 470px;
    margin: 12px 0 24px;
    font-size: 0.86rem;
    line-height: 1.45;
}

body.block-a-page .v2-final-cta .v2-button {
    min-height: 42px;
    min-width: 156px;
}

body.block-a-page .v2-footer {
    padding: 44px 0 58px;
}

body.block-a-page .v2-footer__grid {
    gap: 70px;
}

body.block-a-page .v2-footer h3 {
    margin-bottom: 18px;
    font-size: 0.9rem;
}

body.block-a-page .v2-footer__address,
body.block-a-page .v2-footer__list {
    font-size: 0.82rem;
    line-height: 1.65;
}

body.block-b-page .v2-hero--block .v2-hero__image {
    object-position: center 42%;
}

body.block-b-page .block-a-event::after {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.66) 48%, rgba(0, 0, 0, 0.88) 100%),
        rgba(13, 21, 18, 0.54);
}

/* Block B: intro image flush to left viewport edge */
body.block-b-page .block-a-intro {
    overflow: hidden;
}

body.block-b-page .block-a-intro__grid--reverse .block-a-intro__media {
    margin-left: calc(-50vw + 50%);
    width: calc(100% + 50vw - 50%);
}

/* Block A: intro image flush to right viewport edge */
body.block-a-page:not(.block-b-page) .block-a-intro {
    overflow: hidden;
}

body.block-a-page:not(.block-b-page) .block-a-intro__media {
    margin-right: calc(-50vw + 50%);
    width: calc(100% + 50vw - 50%);
}

@media (max-width: 1100px) {
    body.block-a-page .shell,
    body.block-a-page .v2-booking .shell,
    body.block-a-page .v2-final-cta__content {
        width: min(1000px, calc(100vw - 48px));
    }

    body.block-a-page .v2-header__nav {
        gap: 24px;
    }

    body.block-a-page .v2-booking-bar {
        grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.9fr) minmax(150px, auto);
        gap: 15px;
        padding-inline: 20px;
    }

    .block-a-room-card {
        grid-template-columns: 166px minmax(0, 1fr);
        gap: 24px;
    }
}

@media (max-width: 980px) {
    body.block-a-page .v2-hero--block {
        min-height: 480px;
    }

    body.block-a-page .v2-hero--block .v2-hero__frame {
        min-height: 480px;
    }

    body.block-a-page .v2-booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 22px;
    }

    body.block-a-page .v2-booking-bar__dates {
        grid-column: 1 / -1;
    }

    body.block-a-page .v2-button--booking {
        grid-column: 1 / -1;
        width: 100%;
    }

    .block-a-intro__grid,
    .block-a-event__grid,
    .block-a-event__grid--reverse,
    .block-a-cafe__grid,
    .block-a-cafe__grid--reverse,
    body.block-a-page .v2-footer__grid {
        grid-template-columns: 1fr;
    }

    .block-a-intro__grid--reverse .block-a-intro__media,
    .block-a-event__grid--reverse .block-a-event__content,
    .block-a-event__grid--reverse .block-a-event__images,
    .block-a-cafe__grid--reverse .block-a-cafe__images {
        order: initial;
    }

    .block-a-intro__content,
    .block-a-cafe__content {
        max-width: none;
    }

    .block-a-rooms__grid {
        grid-template-columns: 1fr;
    }

    .block-a-rooms__track {
        gap: 24px;
    }

    .block-a-rooms__track > .block-a-room-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .block-a-room-card h3 {
        margin-top: 18px;
    }

    .block-a-event__grid {
        gap: 34px;
    }

    .block-a-cafe__grid {
        gap: 42px;
    }
}

@media (max-width: 760px) {
    body.block-a-page .shell,
    body.block-a-page .v2-booking .shell,
    body.block-a-page .v2-final-cta__content {
        width: calc(100vw - 28px);
    }

    body.block-a-page .v2-hero--block .v2-hero__frame {
        padding-top: 114px;
    }

    body.block-a-page .v2-hero--block h1 {
        font-size: 2.85rem;
    }

    body.block-a-page .v2-booking {
        margin-top: -34px;
    }

    body.block-a-page .v2-booking-bar {
        grid-template-columns: 1fr;
    }

    .block-a-intro {
        padding-top: 54px;
    }

    .block-a-intro__grid {
        gap: 34px;
    }

    .block-a-intro h2,
    .block-a-rooms__heading h2 {
        font-size: 2.65rem;
    }

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

    .block-a-gallery__item {
        min-height: 220px;
    }

    .block-a-rooms {
        padding-top: 62px;
    }

    .block-a-rooms__heading {
        margin-bottom: 44px;
    }

    .block-a-room-card {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 18px;
    }

    .block-a-room-card__media {
        min-height: 210px;
    }

    .block-a-room-card__topline {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .block-a-room-card__price {
        text-align: left;
    }

    .block-a-room-card__button {
        justify-self: start;
    }

    .block-a-event__images,
    .block-a-cafe__images {
        grid-template-columns: 1fr;
    }

    .block-a-event__images figure:first-child,
    .block-a-event__images figure:nth-child(3),
    .block-a-cafe__images figure:first-child,
    .block-a-cafe__images figure:nth-child(3) {
        margin-top: 0;
    }

    .block-a-cafe {
        padding: 76px 0 86px;
    }

    .block-a-help {
        padding-bottom: 88px;
    }
}

@media (max-width: 560px) {
    body.block-a-page .v2-header__brand img {
        height: 46px;
    }

    body.block-a-page .v2-button--header {
        min-width: 0;
    }

    body.block-a-page .v2-hero--block h1 {
        font-size: 2.45rem;
    }

    body.block-a-page .v2-hero--block .v2-hero__copy {
        font-size: 0.86rem;
    }

    .block-a-room-card {
        grid-template-columns: 1fr;
    }

    .block-a-rooms__track > .block-a-room-card {
        flex-basis: 100%;
    }

    .block-a-room-card__media {
        min-height: 250px;
    }

    .block-a-room-card__body {
        padding-bottom: 16px;
    }

    .block-a-event__images img,
    .block-a-cafe__images img {
        height: 240px;
    }

    body.block-a-page .v2-final-cta__title {
        font-size: 2rem;
    }
}

/* Block A V2 page */
body.block-a-v2-page {
    background: #ffffff;
    color: #202020;
}

body.block-a-v2-page .shell {
    width: min(1080px, calc(100vw - 80px));
}

body.block-a-v2-page .v2-button,
body.block-a-v2-page button,
body.block-a-v2-page .block-a-v2-room-card__button,
body.block-a-v2-page .block-a-v2-event__content a,
body.block-a-v2-page .block-a-v2-cafe__content a {
    border-radius: 8px;
    letter-spacing: 0;
}

body.block-a-v2-page .v2-section-kicker,
body.block-a-v2-page .v2-kicker,
body.block-a-v2-page .v2-header__nav a,
body.block-a-v2-page .v2-footer h3 {
    letter-spacing: 0;
}

body.block-a-v2-page .v2-header__inner {
    min-height: 102px;
}

body.block-a-v2-page .v2-header__brand img {
    height: 54px;
}

body.block-a-v2-page .v2-header__nav {
    gap: 44px;
}

body.block-a-v2-page .v2-header__nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
}

body.block-a-v2-page .v2-button--header {
    min-width: 172px;
    min-height: 44px;
    padding-inline: 30px;
}

body.block-a-v2-page .v2-hero--block-a-v2 {
    min-height: 404px;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__image {
    object-position: center 45%;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 42%, rgba(0, 0, 0, 0.22) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.16) 100%);
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__frame {
    min-height: 404px;
    padding-top: 102px;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__body {
    align-items: center;
    justify-content: center;
    padding: 0 0 50px;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__content {
    max-width: 630px;
    text-align: center;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-kicker {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
}

body.block-a-v2-page .v2-hero--block-a-v2 h1 {
    font-size: 3.25rem;
    line-height: 1;
    letter-spacing: 0;
}

body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__copy {
    max-width: none;
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.45;
}

body.block-a-v2-page .v2-hero__note {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.68rem;
    line-height: 1.35;
}

body.block-a-v2-page .v2-booking {
    margin-top: -47px;
}

body.block-a-v2-page .v2-booking .shell {
    width: min(1090px, calc(100vw - 80px));
}

body.block-a-v2-page .v2-booking-bar {
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.95fr) minmax(170px, auto);
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(22, 22, 22, 0.16);
}

body.block-a-v2-page .v2-booking-bar__label {
    color: #000000;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0;
}

body.block-a-v2-page .v2-booking-bar__control {
    height: var(--booking-control-height);
    padding-inline: 10px;
    border-radius: 8px;
}

body.block-a-v2-page .v2-booking-bar__control select,
body.block-a-v2-page .v2-booking-bar__control input {
    font-size: 0.875rem;
}

body.block-a-v2-page .v2-booking-bar__date-field:first-child .v2-booking-bar__control {
    border-right: 0;
    border-radius: 8px 0 0 8px;
}

body.block-a-v2-page .v2-booking-bar__date-field--checkout .v2-booking-bar__control {
    border-left: 0;
    border-radius: 0 8px 8px 0;
}

body.block-a-v2-page .v2-button--booking {
    min-width: 220px;
    min-height: 56px;
    font-size: 1rem;
}

.block-a-v2-facilities {
    padding: 58px 0 18px;
    background: #ffffff;
}

.block-a-v2-facilities__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(600px, 1.3fr);
    gap: 58px;
    align-items: center;
}

.block-a-v2-facilities__content {
    max-width: 410px;
    min-width: 0;
}

.block-a-v2-facilities__content .v2-section-kicker {
    margin-bottom: 12px;
    color: #262626;
    font-size: 0.78rem;
}

.block-a-v2-facilities__content h2,
.block-a-v2-rooms__heading h2,
.block-a-v2-event__content h2,
.block-a-v2-cafe__content h2,
.block-a-v2-help h2 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.block-a-v2-facilities__content h2 {
    font-size: 3.35rem;
    line-height: 0.96;
}

.block-a-v2-facilities__content p:not(.v2-section-kicker) {
    margin: 20px 0 0;
    color: #222222;
    font-size: 0.78rem;
    line-height: 1.35;
}

.block-a-v2-facilities__art {
    display: block;
    width: 100%;
    max-width: 470px;
    height: 92px;
    margin-top: 66px;
    background: url("../images/essentials/sarawak-art.webp") left center / auto 70px repeat-x;
    opacity: 0.2;
}

.block-a-v2-facilities__media {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    min-height: 404px;
    min-width: 0;
}

.block-a-v2-facilities__media figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: none;
}

.block-a-v2-facilities__media figure:first-child {
    margin-top: 46px;
}

.block-a-v2-facilities__media figure:nth-child(2) {
    align-self: start;
}

.block-a-v2-facilities__media figure:nth-child(3) {
    margin-top: 44px;
}

.block-a-v2-facilities__media img {
    display: block;
    width: 100%;
    height: 356px;
    object-fit: cover;
}

.block-a-v2-facilities__media figure:nth-child(3) img {
    object-position: 58% center;
}

body.block-a-v2-page .v2-facilities--block-a-v2 {
    padding-top: 58px;
    padding-bottom: 56px;
    background: #ffffff;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facilities__heading {
    margin-bottom: 30px;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-section-kicker {
    color: #1f1f1f;
    font-size: 0.78rem;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facilities__grid {
    gap: 28px;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facility__icon {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
    color: #343b42;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facility__icon svg {
    width: 58px;
    height: 58px;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facility h3 {
    color: #303844;
    font-size: 0.74rem;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facility p {
    margin-top: 4px;
    color: #111111;
    font-size: 0.7rem;
}

body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facilities__rule {
    width: min(765px, 100%);
    margin: 40px auto 0;
    border-color: rgba(34, 28, 23, 0.7);
}

.block-a-v2-rooms {
    padding: 0 0 82px;
    background: #ffffff;
}

.block-a-v2-rooms__heading {
    max-width: 620px;
    margin: 0 auto;
    padding-top: 24px;
    text-align: center;
}

.block-a-v2-rooms__heading .v2-section-kicker {
    margin-bottom: 8px;
    color: #1f1f1f;
    font-size: 0.78rem;
}

.block-a-v2-rooms__heading h2 {
    font-size: 3.35rem;
    line-height: 1;
}

.block-a-v2-rooms__heading p:not(.v2-section-kicker) {
    margin: 18px 0 0;
    color: #292929;
    font-size: 0.72rem;
    line-height: 1.45;
}

.block-a-v2-rooms__note {
    margin-top: 8px;
}

.block-a-v2-rooms__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 58px;
    margin-top: 82px;
}

.block-a-v2-room-card {
    display: grid;
    grid-template-columns: 198px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    min-height: 244px;
}

.block-a-v2-room-card__media {
    position: relative;
    display: block;
    align-self: stretch;
    min-height: 244px;
    overflow: hidden;
    border-radius: 8px;
    background: #eceae6;
}

.block-a-v2-room-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-a-v2-room-card__badge {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 1;
    min-width: 60px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #3f5d34;
    color: #ffffff;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0;
}

.block-a-v2-room-card__topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
}

.block-a-v2-room-card__body {
    min-width: 0;
}

.block-a-v2-room-card h3 {
    margin: 54px 0 0;
    color: #294423;
    font-family: var(--v2-font-display);
    font-size: 2.05rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.block-a-v2-room-card__price {
    min-width: 108px;
    color: #395a2e;
    text-align: center;
}

.block-a-v2-room-card__price span {
    display: block;
    color: #777777;
    font-size: 0.52rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.block-a-v2-room-card__price strong {
    display: inline-block;
    margin-top: 4px;
    font-family: var(--v2-font-display);
    font-size: 1.42rem;
    font-weight: 600;
    line-height: 1;
}

.block-a-v2-room-card__price small {
    font-size: 0.52rem;
    font-weight: 800;
}

.block-a-v2-room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    color: #1f1f1f;
    font-size: 0.66rem;
    font-weight: 700;
}

.block-a-v2-room-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.block-a-v2-room-card__meta svg {
    width: 14px;
    height: 14px;
    color: #4a4a4a;
}

.block-a-v2-room-card__body > p {
    margin: 8px 0 0;
    color: #777777;
    font-size: 0.68rem;
    line-height: 1.35;
}

.block-a-v2-room-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.block-a-v2-room-card__link {
    width: fit-content;
    color: #395a2e;
    font-size: 0.72rem;
    font-weight: 800;
}

.block-a-v2-room-card__button {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    min-height: 30px;
    border: 1px solid #395a2e;
    color: #263f22;
    font-size: 0.7rem;
    font-weight: 800;
}

.block-a-v2-room-card__button:hover {
    background: #395a2e;
    color: #ffffff;
}

.block-a-v2-event {
    position: relative;
    isolation: isolate;
    min-height: 460px;
    overflow: hidden;
    color: #ffffff;
    background: #101010;
}

.block-a-v2-event::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--block-a-v2-event-image) center 45% / cover no-repeat;
    filter: saturate(0.95);
    transform: scale(1.03);
}

.block-a-v2-event::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.84) 100%),
        rgba(20, 34, 18, 0.42);
}

.block-a-v2-event__grid {
    display: grid;
    grid-template-columns: minmax(420px, 1.02fr) minmax(360px, 0.92fr);
    gap: 68px;
    align-items: center;
    min-height: 460px;
    padding: 56px 0;
}

.block-a-v2-event__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.block-a-v2-event__content {
    min-width: 0;
}

.block-a-v2-event__images figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.block-a-v2-event__images figure:first-child {
    margin-top: 52px;
}

.block-a-v2-event__images img {
    display: block;
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.block-a-v2-event__content .v2-section-kicker {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
}

.block-a-v2-event__content h2 {
    font-size: 2.4rem;
    line-height: 1;
}

.block-a-v2-event__content p {
    max-width: 520px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    line-height: 1.5;
}

.block-a-v2-event__content a,
.block-a-v2-cafe__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 30px;
    margin-top: 22px;
    border: 1px solid currentColor;
    background: #ffffff;
    color: #243a20;
    font-size: 0.72rem;
    font-weight: 900;
}

.block-a-v2-event__content a:hover,
.block-a-v2-cafe__content a:hover {
    background: #3f5d34;
    border-color: #3f5d34;
    color: #ffffff;
}

.block-a-v2-cafe {
    padding: 116px 0 124px;
    background: #ffffff;
}

.block-a-v2-cafe__grid {
    display: grid;
    grid-template-columns: minmax(560px, 1.42fr) minmax(280px, 0.58fr);
    gap: 58px;
    align-items: center;
}

.block-a-v2-cafe__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: center;
    min-width: 0;
}

.block-a-v2-cafe__images figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.18);
}

.block-a-v2-cafe__images figure:first-child {
    margin-top: 46px;
}

.block-a-v2-cafe__images img {
    display: block;
    width: 100%;
    height: 324px;
    object-fit: cover;
}

.block-a-v2-cafe__images figure:first-child img {
    object-position: 50% 72%;
}

.block-a-v2-cafe__content {
    max-width: 330px;
    min-width: 0;
}

.block-a-v2-cafe__content .v2-section-kicker {
    margin-bottom: 10px;
    color: #1f1f1f;
    font-size: 0.76rem;
}

.block-a-v2-cafe__content h2 {
    font-size: 2.15rem;
    line-height: 1;
}

.block-a-v2-cafe__content p {
    margin: 20px 0 0;
    color: #333333;
    font-size: 0.78rem;
    line-height: 1.5;
}

.block-a-v2-cafe__content a {
    justify-content: flex-start;
    min-width: 0;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #395a2e;
}

.block-a-v2-cafe__content a:hover {
    background: transparent;
    color: #243a20;
}

.block-a-v2-help {
    padding: 12px 0 132px;
    background: #ffffff;
}

.block-a-v2-help__content {
    text-align: center;
}

.block-a-v2-help h2 {
    font-size: 2rem;
    line-height: 1;
}

.block-a-v2-help p {
    max-width: 240px;
    margin: 14px auto 0;
    color: #222222;
    font-size: 0.78rem;
    line-height: 1.45;
}

.block-a-v2-help a {
    display: inline-flex;
    margin-top: 18px;
    color: #111111;
    font-size: 1rem;
    font-weight: 900;
}

body.block-b-v2-page .block-a-v2-help__button {
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 8px;
    background: #25d366;
    color: #111111;
    text-decoration: none;
}

body.block-b-v2-page .block-a-v2-help__button:hover {
    background: #1fbd5a;
}

body.block-a-v2-page .v2-final-cta {
    min-height: 316px;
    padding: 78px 0;
    background:
        linear-gradient(90deg, rgba(74, 63, 35, 0.74) 0%, rgba(98, 82, 40, 0.48) 50%, rgba(92, 76, 37, 0.34) 100%),
        var(--v2-cta-image) center / cover no-repeat;
}

body.block-a-v2-page .v2-final-cta__content {
    width: min(1080px, calc(100vw - 80px));
    max-width: none;
}

body.block-a-v2-page .v2-final-cta__title {
    max-width: 470px;
    font-size: 2.35rem;
    line-height: 1;
    letter-spacing: 0;
}

body.block-a-v2-page .v2-final-cta__copy {
    max-width: 470px;
    margin: 12px 0 24px;
    font-size: 0.86rem;
    line-height: 1.45;
}

body.block-a-v2-page .v2-final-cta .v2-button {
    min-height: 42px;
    min-width: 156px;
}

body.block-a-v2-page .v2-footer {
    padding: 44px 0 58px;
}

body.block-a-v2-page .v2-footer__grid {
    gap: 70px;
}

body.block-a-v2-page .v2-footer h3 {
    margin-bottom: 18px;
    font-size: 0.9rem;
}

body.block-a-v2-page .v2-footer__address,
body.block-a-v2-page .v2-footer__list {
    font-size: 0.82rem;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    body.block-a-v2-page .shell,
    body.block-a-v2-page .v2-booking .shell,
    body.block-a-v2-page .v2-final-cta__content {
        width: min(1000px, calc(100vw - 48px));
    }

    body.block-a-v2-page .v2-header__nav {
        gap: 24px;
    }

    body.block-a-v2-page .v2-booking-bar {
        grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.9fr) minmax(150px, auto);
        gap: 15px;
        padding-inline: 20px;
    }

    .block-a-v2-facilities__grid {
        grid-template-columns: minmax(260px, 0.7fr) minmax(500px, 1.3fr);
        gap: 38px;
    }

    .block-a-v2-room-card {
        grid-template-columns: 166px minmax(0, 1fr);
        gap: 24px;
    }

    .block-a-v2-cafe__grid {
        grid-template-columns: minmax(480px, 1.2fr) minmax(260px, 0.7fr);
    }
}

@media (max-width: 980px) {
    body.block-a-v2-page .v2-hero--block-a-v2 {
        min-height: 480px;
    }

    body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__frame {
        min-height: 480px;
    }

    body.block-a-v2-page .v2-booking-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 22px;
    }

    body.block-a-v2-page .v2-booking-bar__dates {
        grid-column: 1 / -1;
    }

    body.block-a-v2-page .v2-button--booking {
        grid-column: 1 / -1;
        width: 100%;
    }

    .block-a-v2-facilities__grid,
    .block-a-v2-event__grid,
    .block-a-v2-cafe__grid,
    body.block-a-v2-page .v2-footer__grid {
        grid-template-columns: 1fr;
    }

    .block-a-v2-facilities__content,
    .block-a-v2-cafe__content {
        max-width: none;
    }

    .block-a-v2-rooms__grid {
        grid-template-columns: 1fr;
    }

    .block-a-v2-room-card h3 {
        margin-top: 18px;
    }

    .block-a-v2-event__grid {
        gap: 34px;
    }

    .block-a-v2-cafe__grid {
        gap: 42px;
    }
}

@media (max-width: 760px) {
    body.block-a-v2-page .shell,
    body.block-a-v2-page .v2-booking .shell,
    body.block-a-v2-page .v2-final-cta__content {
        width: calc(100vw - 28px);
    }

    body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__frame {
        padding-top: 114px;
    }

    body.block-a-v2-page .v2-hero--block-a-v2 h1 {
        font-size: 2.85rem;
    }

    body.block-a-v2-page .v2-booking {
        margin-top: -34px;
    }

    body.block-a-v2-page .v2-booking-bar {
        grid-template-columns: 1fr;
    }

    .block-a-v2-facilities {
        padding-top: 54px;
    }

    .block-a-v2-facilities__grid {
        gap: 34px;
    }

    .block-a-v2-facilities__content h2,
    .block-a-v2-rooms__heading h2 {
        font-size: 2.65rem;
    }

    .block-a-v2-facilities__media,
    .block-a-v2-event__images,
    .block-a-v2-cafe__images {
        grid-template-columns: 1fr;
    }

    .block-a-v2-facilities__media figure:first-child,
    .block-a-v2-facilities__media figure:nth-child(3),
    .block-a-v2-event__images figure:first-child,
    .block-a-v2-cafe__images figure:first-child {
        margin-top: 0;
    }

    .block-a-v2-facilities__media img {
        height: 220px;
    }

    body.block-a-v2-page .v2-facilities--block-a-v2 .v2-facilities__grid {
        grid-template-columns: 1fr;
    }

    .block-a-v2-rooms {
        padding-top: 0;
    }

    .block-a-v2-rooms__grid {
        margin-top: 44px;
    }

    .block-a-v2-room-card {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 18px;
    }

    .block-a-v2-room-card__media {
        min-height: 210px;
    }

    .block-a-v2-room-card__topline {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .block-a-v2-room-card__price {
        text-align: left;
    }

    .block-a-v2-room-card__button {
        justify-self: start;
    }

    .block-a-v2-cafe {
        padding: 76px 0 86px;
    }

    .block-a-v2-help {
        padding-bottom: 88px;
    }
}

@media (max-width: 560px) {
    body.block-a-v2-page .v2-header__brand img {
        height: 46px;
    }

    body.block-a-v2-page .v2-button--header {
        min-width: 0;
    }

    body.block-a-v2-page .v2-hero--block-a-v2 h1 {
        font-size: 2.45rem;
    }

    body.block-a-v2-page .v2-hero--block-a-v2 .v2-hero__copy {
        font-size: 0.76rem;
    }

    .block-a-v2-room-card {
        grid-template-columns: 1fr;
    }

    .block-a-v2-room-card__media {
        min-height: 250px;
    }

    .block-a-v2-room-card__body {
        padding-bottom: 16px;
    }

    .block-a-v2-event__images img,
    .block-a-v2-cafe__images img {
        height: 240px;
    }

    body.block-a-v2-page .v2-final-cta__title {
        font-size: 2rem;
    }
}

/* Block B V2 page */
body.block-b-v2-page .block-b-v2-event__content a,
body.block-b-v2-page .block-b-v2-cafe__content a {
    border-radius: 8px;
    letter-spacing: 0;
}

body.block-b-v2-page .v2-hero--block-b-v2 {
    overflow: hidden;
}

body.block-b-v2-page .v2-hero--block-b-v2 .v2-hero__image {
    object-position: 68% 52%;
    transform: scale(1.45);
    transform-origin: center center;
}

body.block-b-v2-page .v2-hero--block-b-v2 .v2-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.14) 100%);
}

body.block-b-v2-page .v2-hero--block-b-v2 .v2-hero__content {
    max-width: 650px;
}

body.block-b-v2-page .v2-hero--block-b-v2 .v2-hero__copy {
    max-width: 620px;
    margin-inline: auto;
}

.block-b-v2-facilities {
    padding: 58px 0 20px;
    background: #ffffff;
    overflow: clip;
}

.block-b-v2-facilities__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 0.9fr) minmax(300px, 1fr);
    gap: 0;
    align-items: center;
    width: min(1280px, 100vw);
    margin: 0 auto;
}

.block-b-v2-facilities__media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    min-width: 0;
}

.block-b-v2-facilities__media figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.block-b-v2-facilities__media img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.block-b-v2-facilities__media--left figure:first-child img {
    object-position: center center;
}

.block-b-v2-facilities__media--left figure:nth-child(2) {
    margin-top: 18px;
}

.block-b-v2-facilities__media--left figure:nth-child(2) img {
    object-position: 62% center;
}

.block-b-v2-facilities__media--right figure:first-child {
    margin-top: 18px;
}

.block-b-v2-facilities__media--right figure:first-child img {
    object-position: center center;
}

.block-b-v2-facilities__media--right figure:nth-child(2) img {
    object-position: center center;
}

.block-b-v2-facilities__content {
    display: grid;
    justify-items: center;
    min-width: 0;
    padding: 0 58px;
    text-align: center;
}

.block-b-v2-facilities__content .v2-section-kicker {
    margin-bottom: 10px;
    color: #262626;
    font-size: 0.78rem;
}

.block-b-v2-facilities__content h2,
.block-b-v2-event__content h2,
.block-b-v2-cafe__content h2 {
    margin: 0;
    font-family: var(--v2-font-display);
    font-weight: 500;
    letter-spacing: 0;
}

.block-b-v2-facilities__content h2 {
    font-size: 3.35rem;
    line-height: 0.96;
}

.block-b-v2-facilities__content p:not(.v2-section-kicker) {
    margin: 20px 0 0;
    color: #222222;
    font-size: 0.78rem;
    line-height: 1.35;
}

.block-b-v2-facilities__art {
    display: block;
    width: min(420px, 100%);
    height: 76px;
    margin-top: 54px;
    background: url("../images/essentials/sarawak-art.webp") center / auto 66px repeat-x;
    opacity: 0.2;
}

body.block-b-v2-page .v2-facilities--block-b-v2 {
    padding-top: 54px;
}

body.block-b-v2-page .block-a-v2-rooms {
    padding-top: 0;
}

.block-b-v2-event {
    position: relative;
    isolation: isolate;
    min-height: 460px;
    overflow: hidden;
    color: #ffffff;
    background: #101010;
}

.block-b-v2-event::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--block-b-v2-event-image) center center / cover no-repeat;
    filter: saturate(0.82) brightness(0.62);
    transform: scale(1.04);
}

.block-b-v2-event::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.78) 100%),
        rgba(14, 20, 18, 0.54);
}

.block-b-v2-event__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.86fr) minmax(560px, 1.14fr);
    gap: 58px;
    align-items: center;
    min-height: 460px;
    padding: 56px 0;
}

.block-b-v2-event__content {
    min-width: 0;
}

.block-b-v2-event__content .v2-section-kicker {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
}

.block-b-v2-event__content h2 {
    font-size: 2.4rem;
    line-height: 1;
}

.block-b-v2-event__content p {
    max-width: 520px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    line-height: 1.5;
}

.block-b-v2-event__content a,
.block-b-v2-cafe__content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    min-height: 30px;
    margin-top: 22px;
    border: 1px solid currentColor;
    background: #ffffff;
    color: #243a20;
    font-size: 0.72rem;
    font-weight: 900;
}

.block-b-v2-event__content a:hover,
.block-b-v2-cafe__content a:hover {
    background: #3f5d34;
    border-color: #3f5d34;
    color: #ffffff;
}

.block-b-v2-event__images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: center;
    min-width: 0;
}

.block-b-v2-event__images figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
}

.block-b-v2-event__images figure:first-child {
    margin-top: 52px;
}

.block-b-v2-event__images img {
    display: block;
    width: 100%;
    height: 286px;
    object-fit: cover;
}

.block-b-v2-cafe {
    padding: 116px 0 124px;
    background: #ffffff;
}

.block-b-v2-cafe__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.82fr) minmax(300px, 1fr);
    gap: 58px;
    align-items: center;
}

.block-b-v2-cafe__image {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(20, 20, 20, 0.16);
}

.block-b-v2-cafe__image img {
    display: block;
    width: 100%;
    height: 324px;
    object-fit: cover;
}

.block-b-v2-cafe__image--left {
    margin-top: 48px;
}

.block-b-v2-cafe__content {
    min-width: 0;
    text-align: center;
}

.block-b-v2-cafe__content .v2-section-kicker {
    margin-bottom: 10px;
    color: #1f1f1f;
    font-size: 0.76rem;
}

.block-b-v2-cafe__content h2 {
    font-size: 2.15rem;
    line-height: 1;
}

.block-b-v2-cafe__content p {
    margin: 20px auto 0;
    color: #333333;
    font-size: 0.78rem;
    line-height: 1.5;
}

.block-b-v2-cafe__content a {
    justify-content: center;
    min-width: 0;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #395a2e;
}

.block-b-v2-cafe__content a:hover {
    background: transparent;
    color: #243a20;
}

@media (max-width: 1100px) {
    .block-b-v2-facilities__grid {
        grid-template-columns: minmax(240px, 1fr) minmax(300px, 0.9fr) minmax(240px, 1fr);
    }

    .block-b-v2-facilities__content {
        padding-inline: 34px;
    }

    .block-b-v2-event__grid,
    .block-b-v2-cafe__grid {
        gap: 38px;
    }
}

@media (max-width: 980px) {
    .block-b-v2-facilities__grid,
    .block-b-v2-event__grid,
    .block-b-v2-cafe__grid {
        grid-template-columns: 1fr;
    }

    .block-b-v2-facilities__grid {
        width: min(1000px, calc(100vw - 48px));
        gap: 34px;
    }

    .block-b-v2-facilities__content {
        order: -1;
        padding: 0;
    }

    .block-b-v2-event__grid {
        gap: 34px;
    }

    .block-b-v2-cafe__content {
        order: -1;
    }
}

@media (max-width: 760px) {
    body.block-b-v2-page .v2-hero--block-b-v2 .v2-hero__copy {
        font-size: 0.74rem;
    }

    .block-b-v2-facilities {
        padding-top: 54px;
    }

    .block-b-v2-facilities__grid {
        width: calc(100vw - 28px);
    }

    .block-b-v2-facilities__media,
    .block-b-v2-event__images {
        grid-template-columns: 1fr;
    }

    .block-b-v2-facilities__media figure:nth-child(n),
    .block-b-v2-event__images figure:first-child,
    .block-b-v2-cafe__image--left {
        margin-top: 0;
    }

    .block-b-v2-facilities__media img {
        height: 220px;
    }

    .block-b-v2-facilities__content h2 {
        font-size: 2.65rem;
    }

    .block-b-v2-cafe {
        padding: 76px 0 86px;
    }
}

@media (max-width: 560px) {
    .block-b-v2-event__images img,
    .block-b-v2-cafe__image img {
        height: 240px;
    }
}

@media (max-width: 760px) {
    .v2-section-title {
        font-size: 2.25rem;
    }

    .v2-heading__copy,
    .v2-about__copy,
    .v2-promo__copy,
    .v2-final-cta__copy,
    .v2-blocks__content p:not(.v2-blocks__label) {
        font-size: 0.94rem;
    }

    .v2-blocks .v2-section-title {
        font-size: 2.3rem;
    }

    .v2-blocks__content h3 {
        font-size: 3rem;
    }

    .v2-room-card__body h3,
    .v2-meeting-card__body h3,
    .v2-restaurant__features h3 {
        font-size: 1.28rem;
    }

    .v2-final-cta__title {
        font-size: 2rem;
    }

    body.block-a-page .v2-hero--block h1,
    body.block-a-v2-page .v2-hero--block-a-v2 h1 {
        font-size: 2.45rem;
    }

    .block-a-intro h2,
    .block-a-rooms__heading h2,
    .block-a-event__content h2,
    .block-a-cafe__content h2,
    .block-a-help h2,
    .block-a-v2-facilities__content h2,
    .block-a-v2-rooms__heading h2,
    .block-a-v2-event__content h2,
    .block-a-v2-cafe__content h2,
    .block-a-v2-help h2,
    .block-b-v2-facilities__content h2,
    .block-b-v2-event__content h2,
    .block-b-v2-cafe__content h2 {
        font-size: 2.15rem;
        line-height: 1.05;
    }

    .block-a-room-card h3,
    .block-a-v2-room-card h3 {
        font-size: 1.7rem;
    }

    body.block-a-page .v2-final-cta__title,
    body.block-a-v2-page .v2-final-cta__title {
        font-size: 1.9rem;
    }
}

@media (max-width: 560px) {
    .v2-section-kicker,
    .v2-kicker {
        font-size: 0.72rem;
    }

    .v2-section-title {
        font-size: 2rem;
    }

    .v2-hero h1 {
        font-size: 3.25rem;
    }

    .v2-hero__copy,
    .v2-heading__copy,
    .v2-about__copy,
    .v2-promo__copy,
    .v2-final-cta__copy,
    .v2-blocks__content p:not(.v2-blocks__label) {
        font-size: 0.9rem;
    }

    .v2-blocks .v2-section-title {
        font-size: 2.05rem;
    }

    .v2-blocks__content h3 {
        font-size: 2.75rem;
    }

    .v2-room-card__body h3,
    .v2-meeting-card__body h3,
    .v2-restaurant__features h3 {
        font-size: 1.16rem;
    }

    .v2-final-cta__title {
        font-size: 1.75rem;
    }

    body.block-a-page .v2-hero--block h1,
    body.block-a-v2-page .v2-hero--block-a-v2 h1 {
        font-size: 2.15rem;
    }

    .block-a-intro h2,
    .block-a-rooms__heading h2,
    .block-a-event__content h2,
    .block-a-cafe__content h2,
    .block-a-help h2,
    .block-a-v2-facilities__content h2,
    .block-a-v2-rooms__heading h2,
    .block-a-v2-event__content h2,
    .block-a-v2-cafe__content h2,
    .block-a-v2-help h2,
    .block-b-v2-facilities__content h2,
    .block-b-v2-event__content h2,
    .block-b-v2-cafe__content h2 {
        font-size: 1.86rem;
    }

    .block-a-room-card h3,
    .block-a-v2-room-card h3 {
        font-size: 1.55rem;
    }

    body.block-a-page .v2-final-cta__title,
    body.block-a-v2-page .v2-final-cta__title {
        font-size: 1.7rem;
    }
}

@media (max-width: 380px) {
    .v2-hero h1 {
        font-size: 2.9rem;
    }

    .v2-blocks__content h3 {
        font-size: 2.45rem;
    }

    .block-a-intro h2,
    .block-a-rooms__heading h2,
    .block-a-event__content h2,
    .block-a-cafe__content h2,
    .block-a-help h2,
    .block-a-v2-facilities__content h2,
    .block-a-v2-rooms__heading h2,
    .block-a-v2-event__content h2,
    .block-a-v2-cafe__content h2,
    .block-a-v2-help h2,
    .block-b-v2-facilities__content h2,
    .block-b-v2-event__content h2,
    .block-b-v2-cafe__content h2 {
        font-size: 1.68rem;
    }
}
