:root {
    --color-primary: #17324d;
    --color-primary-dark: #10263b;
    --color-accent: #c7924c;
    --color-success: #2ea86a;
    --color-bg: #f7f9fc;
    --color-surface: #ffffff;
    --color-text: #1c2b39;
    --color-muted: #6b7a8b;
    --color-line: #dbe4ee;
    --shadow-soft: 0 18px 40px rgba(20, 43, 71, 0.08);
    --shadow-card: 0 14px 28px rgba(18, 42, 66, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--color-text);
    background: #fff;
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-shell {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(46, 168, 106, 0.08), transparent 26%),
        radial-gradient(circle at top right, rgba(199, 146, 76, 0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219, 228, 238, 0.68);
    box-shadow: 0 8px 24px rgba(20, 43, 71, 0.04);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 92px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    display: block;
    height: 56px;
    width: auto;
    object-fit: contain;
}

.brand-logo-footer {
    height: 64px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(219, 228, 238, 0.85);
    border-radius: 999px;
    box-shadow: 0 10px 26px rgba(18, 42, 66, 0.05);
    font-size: 0.96rem;
}

.site-nav a {
    position: relative;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-muted);
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--color-primary);
    background: rgba(23, 50, 77, 0.06);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    display: none;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--color-line);
    background: #fff;
    border-radius: 50%;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-primary);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-cta,
.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-card);
}

.btn-secondary {
    background: #fff;
    color: var(--color-primary);
    border-color: var(--color-line);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 14px;
    font-family: "Cormorant Garamond", serif;
    color: var(--color-primary);
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.65rem, 4.35vw, 3.95rem);
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin: 0 0 16px;
    color: var(--color-muted);
}
.page-hero h1,
.page-hero h2,
.page-hero h3,
.page-hero h4 {
    font-family: "Manrope", serif;
}
.hero-section,
.page-hero {
    padding: 2px 0 5px;
}

.page-hero {
    padding-top: 2px;
}

.page-hero .container {
    position: relative;
    padding: 22px 0px 2px 0px;
}

.page-hero .container::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 180px;
    height: 180px;
    border-radius: 32px;
    background: radial-gradient(circle, rgba(46, 168, 106, 0.12) 0%, transparent 72%);
    pointer-events: none;
}

.page-hero p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-grid,
.split-section,
.contact-layout,
.detail-layout,
.amenities-layout,
.testimonial-wrap {
    display: grid;
    gap: 32px;
}

.hero-grid {
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 40px;
}

.hero-copy {
    max-width: 640px;
}

.eyebrow,
.section-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 800;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--color-success);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    line-height: 1.55;
    max-width: 220px;
}

.hero-title {
    margin-bottom: 18px;
    max-width: 700px;
    letter-spacing: -0.03em;
}

.hero-accent {
    color: var(--color-success);
}

.hero-summary {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.75;
    color: #59687b;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-actions .btn {
    min-width: 168px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 0.86rem;
    letter-spacing: 0.03em;
}

.btn-hero-primary {
    box-shadow: 0 12px 24px rgba(23, 50, 77, 0.18);
}

.btn-hero-whatsapp {
    background: #fff;
    border-color: #8fd1aa;
    color: #1f2e40;
}

.hero-highlights,
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-highlights {
    margin-top: 26px;
}

.hero-highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
}

.hero-highlight-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 2px;
    border-radius: 6px;
    border: 2px solid #39b46e;
}

.hero-highlight-icon::before,
.hero-highlight-icon::after {
    content: "";
    position: absolute;
    background: #39b46e;
}

.hero-highlight-icon::before {
    left: 4px;
    top: 10px;
    width: 5px;
    height: 2px;
    transform: rotate(45deg);
}

.hero-highlight-icon::after {
    left: 7px;
    top: 9px;
    width: 9px;
    height: 2px;
    transform: rotate(-45deg);
}

.hero-highlight strong {
    display: block;
    color: var(--color-primary);
    font-size: 0.95rem;
    line-height: 1.2;
}

.hero-highlight span {
    color: var(--color-muted);
    font-size: 0.92rem;
    line-height: 1.3;
}

.hero-gallery {
    display: grid;
    grid-template-columns: 1.38fr 0.92fr;
    gap: 2px;
    align-items: start;
}

.hero-gallery-main,
.hero-gallery-side {
    display: grid;
    gap: 8px;
}
figure {
    display: block;
    margin-block-start: 0.4em;
    margin-block-end: 0.4em;
    margin-inline-start: 10px;
    margin-inline-end: 10px;
    unicode-bidi: isolate;
}
.hero-gallery-main {
    grid-template-rows: 249px 124px 240px;
}

.hero-gallery-side {
   padding-top: 17px;
    grid-template-rows: 388px 198px;
}

.gallery-card,
.room-card,
.location-card,
.amenity-group-card,
.contact-card,
.detail-copy,
.detail-media,
.empty-state,
.filter-shell,
.blog-card,
.map-card {
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.gallery-card {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(17, 39, 63, 0.08);
}

.gallery-card img,
.feature-image img,
.testimonial-photo img,
.room-card img,
.location-card img,
.detail-media img,
.blog-card img,
.amenity-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-strip img {
    object-position: center 40%;
}

.section {
    padding: 14px 1% 19px;
}

.section-alt {
    background: var(--color-bg);
}

.section-alt2 {
    background: var(--color-line);
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-head > div:first-child {
    display: grid;
    gap: 4px;
}

.section-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 14px;
}

.slider-controls {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.slider-controls.is-hidden {
    display: none;
}

.slider-arrow {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    position: relative;
    padding: 0;
    border: 1px solid rgba(23, 50, 77, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: transparent;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 10px 20px rgba(17, 39, 63, 0.06);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.slider-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-top: 1.7px solid var(--color-primary);
    border-right: 1.7px solid var(--color-primary);
}

.slider-arrow[data-slider-prev]::before {
    transform: translate(-38%, -50%) rotate(-135deg);
}

.slider-arrow[data-slider-next]::before {
    transform: translate(-62%, -50%) rotate(45deg);
}

.slider-arrow:hover {
    transform: translateY(-1px);
    border-color: rgba(23, 50, 77, 0.28);
    background: #ffffff;
    box-shadow: 0 14px 24px rgba(17, 39, 63, 0.1);
}

.slider-arrow:disabled {
    opacity: 0.38;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.slider-arrow:disabled::before {
    border-color: rgba(23, 50, 77, 0.38);
}

.section-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: var(--color-primary);
    font-weight: 700;
}

.card-slider {
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    align-items: stretch;
    gap: 26px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.card-slider .room-grid,
.card-slider .location-grid,
.card-slider .blog-grid {
    --slider-visible-cards: 4;
    grid-template-columns: none;
}

.card-slider .room-card,
.card-slider .location-card,
.card-slider .blog-card {
    flex: 0 0 calc((100% - ((var(--slider-visible-cards) - 1) * 26px)) / var(--slider-visible-cards));
}

.card-grid {
    display: grid;
    gap: 26px;
}

.card-slider .card-slider-track {
    display: flex;
}

.room-grid,
.location-grid,
.blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.room-card,
.location-card,
.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(18, 42, 66, 0.12);
}

.card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.card-link:focus-visible {
    outline: 3px solid rgba(23, 50, 77, 0.2);
    outline-offset: -3px;
}

.room-card img,
.location-card img,
.blog-card img {
    height: 220px;
}

.room-card-media {
    position: relative;
    overflow: hidden;
}

.room-card-large img {
    height: 260px;
    transition: transform 0.35s ease;
}

.room-card:hover .room-card-large img,
.room-card:hover .room-card-media img {
    transform: scale(1.03);
}

.room-card-body,
.location-card-body,
.blog-card-body,
.detail-copy,
.contact-card,
.amenity-group-card,
.empty-state {
    padding: 24px;
}

.room-card-body,
.location-card-body,
.blog-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.room-card-body p,
.location-card-body p,
.blog-card-body p {
    flex: 1;
}

.room-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.room-meta h3 {
    margin-bottom: 8px;
}

.room-meta span,
.room-meta em,
.location-card-body span,
.testimonial-copy span {
    color: var(--color-muted);
    font-style: normal;
}

.room-card-overlay {
    position: absolute;
    inset: 18px 18px auto 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.room-card-chip,
.room-card-chip-light {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.room-card-chip {
    background: rgba(23, 50, 77, 0.88);
    color: #fff;
}

.room-card-chip-light {
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-primary);
}

.room-card-price-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 2px;
    min-width: 126px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(18, 42, 66, 0.14);
    text-align: right;
}

.room-card-price-badge strong {
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1.1;
}

.room-card-price-badge small {
    color: var(--color-muted);
    font-size: 0.78rem;
}

.room-card-body p {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.room-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-feature-list li {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(23, 50, 77, 0.05);
    color: var(--color-primary);
    font-size: 0.84rem;
    font-weight: 600;
}

.room-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
}

.room-card-footer strong,
.detail-price strong,
.location-card-body strong {
    color: var(--color-primary);
    font-size: 1.35rem;
}

.room-card-footer small {
    margin-left: 4px;
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

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

.room-location-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 24px;
    box-shadow: 0 14px 28px rgba(18, 42, 66, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(18, 42, 66, 0.1);
}

.room-location-card-media {
    height: 210px;
}

.room-location-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-location-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.room-location-card-meta {
    align-items: center;
    justify-content: space-between;
}

.room-location-card-meta strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.room-location-card-meta span {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.room-location-card-body p {
    flex: 1;
    margin-bottom: 18px;
}

.room-location-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: 28px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 28px;
    box-shadow: 0 16px 30px rgba(18, 42, 66, 0.06);
}

.room-location-panel-head {
    display: grid;
    align-content: start;
    gap: 6px;
}

.room-location-panel-head .btn {
    margin-top: 14px;
    width: fit-content;
}

.room-location-list {
    display: grid;
    gap: 16px;
}

.room-location-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.room-location-list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(23, 50, 77, 0.14);
    box-shadow: 0 12px 24px rgba(18, 42, 66, 0.08);
}

.room-location-list-main,
.room-location-list-side {
    display: grid;
    gap: 4px;
}

.room-location-list-main strong,
.room-location-list-side strong {
    color: var(--color-primary);
}

.room-location-list-main span,
.room-location-list-side small {
    color: var(--color-muted);
}

.room-location-list-side {
    justify-items: end;
    text-align: right;
}

.rooms-cta-card {
    margin-top: 6px;
}

.blog-home-section {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.blog-feature-card {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: center;
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.blog-feature-media {
    overflow: hidden;
    min-height: 360px;
    border-radius: 20px;
}

.blog-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(23, 50, 77, 0.08);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.blog-meta small {
    color: var(--color-muted);
    font-size: 0.88rem;
}

.blog-card-body h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--color-primary);
    font-weight: 800;
}

.card-link-text {
    color: var(--color-primary);
    font-weight: 800;
}

.room-card-footer small,
.detail-price span {
    margin-left: 4px;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.split-section {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 44px;
}

.about-hero-grid,
.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    gap: 40px;
    align-items: center;
}

.about-hero-copy,
.about-story-copy {
    max-width: 620px;
}

.about-hero-summary {
    max-width: 560px;
    font-size: 1.04rem;
    line-height: 1.8;
}

.about-principles {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.about-principles span {
    position: relative;
    padding: 16px 18px 16px 52px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(17, 39, 63, 0.05);
    color: var(--color-primary);
    font-weight: 700;
}

.article-hero-card {
    margin-bottom: 28px;
}

.article-hero-media {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.article-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.article-meta-card,
.article-sidebar-card,
.article-body-card {
    padding: 24px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 24px;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.article-meta-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.05rem;
}

.article-meta-card span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.article-body-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.52fr);
    gap: 28px;
    align-items: start;
}

.article-sidebar-card {
    position: sticky;
    top: 112px;
}

.article-rich-text {
    display: grid;
    gap: 18px;
}

.article-rich-text p {
    margin: 0;
    line-height: 1.85;
    color: var(--color-text);
}

.about-principles span::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-success);
    border-radius: 50%;
    transform: translateY(-50%);
}

.about-principles span::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 50%;
    width: 9px;
    height: 5px;
    border-left: 2px solid var(--color-success);
    border-bottom: 2px solid var(--color-success);
    transform: translateY(-70%) rotate(-45deg);
}

.about-hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
    gap: 18px;
    align-items: stretch;
}

.about-hero-main,
.about-hero-side,
.about-story-media,
.about-cta-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.about-hero-main {
    min-height: 520px;
}

.about-hero-side {
    min-height: 520px;
}

.about-hero-main img,
.about-hero-side img,
.about-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-floating-card {
    position: absolute;
    left: 26px;
    bottom: 28px;
    max-width: 260px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 228, 238, 0.94);
    border-radius: 20px;
    box-shadow: 0 16px 34px rgba(17, 39, 63, 0.12);
}

.about-floating-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.8rem;
}

.about-floating-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 800;
}

.about-floating-card p {
    margin: 0;
    font-size: 0.94rem;
}

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

.about-highlight-card,
.about-benefit-card {
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.88);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.about-highlight-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: rgba(23, 50, 77, 0.08);
    color: var(--color-primary);
    font-weight: 800;
}

.about-story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
}

.about-story-media {
    min-height: 500px;
    box-shadow: var(--shadow-soft);
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.about-story-stat {
    padding: 20px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 20px;
    background: #fbfdff;
}

.about-story-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.about-story-stat span {
    color: var(--color-muted);
}

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

.about-benefit-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-benefit-icon {
    position: relative;
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(46, 168, 106, 0.12);
}

.about-benefit-icon::before,
.about-benefit-icon::after {
    content: "";
    position: absolute;
    background: var(--color-success);
    border-radius: 2px;
}

.about-benefit-icon::before {
    left: 12px;
    top: 20px;
    width: 7px;
    height: 2px;
    transform: rotate(45deg);
}

.about-benefit-icon::after {
    left: 17px;
    top: 18px;
    width: 12px;
    height: 2px;
    transform: rotate(-45deg);
}

.about-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background: linear-gradient(135deg, #17324d 0%, #244d73 100%);
    box-shadow: var(--shadow-soft);
}

.about-cta-card .section-kicker,
.about-cta-card h2,
.about-cta-card p {
    color: #fff;
}

.about-cta-card .section-kicker {
    color: rgba(255, 255, 255, 0.72);
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.collection-shell,
.amenities-page-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 28px;
}

.collection-intro,
.amenities-page-intro {
    max-width: 640px;
}

.rooms-overview-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 34px;
    align-items: stretch;
}

.rooms-overview-copy {
    max-width: 620px;
}

.rooms-overview-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.rooms-overview-points span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(23, 50, 77, 0.06);
    color: var(--color-primary);
    font-weight: 700;
}

.rooms-feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.94);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(18, 42, 66, 0.08);
}

.rooms-feature-media {
    min-height: 100%;
}

.rooms-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rooms-feature-copy {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.rooms-feature-meta,
.room-location-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.rooms-feature-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(23, 50, 77, 0.06);
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.rooms-feature-copy p {
    margin-bottom: 20px;
}

.rooms-feature-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: auto;
}

.room-browser-head {
    margin-bottom: 24px;
}

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

.collection-stat-card,
.contact-mini-card {
    padding: 22px 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 22px;
    box-shadow: 0 14px 28px rgba(18, 42, 66, 0.06);
}

.collection-stat-card strong,
.contact-mini-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.08rem;
}

.collection-stat-card span,
.contact-mini-card span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.filter-shell-modern {
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 22px;
    box-shadow: 0 12px 24px rgba(18, 42, 66, 0.04);
}

.room-category-filter {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 10px 16px 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    background: #fff;
    color: var(--color-text);
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.room-category-filter strong {
    font-size: 0.88rem;
}

.room-category-filter:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(18, 42, 66, 0.08);
    border-color: rgba(23, 50, 77, 0.16);
}

.room-category-filter.is-active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 14px 28px rgba(18, 42, 66, 0.14);
}

.section-head-inline {
    margin-top: 8px;
    margin-bottom: 28px;
}

.room-category-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.room-category-copy {
    max-width: 780px;
}

.room-category-summary {
    display: grid;
    gap: 6px;
    padding: 22px 24px;
    min-width: 220px;
    background: rgba(23, 50, 77, 0.04);
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 20px;
    text-align: right;
}

.room-category-summary strong {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.room-category-summary span {
    color: var(--color-muted);
}

.room-card,
.location-card,
.blog-card,
.contact-card,
.amenity-group-card {
    border-color: rgba(219, 228, 238, 0.94);
    box-shadow: 0 18px 34px rgba(18, 42, 66, 0.06);
}

.room-card,
.location-card,
.blog-card {
    border-radius: 26px;
}

.room-card img,
.location-card img,
.blog-card img {
    height: 236px;
}

.room-card-body,
.location-card-body,
.blog-card-body {
    padding: 26px;
}

.location-card-body h2 {
    margin-bottom: 10px;
    font-size: 1.55rem;
}

.blog-card-body {
    gap: 6px;
}

.editorial-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 34px;
    align-items: center;
    padding: 28px;
    border: 1px solid rgba(219, 228, 238, 0.88);
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    box-shadow: var(--shadow-soft);
}

.editorial-hero-media {
    min-height: 420px;
}

.editorial-hero-copy p {
    max-width: 540px;
}

.amenities-gallery-modern {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.amenities-gallery-modern img:first-child {
    grid-column: 1 / span 2;
    height: 240px;
}

.amenities-gallery-modern img {
    height: 220px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.amenities-principles {
    margin-top: 24px;
}

.amenities-premium-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 40px;
    align-items: center;
}

.amenities-premium-copy {
    max-width: 640px;
}

.amenities-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.amenities-stat-card {
    padding: 22px 20px;
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 28px rgba(18, 42, 66, 0.06);
}

.amenities-stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.16rem;
}

.amenities-stat-card span {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.amenities-trust-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.amenities-trust-list span {
    position: relative;
    padding-left: 34px;
    color: var(--color-primary);
    font-weight: 700;
}

.amenities-trust-list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-success);
    border-radius: 50%;
    transform: translateY(-50%);
}

.amenities-trust-list span::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid var(--color-success);
    border-bottom: 2px solid var(--color-success);
    transform: translateY(-70%) rotate(-45deg);
}

.amenities-premium-visual {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
    gap: 18px;
    align-items: stretch;
}

.amenities-premium-main,
.amenities-premium-side,
.amenities-cta-panel {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.amenities-premium-main,
.amenities-premium-side {
    min-height: 500px;
    box-shadow: var(--shadow-soft);
}

.amenities-premium-main img,
.amenities-premium-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-floating-note {
    position: absolute;
    right: 18px;
    bottom: 24px;
    max-width: 280px;
    padding: 22px;
    border: 1px solid rgba(219, 228, 238, 0.94);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 34px rgba(18, 42, 66, 0.12);
}

.amenities-floating-note strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 1.08rem;
}

.amenities-floating-note span {
    color: var(--color-muted);
    line-height: 1.7;
}

.amenities-editorial-band {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: center;
}

.amenities-editorial-media {
    min-height: 460px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.amenities-editorial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenities-editorial-copy {
    padding: 10px 0;
}

.amenities-editorial-copy h2 {
    max-width: 700px;
}

.amenities-editorial-copy > p {
    max-width: 680px;
}

.amenities-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.amenities-editorial-card {
    padding: 22px;
    border: 1px solid rgba(219, 228, 238, 0.92);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: 0 12px 24px rgba(18, 42, 66, 0.05);
}

.amenities-editorial-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.amenities-editorial-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.amenity-group-card-modern {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.amenity-group-top {
    display: grid;
    gap: 14px;
    margin-bottom: 14px;
}

.amenity-group-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(23, 50, 77, 0.08);
    color: var(--color-primary);
    font-weight: 800;
}

.amenity-group-summary {
    margin-bottom: 18px;
}

.amenities-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 34px;
    background: linear-gradient(135deg, #17324d 0%, #244d73 100%);
    box-shadow: var(--shadow-soft);
}

.amenities-cta-panel .section-kicker,
.amenities-cta-panel h2,
.amenities-cta-panel p {
    color: #fff;
}

.amenities-cta-panel .section-kicker {
    color: rgba(255, 255, 255, 0.74);
}

.amenities-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.amenity-group-card h2 {
    margin-bottom: 18px;
    font-size: 2rem;
}

.contact-hero-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.contact-card {
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.contact-card h2 {
    margin-bottom: 16px;
}

.contact-form button.btn-primary,
.about-cta-actions .btn-primary {
    box-shadow: 0 16px 30px rgba(18, 42, 66, 0.16);
}

.split-copy {
    max-width: 620px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 30px;
}

.benefit-list span,
.room-feature-list li,
.amenity-checklist li,
.contact-list li,
.filter-shell span,
.room-category-filter,
.detail-badges span {
    position: relative;
    padding-left: 22px;
    color: var(--color-text);
}

.benefit-list span::before,
.room-feature-list li::before,
.amenity-checklist li::before,
.contact-list li::before,
.filter-shell span::before,
.room-category-filter::before,
.detail-badges span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.room-category-filter.is-active::before {
    background: rgba(255, 255, 255, 0.9);
}

.room-category-filter.is-active {
    color: #fff;
}

.room-category-section[hidden] {
    display: none;
}

.feature-image,
.testimonial-photo {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 9px;
}

.stat-card {
    padding: 18px 20px;
    text-align: center;
}

.stat-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 1.45rem;
}

.testimonial-wrap {
    grid-template-columns: 0.88fr 1.12fr;
    align-items: center;
    gap: 42px;
}

.testimonial-copy {
    padding: 20px 8px;
}

.testimonial-copy.full-width {
    padding: 0;
}

.stars {
    margin-bottom: 16px;
    color: var(--color-accent);
    letter-spacing: 0.2em;
}

.amenities-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.testimonial-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 3vw, 3.25rem);
    line-height: 1.08;
    color: var(--color-primary);
}
.amenities-home {
    display: grid;
    grid-template-columns: 0.74fr 1.26fr;
    align-items: center;
    gap: 56px;
}

.amenities-layout {
    grid-template-columns: 0.96fr 1.04fr;
    gap: 40px;
}

.amenities-home-copy {
    max-width: 360px;
}

.amenities-home-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 3vw, 3.25rem);
    line-height: 1.08;
}

.amenities-home-summary {
    max-width: 320px;
    margin-bottom: 28px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.amenity-checklist,
.room-feature-list,
.contact-list,
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
}

.amenities-home-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.amenities-home-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
}

.amenities-home-icon {
    position: relative;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: #123b67;
    box-shadow: 0 10px 18px rgba(18, 59, 103, 0.18);
}

.amenities-home-icon::before,
.amenities-home-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    border-radius: 2px;
}

.amenities-home-icon::before {
    left: 8px;
    top: 8px;
    width: 14px;
    height: 2px;
}

.amenities-home-icon::after {
    left: 14px;
    top: 8px;
    width: 2px;
    height: 14px;
}

.amenities-home-item:nth-child(2n) .amenities-home-icon::before {
    left: 7px;
    top: 14px;
    width: 16px;
    height: 2px;
}

.amenities-home-item:nth-child(2n) .amenities-home-icon::after {
    left: 7px;
    top: 14px;
    width: 16px;
    height: 2px;
    box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}

.amenities-home-item:nth-child(3n) .amenities-home-icon::before {
    left: 9px;
    top: 9px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
}

.amenities-home-item:nth-child(3n) .amenities-home-icon::after {
    left: 13px;
    top: 7px;
    width: 4px;
    height: 16px;
}

.amenities-home-media {
    position: relative;
}

.amenities-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.amenities-home-tile {
    margin: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 14px 30px rgba(17, 39, 63, 0.08);
}

.amenities-home-tile img {
    width: 100%;
    height: 285px;
    object-fit: cover;
}

.amenities-home-tile-feature {
    position: relative;
}

.amenities-home-badge {
    position: absolute;
    top: 22px;
    right: -22px;
    width: 245px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(17, 39, 63, 0.12);
}

.amenities-home-badge::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 14px;
    height: 14px;
    border: 2px solid #b89243;
    border-radius: 50%;
}

.amenities-home-badge::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 23px;
    width: 7px;
    height: 3px;
    border-left: 2px solid #b89243;
    border-bottom: 2px solid #b89243;
    transform: rotate(-45deg);
}

.amenities-home-badge strong {
    display: block;
    padding-left: 28px;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 0.98rem;
}

.amenities-home-badge span {
    display: block;
    padding-left: 28px;
    color: #c7924c;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1.45;
}

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

.amenity-gallery img:first-child {
    grid-column: 1 / span 2;
    height: 220px;
}

.amenity-gallery img {
    height: 180px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.amenity-checklist,
.room-feature-list,
.contact-list {
    display: grid;
    gap: 14px;
}

.filter-shell,
.contact-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    margin-bottom: 28px;
}

.detail-layout {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 36px;
}

.flat-detail-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.48fr);
    gap: 34px;
    align-items: start;
}

.flat-detail-left,
.flat-detail-right {
    display: grid;
    gap: 24px;
}

.flat-detail-right {
    position: sticky;
    top: 96px;
}

.detail-media {
    overflow: hidden;
    min-height: 540px;
}

.flat-hero-media {
    min-height: 560px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.flat-photo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
    gap: 16px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #edf2f7;
    box-shadow: var(--shadow-soft);
}

.flat-photo-main,
.flat-photo-tile {
    display: block;
    overflow: hidden;
}

.flat-photo-main img,
.flat-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.flat-photo-main {
    min-height: 520px;
}

.flat-photo-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.flat-photo-tile {
    min-height: 252px;
}

.flat-photo-grid:hover img {
    transform: scale(1.02);
}

.flat-photo-more {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-primary);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(18, 42, 66, 0.14);
}

.flat-photo-more:hover {
    background: #fff;
}

.flat-photo-expanded {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    border: 1px solid rgba(219, 228, 238, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
}

.flat-photo-expanded-item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #edf2f7;
}

.flat-photo-expanded-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.detail-copy {
    padding: 32px;
}

.detail-price {
    margin-bottom: 18px;
}

.detail-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 22px;
}

.detail-badges-stack {
    gap: 12px;
}

.detail-badges-stack span {
    background: #f7fafc;
    border: 1px solid var(--color-line);
    padding: 3px 14px 3px 34px;
    border-radius: 999px;
}

.flat-section-card,
.flat-sidebar-card {
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.flat-sidebar-card {
    padding: 30px;
}

.flat-enquiry-card {
    padding: 28px;
}

.flat-map-card iframe {
    min-height: 360px;
}


.flat-info-grid {
    display: grid;
    gap: 28px;
}

.flat-info-card {
    padding: 28px;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.flat-detail-list {
    display: grid;
    gap: 16px;
}

.flat-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-line);
}

.flat-detail-item strong {
    color: var(--color-primary);
    font-size: 0.98rem;
}

.flat-detail-item span {
    color: var(--color-muted);
    text-align: right;
}

.flat-feature-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 28px;
}

.flat-gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.flat-gallery-item {
    margin: 0;
    min-height: 150px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.flat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empty-state {
    text-align: center;
}

.contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    background: #fbfdff;
}

.form-success {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #edf7ef;
    color: #185b31;
}

.form-error {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(197, 76, 76, 0.12);
    color: #8a2f2f;
}

.enquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px 16px;
}

.enquiry-modal[hidden] {
    display: none;
}

.enquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 44, 0.72);
}

.enquiry-modal-card {
    position: relative;
    width: min(560px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 24px;
    border-radius: 26px;
    background: var(--color-surface);
    border: 1px solid rgba(219, 228, 238, 0.92);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.18);
}

.enquiry-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.enquiry-modal-head strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.enquiry-modal-close {
    border: 1px solid rgba(219, 228, 238, 0.92);
    background: rgba(23, 50, 77, 0.04);
    color: var(--color-primary);
    border-radius: 999px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 800;
}

.enquiry-modal-close:hover {
    background: rgba(23, 50, 77, 0.08);
}

body.is-modal-open {
    overflow: hidden;
}

.map-card {
    overflow: hidden;
    padding: 0;
}

.map-card iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.footer-links-band {
    background: #f4f6f8;
    border-top: 1px solid rgba(219, 228, 238, 0.9);
}

.footer-links-band-shell {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 28px;
    align-items: center;
    padding: 40px 0 44px;
}

.footer-links-band-arrow {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b76d1;
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 14px 24px rgba(11, 118, 209, 0.2);
}

.footer-links-band-content {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.footer-links-band-head h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.75rem;
}

.footer-links-band-viewport {
    overflow: hidden;
}

.footer-links-band-grid {
    display: flex;
    gap: 34px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.footer-links-band-column {
    display: grid;
    flex: 0 0 calc((100% - 68px) / 3);
    gap: 14px;
}

.footer-links-band-column strong {
    color: #7b8a99;
    font-size: 0.82rem;
    font-weight: 800;
}

.footer-links-band-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-band-list a {
    color: #536272;
    font-size: 0.96rem;
    line-height: 1.45;
}

.footer-links-band-list a:hover,
.footer-links-band-more:hover {
    color: #0b76d1;
}

.footer-links-band-more {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.footer-links-band-arrow:disabled {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
}

.site-footer {
    margin-top: 20px;
    padding-top: 68px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 26%),
        linear-gradient(135deg, #10263b 0%, #17324d 50%, #214a70 100%);
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    gap: 34px;
    padding-bottom: 40px;
}

.site-footer h4,
.brand-footer strong {
    color: #fff;
}

.footer-brand p {
    max-width: 320px;
    color: rgba(255, 255, 255, 0.72);
}

.social-links,
.footer-links {
    display: grid;
    gap: 12px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.social-icon {
    flex: 0 0 18px;
}

.btn-icon {
    flex: 0 0 18px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px 12px 14px;
    border-radius: 999px;
    background: rgba(26, 187, 110, 0.95);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 34px rgba(18, 42, 66, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    background: rgba(22, 168, 98, 0.98);
    box-shadow: 0 22px 38px rgba(18, 42, 66, 0.28);
}

.floating-whatsapp span {
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

@media (max-width: 640px) {
    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        padding: 14px;
        border-radius: 50%;
    }

    .floating-whatsapp span {
        display: none;
    }
}

.social-links a,
.footer-links a {
    color: rgba(255, 255, 255, 0.76);
}

.social-links a:hover,
.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 22px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1080px) {
    .hero-grid,
    .split-section,
    .about-hero-grid,
    .about-story-grid,
    .rooms-overview-shell,
    .collection-shell,
    .amenities-page-shell,
    .amenities-premium-shell,
    .amenities-editorial-band,
    .editorial-hero-card,
    .detail-layout,
    .flat-detail-shell,
    .flat-info-grid,
    .amenities-layout,
    .testimonial-wrap,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .split-copy {
        max-width: none;
    }

    .amenities-home {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .amenities-home-copy {
        max-width: none;
    }

    .amenities-home-summary {
        max-width: none;
    }

    .amenities-home-badge {
        right: 18px;
    }
 

    .hero-gallery-side {
        padding-top: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .room-grid,
    .room-location-grid,
    .collection-stats,
    .rooms-feature-stats,
    .amenities-stat-row,
    .amenities-editorial-grid,
    .amenities-showcase-grid,
    .about-highlights,
    .about-benefits-grid,
    .contact-hero-strip,
    .location-grid,
    .blog-grid,
    .article-meta-grid,
    .footer-grid,
    .stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-links-band-column {
        flex-basis: calc((100% - 34px) / 2);
    }

    .card-slider .room-grid,
    .card-slider .location-grid,
    .card-slider .blog-grid {
        --slider-visible-cards: 2;
    }

    .feature-image,
    .testimonial-photo,
    .detail-media,
    .flat-hero-media,
    .blog-feature-media {
        min-height: 172px;
    }

    .flat-photo-grid {
        grid-template-columns: 1fr;
    }

    .flat-photo-main {
        min-height: 380px;
    }

    .flat-photo-side {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .flat-photo-tile {
        min-height: 130px;
    }

    .flat-feature-columns {
        grid-template-columns: 1fr;
    }

    .flat-detail-right {
        position: static;
    }

    .blog-feature-card {
        grid-template-columns: 1fr;
    }

    .article-body-shell {
        grid-template-columns: 1fr;
    }

    .article-sidebar-card {
        position: static;
    }

    .about-hero-main,
    .about-hero-side,
    .amenities-premium-main,
    .amenities-premium-side,
    .amenities-editorial-media,
    .about-story-media {
        min-height: 320px;
    }

    .rooms-feature-card,
    .room-location-panel {
        grid-template-columns: 1fr;
    }

    .rooms-feature-media {
        min-height: 300px;
    }

    .room-category-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-category-summary {
        width: 100%;
        text-align: left;
    }

    .page-hero .container {
        padding: 34px 30px;
    }

    .about-cta-card,
    .amenities-cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid var(--color-line);
        border-radius: 24px;
        box-shadow: var(--shadow-soft);
    }

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

    .header-cta {
        display: none;
    }

    .amenities-home-grid {
        grid-template-columns: 1fr;
    }

    .amenities-home-badge {
        position: static;
        width: auto;
        margin-top: 14px;
    }

    .hero-gallery-main,
    .hero-gallery-side {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .hero-section,
    .page-hero {
        padding-top: 46px;
    }

    .hero-title {
        font-size: 2.55rem;
        line-height: 1.12;
    }

    .hero-summary {
        font-size: 0.98rem;
    }

    .section-head,
    .section-head-actions,
    .filter-shell,
    .contact-strip,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-links-band-shell {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-links-band-arrow {
        display: none;
    }

    .slider-controls {
        order: 2;
    }

    .card-slider .room-grid,
    .card-slider .location-grid,
    .card-slider .blog-grid {
        --slider-visible-cards: 1;
    }

    .card-slider .room-card,
    .card-slider .location-card,
    .card-slider .blog-card {
        flex-basis: 100%;
    }

    .room-card img,
    .location-card img,
    .blog-card img {
        height: 200px;
    }

    .room-grid,
    .room-location-grid,
    .about-story-stats,
    .collection-stats,
    .rooms-feature-stats,
    .amenities-stat-row,
    .amenities-editorial-grid,
    .article-meta-grid,
    .flat-gallery-strip,
    .about-highlights,
    .about-benefits-grid,
    .amenities-showcase-grid,
    .footer-links-band-column {
        flex-basis: 100%;
    }

    .flat-photo-main {
        min-height: 320px;
    }

    .flat-photo-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flat-photo-tile {
        min-height: 160px;
    }

    .flat-photo-expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-card-large img {
        height: 220px;
    }

    .rooms-overview-points {
        gap: 10px;
    }

    .rooms-overview-points span {
        width: 100%;
        justify-content: center;
    }

    .room-category-filter {
        width: 100%;
    }

    .room-location-card-media {
        height: 190px;
    }

    .room-location-panel {
        padding: 22px;
    }

    .room-location-list-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .room-location-list-side {
        width: 100%;
        justify-items: start;
        text-align: left;
    }

    .room-card-overlay {
        inset: 14px 14px auto 14px;
    }

    .room-card-price-badge {
        right: 14px;
        bottom: 14px;
        min-width: 114px;
        padding: 10px 12px;
    }

    .about-hero-visual {
        grid-template-columns: 1fr;
    }

    .amenities-premium-visual {
        grid-template-columns: 1fr;
    }

    .about-floating-card {
        position: static;
        max-width: none;
        margin-top: 16px;
    }

    .amenities-floating-note {
        position: static;
        max-width: none;
        margin-top: 16px;
    }

    .contact-hero-strip {
        grid-template-columns: 1fr;
    }

    .page-hero .container {
        padding: 28px 22px;
        border-radius: 24px;
    }
}
