:root {
    --ink: #211a17;
    --ink-soft: #4f4039;
    --muted: #786b63;
    --paper: #fff7ef;
    --surface: #ffffff;
    --surface-warm: #fff1e6;
    --rose: #c94a72;
    --rose-dark: #9f2f57;
    --coral: #e3784f;
    --gold: #d9a441;
    --lagoon: #177b82;
    --leaf: #4f8a61;
    --line: #ead8c9;
    --line-strong: #dfc5b1;
    --shadow: 0 18px 45px rgba(42, 28, 22, .14);
    --soft-shadow: 0 12px 30px rgba(42, 28, 22, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 247, 239, .92), rgba(255, 252, 247, 1) 460px),
        var(--paper);
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    line-height: 1.6;
}

body::selection {
    color: #fff;
    background: var(--rose);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    min-height: 76px;
    padding: 10px clamp(18px, 5vw, 72px);
    background: rgba(255, 250, 246, .86);
    border-bottom: 1px solid rgba(234, 216, 201, .72);
    backdrop-filter: blur(18px);
    transition: background .2s ease, box-shadow .2s ease, min-height .2s ease;
}

.site-header.is-scrolled {
    min-height: 68px;
    background: rgba(255, 250, 246, .94);
    box-shadow: 0 10px 35px rgba(42, 28, 22, .08);
}

.brand {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    min-width: 0;
    font-weight: 900;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(42, 28, 22, .1);
}

.brand span {
    white-space: nowrap;
}

.site-nav {
    display: flex;
    gap: 6px;
    justify-content: center;
    font-size: 13px;
    font-weight: 750;
    color: var(--ink-soft);
}

.site-nav a,
.nav-link {
    position: relative;
    display: grid;
    gap: 1px;
    min-height: 46px;
    padding: 7px 12px;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-link small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.nav-main {
    line-height: 1.1;
}

.nav-link.active {
    color: var(--rose-dark);
    border-color: rgba(201, 74, 114, .18);
    background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 241, 230, .92));
    box-shadow: 0 10px 26px rgba(201, 74, 114, .12);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: -1px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rose), var(--coral), var(--gold));
}

.nav-link.active small {
    color: var(--rose-dark);
}

.site-nav a:hover,
.filter-row a:hover,
.section-heading a:hover {
    color: var(--rose-dark);
    background: rgba(201, 74, 114, .1);
}

.site-nav a:hover,
.item-card:hover,
.feature:hover,
.menu-item:hover,
blockquote:hover {
    transform: translateY(-2px);
}

.header-cta,
.nav-reserve-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 850;
    line-height: 1;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.header-cta,
.nav-reserve-cta,
.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    box-shadow: 0 14px 28px rgba(201, 74, 114, .28);
}

.header-cta.active,
.nav-reserve-cta.active {
    box-shadow: 0 0 0 4px rgba(201, 74, 114, .14), 0 14px 28px rgba(201, 74, 114, .28);
}

.btn.primary:hover,
.nav-reserve-cta:hover,
.header-cta:hover {
    background: linear-gradient(135deg, var(--rose-dark), var(--coral));
    transform: translateY(-2px);
}

.site-nav .nav-reserve-cta {
    display: none;
}

.btn.is-loading,
.header-cta.is-loading,
.nav-reserve-cta.is-loading {
    position: relative;
    pointer-events: none;
    opacity: .82;
}

.btn.is-loading::after,
.header-cta.is-loading::after,
.nav-reserve-cta.is-loading::after {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-top-color: #fff;
    border-radius: 50%;
    content: "";
    animation: spin .75s linear infinite;
}

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

.btn.light {
    color: var(--ink);
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 10px 22px rgba(18, 17, 15, .12);
}

.btn.outline {
    color: var(--rose-dark);
    border-color: rgba(201, 74, 114, .5);
    background: rgba(255, 255, 255, .68);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font-size: 22px;
}

.hero,
.page-hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 640px;
    padding: 128px clamp(18px, 6vw, 86px) 34px;
    color: #fff;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 17, 15, .08), rgba(18, 17, 15, .58));
    pointer-events: none;
}

.hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    left: clamp(18px, 6vw, 86px);
    right: clamp(18px, 6vw, 86px);
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
}

.page-hero {
    min-height: 430px;
}

.hero-content,
.page-hero > * {
    position: relative;
}

.hero-content {
    max-width: 790px;
}

.hero h1,
.page-hero h1 {
    max-width: 920px;
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.page-hero h1 {
    font-size: 48px;
}

.hero p,
.page-hero p {
    max-width: 720px;
    font-size: 19px;
    color: rgba(255, 255, 255, .9);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-actions,
.pill-row,
.meta-row,
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hero-strip {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 64px;
}

.hero-strip span,
.pill,
.meta-row span,
.success-summary span {
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    padding: 9px 13px;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(12px);
    font-size: 14px;
    font-weight: 750;
}

.home-hero-slider {
    min-height: clamp(640px, 88vh, 820px);
    padding: 0;
    background: #211a17;
    isolation: isolate;
}

.home-hero-slider::before {
    display: none;
}

.home-hero-slider::after {
    z-index: 4;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    padding: 132px clamp(18px, 6vw, 86px) 168px;
    opacity: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(18, 17, 15, .82), rgba(18, 17, 15, .34) 48%, rgba(18, 17, 15, .14)),
        linear-gradient(180deg, rgba(18, 17, 15, .08), rgba(18, 17, 15, .62)),
        var(--hero-bg);
    background-position: center;
    background-size: cover;
    transform: scale(1.04);
    transition: opacity .7s ease, transform 5.8s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.home-hero-slider .hero-content {
    z-index: 2;
    max-width: 850px;
}

.hero-title {
    max-width: 920px;
    margin: 0 0 18px;
    font-size: 58px;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-ui {
    position: absolute;
    left: clamp(18px, 6vw, 86px);
    right: clamp(18px, 6vw, 86px);
    bottom: 34px;
    z-index: 3;
    display: grid;
    gap: 18px;
}

.home-hero-slider .hero-strip {
    margin-top: 0;
}

.hero-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 780px;
}

.hero-arrow,
.hero-dot {
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .32);
    color: #fff;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(14px);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.hero-arrow {
    display: inline-grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.hero-dots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    flex: 1;
}

.hero-dot {
    width: 100%;
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 850;
    white-space: nowrap;
}

.hero-arrow:hover,
.hero-dot:hover,
.hero-dot.is-active {
    border-color: rgba(255, 255, 255, .74);
    background: rgba(255, 255, 255, .26);
    transform: translateY(-2px);
}

.hero-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    height: 3px;
    background: rgba(255, 255, 255, .16);
}

.hero-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--rose), var(--coral));
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-progress span {
        transition: none;
    }
}

.section {
    padding: 84px clamp(18px, 6vw, 86px);
}

.band {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 244, 235, .72)),
        #fff;
}

.narrow {
    max-width: 880px;
    margin: 0 auto;
}

.intro-grid,
.split,
.detail-grid,
.form-layout,
.partnership-layout,
.payment-layout,
.footer-grid,
.reservation-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .74fr);
    gap: 44px;
    align-items: center;
}

.intro-grid h2,
.section-heading h2,
.split h2,
.detail-grid h2,
.form-layout h2,
.partnership-panel h2,
.reservation-aside h2,
.menu-section h2,
.success-state h1 {
    margin: 0 0 14px;
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-heading {
    display: flex;
    gap: 18px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-heading a {
    color: var(--lagoon);
    font-weight: 900;
}

.stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 26px;
    border: 1px solid rgba(223, 197, 177, .9);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--soft-shadow);
}

.stats strong {
    color: var(--rose);
    font-size: 36px;
    line-height: 1;
}

.stats span {
    margin-bottom: 14px;
    color: var(--muted);
}

.seo-cluster {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
    gap: 34px;
    align-items: stretch;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 244, 235, .88)),
        url("/static/hotel/images/bg/38.jpg") center / cover;
}

.seo-cluster h2 {
    max-width: 820px;
    margin: 0 0 14px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: 0;
    text-wrap: balance;
}

.seo-cluster p {
    max-width: 820px;
    color: var(--muted);
}

.seo-cluster strong {
    color: var(--rose-dark);
}

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

.seo-link-grid a {
    display: grid;
    align-content: start;
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(234, 216, 201, .9);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.seo-link-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 74, 114, .3);
    box-shadow: var(--shadow);
}

.seo-link-grid span {
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
}

.seo-link-grid strong {
    margin: 12px 0 6px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.15;
}

.seo-link-grid small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.comfort-intro,
.tariff-highlight,
.detail-experience-grid,
.service-faq-strip,
.room-seo-cluster {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 36px;
    align-items: center;
}

.comfort-intro h2,
.tariff-highlight h2,
.detail-copy h2,
.service-faq-strip h2,
.room-seo-cluster h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
}

.comfort-actions,
.room-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.comfort-scorecard {
    display: grid;
    gap: 12px;
}

.comfort-scorecard div,
.proof-grid div,
.value-grid article,
.path-card,
.tariff-list article,
.service-rich-card,
.room-rich-card {
    border: 1px solid rgba(234, 216, 201, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft-shadow);
}

.comfort-scorecard div {
    padding: 22px;
}

.comfort-scorecard strong {
    display: block;
    color: var(--rose-dark);
    font-size: 34px;
    line-height: 1;
}

.comfort-scorecard span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.service-paths {
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .94), rgba(255, 241, 230, .78)),
        #fff;
}

.path-grid,
.value-grid,
.service-rich-grid,
.room-rich-grid,
.proof-grid {
    display: grid;
    gap: 18px;
}

.path-grid,
.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.path-card,
.value-grid article {
    min-height: 230px;
    padding: 24px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.path-card:hover,
.value-grid article:hover,
.service-rich-card:hover,
.room-rich-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 74, 114, .24);
    box-shadow: var(--shadow);
}

.path-card span,
.value-grid span,
.proof-grid strong {
    display: inline-flex;
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.path-card h3,
.value-grid h3,
.service-rich-card h3,
.room-rich-card h2 {
    margin: 12px 0 8px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: 0;
}

.path-card p,
.value-grid p,
.service-rich-card p,
.room-rich-card p,
.detail-copy p,
.tariff-highlight p,
.service-faq-strip p,
.room-seo-cluster p {
    color: var(--muted);
}

.service-rich-card,
.room-rich-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card-media,
.room-media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 240px;
    background: #211a17;
}

.service-card-media img,
.room-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    transition: transform .45s ease, opacity .25s ease;
}

.service-rich-card:hover img,
.room-rich-card:hover img {
    opacity: .9;
    transform: scale(1.04);
}

.service-card-media span,
.room-media span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-grid;
    place-items: center;
    min-height: 38px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    box-shadow: 0 12px 28px rgba(201, 74, 114, .28);
    font-weight: 900;
}

.service-rich-card > div:not(.service-card-media),
.room-card-body {
    padding: 24px;
}

.mini-checks {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.mini-checks li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    font-weight: 760;
}

.mini-checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .58em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lagoon), var(--leaf));
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--rose-dark);
    font-weight: 950;
}

.tariff-highlight {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .96), rgba(159, 47, 87, .88)),
        url("/static/hotel/images/bg/38.jpg") center / cover;
}

.tariff-highlight p {
    color: rgba(255, 255, 255, .82);
}

.tariff-highlight .btn.outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .12);
}

.tariff-list {
    display: grid;
    gap: 12px;
}

.tariff-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 18px;
    align-items: center;
    padding: 18px;
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
}

.tariff-list span {
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.tariff-list strong {
    font-size: 18px;
    line-height: 1.2;
}

.tariff-list small {
    grid-column: 1;
    color: var(--muted);
}

.tariff-list b {
    grid-row: span 3;
    color: var(--rose-dark);
    font-size: 20px;
    white-space: nowrap;
}

.mini-card-stack {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.mini-card-stack a {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft-shadow);
}

.mini-card-stack strong,
.mini-card-stack span {
    display: block;
}

.mini-card-stack span {
    margin-top: 4px;
    color: var(--muted);
}

.faq-mini-list {
    display: grid;
    gap: 8px;
}

.faq-mini-list details {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.detail-experience-grid {
    align-items: start;
}

.detail-copy {
    min-width: 0;
}

.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 26px 0;
}

.proof-grid div {
    padding: 18px;
}

.proof-grid strong {
    display: block;
    color: var(--rose-dark);
    font-size: 26px;
    line-height: 1.05;
    text-transform: none;
    letter-spacing: 0;
}

.proof-grid span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-weight: 800;
}

.premium-booking {
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 239, 226, .86)),
        #fff;
}

.premium-booking h2 {
    color: var(--rose-dark);
    font-size: 34px;
}

.booking-facts {
    display: grid;
    gap: 8px;
}

.booking-facts span {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: #fff;
    font-size: 14px;
    font-weight: 850;
}

.rich-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.rich-check-list li {
    margin: 0;
    padding: 13px 14px 13px 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, var(--lagoon), var(--leaf)) 14px 18px / 12px 12px no-repeat,
        rgba(255, 255, 255, .82);
}

.room-title-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.price-badge {
    flex: 0 0 auto;
    padding: 10px 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    box-shadow: 0 12px 28px rgba(201, 74, 114, .24);
    font-size: 14px;
}

.room-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.room-facts span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: #fff;
    font-size: 13px;
    font-weight: 850;
}

.room-value-section {
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .94), rgba(255, 241, 230, .74)),
        #fff;
}

.room-gallery-rich img {
    aspect-ratio: 4 / 3;
}

.review-trust-grid,
.review-submit-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
    gap: 38px;
    align-items: start;
}

.review-trust-grid h2,
.review-form-intro h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
}

.review-score-panel {
    display: grid;
    align-content: center;
    min-height: 260px;
    padding: 30px;
    border: 1px solid rgba(234, 216, 201, .92);
    border-radius: 8px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .96), rgba(201, 74, 114, .88)),
        url("/static/hotel/images/bg/38.jpg") center / cover;
    box-shadow: var(--shadow);
}

.review-score-panel strong {
    font-size: 58px;
    line-height: 1;
}

.review-score-panel span,
.review-score-panel small {
    color: rgba(255, 255, 255, .84);
    font-weight: 850;
}

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

.review-card {
    display: grid;
    align-content: space-between;
    min-height: 290px;
    padding: 26px;
    border: 1px solid rgba(234, 216, 201, .92);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 244, 235, .86)),
        #fff;
    box-shadow: var(--soft-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 74, 114, .24);
    box-shadow: var(--shadow);
}

.review-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: .08em;
}

.review-card p {
    margin: 18px 0 28px;
    color: var(--ink-soft);
    font-size: 17px;
}

.review-card footer {
    display: grid;
    gap: 3px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.review-card footer span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.review-submit-section {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 241, 230, .84)),
        url("/static/hotel/images/bg/47.jpg") center / cover;
}

.review-security-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.review-security-list span {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .9);
    font-weight: 850;
}

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

.review-form .full,
.review-consents,
.review-form button,
.review-form .secure-note,
.review-form .field-error {
    grid-column: 1 / -1;
}

.review-consents {
    display: grid;
    gap: 12px;
}

.review-consents label {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
}

.review-check {
    margin-top: 4px;
}

.premium-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 74, 114, .18), transparent 38%);
    transition: opacity .2s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

.experience-board {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 244, 235, .82)),
        url("/static/hotel/images/bg/56.jpg") center / cover fixed;
}

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

.journey-step,
.journey-media,
.dish-mini,
.journal-card,
.showcase-tile {
    border: 1px solid rgba(234, 216, 201, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.journey-step {
    min-height: 210px;
    padding: 22px;
}

.journey-step span,
.dish-mini span,
.showcase-tile span,
.journal-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.journey-step h3,
.showcase-tile h3,
.dish-mini h3,
.journal-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.18;
    letter-spacing: 0;
}

.journey-step p,
.showcase-tile p,
.dish-mini p,
.journal-card p {
    color: var(--muted);
}

.journey-media {
    display: grid;
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(180px, .72fr);
    align-items: stretch;
    min-height: 260px;
}

.journey-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.journey-media div {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(33, 26, 23, .95), rgba(159, 47, 87, .88));
    color: #fff;
}

.journey-media strong {
    font-size: 42px;
    line-height: 1;
}

.journey-media span {
    color: rgba(255, 255, 255, .82);
}

.home-showcase {
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .92), rgba(255, 255, 255, .92)),
        #fff;
}

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

.showcase-tile {
    display: grid;
    min-height: 430px;
    overflow: hidden;
    color: #fff;
    background: #211a17;
}

.showcase-tile.wide {
    grid-column: span 2;
}

.showcase-tile img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    opacity: .78;
    transition: transform .45s ease, opacity .25s ease;
}

.showcase-tile div {
    grid-area: 1 / 1;
    align-self: end;
    padding: 26px;
    background: linear-gradient(180deg, transparent, rgba(18, 17, 15, .78));
}

.showcase-tile:hover img {
    opacity: .9;
    transform: scale(1.04);
}

.showcase-tile span,
.showcase-tile p {
    color: rgba(255, 255, 255, .84);
}

.showcase-tile h3 {
    max-width: 620px;
    font-size: 30px;
}

.taste-section {
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .96), rgba(75, 42, 46, .92)),
        url("/static/hotel/images/bg/38.jpg") center / cover;
    color: #fff;
}

.taste-panel {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
}

.taste-panel h2 {
    max-width: 680px;
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.12;
}

.taste-panel p {
    color: rgba(255, 255, 255, .78);
}

.dish-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.dish-mini {
    min-height: 190px;
    padding: 20px;
    color: var(--ink);
}

.dish-mini strong {
    color: var(--rose-dark);
}

.journal-card {
    overflow: hidden;
}

.journal-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.journal-card div {
    padding: 22px;
}

.journal-card a {
    color: var(--rose-dark);
    font-weight: 900;
}

.partner-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(23, 123, 130, .96), rgba(201, 74, 114, .9)),
        url("/static/hotel/images/bg/47.jpg") center / cover;
}

.partner-strip h2 {
    max-width: 820px;
    margin: 0 0 10px;
    font-size: 36px;
    line-height: 1.12;
}

.partner-strip p {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
}

.card-grid,
.feature-grid,
.quote-grid,
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.item-card,
.feature,
.booking-panel,
.panel-form,
.contact-panel,
.cta-panel,
.reservation-aside,
blockquote,
.menu-item {
    border: 1px solid rgba(234, 216, 201, .9);
    border-radius: 8px;
    background: rgba(255, 255, 255, .88);
    box-shadow: var(--soft-shadow);
}

.item-card,
.feature,
blockquote,
.menu-item {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease, box-shadow .2s ease, border-color .2s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.item-card:hover,
.feature:hover,
.menu-item:hover,
blockquote:hover {
    border-color: rgba(201, 74, 114, .22);
    box-shadow: var(--shadow);
}

.item-card {
    overflow: hidden;
}

.item-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.item-card div,
.feature,
.booking-panel,
.contact-panel,
.cta-panel,
.reservation-aside,
blockquote,
.menu-item {
    padding: 24px;
}

.item-card h2,
.item-card h3,
.feature h2,
.feature h3,
.menu-item h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
}

.item-card p,
.feature p,
.menu-item p,
.site-footer p,
.rich-text,
.reservation-aside p,
.contact-panel p {
    color: var(--muted);
}

.item-card a {
    color: var(--rose-dark);
    font-weight: 900;
}

.activities-hero {
    min-height: 520px;
}

.activities-showcase {
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .96), rgba(255, 255, 255, .9)),
        #fff;
}

.activities-heading h2 {
    max-width: 760px;
}

.activity-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.activity-rich-card {
    display: grid;
    grid-template-columns: minmax(240px, .92fr) minmax(0, 1fr);
    min-height: 360px;
    border: 1px solid rgba(234, 216, 201, .92);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--soft-shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.activity-rich-card:nth-child(3n + 1) {
    grid-column: span 2;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, .95fr);
}

.activity-rich-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 123, 130, .28);
    box-shadow: var(--shadow);
}

.activity-rich-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #211a17;
}

.activity-rich-media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform .45s ease, opacity .25s ease;
}

.activity-rich-card:hover .activity-rich-media img {
    opacity: .92;
    transform: scale(1.045);
}

.activity-price-pill {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    max-width: calc(100% - 32px);
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    box-shadow: 0 14px 28px rgba(42, 28, 22, .22);
    font-size: 14px;
    font-weight: 950;
    line-height: 1.1;
}

.activity-rich-body {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 28px;
}

.activity-kicker-row,
.activity-facts,
.activity-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
}

.activity-kicker-row span,
.activity-facts span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 850;
}

.activity-kicker-row span:first-child {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--lagoon), var(--leaf));
}

.activity-rich-card h2 {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: 0;
}

.activity-rich-card p {
    margin: 0;
    color: var(--muted);
}

.activity-actions {
    margin-top: 4px;
}

.activity-actions .btn {
    min-width: 132px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft-shadow);
}

.feature span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--lagoon), var(--leaf));
    font-weight: 900;
}

.split img {
    width: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.pill,
.filter-row a,
.meta-row span,
.success-summary span {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
    backdrop-filter: none;
}

.filter-row {
    margin-bottom: 28px;
}

.filter-row a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.filter-row a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    border-color: transparent;
}

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

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

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(42, 28, 22, .08);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item span {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #fff;
    background: rgba(33, 26, 23, .75);
    font-weight: 800;
}

.blog-list-section {
    display: grid;
    gap: 26px;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(234, 216, 201, .9);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 241, 230, .9));
    box-shadow: var(--shadow);
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.blog-featured-card > div {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: clamp(24px, 5vw, 46px);
}

.blog-featured-card h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: 0;
}

.blog-grid {
    margin-top: 6px;
}

.blog-card img {
    aspect-ratio: 16 / 10;
}

.detail-grid {
    align-items: start;
}

.booking-panel {
    position: sticky;
    top: 98px;
    display: grid;
    gap: 12px;
}

.check-list {
    padding: 0;
    list-style: none;
}

.check-list li {
    margin: 10px 0;
    padding-left: 30px;
    color: var(--ink-soft);
    background:
        linear-gradient(135deg, var(--lagoon), var(--leaf)) left 9px / 14px 14px no-repeat;
}

.form-layout,
.reservation-shell {
    align-items: start;
}

.reservation-shell {
    grid-template-columns: minmax(280px, .58fr) minmax(0, 1fr);
    background:
        linear-gradient(180deg, rgba(255, 247, 239, 0), rgba(255, 241, 230, .75));
}

.reservation-aside {
    position: sticky;
    top: 102px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(255, 239, 226, .82)),
        #fff;
}

.reservation-aside::before {
    content: "";
    display: block;
    height: 150px;
    margin: -24px -24px 24px;
    background:
        linear-gradient(90deg, rgba(33, 26, 23, .45), rgba(201, 74, 114, .18)),
        url("/static/hotel/images/cristaux/12.jpg") center / cover;
}

.experience-list,
.success-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.experience-list span {
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--surface-warm);
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: 14px;
}

.live-summary {
    display: grid;
    gap: 9px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid rgba(201, 74, 114, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .76);
}

.live-summary strong {
    color: var(--rose-dark);
}

.live-summary span {
    color: var(--muted);
    font-size: 14px;
}

.panel-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 26px;
}

.booking-type-field,
.addon-picker {
    grid-column: 1 / -1;
}

.field-label {
    display: block;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 850;
}

.booking-type-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.booking-type-card {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 58px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink-soft);
    cursor: pointer;
    font-weight: 900;
    text-align: center;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.booking-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-type-card.is-selected,
.addon-card.is-selected {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--rose), var(--coral));
    box-shadow: 0 14px 30px rgba(201, 74, 114, .25);
}

.booking-type-card:hover,
.addon-card:hover {
    transform: translateY(-2px);
}

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

.partnership-layout,
.payment-layout {
    align-items: start;
}

.partnership-panel,
.payment-panel {
    position: sticky;
    top: 96px;
    padding: 28px;
    border: 1px solid rgba(234, 216, 201, .9);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 244, 235, .82));
    box-shadow: var(--soft-shadow);
}

.gateway-grid {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.gateway-card,
.cookie-option {
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
}

.gateway-card strong,
.cookie-option strong {
    color: var(--rose-dark);
}

.gateway-card span,
.cookie-option span {
    color: var(--muted);
}

.cookie-settings {
    display: grid;
    gap: 14px;
}

.cookie-option {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.cookie-option input {
    width: 22px;
    min-height: 22px;
    accent-color: var(--rose);
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.partner-benefits span {
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink-soft);
    font-weight: 850;
}

.contact-partner-link {
    margin-top: 14px;
}

.panel-form .form-field:has(textarea),
.panel-form .form-field:has(select[multiple]),
.panel-form .choices-field,
.panel-form button,
.panel-form .field-error,
.panel-form .secure-note {
    grid-column: 1 / -1;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(201, 74, 114, .65);
    box-shadow: 0 0 0 4px rgba(201, 74, 114, .12);
}

textarea {
    resize: vertical;
}

.choices-field > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.addon-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(234, 216, 201, .9);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .9), rgba(255, 255, 255, .92));
}

.addon-picker-head,
.addon-picker > .field-error {
    grid-column: 1 / -1;
}

.addon-picker p {
    margin: -4px 0 0;
    color: var(--muted);
}

.addon-picker-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.addon-picker-head p {
    max-width: 520px;
    text-align: right;
    font-size: 14px;
}

.addon-select-group {
    overflow: hidden;
    border: 1px solid rgba(234, 216, 201, .95);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 32px rgba(36, 27, 20, .06);
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.addon-select-group[hidden] {
    display: none;
}

.addon-select-group.has-selection {
    border-color: rgba(201, 74, 114, .5);
    background: linear-gradient(180deg, rgba(255, 249, 251, .98), rgba(255, 255, 255, .92));
    box-shadow: 0 16px 34px rgba(201, 74, 114, .13);
}

.addon-select-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 54px;
    padding: 14px 16px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
}

.addon-select-group summary::-webkit-details-marker {
    display: none;
}

.addon-select-group summary::after {
    display: inline-grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: var(--rose-dark);
    background: rgba(201, 74, 114, .1);
    content: "+";
    font-weight: 900;
}

.addon-select-group[open] summary::after {
    content: "-";
}

.addon-select-group summary span {
    font-weight: 850;
}

.addon-select-group summary small {
    margin-left: auto;
    color: var(--muted);
    font-weight: 800;
    white-space: nowrap;
}

.addon-select-wrap {
    display: grid;
    gap: 10px;
    padding: 0 16px 16px;
}

.addon-select {
    width: 100%;
    min-height: 172px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: none;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 249, 246, .92));
    font: inherit;
}

.addon-select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(201, 74, 114, .12);
}

.addon-select option {
    padding: 10px 8px;
    border-radius: 6px;
}

.addon-select option:checked {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--coral));
}

.addon-select-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.addon-group {
    display: grid;
    gap: 10px;
}

.addon-group[hidden] {
    display: none;
}

.addon-group h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0;
}

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

.addon-card {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.addon-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.addon-card span {
    font-weight: 850;
    line-height: 1.25;
}

.addon-card strong {
    color: inherit;
    font-size: 13px;
}

.choices-field label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
}

.choices-field input {
    width: 18px;
    height: 18px;
    min-height: 0;
    accent-color: var(--rose);
}

.secure-note {
    margin: -4px 0 0;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.field-error,
.has-error label {
    color: #b3261e;
}

.map-frame iframe {
    width: 100%;
    height: 280px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
}

.faq-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr);
    gap: 28px;
}

details {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

summary {
    cursor: pointer;
    font-weight: 900;
}

.success-state {
    min-height: 52vh;
    display: grid;
    align-content: center;
}

.booking-success-stage,
.payment-console-section {
    display: grid;
    gap: 28px;
    min-height: calc(100vh - 88px);
    padding: clamp(22px, 5vw, 72px) clamp(18px, 6vw, 86px);
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .94), rgba(255, 255, 255, .98)),
        #fff;
}

.booking-success-stage {
    grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
    align-items: stretch;
}

.booking-success-visual,
.payment-command-panel {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border-radius: 8px;
    color: #fff;
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 60px rgba(33, 26, 23, .2);
}

.booking-success-visual {
    display: grid;
    align-content: space-between;
    padding: clamp(24px, 4vw, 42px);
}

.booking-success-visual::after,
.payment-command-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 17, 15, .05), rgba(18, 17, 15, .55)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.success-status-mark,
.success-visual-copy,
.payment-command-panel > * {
    position: relative;
    z-index: 1;
}

.success-status-mark {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(16px);
}

.success-status-mark span {
    width: 38px;
    height: 21px;
    border-left: 5px solid #fff;
    border-bottom: 5px solid #fff;
    transform: rotate(-45deg) translate(2px, -2px);
}

.success-visual-copy h2,
.payment-command-panel h1 {
    max-width: 640px;
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.success-visual-copy p,
.payment-command-panel p {
    max-width: 640px;
    color: rgba(255, 255, 255, .86);
    font-size: 17px;
}

.booking-success-content {
    display: grid;
    align-content: center;
    gap: 24px;
    padding: clamp(10px, 3vw, 32px) 0;
}

.booking-success-content h1,
.payment-console-head h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.success-lead {
    max-width: 760px;
    margin: 0;
    color: var(--ink-soft);
    font-size: 18px;
}

.success-pill-row,
.success-actions,
.success-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.success-pill,
.secure-chip,
.success-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(23, 123, 130, .18);
    border-radius: 999px;
    color: var(--lagoon);
    background: rgba(23, 123, 130, .08);
    font-size: 13px;
    font-weight: 900;
}

.success-pill.strong {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--lagoon), var(--leaf));
}

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

.success-receipt div,
.success-next-step {
    border: 1px solid rgba(234, 216, 201, .95);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--soft-shadow);
}

.success-receipt div {
    display: grid;
    gap: 8px;
    min-height: 104px;
    padding: 18px;
}

.success-receipt span,
.success-next-step span {
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.success-receipt strong {
    color: var(--ink);
    font-size: 17px;
    line-height: 1.35;
}

.success-next-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 244, 235, .88)),
        #fff;
}

.success-next-step strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.1;
}

.success-next-step p {
    margin: 6px 0 0;
    color: var(--muted);
}

.payment-brand-mini,
.gateway-logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-weight: 950;
}

.payment-brand-mini {
    min-height: 54px;
    padding: 8px 12px;
    border-radius: 8px;
}

.payment-brand-mini span,
.gateway-logo > span {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
}

.paydunya-logo {
    background: linear-gradient(135deg, #7a194d, #e0a430);
}

.paydunya-logo > span,
.payment-brand-mini.paydunya-logo span {
    color: #7a194d;
    background: #ffd35a;
}

.paypal-logo {
    background: linear-gradient(135deg, #003087, #009cde);
}

.paypal-logo > span {
    color: #003087;
    background: #fff;
}

.payment-console-section {
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1fr);
    align-items: stretch;
}

.payment-command-panel {
    display: grid;
    align-content: space-between;
    padding: clamp(26px, 4vw, 46px);
}

.payment-trust-stack {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    max-width: 520px;
}

.payment-trust-stack div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
}

.payment-trust-stack strong {
    color: var(--gold);
    font-size: 13px;
}

.payment-trust-stack span {
    color: rgba(255, 255, 255, .9);
    font-weight: 850;
}

.payment-console {
    display: grid;
    align-content: center;
    gap: 20px;
}

.payment-console-head {
    display: flex;
    gap: 16px;
    align-items: end;
    justify-content: space-between;
}

.payment-console-head h2 {
    font-size: clamp(30px, 4vw, 48px);
}

.gateway-choice-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gateway-choice-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 190px;
    padding: 18px;
    border: 1px solid rgba(234, 216, 201, .98);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gateway-choice-card:hover,
.gateway-choice-card.is-selected {
    transform: translateY(-3px);
    border-color: rgba(201, 74, 114, .34);
    box-shadow: var(--shadow);
}

.gateway-choice-card.is-selected {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 241, 230, .9)),
        #fff;
}

.gateway-copy {
    display: grid;
    gap: 5px;
}

.gateway-copy strong {
    font-size: 21px;
    line-height: 1.1;
}

.gateway-copy small,
.gateway-meta small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.gateway-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gateway-meta small {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .86);
}

.payment-console-form {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-color: rgba(234, 216, 201, .98);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 248, 242, .9)),
        #fff;
}

.payment-form-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.payment-form-strip.client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.payment-console-form .form-field,
.payment-console-form button,
.payment-console-form .secure-note {
    grid-column: auto;
}

.payment-console-form .form-field input,
.payment-console-form .form-field select {
    min-height: 58px;
    background: rgba(255, 255, 255, .96);
}

.payment-submit {
    min-height: 58px;
    margin-top: 4px;
    font-size: 16px;
}

.payment-secure-note {
    max-width: 720px;
    margin: 0 auto;
}

.about-hero {
    position: relative;
    min-height: clamp(680px, 92vh, 860px);
    display: grid;
    align-items: end;
    padding: 132px clamp(18px, 6vw, 86px) 42px;
    color: #fff;
    overflow: hidden;
    background: #211a17;
}

.about-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.about-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 17, 15, .84), rgba(18, 17, 15, .34) 52%, rgba(18, 17, 15, .18)),
        linear-gradient(180deg, rgba(18, 17, 15, .12), rgba(18, 17, 15, .72));
}

.about-hero-content,
.about-hero-panel {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 880px;
    padding-bottom: 150px;
}

.about-hero h1 {
    max-width: 980px;
    margin: 0 0 18px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .98;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .9);
    font-size: 20px;
}

.about-hero-panel {
    position: absolute;
    left: clamp(18px, 6vw, 86px);
    right: clamp(18px, 6vw, 86px);
    bottom: 34px;
    display: grid;
    grid-template-columns: auto repeat(3, minmax(150px, 1fr));
    gap: 12px;
    align-items: stretch;
}

.about-hero-panel > div,
.about-video-toggle {
    min-height: 76px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .13);
    backdrop-filter: blur(16px);
}

.about-hero-panel strong {
    display: block;
    font-size: 28px;
    line-height: 1;
}

.about-hero-panel span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 800;
}

.about-video-toggle {
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-align: left;
    transition: transform .2s ease, background .2s ease;
}

.about-video-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .22);
}

.about-intro,
.about-story,
.about-video-section,
.about-experiences,
.about-social-proof,
.about-journal-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, .74fr);
    gap: 44px;
    align-items: center;
}

.about-intro h2,
.about-story h2,
.about-video-copy h2,
.about-experience-copy h2,
.about-social-proof h2,
.about-journal-cta h2 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-story-media {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 14px;
    align-items: end;
}

.about-story-media img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-story-media img:first-child {
    min-height: 520px;
}

.about-signature-grid,
.about-value-grid {
    display: grid;
    gap: 14px;
}

.about-signature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.about-signature-grid article,
.about-value-card {
    padding: 22px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .92);
}

.about-signature-grid span,
.about-value-card span {
    color: var(--rose-dark);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: 12px;
}

.about-value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-value-card h3,
.about-signature-grid h3 {
    margin: 10px 0 8px;
}

.about-video-section {
    align-items: center;
}

.about-video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #211a17;
    box-shadow: var(--shadow);
}

.about-video-frame video {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.about-experiences {
    align-items: start;
}

.about-room-strip {
    display: grid;
    gap: 14px;
}

.about-room-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--soft-shadow);
}

.about-room-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.about-room-card span {
    color: var(--rose-dark);
    font-size: 13px;
    font-weight: 900;
}

.about-room-card h3 {
    margin: 6px 0 0;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .9fr;
    gap: 12px;
}

.about-gallery-grid img {
    width: 100%;
    min-height: 260px;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--soft-shadow);
}

.about-gallery-grid > *:first-child {
    grid-row: span 2;
}

.about-gallery-grid > *:first-child img {
    min-height: 536px;
}

.about-social-proof {
    display: block;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .97), rgba(23, 123, 130, .82)),
        url("/static/hotel/images/bg/56.jpg") center / cover;
}

.about-proof-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(300px, .55fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 30px;
}

.about-proof-head h2 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-proof-head > p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

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

.about-testimonial-card {
    display: grid;
    align-content: space-between;
    min-height: 300px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
        rgba(255, 255, 255, .1);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px);
}

.about-testimonial-card p {
    margin: 18px 0 28px;
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.55;
    overflow-wrap: normal;
    text-wrap: pretty;
}

.about-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: .08em;
}

.about-testimonial-card footer {
    display: grid;
    gap: 2px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.about-testimonial-card strong {
    color: #fff;
    font-size: 16px;
}

.about-testimonial-card span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    font-weight: 800;
}

.about-journal-cta {
    padding-top: 68px;
    padding-bottom: 68px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .96), rgba(159, 47, 87, .88)),
        url("/static/hotel/images/bg/38.jpg") center / cover;
}

.about-journal-cta p {
    color: rgba(255, 255, 255, .84);
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.about-journal-cta .btn.outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .56);
    background: rgba(255, 255, 255, .12);
}

.site-footer {
    padding: 70px clamp(18px, 6vw, 86px) 24px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(33, 26, 23, .97), rgba(55, 31, 39, .96)),
        url("/static/hotel/images/bg/footer-map.png") right bottom / 420px auto no-repeat,
        #211a17;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 42px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04)),
        rgba(255, 255, 255, .06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.12;
}

.footer-cta p {
    max-width: 760px;
    margin: 0;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-size: 16px;
    letter-spacing: 0;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .78);
}

.site-footer a:hover {
    color: #fff;
}

.footer-grid {
    grid-template-columns: 1.35fr .7fr .85fr 1fr .65fr;
    align-items: start;
    gap: 30px;
}

.footer-logo {
    width: 86px;
    margin-bottom: 14px;
}

.footer-brand-block h2 {
    font-size: 22px;
}

.footer-badges,
.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.footer-badges span,
.footer-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .07);
    font-size: 13px;
    font-weight: 800;
}

.footer-contact-block a {
    font-weight: 850;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.footer-bottom a {
    display: inline;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-weight: 850;
}

.flash-wrap {
    position: fixed;
    top: 88px;
    right: 18px;
    z-index: 80;
    display: grid;
    gap: 10px;
    max-width: 360px;
}

.flash {
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff;
    background: var(--lagoon);
    box-shadow: var(--shadow);
}

.float-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 70;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    font-weight: 900;
    box-shadow: 0 18px 35px rgba(37, 211, 102, .34);
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 2px;
        font-size: 12px;
    }

    .site-nav a {
        padding-inline: 8px;
    }

    .addon-picker,
    .journey-grid,
    .showcase-grid,
    .journal-grid,
    .about-value-grid,
    .path-grid,
    .value-grid,
    .service-rich-grid,
    .review-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showcase-tile.wide,
    .journey-media {
        grid-column: span 2;
    }

    .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-toggle {
        display: inline-grid;
        place-items: center;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 75px;
        display: none;
        flex-direction: column;
        padding: 18px;
        background: rgba(255, 255, 255, .96);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--soft-shadow);
    }

    .site-header.menu-open .site-nav {
        display: flex;
    }

    .site-nav a,
    .nav-link {
        min-height: 48px;
        padding: 9px 12px;
    }

    .site-nav.open {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .site-nav.open .nav-reserve-cta {
        display: inline-flex;
        width: 100%;
        margin-top: 8px;
    }

    .taste-panel,
    .seo-cluster,
    .comfort-intro,
    .tariff-highlight,
    .detail-experience-grid,
    .service-faq-strip,
    .room-seo-cluster,
    .review-trust-grid,
    .review-submit-section,
    .booking-success-stage,
    .payment-console-section,
    .payment-layout,
    .partnership-layout,
    .about-intro,
    .about-story,
    .about-video-section,
    .about-experiences,
    .about-social-proof,
    .about-journal-cta {
        grid-template-columns: 1fr;
    }

    .partnership-panel,
    .payment-panel {
        position: static;
    }

    .booking-success-visual,
    .payment-command-panel {
        min-height: 420px;
    }

    .payment-console {
        align-content: start;
    }

    .payment-form-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-slider {
        min-height: 700px;
    }

    .about-hero {
        min-height: 760px;
        padding: 116px clamp(18px, 5vw, 44px) 34px;
    }

    .about-hero-content {
        padding-bottom: 250px;
    }

    .about-hero-panel {
        left: clamp(18px, 5vw, 44px);
        right: clamp(18px, 5vw, 44px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story-media {
        order: 2;
    }

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

    .about-gallery-grid > *:first-child {
        grid-row: auto;
    }

    .about-gallery-grid > *:first-child img {
        min-height: 260px;
    }

    .about-proof-head,
    .about-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .about-testimonial-card {
        min-height: 220px;
    }

    .about-cta-actions {
        justify-content: flex-start;
    }

    .hero-slide {
        padding: 116px clamp(18px, 5vw, 44px) 172px;
    }

    .hero-ui {
        left: clamp(18px, 5vw, 44px);
        right: clamp(18px, 5vw, 44px);
    }

    .hero h1,
    .hero-title {
        font-size: 44px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .intro-grid,
    .split,
    .detail-grid,
    .form-layout,
    .partnership-layout,
    .payment-layout,
    .reservation-shell,
    .faq-cta,
    .blog-featured-card,
    .footer-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured-media img {
        min-height: 280px;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }

    .card-grid,
    .feature-grid,
    .quote-grid,
    .menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .activity-showcase-grid,
    .activity-rich-card,
    .activity-rich-card:nth-child(3n + 1) {
        grid-template-columns: 1fr;
    }

    .activity-rich-card:nth-child(3n + 1) {
        grid-column: span 1;
    }

    .activity-rich-media img {
        aspect-ratio: 16 / 10;
        min-height: 300px;
    }

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

    .booking-type-grid,
    .addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-panel,
    .reservation-aside {
        position: static;
    }
}

@media (max-width: 640px) {
    .site-header {
        gap: 10px;
        padding-inline: 14px;
    }

    .brand span {
        display: none;
    }

    .header-cta {
        min-height: 42px;
        padding-inline: 14px;
    }

    .hero,
    .page-hero {
        min-height: 520px;
        padding: 92px 18px 24px;
    }

    .about-hero {
        min-height: 760px;
        padding: 92px 18px 24px;
    }

    .about-hero-content {
        padding-bottom: 310px;
    }

    .about-hero-panel {
        left: 18px;
        right: 18px;
        bottom: 24px;
        grid-template-columns: 1fr;
    }

    .about-hero-panel > div,
    .about-video-toggle {
        min-height: 58px;
        padding: 12px 14px;
    }

    .about-hero-panel strong {
        font-size: 24px;
    }

    .home-hero-slider {
        min-height: 700px;
        padding: 0;
    }

    .hero-slide {
        padding: 96px 18px 230px;
    }

    .hero-ui {
        left: 18px;
        right: 18px;
        bottom: 26px;
        gap: 14px;
    }

    .hero-controls {
        align-items: stretch;
        max-width: none;
    }

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

    .hero-dot {
        min-height: 40px;
        padding: 9px 10px;
        font-size: 13px;
    }

    .hero-arrow {
        align-self: center;
        flex-basis: 40px;
        width: 40px;
        min-height: 40px;
    }

    .page-hero {
        min-height: 360px;
    }

    .hero h1,
    .hero-title,
    .page-hero h1,
    .about-hero h1 {
        font-size: 34px;
    }

    .hero p,
    .page-hero p,
    .about-hero p {
        font-size: 17px;
    }

    .section {
        padding: 56px 18px;
    }

    .about-intro h2,
    .about-story h2,
    .about-video-copy h2,
    .about-experience-copy h2,
    .about-social-proof h2,
    .about-journal-cta h2,
    .comfort-intro h2,
    .tariff-highlight h2,
    .detail-copy h2,
    .service-faq-strip h2,
    .room-seo-cluster h2,
    .review-trust-grid h2,
    .review-form-intro h2 {
        font-size: 30px;
    }

    .about-story-media,
    .about-signature-grid,
    .about-value-grid,
    .about-gallery-grid,
    .about-proof-head,
    .about-testimonial-grid,
    .seo-cluster,
    .seo-link-grid,
    .path-grid,
    .value-grid,
    .service-rich-grid,
    .room-rich-grid,
    .review-card-grid,
    .review-form,
    .proof-grid,
    .rich-check-list {
        grid-template-columns: 1fr;
    }

    .about-story-media img,
    .about-story-media img:first-child,
    .about-gallery-grid img,
    .about-gallery-grid > *:first-child img {
        min-height: 260px;
    }

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

    .about-proof-head h2 {
        font-size: 30px;
    }

    .about-testimonial-card {
        min-height: 0;
        padding: 22px;
    }

    .about-testimonial-card p {
        margin: 14px 0 22px;
        font-size: 16px;
    }

    .seo-cluster h2 {
        font-size: 29px;
    }

    .path-card,
    .value-grid article {
        min-height: 0;
    }

    .room-title-row,
    .tariff-list article {
        display: grid;
        grid-template-columns: 1fr;
    }

    .tariff-list b,
    .tariff-list small {
        grid-row: auto;
        grid-column: auto;
    }

    .section-heading {
        display: block;
    }

    .addon-picker-head {
        display: grid;
        align-items: start;
    }

    .addon-picker-head p {
        max-width: none;
        text-align: left;
    }

    .addon-select-group summary {
        align-items: flex-start;
    }

    .addon-select-group summary small {
        white-space: normal;
    }

    .addon-select {
        min-height: 190px;
    }

    .intro-grid h2,
    .section-heading h2,
    .split h2,
    .detail-grid h2,
    .form-layout h2,
    .reservation-aside h2,
    .blog-featured-card h2,
    .menu-section h2,
    .success-state h1 {
        font-size: 29px;
    }

    .card-grid,
    .feature-grid,
    .quote-grid,
    .menu-grid,
    .booking-type-grid,
    .success-receipt,
    .gateway-choice-board,
    .payment-form-strip,
    .payment-form-strip.client-strip,
    .addon-picker,
    .addon-grid,
    .journey-grid,
    .showcase-grid,
    .journal-grid,
    .dish-mini-grid,
    .panel-form,
    .reservation-form,
    .partner-strip,
    .choices-field > div {
        grid-template-columns: 1fr;
    }

    .showcase-tile.wide,
    .journey-media {
        grid-column: span 1;
    }

    .journey-media {
        grid-template-columns: 1fr;
    }

    .showcase-tile,
    .showcase-tile img {
        min-height: 360px;
    }

    .partner-benefits {
        grid-template-columns: 1fr;
    }

    .partner-strip {
        align-items: start;
    }

    .panel-form .form-field,
    .panel-form button,
    .panel-form .secure-note,
    .cookie-option {
        grid-column: 1;
    }

    .booking-success-stage,
    .payment-console-section {
        min-height: 0;
        padding: 24px 18px 56px;
    }

    .booking-success-visual,
    .payment-command-panel {
        min-height: 360px;
        padding: 22px;
    }

    .success-status-mark {
        width: 62px;
        height: 62px;
    }

    .success-status-mark span {
        width: 31px;
        height: 17px;
    }

    .success-next-step {
        grid-template-columns: 1fr;
    }

    .success-actions .btn {
        width: 100%;
    }

    .payment-console-head {
        display: grid;
        align-items: start;
    }

    .gateway-choice-card {
        min-height: 156px;
    }

    .payment-console-form {
        padding: 18px;
    }

    .item-card div,
    .activity-rich-body,
    .feature,
    .booking-panel,
    .contact-panel,
    .cta-panel,
    .reservation-aside,
    blockquote,
    .menu-item,
    .panel-form {
        padding: 20px;
    }

    .activities-hero {
        min-height: 420px;
    }

    .activity-showcase-grid {
        gap: 18px;
    }

    .activity-rich-card h2 {
        font-size: 24px;
    }

    .activity-rich-media img {
        min-height: 240px;
    }

    .activity-actions .btn {
        width: 100%;
    }
}
