/*
Theme Name: Spa Green Hotel
Theme URI: http://spa.test
Author: Antigravity AI
Author URI: https://antigravity.ai
Description: Premium Eco-Luxury Resort and Hotel Theme – Moonlit Design Language. Features Gilda Display/Jost typography, transparent sticky header, hero Swiper slider, booking bar, rooms slider, testimonials, and AJAX email bookings.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: spa-green-hotel
*/

/* ==========================================================================
   1. DESIGN SYSTEM — MOONLIT TOKENS
   ========================================================================== */
:root {
    /* Bảng màu thương hiệu mới */
    --color-primary:    #2B358F; /* Xanh dương - Thương hiệu chính */
    --color-accent:     #00A451; /* Xanh lá - Nút bấm, Call to action */
    --color-bg-base:    #FFFFFF; /* Trắng - Nền chính */
    /* Nền section / blank template — cream nhẹ khớp palette moonlit (#F7F4EF trong email admin) */
    --color-bg:         var(--color-bg-base);
    --color-bg-light:   #F7F4EF;
    --color-text-main:  #333333; /* Xám đậm - Body text */
    --color-on-dark-accent: var(--color-accent);
    --color-on-dark-muted: rgba(255, 255, 255, 0.72);

    /* Alias tương thích ngược với các biến cũ trong theme */
    --spa-accent:       var(--color-primary);
    --primary-color:    var(--color-primary);
    --secondary-color:  var(--color-bg-base);
    --territory-color:  var(--color-accent);
    --dark-color:       #181818;
    --text-color:       var(--color-text-main);
    --white-color:      #ffffff;
    --muted-color:      #6c757d;
    --border-color:     #e5e7eb;
    --font-display:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'Jost', 'Be Vietnam Pro', 'Noto Sans', system-ui, sans-serif;
    /* Nav / UI labels: stack ưu tiên font hệ thống + Noto Sans — hiển thị dấu tiếng Việt ổn định hơn Jost */
    --font-nav-primary: system-ui, "Segoe UI", Roboto, "Noto Sans", sans-serif;
    /* Safe area: padding-top trên .site-header + bù vào chiều cao để #content / hero khớp */
    --sat: env(safe-area-inset-top, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    --sal: env(safe-area-inset-left, 0px);
    --sar: env(safe-area-inset-right, 0px);
    --header-height:    calc(80px + var(--sat));
    --header-topbar-h:  36px;
    --header-main-h:    76px;
    --container-max:    1200px;
    --section-pad:      100px;
    --transition:       all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spa-header-green: var(--color-primary);
    --spa-header-gold:  var(--color-accent);
}

/* Front page (any “home” mode): taller fixed header → hero padding */
body.spa-hero-topbar {
    --header-height: calc(var(--header-topbar-h) + var(--header-main-h) + var(--sat));
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }

/* Section Sub-heading (★ Tiêu đề phụ ★) */
.section-sub-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.section-sub-heading.light {
    color: var(--color-accent);
}

.section-sub-heading.light .section-heading-rule {
    background-color: var(--color-accent);
}

/* Decorative gold bars flanking section eyebrow text (replaces inline SVG) */
.section-heading-rule {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-title.light {
    color: var(--white-color);
}

.section-desc {
    color: var(--muted-color);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
}

/* Heading block with centered text */
.section-heading-center {
    text-align: center;
    margin-bottom: 60px;
}

/* ==========================================================================
   4. BUTTONS
   ========================================================================== */
.btn-primary,
.btn-hero-primary,
.btn-cta,
.btn-book-header,
.btn-book-drawer {
    display: inline-block;
    padding: 13px 32px;
    background-color: var(--color-accent);
    color: var(--white-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
    border: 2px solid var(--color-accent);
    white-space: nowrap;
}

.btn-hero-primary {
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover,
.btn-hero-primary:hover,
.btn-cta:hover {
    background-color: #008f47;
    border-color: #008f47;
    color: var(--white-color);
}

.btn-hero-outline {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--white-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: var(--transition);
    cursor: pointer;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white-color);
}

.btn-primary-outline {
    display: inline-block;
    padding: 13px 32px;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    margin-top: 20px;
}

.btn-primary-outline:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9000;
    padding-top: var(--sat);
    height: var(--header-height);
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.has-topbar {
    height: auto;
}

/* Transparent state (on homepage + inner hero pages) */
.site-header.header-transparent {
    background-color: transparent;
}

.site-header.header-transparent:not(.scrolled) {
    background-image: linear-gradient(
        180deg,
        rgba(43, 53, 143, 0.93) 0%,
        rgba(43, 53, 143, 0.62) 45%,
        rgba(43, 53, 143, 0) 100%
    );
}

/* Solid state (non-homepage) */
.site-header.header-solid {
    background-color: var(--dark-color);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* --------------------------------------------------------------------------
   Top bar (front page): contact + location
   -------------------------------------------------------------------------- */
.header-topbar {
    height: var(--header-topbar-h);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
}

/* Khi đã cuộn: nền trắng — bỏ viền để tránh vệt gạch mờ ngay trên logo */
.site-header.scrolled .header-topbar {
    border-bottom: none;
}

.header-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.header-topbar-left,
.header-topbar-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.header-topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.header-topbar-link:hover {
    color: var(--spa-accent);
}

.header-topbar-link i {
    font-size: 11px;
    color: var(--spa-accent);
    opacity: 0.95;
}

.header-topbar-link--static {
    cursor: default;
}

.header-topbar-link--static:hover {
    color: rgba(255, 255, 255, 0.88);
}

.site-header.scrolled .header-topbar-link,
.site-header.scrolled .header-topbar-link--static:hover {
    color: var(--muted-color);
}

.site-header.scrolled .header-topbar-link:hover {
    color: var(--spa-accent);
}

.site-header.scrolled .header-topbar-link i {
    color: var(--spa-accent);
}

/* Scrolled state → white bg */
.site-header.scrolled {
    background-color: var(--white-color) !important;
    background-image: none;
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

@media (max-width: 991.98px) {
    .site-header.scrolled {
        box-shadow: 0 3px 22px rgba(0, 0, 0, 0.14);
        border-bottom: 1px solid rgba(43, 53, 143, 0.06);
    }
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.2vw + 8px, 28px);
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-inline: clamp(14px, 2.2vw + 10px, 44px);
    box-sizing: border-box;
    min-width: 0;
    height: var(--header-main-h);
    min-height: var(--header-main-h);
}

.site-header:not(.has-topbar) .header-inner {
    /* Chiều cao thanh chính (không tính padding safe-area trên .site-header) */
    height: calc(var(--header-height) - var(--sat));
    min-height: calc(var(--header-height) - var(--sat));
}

/* Logo — trái (flex); mobile ≤991.98px ghi đè bằng grid */
.site-logo {
    position: relative;
    flex: 0 1 auto;
    min-width: 0;
    z-index: 2;
}

.site-logo__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    max-width: min(100%, 280px);
}

.site-logo__link--image {
    gap: 0;
}

.site-logo__img {
    display: block;
    width: auto;
    height: clamp(40px, 4.5vw, 54px);
    max-width: 100%;
    object-fit: contain;
    transition: height 0.25s ease;
}

.site-header.header-transparent:not(.scrolled) .site-logo__img {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.site-header.scrolled .site-logo__img {
    height: clamp(36px, 4vw, 48px);
    filter: none;
}

.site-header.header-solid .site-logo__img {
    filter: none;
}

.site-logo__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--spa-header-gold);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.site-header.scrolled .site-logo__mark {
    color: var(--spa-header-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 0.62rem + 1.15vw, 1.45rem);
    font-weight: 500;
    letter-spacing: clamp(0.12em, 0.08em + 0.35vw, 0.22em);
    text-transform: uppercase;
    color: var(--white-color);
    transition: color 0.35s ease;
    line-height: 1.05;
    white-space: nowrap;
}

.site-header.scrolled .logo-text {
    color: var(--spa-header-green);
}

/* Desktop Navigation — cột giữa co giãn, căn giữa trong khoảng logo ↔ nút */
.desktop-nav-menu {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    width: auto;
    max-width: none;
    z-index: 1;
    font-family: var(--font-nav-primary);
    pointer-events: auto;
}

.desktop-menu-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.85rem, 2.2vw, 1.65rem);
    flex-wrap: nowrap;
    max-width: 100%;
}

.desktop-menu-list .menu-item a {
    font-family: var(--font-nav-primary);
    font-size: clamp(10.25px, 0.62rem + 0.12vw, 11px);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.94);
    transition: color 0.25s ease;
    position: relative;
    padding-bottom: 5px;
    padding-inline: clamp(0.3rem, 0.65vw, 0.65rem);
    display: inline-flex;
    align-items: center;
    gap: 0.35em;
    white-space: nowrap;
    font-synthesis: none;
}

.desktop-menu-list .menu-item a .nav-caret {
    font-size: 9px;
    opacity: 0.8;
    margin-top: 1px;
}

.desktop-menu-list .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--spa-header-gold);
    transition: width 0.3s ease;
}

.desktop-menu-list .menu-item a:hover::after,
.desktop-menu-list .menu-item.current-menu-item > a::after,
.desktop-menu-list .menu-item.current_page_item > a::after,
.desktop-menu-list .menu-item.current-menu-ancestor > a::after,
.desktop-menu-list .menu-item.current-menu-parent > a::after {
    width: 100%;
}

.desktop-menu-list .menu-item a:hover,
.desktop-menu-list .menu-item.current-menu-item > a,
.desktop-menu-list .menu-item.current_page_item > a,
.desktop-menu-list .menu-item.current-menu-ancestor > a,
.desktop-menu-list .menu-item.current-menu-parent > a {
    color: var(--spa-header-gold);
}

/* Scrolled nav links → dark */
.site-header.scrolled .desktop-menu-list .menu-item a {
    color: var(--spa-header-green);
}

.site-header.scrolled .desktop-menu-list .menu-item a:hover,
.site-header.scrolled .desktop-menu-list .menu-item.current-menu-item > a,
.site-header.scrolled .desktop-menu-list .menu-item.current_page_item > a,
.site-header.scrolled .desktop-menu-list .menu-item.current-menu-ancestor > a,
.site-header.scrolled .desktop-menu-list .menu-item.current-menu-parent > a {
    color: var(--spa-header-gold);
}

/* wp_nav_menu: desktop submenus */
.desktop-menu-list > .menu-item {
    position: relative;
}

.desktop-menu-list .sub-menu {
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    top: calc(100% + 8px);
    min-width: 240px;
    padding: 12px 0;
    margin: 0;
    background: linear-gradient(165deg, var(--color-primary) 0%, #1f266b 100%);
    box-shadow: 0 18px 48px rgba(10, 18, 15, 0.35);
    border-radius: 6px;
    border: 1px solid rgba(0, 164, 81, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 120;
}

.desktop-menu-list .menu-item:hover > .sub-menu,
.desktop-menu-list .menu-item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.desktop-menu-list .sub-menu .menu-item a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-family: var(--font-nav-primary);
    font-size: clamp(10.25px, 0.62rem + 0.12vw, 11px);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-synthesis: none;
}

.desktop-menu-list .sub-menu .menu-item a:hover {
    color: var(--spa-header-gold) !important;
    background: rgba(0, 164, 81, 0.08);
}

.desktop-menu-list .sub-menu .menu-item a::after {
    display: none;
}

.site-header.scrolled .desktop-menu-list .sub-menu .menu-item a {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Header Actions — phải (flex) */
.header-actions {
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(10px, 1.2vw, 18px);
}

.header-phone {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.92);
    transition: color 0.25s;
    text-decoration: none;
}

.header-phone i {
    color: var(--spa-header-gold);
    font-size: 14px;
}

.header-phone:hover {
    color: var(--spa-header-gold);
}

.site-header.scrolled .header-phone {
    color: var(--spa-header-green);
}

.site-header.scrolled .header-phone i {
    color: var(--spa-header-gold);
}

@media (max-width: 1199.98px) {
    .header-phone__num {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

.btn-book-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    background-color: var(--spa-header-gold);
    color: var(--white-color);
    border: 1px solid rgba(0, 164, 81, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-book-header:hover {
    background-color: #008f47;
    color: var(--white-color);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.site-header.scrolled .btn-book-header {
    background-color: var(--spa-header-gold);
    color: var(--white-color);
    border-color: rgba(0, 164, 81, 0.95);
}

.site-header .desktop-menu-list a:focus-visible,
.site-header .header-phone:focus-visible,
.site-header .btn-book-header:focus-visible,
.site-header .site-logo__link:focus-visible,
.site-header .mobile-nav-toggle:focus-visible {
    outline: 2px solid var(--spa-header-gold);
    outline-offset: 3px;
}

/* Mobile Toggle — vùng chạm tối thiểu ~44×44px (WCAG) */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
}

.mobile-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white-color);
    border-radius: 2px;
    transition: var(--transition);
}

.site-header.scrolled .mobile-nav-toggle span {
    background: var(--spa-header-green);
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Laptop / narrow desktop: thu chữ + khoảng cách nav để không đè logo / nút */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-inner {
        gap: clamp(10px, 1vw + 6px, 22px);
        padding-inline: clamp(14px, 1.8vw + 8px, 36px);
    }

    .desktop-menu-list {
        gap: clamp(0.5rem, 0.9vw + 0.25rem, 1.15rem);
    }

    .desktop-menu-list .menu-item a {
        font-size: clamp(9.5px, 0.5rem + 0.22vw, 10.75px);
        padding-inline: clamp(0.18rem, 0.32vw, 0.48rem);
    }

    .btn-book-header {
        padding: 10px 18px;
        font-size: 10px;
    }

    .header-actions {
        gap: clamp(8px, 1vw, 16px);
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-inner {
        padding-inline: clamp(18px, 2.4vw + 8px, 42px);
    }
}

/* Inner pages: hero kéo dưới header cố định (tin tức, phòng, giới thiệu) */
body.spa-header-over-hero #content.site-content {
    padding-top: 0 !important;
}

body.spa-header-over-hero .news-page__hero {
    padding-top: calc(var(--header-height) + clamp(40px, 7vw, 88px));
}

body.spa-header-over-hero .rooms-page__hero,
body.spa-header-over-hero .about-page__hero,
body.spa-header-over-hero .spa-page__hero,
body.spa-header-over-hero .contact-page__hero {
    padding-top: calc(var(--header-height) + clamp(36px, 6vw, 72px));
}

/* ==========================================================================
   6. OFF-CANVAS MOBILE DRAWER
   ========================================================================== */
.offcanvas-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, calc(100% - var(--sal) - var(--sar)));
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    background: var(--dark-color);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    padding: 0;
    padding-bottom: var(--sab);
    box-sizing: border-box;
    transition: right 0.38s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
}

.offcanvas-mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: calc(16px + var(--sat)) 24px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.drawer-logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 3px;
    color: var(--white-color);
    min-width: 0;
    overflow-wrap: anywhere;
}

.drawer-logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.drawer-logo__img {
    display: block;
    width: auto;
    height: 44px;
    max-height: 48px;
    object-fit: contain;
}

.close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 28px;
    color: var(--white-color);
    opacity: 0.7;
    line-height: 1;
    transition: opacity 0.2s;
    box-sizing: border-box;
}

.close-btn:hover {
    opacity: 1;
}

.mobile-nav-menu {
    padding: 24px;
    flex: 1 1 auto;
    min-height: 0;
    font-family: var(--font-nav-primary);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
}

.mobile-menu-list .menu-item a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    box-sizing: border-box;
    font-family: var(--font-nav-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s, padding-left 0.2s;
    font-synthesis: none;
}

.mobile-menu-list .menu-item a:hover,
.mobile-menu-list .menu-item.current-menu-item > a,
.mobile-menu-list .menu-item.current_page_item > a {
    color: var(--spa-header-gold);
    padding-left: 8px;
}

.mobile-menu-list .sub-menu {
    list-style: none;
    margin: 0 0 0 12px;
    padding: 4px 0 8px;
    border-left: 1px solid rgba(0, 164, 81, 0.25);
}

.mobile-menu-list .sub-menu .menu-item a {
    font-family: var(--font-nav-primary);
    font-size: 13px;
    letter-spacing: 0.03em;
    min-height: 40px;
    padding: 8px 0 8px 14px;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.65);
    font-synthesis: none;
}

.mobile-menu-list .sub-menu .menu-item a:hover {
    color: var(--spa-header-gold);
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.btn-book-drawer {
    width: 100%;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    box-sizing: border-box;
    border-radius: 3px;
    background-color: var(--spa-header-gold);
    color: var(--white-color);
    border: 1px solid rgba(0, 164, 81, 0.95);
}

.drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 6px 0;
    box-sizing: border-box;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.drawer-phone i {
    color: var(--primary-color);
    flex-shrink: 0;
}

.drawer-phone:hover {
    color: var(--primary-color);
}

/* Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Stronger scrim: white type stays readable; photo still shows through mid-tones */
    background:
        radial-gradient(ellipse 85% 70% at 50% 45%, rgba(255, 248, 240, 0.05) 0%, transparent 52%),
        linear-gradient(
            to bottom,
            rgba(14, 11, 9, 0.52) 0%,
            rgba(12, 9, 8, 0.32) 44%,
            rgba(8, 6, 5, 0.62) 100%
        );
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: var(--header-height);
    padding-bottom: clamp(100px, 18vh, 160px);
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

/* Extra darkening behind hero copy only */
.hero-slide-content::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(94%, 720px);
    height: min(76%, 460px);
    border-radius: 12px;
    background: radial-gradient(ellipse at center, rgba(6, 5, 4, 0.5) 0%, rgba(8, 6, 5, 0.22) 48%, transparent 78%);
    z-index: -1;
    pointer-events: none;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 22px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(20px);
}

.hero-eyebrow-text {
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-eyebrow-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.55) 35%,
        rgba(255, 255, 255, 0.55) 65%,
        transparent
    );
    position: relative;
    min-width: 24px;
}

.hero-eyebrow-line::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.55);
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.hero-caption {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--spa-accent);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 5.2vw, 4rem);
    font-weight: 400;
    color: var(--white-color);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 22ch;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(30px);
}

.hero-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 540px;
    line-height: 1.75;
    margin: 0 auto 36px;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(20px);
}

/* Hero title + lead: one line from lg up (nowrap + tighter fluid type); <576px allow wrap for readability */
@media (min-width: 992px) {
    .hero-slide-content {
        max-width: min(1100px, 96vw);
    }

    .hero-title {
        max-width: none;
        width: 100%;
        padding-inline: clamp(8px, 2vw, 32px);
        box-sizing: border-box;
        font-size: clamp(1.85rem, 2.6vw + 0.85rem, 3.35rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-desc {
        max-width: min(100%, 92vw);
        width: 100%;
        padding-inline: clamp(8px, 2vw, 28px);
        box-sizing: border-box;
        font-size: clamp(13px, 0.9vw + 0.55rem, 15px);
        line-height: 1.45;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 575.98px) {
    /* Narrow phones: bỏ một dòng cứng — cho xuống dòng để đọc hết nội dung dịch */
    .hero-title,
    .hero-desc {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .hero-title {
        max-width: 100%;
    }
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
}

/* Chỉ animate khi slide đang active */
.swiper-slide-active .hero-eyebrow,
.swiper-slide-active .hero-caption {
    animation: heroFadeUp 0.8s 0.3s forwards;
}
.swiper-slide-active .hero-title {
    animation: heroFadeUp 0.9s 0.5s forwards;
}
.swiper-slide-active .hero-desc {
    animation: heroFadeUp 0.9s 0.7s forwards;
}
.swiper-slide-active .hero-cta-group {
    animation: heroFadeUp 0.9s 0.9s forwards;
}

@keyframes heroFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Swiper Navigation */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(8, 6, 5, 0.38);
    backdrop-filter: blur(8px);
    color: var(--white-color);
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    top: 50%;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--spa-accent);
    border-color: var(--spa-accent);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    display: none;
}

.hero-swiper .swiper-button-prev i,
.hero-swiper .swiper-button-next i {
    font-size: 16px;
    color: currentColor;
}

/* Hero Pagination */
.hero-swiper .swiper-pagination {
    bottom: 28px;
}

body.spa-hero-topbar .hero-swiper .swiper-pagination {
    bottom: 112px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    border-radius: 50%;
    transition: background 0.25s, transform 0.25s;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
}

/* ==========================================================================
   8. BOOKING BAR
   ========================================================================== */
.booking-bar-section {
    background: var(--white-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 100;
}

.booking-bar-section.booking-bar--docked {
    margin-top: -92px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -6px 40px rgba(24, 18, 14, 0.12);
}

.booking-bar-form {
    width: 100%;
}

.booking-bar-fields {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
}

.booking-bar-field {
    flex: 1;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-bar-field label,
.booking-bar-date-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-color);
}

.booking-bar-field label i,
.booking-bar-date-label i {
    color: var(--spa-accent);
    flex-shrink: 0;
}

.booking-bar-date-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
}

.booking-bar-date-pill__icon {
    font-size: 22px;
    color: var(--spa-accent);
    flex-shrink: 0;
}

.booking-bar-date-pill__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
}

.booking-bar-field input[type="date"],
input.booking-bar-date-input {
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    background: transparent;
    cursor: pointer;
    width: 100%;
}

/* Desktop: nhóm Người lớn + Trẻ em = hai cột như trước (một flex item flex:2) */
.booking-bar-guests-row {
    display: flex;
    flex: 2;
    align-items: stretch;
    min-width: 0;
}

.booking-bar-guests-row > .booking-bar-field {
    flex: 1;
    min-width: 0;
}

.booking-bar-guests-row > .booking-bar-divider {
    align-self: center;
    flex-shrink: 0;
}

.booking-bar-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* Quantity Selector (inside booking bar) */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    background: var(--color-accent);
    font-size: 15px;
    font-weight: 500;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
    line-height: 1;
    cursor: pointer;
}

.quantity-btn:hover {
    background: #008f47;
    border-color: #008f47;
    color: var(--white-color);
}

.quantity-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    min-width: 20px;
    text-align: center;
}

/* Submit Button */
.booking-bar-submit {
    padding: 0 32px;
    height: 100%;
    min-height: 80px;
    background: var(--color-accent);
    color: var(--white-color);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.25s;
    flex-shrink: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking-bar-submit:hover {
    background: #008f47;
}

.booking-bar-submit__icon {
    font-size: 13px;
    line-height: 1;
}

/* Dải tin cậy — chỉ hiện ở mobile/tablet bên dưới form. Ẩn mặc định trên desktop. */
.booking-bar-trust {
    display: none;
}

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--white-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left: Image collage */
.about-images {
    position: relative;
    min-height: 480px;
}

.about-img-main-wrap {
    position: relative;
    width: 75%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-main {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-img-sub-wrap {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 5px solid var(--white-color);
}

.about-img-sub {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.about-badge {
    position: absolute;
    top: 40px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(0, 164, 81, 0.28);
    z-index: 2;
}

.about-badge-icon {
    flex-shrink: 0;
}

.about-badge-icon i {
    font-size: 28px;
    color: rgba(255,255,255,0.85);
}

.about-badge-text {
    display: flex;
    flex-direction: column;
}

.about-badge-number {
    font-family: var(--font-display);
    font-size: 28px;
    line-height: 1;
    color: var(--white-color);
}

.about-badge-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
    margin-top: 3px;
}

/* Right: Text */
.about-text {
    padding-left: 20px;
}

.about-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 22px;
    color: var(--dark-color);
    line-height: 1.25;
}

.about-desc {
    color: var(--muted-color);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin: 30px 0 10px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-color);
}

/* ==========================================================================
   10. FACILITIES SECTION (dark background)
   ========================================================================== */
.facilities-section {
    padding: var(--section-pad) 0;
    background-color: var(--dark-color);
}

.facilities-section .section-sub-heading {
    color: var(--color-accent);
}

.facilities-section .section-heading-rule {
    background-color: var(--color-accent);
}

.facilities-section .section-title {
    color: var(--white-color);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.facility-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    transition: var(--transition);
    background: rgba(255,255,255,0.03);
}

.facility-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: var(--color-accent);
    transform: translateY(-6px);
}

.facility-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    background: rgba(0, 164, 81, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.facility-card:hover .facility-icon {
    background: rgba(0, 164, 81, 0.26);
}

.facility-icon i {
    font-size: 28px;
    color: var(--color-accent);
}

.facility-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white-color);
    margin-bottom: 12px;
    font-weight: 400;
}

.facility-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
}

/* ==========================================================================
   11. ROOMS SECTION
   ========================================================================== */
.rooms-section {
    padding: var(--section-pad) 0 0;
    background-color: var(--secondary-color);
    overflow: hidden;
}

.rooms-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.rooms-header-left {
    flex: 1 1 260px;
    min-width: 0;
}

.rooms-header-left .section-sub-heading {
    justify-content: flex-start;
}

.rooms-header-right {
    flex: 1 1 280px;
    max-width: min(520px, 100%);
    margin-left: auto;
    text-align: right;
}

.rooms-header-right p {
    font-size: 15px;
    color: var(--muted-color);
    line-height: 1.8;
    text-align: right;
}

/* Phòng: trên tablet/mobile xếp cột + siết khoảng title ↔ mô tả (desktop ≥992px giữ 2 cột + căn đáy) */
@media (max-width: 991.98px) {
    .rooms-section-header {
        flex-direction: column;
        align-items: flex-start;
        align-content: flex-start;
        gap: 14px;
    }

    /* flex-basis 280px/260px áp vào *chiều cao* khi column → tạo khối rỗng; thu về nội dung thật */
    .rooms-header-left {
        flex: 0 1 auto;
        min-height: 0;
    }

    .rooms-header-right {
        flex: 0 1 auto;
        min-height: 0;
        max-width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .rooms-header-right p {
        text-align: left;
    }

    .rooms-section-header .section-title {
        margin-bottom: 0;
    }
}

/* Full section width (header stays in .container above); wider track for 4-up Swiper */
.rooms-slider-outer {
    position: relative;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow: visible;
    padding: 0 clamp(16px, 4vw, 56px) 48px;
}

/* Trang chủ: ≤ ngưỡng hạng phòng — lưới tĩnh (không Swiper) */
.rooms-home-static {
    padding: 0 0 48px;
}

.rooms-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.rooms-home-grid .room-card {
    min-height: 0;
}

/* Prev/next sit in side columns; swiper only holds slides */
.rooms-slider-row {
    display: flex;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.rooms-swiper-col {
    flex: 1 1 0;
    min-width: 0;
}

.rooms-nav-slot {
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

/* Room card — parallax bg layer + gradient (bg on .room-card__parallax, not .swiper-slide) */
.room-card {
    height: 480px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

a.room-card {
    display: block;
    text-decoration: none;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
}

.rooms-swiper .room-card:focus-visible,
.rooms-home-grid .room-card:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.room-card__parallax {
    position: absolute;
    left: 0;
    width: 100%;
    top: -14%;
    height: 128%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.room-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.94) 0%,
        rgba(10, 10, 10, 0.78) 32%,
        rgba(10, 10, 10, 0.35) 58%,
        rgba(10, 10, 10, 0.05) 100%
    );
    transition: background 0.4s ease;
}

.room-card:hover .room-card-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.96) 0%,
        rgba(10, 10, 10, 0.82) 35%,
        rgba(10, 10, 10, 0.45) 62%,
        rgba(10, 10, 10, 0.1) 100%
    );
}

/* Homepage rooms Swiper — quét clip-path; lớp front không nhận pointer → toàn thẻ <a.room-card> vẫn bấm được */
.rooms-swiper .room-card .room-card-front,
.rooms-home-grid .room-card .room-card-front {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Vạch trắng quét + lộ ảnh: chỉ thiết bị có hover chuột; chuột rời = đảo ngược transition */
@media (hover: hover) and (pointer: fine) {
    .rooms-swiper .room-card .room-card-front,
    .rooms-home-grid .room-card .room-card-front {
        clip-path: inset(0 0 0 0%);
        transition: clip-path 0.65s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: clip-path;
    }

    .rooms-swiper .room-card:hover .room-card-front,
    .rooms-home-grid .room-card:hover .room-card-front {
        clip-path: inset(0 0 0 100%);
    }

    .rooms-swiper .room-card:hover .room-card-overlay,
    .rooms-home-grid .room-card:hover .room-card-overlay {
        background: linear-gradient(
            to top,
            rgba(10, 10, 10, 0.94) 0%,
            rgba(10, 10, 10, 0.78) 32%,
            rgba(10, 10, 10, 0.35) 58%,
            rgba(10, 10, 10, 0.05) 100%
        );
    }

    .rooms-swiper .room-card,
    .rooms-home-grid .room-card {
        --room-sweep-line-w: 3px;
    }

    .rooms-swiper .room-card::after,
    .rooms-home-grid .room-card::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0%;
        width: var(--room-sweep-line-w, 3px);
        margin-left: calc(var(--room-sweep-line-w, 3px) / -2);
        background: #ffffff;
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.95),
            0 0 28px rgba(255, 255, 255, 0.45);
        z-index: 2;
        pointer-events: none;
        opacity: 0;
        transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.25s ease;
    }

    .rooms-swiper .room-card:hover::after,
    .rooms-home-grid .room-card:hover::after {
        left: 100%;
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rooms-swiper .room-card .room-card-front,
    .rooms-swiper .room-card::after,
    .rooms-home-grid .room-card .room-card-front,
    .rooms-home-grid .room-card::after {
        transition: none !important;
    }

    .rooms-swiper .room-card:hover .room-card-front,
    .rooms-home-grid .room-card:hover .room-card-front {
        clip-path: inset(0 0 0 0%) !important;
    }

    .rooms-swiper .room-card:hover::after,
    .rooms-home-grid .room-card:hover::after {
        opacity: 0 !important;
        left: 0% !important;
    }
}

.room-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.room-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.25;
}

.room-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.room-card-meta span {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.88);
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.room-card-price {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
}

.room-card-price strong {
    color: var(--color-accent);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.room-card-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--color-accent);
    transition: color 0.2s, border-color 0.2s;
}

.room-card-btn:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

/* Rooms Swiper — arrows in side columns; bullets full width under row */
.rooms-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.rooms-nav-slot .swiper-button-prev,
.rooms-nav-slot .swiper-button-next {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    transform: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--dark-color);
    z-index: 5;
    transition: background 0.25s, color 0.25s;
}

.rooms-nav-slot .swiper-button-prev::after,
.rooms-nav-slot .swiper-button-next::after {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
}

.rooms-nav-slot .swiper-button-prev:hover,
.rooms-nav-slot .swiper-button-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.rooms-nav-slot .swiper-button-prev:hover::after,
.rooms-nav-slot .swiper-button-next:hover::after {
    color: var(--white-color);
}

.rooms-slider-outer > .rooms-pagination {
    position: relative;
    bottom: auto !important;
    left: auto !important;
    top: auto;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 0;
    padding: 0 12px;
    box-sizing: border-box;
    text-align: center;
}

.rooms-slider-outer > .rooms-pagination .swiper-pagination-bullet {
    background: var(--border-color);
    opacity: 1;
}

.rooms-slider-outer > .rooms-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ==========================================================================
   11b. LISTING GRIDS — template-rooms / spa / products / tin tức
   (Ghi đè .room-card kiểu Swiper: height cố định + ảnh intrinsic hẹp)
   ========================================================================== */
.page-shell.inner-page.site-main {
    width: 100%;
    max-width: 100%;
}

/*
 * Hero + intro trang Spa: nội dung tiếng Việt dài với Cormorant/Jost dễ làm dấu tổ hợp “trôi” (trông như ký tự ^ thừa).
 * Ưu tiên Be Vietnam Pro / Noto Sans trong khối này.
 */
.spa-page__intro-typography {
    font-family: 'Be Vietnam Pro', 'Noto Sans', var(--font-body), system-ui, sans-serif;
}

.spa-page__intro-typography h1,
.spa-page__intro-typography h2,
.spa-page__intro-typography h3,
.spa-page__intro-typography p,
.spa-page__intro-typography .section-eyebrow {
    font-family: inherit;
    letter-spacing: normal;
}

/*
 * Banner nền ảnh (eco-spa-banner-section): trước đây chỉ có background-image inline,
 * thiếu cover → ảnh scale lạ / lộ mép crop (ví dụ phần đầu tóc ở đáy khối CTA).
 */
.eco-spa-banner-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.eco-spa-banner-section .container {
    position: relative;
    z-index: 2;
}

.eco-spa-banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(14, 18, 26, 0.4) 0%, rgba(14, 18, 26, 0.62) 100%);
}

/* CTA cuối trang Spa: neo vùng an toàn của ảnh + fade đáy che mép ảnh */
.spa-page__cta-banner.eco-spa-banner-section {
    text-align: center;
    background-color: #252220;
    background-position: center 30%;
    min-height: clamp(260px, 36vw, 400px);
    padding-top: clamp(56px, 8vw, 88px);
    padding-bottom: clamp(56px, 8vw, 88px);
}

.spa-page__cta-banner.eco-spa-banner-section::before {
    background: linear-gradient(
        180deg,
        rgba(20, 18, 17, 0.38) 0%,
        rgba(22, 20, 19, 0.58) 52%,
        rgba(18, 16, 15, 0.95) 100%
    );
}

.rooms-grid-section {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: clamp(48px, 8vw, 88px);
}

.rooms-grid-section .rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
    width: 100%;
    max-width: 100%;
    align-items: stretch;
}

/* Ô lưới đồng cao: stretch + height:100% trên thẻ; min-height: min-content tránh ép
   xuống dưới content thật (CTA/meta sẽ không bị tràn ra ngoài). */
.rooms-grid-section .rooms-grid > * {
    min-height: min-content;
    height: 100%;
}

.rooms-grid-section .rooms-grid > .room-card {
    align-self: stretch;
}

/* Lưới nhiều thẻ: tin tức (article) + khối sản phẩm + trang Spa (div.room-card) */
#productsShowcaseGrid.rooms-grid,
.rooms-grid-section .rooms-grid:has(article.room-card),
.spa-page .rooms-grid-section .rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
}

.rooms-grid-section .room-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: min-content;
    box-sizing: border-box;
    overflow: visible;
    cursor: default;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(14, 18, 28, 0.06);
}

.rooms-grid-section .room-card:hover {
    box-shadow: 0 16px 48px rgba(14, 18, 28, 0.08);
}

.rooms-grid-section .room-image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    max-height: 380px;
    background: rgba(230, 213, 195, 0.35);
}

.rooms-grid-section .room-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rooms-grid-section .room-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    min-height: auto;
    padding: clamp(22px, 3vw, 36px);
}

/* Khoảng cách đều; tránh gap flex chồng margin-top:auto trên .room-cta-row */
.rooms-grid-section .room-content > * + *:not(.room-cta-row) {
    margin-top: 12px;
}

.rooms-grid-section .room-content > p {
    margin: 0;
    line-height: 1.55;
    color: var(--muted-color);
}

.rooms-grid-section .room-content h4,
.rooms-grid-section .room-content h3.rooms-page__card-title {
    margin: 0;
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark-color);
}

.rooms-grid-section .room-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 10px;
    flex-shrink: 0;
}

.rooms-grid-section .room-meta-item {
    font-size: 12px;
    text-align: center;
    color: var(--muted-color);
    line-height: 1.35;
}

.rooms-grid-section .room-cta-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

/* Nút CTA canh cuối hàng; khi wrap xuống dòng vẫn sát phải (space-between không đủ với 1 phần tử/dòng) */
.rooms-grid-section .room-cta-row > .btn-primary {
    flex: 0 0 auto;
    align-self: center;
    margin-left: auto;
}

/* Meta spa / phần chữ bên trái: co giãn, cho phép wrap trong ô flex */
.rooms-grid-section .room-cta-row > .spa-treatment-card__meta {
    flex: 1 1 auto;
    min-width: 0;
}

.rooms-grid-section .room-price-tag {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: auto;
    padding: 8px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-color);
    background: rgba(24, 24, 24, 0.82);
    border-radius: 2px;
}

.rooms-grid-section .room-price-tag span {
    color: var(--color-accent);
}

.rooms-grid-section .room-discover-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.rooms-grid-section .room-discover-link:hover {
    color: var(--dark-color);
    border-bottom-color: var(--dark-color);
}

/* Trang Spa — thẻ liệu trình: hàng CTA co nút nhỏ + tiêu đề ~2 dòng để các thẻ cùng cao */
.spa-page .rooms-grid-section .room-content h4 {
    min-height: 3.25rem;
    line-height: 1.25;
}

.spa-page .rooms-grid-section .spa-treatment-card__meta {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-secondary, var(--territory-color));
}

.spa-page .rooms-grid-section .spa-treatment-card__btn {
    padding: 8px 18px;
    font-size: 12px;
}

@media (max-width: 640px) {
    .rooms-grid-section .room-meta-grid {
        grid-template-columns: 1fr;
    }

    .rooms-grid-section .room-cta-row {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .rooms-grid-section .room-cta-row > .btn-primary {
        width: auto;
        max-width: 100%;
        min-width: min(100%, 132px);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .rooms-grid-section .room-card {
        border-radius: 3px;
    }

    .rooms-grid-section .room-image-wrap {
        aspect-ratio: 4 / 3;
        max-height: 260px;
    }
}

/* ==========================================================================
   11c. TRANG PHÒNG NGHỈ (template-rooms.php — /phong-nghi/)
   ========================================================================== */
.rooms-page__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 32vw, 380px);
    padding: clamp(56px, 10vw, 100px) 0;
    margin: 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.82) 0%,
            rgba(24, 22, 20, 0.55) 45%,
            rgba(14, 18, 28, 0.88) 100%
        ),
        var(--rooms-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
}

.rooms-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.rooms-page__hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--color-on-dark-accent) !important;
    letter-spacing: 0.18em;
}

.rooms-page__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white-color);
}

.rooms-page__hero-lead {
    margin: 16px 0 0;
    font-size: clamp(15px, 1.9vw, 17px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.rooms-page__hero-lead--excerpt p {
    margin: 0;
}

.rooms-page__hero-lead--excerpt p + p {
    margin-top: 0.65em;
}

/* Nội dung soạn thảo (nếu có) ngay dưới hero — không lặp khối intro căn giữa */
.rooms-page__prose-after-hero {
    padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 48px);
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color, rgba(14, 18, 28, 0.06));
}

.rooms-page__prose-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 68ch;
}

.rooms-page__listing {
    padding-top: clamp(28px, 4vw, 40px);
}

.rooms-page__hero + .rooms-page__listing {
    padding-top: clamp(44px, 6.5vw, 64px);
}

.rooms-page__prose-after-hero + .rooms-page__listing {
    padding-top: clamp(28px, 4vw, 40px);
}

.rooms-page__grid-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

.rooms-page__grid-head .section-eyebrow {
    margin-bottom: 10px;
}

.rooms-page__grid-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.25;
}

/* Lưới đa cột cố định (thẻ article.room-card; không phụ thuộc :has) */
.rooms-page__grid.rooms-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(28px, 4vw, 36px);
}

@media (min-width: 900px) {
    .rooms-page__grid.rooms-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ==========================================================================
   11d. TRANG GIỚI THIỆU (template-about.php — /gioi-thieu/)
   ========================================================================== */
.about-page__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 32vw, 380px);
    padding: clamp(56px, 10vw, 100px) 0;
    margin: 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.82) 0%,
            rgba(24, 22, 20, 0.55) 45%,
            rgba(14, 18, 28, 0.88) 100%
        ),
        var(--about-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
}

.about-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.about-page__hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--color-on-dark-accent) !important;
    letter-spacing: 0.18em;
}

.about-page__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white-color);
}

.about-page__hero-lead {
    margin: 16px 0 0;
    font-size: clamp(15px, 1.9vw, 17px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.about-page__hero-lead--excerpt p {
    margin: 0;
}

.about-page__hero-lead--excerpt p + p {
    margin-top: 0.65em;
}

/* ==========================================================================
   11e. TRANG DỊCH VỤ SPA (template-spa.php — cùng nhịp hero với phòng / giới thiệu)
   ========================================================================== */
.spa-page__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 32vw, 380px);
    padding: clamp(56px, 10vw, 100px) 0;
    margin: 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.82) 0%,
            rgba(24, 22, 20, 0.55) 45%,
            rgba(14, 18, 28, 0.88) 100%
        ),
        var(--spa-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
}

.spa-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.spa-page__hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--color-on-dark-accent) !important;
    letter-spacing: 0.18em;
}

.spa-page__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white-color);
}

.about-page__intro {
    padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 48px);
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color, rgba(14, 18, 28, 0.06));
}

.about-page__intro-inner {
    max-width: 72ch;
    margin-left: auto;
    margin-right: auto;
}

.about-page__intro-body {
    margin-left: auto;
    margin-right: auto;
    max-width: 68ch;
}

.about-page__split {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--color-bg, var(--secondary-color));
}

.about-page__split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
    align-items: flex-start;
}

.about-page__split-text .section-eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary, var(--primary-color));
}

.about-page__split-title {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.about-page__split-prose {
    max-width: none;
}

.about-page__pullquote {
    margin: clamp(24px, 4vw, 32px) 0 0;
    padding: clamp(20px, 3vw, 28px);
    background: var(--color-surface-soft, rgba(43, 53, 143, 0.08));
    border-left: 4px solid var(--color-primary, var(--primary-color));
    border-radius: var(--radius-sm, 6px);
}

.about-page__pullquote p {
    margin: 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-secondary, var(--territory-color));
}

/* Collage (scoped — trước đây chỉ có inline / parallax JS) */
.about-page__collage,
.about-split-collage {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.about-page__collage .collage-img-main-wrap,
.about-split-collage .collage-img-main-wrap {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(14, 18, 28, 0.12);
    z-index: 1;
    background: var(--white-color);
}

.about-page__collage .collage-img-main,
.about-split-collage .collage-img-main {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
}

.about-page__collage .collage-img-sub-wrap,
.about-split-collage .collage-img-sub-wrap {
    position: absolute;
    right: 0;
    bottom: 8%;
    width: min(58%, 280px);
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(14, 18, 28, 0.15);
    z-index: 2;
    border: 3px solid var(--white-color);
    background: var(--white-color);
}

.about-page__collage .collage-img-sub,
.about-split-collage .collage-img-sub {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translateZ(0);
}

.about-page__collage .collage-badge-experience,
.about-split-collage .collage-badge-experience {
    position: absolute;
    left: 8%;
    bottom: 4%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(14, 18, 28, 0.1);
}

.about-page__collage .badge-text-wrap h3,
.about-split-collage .badge-text-wrap h3 {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-display);
    color: var(--dark-color);
}

.about-page__collage .badge-text-wrap p,
.about-split-collage .badge-text-wrap p {
    margin: 2px 0 0;
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted-color);
}

.about-page .about-page__values.facilities-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--color-surface-soft, var(--secondary-color));
}

.about-page .about-page__values-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(32px, 5vw, 48px);
}

.about-page .about-page__values-head .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 0.18em;
}

.about-page__values-title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.25;
}

.about-page__values-lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-muted, var(--muted-color));
}

.about-page .about-page__values .facility-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(14, 18, 28, 0.04);
}

.about-page .about-page__values .facility-card:hover {
    border-color: rgba(43, 53, 143, 0.45);
}

.about-page .about-page__values .facility-card h4 {
    color: var(--dark-color);
}

.about-page .about-page__values .facility-card p {
    color: var(--color-text-muted, var(--muted-color));
}

.about-page .about-page__values .facility-icon-wrap {
    background: rgba(43, 53, 143, 0.12);
}

/* Giá trị cốt lõi: cùng chiều cao hàng + căn icon / tiêu đề */
.about-page .about-page__values-grid {
    display: grid;
    align-items: stretch;
}

.about-page .about-page__values-grid .about-page__value-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    text-align: center;
}

.about-page .about-page__values-grid .about-page__value-card .about-page__value-icon {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    min-height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-page .about-page__values-grid .about-page__value-card h4 {
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 12px;
    line-height: 1.25;
    /* Khoảng cố định ~3 dòng để đoạn mô tả bắt đầu cùng một vị trí dọc */
    min-height: 4.6rem;
}

.about-page .about-page__values-grid .about-page__value-card p {
    flex-grow: 1;
    margin-top: 0;
    margin-bottom: 0;
}

.about-page__cta {
    position: relative;
    padding: clamp(64px, 10vw, 100px) 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.85) 0%,
            rgba(24, 22, 20, 0.6) 50%,
            rgba(14, 18, 28, 0.9) 100%
        ),
        var(--about-cta-image);
    background-size: cover;
    background-position: center;
    border-top: 3px solid rgba(43, 53, 143, 0.35);
}

.about-page__cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-page__cta-eyebrow {
    color: var(--color-on-dark-accent) !important;
}

.about-page__cta-title {
    margin: 14px 0 24px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--white-color);
}

@media (min-width: 900px) {
    .about-page__split-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: clamp(40px, 5vw, 72px);
        align-items: center;
    }

    .about-page__collage,
    .about-split-grid > .about-split-collage {
        margin: 0;
        max-width: none;
    }
}

/* Trang Giới thiệu (+ khối about trang chủ): ẩn collage ảnh / badge trên mobile & tablet nhỏ — text full width */
@media (max-width: 991.98px) {
    .about-page .about-page__split-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-page__collage {
        display: none;
    }

    /* Trang Dịch vụ Spa — cùng logic: polaroid / lớp phủ dễ vỡ trên màn hẹp */
    .spa-page .about-page__split-grid {
        grid-template-columns: 1fr;
    }

    .spa-page .about-page__collage {
        display: none;
    }

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

    .about-section .about-images {
        display: none;
    }
}

/* ==========================================================================
   11e. TRANG TIN TỨC (template-news.php — /tin-tuc/)
   Chỉ trong .news-page — không dùng lớp .room-card / .rooms-grid (tránh ảnh hưởng /phong-nghi/)
   ========================================================================== */
.news-page {
    --news-ink: var(--color-primary);
    --news-paper: #ffffff;
    --news-rule: rgba(43, 53, 143, 0.12);
    --news-muted: #5a5f56;
    --news-accent-line: rgba(0, 164, 81, 0.45);
    --news-green-deep: var(--color-primary);
    --news-gold: var(--color-accent);
    --news-toolbar-bg: #f9f9f9;
    --news-newsletter-bg: #ebe4d6;
}

.news-page .screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.news-page__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(280px, 38vw, 460px);
    padding: clamp(64px, 11vw, 112px) 0;
    margin: 0;
    width: 100%;
    text-align: center;
    /* Cùng nhịp overlay tối như spa/rooms/about — tránh lớp xanh dương lệch khi chuyển tab */
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.82) 0%,
            rgba(24, 22, 20, 0.55) 45%,
            rgba(14, 18, 28, 0.88) 100%
        ),
        radial-gradient(120% 90% at 50% 20%, rgba(0, 164, 81, 0.1) 0%, transparent 55%),
        var(--news-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
}

.news-page__hero--bleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.news-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 52rem;
}

.news-page__hero-eyebrow {
    margin: 0 0 0.9rem;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--news-gold);
}

.news-page__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--white-color);
}

.news-page__hero-subtitle {
    margin: clamp(12px, 2vw, 18px) 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.2vw, 1.45rem);
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.94);
}

.news-page__hero-desc,
.news-page__hero-desc--rich {
    margin: clamp(20px, 3vw, 32px) 0 0;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.65vw, 16px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.news-page__hero-desc p {
    margin: 0;
}

.news-page__hero-desc p + p {
    margin-top: 0.65em;
}

.news-page__hero-desc--rich p {
    margin: 0;
}

.news-page__hero-desc--rich p + p {
    margin-top: 0.65em;
}

.news-page__toolbar {
    background: var(--news-toolbar-bg);
    border-bottom: 1px solid var(--news-rule);
}

.news-page__toolbar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 20px;
    padding: 14px 0;
}

.news-page__cats-scroll {
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.news-page__cats {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 2px 2px 6px;
    margin: 0;
    list-style: none;
}

.news-page__cat-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--news-ink);
    background: var(--white-color);
    border: 1px solid var(--news-rule);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-page__cat-pill:hover {
    border-color: rgba(43, 53, 143, 0.28);
    color: var(--news-green-deep);
}

.news-page__cat-pill.is-active {
    background: var(--news-green-deep);
    border-color: var(--news-green-deep);
    color: var(--white-color);
}

.news-page__search {
    flex: 0 1 auto;
    min-width: min(100%, 220px);
    max-width: 320px;
}

.news-page__search-field {
    position: relative;
    display: flex;
    align-items: center;
}

.news-page__search-input {
    width: 100%;
    padding: 10px 44px 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--news-rule);
    background: var(--white-color);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--news-ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.news-page__search-input:focus {
    border-color: rgba(43, 53, 143, 0.35);
    box-shadow: 0 0 0 3px rgba(43, 53, 143, 0.08);
}

.news-page__search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--news-muted);
    background: transparent;
    transition: color 0.2s, background 0.2s;
}

.news-page__search-submit:hover {
    color: var(--news-green-deep);
    background: rgba(43, 53, 143, 0.06);
}

.news-page__search-icon {
    display: block;
}

.news-page__prose {
    padding: clamp(40px, 6vw, 72px) 0 clamp(32px, 5vw, 48px);
    background: var(--news-paper);
    border-bottom: 1px solid var(--news-rule);
}

.news-page__prose .entry-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 68ch;
}

.news-page__listing {
    padding: clamp(40px, 5.5vw, 64px) 0 clamp(52px, 7vw, 88px);
    background: #f9f9f9;
    border-top: 1px solid var(--news-rule);
}

.news-page__toolbar + .news-page__listing {
    border-top: none;
}

.news-page__prose + .news-page__listing {
    padding-top: clamp(32px, 4.5vw, 48px);
}

.news-page__feed {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 36px);
}

.news-page__section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    padding-bottom: clamp(10px, 1.5vw, 14px);
    border-bottom: 1px solid var(--news-rule);
}

.news-page__section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--news-ink);
}

.news-page__section-title--solo {
    margin: 0 0 clamp(18px, 2.5vw, 24px);
    padding-bottom: clamp(10px, 1.5vw, 14px);
    border-bottom: 1px solid var(--news-rule);
}

.news-page__section-icon {
    display: flex;
    color: var(--news-gold);
}

.news-page__section-link {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--news-green-deep);
    border-bottom: 1px solid transparent;
}

.news-page__section-link:hover {
    color: var(--news-gold);
    border-bottom-color: rgba(0, 164, 81, 0.5);
}

/* —— Bài nổi bật (chỉ trang 1) —— */
.news-page__lead {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 28px);
    padding: 0;
    background: var(--white-color);
    border: 1px solid var(--news-rule);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(14, 18, 28, 0.08);
    overflow: hidden;
}

@media (min-width: 880px) {
    .news-page__lead {
        grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
        align-items: stretch;
        gap: 0;
    }
}

.news-page__lead-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    min-height: 200px;
    max-height: 360px;
    background: rgba(230, 213, 195, 0.35);
    border: none;
}

@media (min-width: 880px) {
    .news-page__lead-media {
        max-height: none;
        min-height: 300px;
        height: 100%;
        aspect-ratio: auto;
    }
}

.news-page__lead-img-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 11px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--news-ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(14, 18, 28, 0.12);
    max-width: calc(100% - 28px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-page__lead-date-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
    padding: 9px 12px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: left;
    color: rgba(255, 255, 255, 0.96);
    background: rgba(43, 53, 143, 0.92);
    box-shadow: 0 8px 24px rgba(14, 18, 28, 0.2);
    max-width: min(100%, 200px);
}
.news-page__lead-media .news-page__thumb-img,
.news-page__teaser-media .news-page__thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease-out;
}

.news-page__lead:hover .news-page__lead-media .news-page__thumb-img {
    transform: scale(1.03);
}

.news-page__lead-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    min-width: 0;
    padding: clamp(22px, 3vw, 36px);
}

.news-page__featured-cat {
    margin-bottom: 2px;
}

.news-page__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--news-muted);
    font-family: var(--font-body);
}

.news-page__meta--lead {
    font-size: 13px;
}

.news-page__meta > :not(:first-child)::before {
    content: '·';
    margin-right: 0.45em;
    opacity: 0.55;
}

.news-page__meta--icons {
    row-gap: 10px;
    column-gap: 18px;
}

.news-page__meta--icons > :not(:first-child)::before {
    content: none;
    margin: 0;
}

.news-page__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.news-page__meta--gridrow {
    margin-bottom: 2px;
}

.news-page__meta-icon {
    display: block;
    flex-shrink: 0;
    color: rgba(90, 95, 86, 0.85);
}
.news-page__category,
.news-page__category--text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.news-page__category--gold,
.news-page__category--gold.news-page__category--text {
    color: var(--news-gold);
}

a.news-page__category--gold:hover {
    color: var(--territory-color);
    border-bottom-color: rgba(0, 164, 81, 0.45);
}

a.news-page__category:hover {
    color: var(--territory-color);
    border-bottom-color: rgba(43, 53, 143, 0.5);
}

.news-page__category--inline {
    margin-right: 2px;
}

.news-page__date {
    font-variant-numeric: tabular-nums;
}

.news-page__lead-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--news-ink);
}

.news-page__lead-title a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.news-page__lead-title a:hover {
    color: var(--news-gold);
    border-bottom-color: rgba(0, 164, 81, 0.45);
}

.news-page__deck {
    margin: 0;
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    color: var(--news-muted);
    max-width: 48ch;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page__lead-cta-wrap {
    margin: 8px 0 0;
}

.news-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.news-page__btn--primary {
    background: var(--news-green-deep);
    color: var(--white-color);
    border: 1px solid var(--news-green-deep);
}

.news-page__btn--primary:hover {
    background: #243d32;
    border-color: #243d32;
    color: var(--white-color);
}

.news-page__teaser {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--white-color);
    border: 1px solid var(--news-rule);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.news-page__teaser:hover {
    border-color: rgba(0, 164, 81, 0.4);
    box-shadow: 0 10px 32px rgba(14, 18, 28, 0.06);
}

.news-page__teaser-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    max-height: 200px;
    background: rgba(230, 213, 195, 0.3);
}

.news-page__teaser-cat-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--news-ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 12px rgba(14, 18, 28, 0.1);
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.news-page__teaser-media--small {
    aspect-ratio: 16 / 10;
    max-height: 200px;
}

.news-page__teaser:hover .news-page__teaser-media .news-page__thumb-img {
    transform: scale(1.04);
}

.news-page__teaser-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(14px, 2vw, 18px);
    flex: 1 1 auto;
}

.news-page__meta--compact {
    font-size: 11px;
    letter-spacing: 0.04em;
}

.news-page__teaser-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    font-weight: 700;
    line-height: 1.28;
    color: var(--news-ink);
}

.news-page__teaser-title a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.news-page__teaser-title a:hover {
    color: var(--news-gold);
    border-bottom-color: rgba(0, 164, 81, 0.4);
}

.news-page__teaser-excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--news-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-page__teaser-readmore {
    margin-top: 4px;
    align-self: flex-start;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--news-green-deep);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.news-page__teaser-readmore:hover {
    color: var(--news-gold);
    border-bottom-color: rgba(0, 164, 81, 0.45);
}

.news-page__teaser-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--news-rule);
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--news-muted);
}

.news-page__teaser-footer .news-page__readtime {
    font-weight: 600;
    color: var(--news-ink);
}

/* —— Lưới + newsletter —— */
.news-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(18px, 2.5vw, 24px);
}

@media (min-width: 700px) {
    .news-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-page__newsletter {
        grid-column: span 2;
    }
}

@media (min-width: 1100px) {
    .news-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-page__newsletter {
        grid-column: span 2;
    }
}

.news-page__teaser--grid {
    padding: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 36px rgba(14, 18, 28, 0.06);
}

.news-page__teaser--grid:hover {
    box-shadow: 0 14px 44px rgba(14, 18, 28, 0.09);
}
.news-page__newsletter {
    position: relative;
    padding: clamp(22px, 3vw, 28px);
    background: var(--news-newsletter-bg);
    border: 1px solid var(--news-rule);
    overflow: hidden;
}

.news-page__newsletter-decor {
    position: absolute;
    top: -28px;
    right: -20px;
    width: 120px;
    height: 120px;
    opacity: 0.18;
    pointer-events: none;
    background: radial-gradient(circle at 30% 30%, var(--news-gold) 0%, transparent 55%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e26' stroke-width='1.2'%3E%3Cpath d='M12 3c-2 3-6 4.2-6 9a6 6 0 1 0 12 0c0-4.8-4-6-6-9Z'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.news-page__newsletter-title {
    position: relative;
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 600;
    color: var(--news-ink);
}

.news-page__newsletter-text {
    position: relative;
    margin: 0 0 16px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.55;
    color: var(--news-muted);
    max-width: 36rem;
}

.news-page__newsletter-form {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: stretch;
}

.news-page__newsletter-input {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--news-rule);
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--white-color);
    color: var(--news-ink);
}

.news-page__newsletter-input:focus {
    outline: none;
    border-color: rgba(43, 53, 143, 0.35);
}

.news-page__newsletter-btn {
    flex: none;
    width: 100%;
    padding: 13px 22px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    background: var(--news-green-deep);
    color: var(--white-color);
    border: 1px solid var(--news-green-deep);
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
}

.news-page__newsletter-btn:hover {
    background: #243d32;
    border-color: #243d32;
}

.news-page__newsletter-privacy {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0 0;
    font-family: var(--font-body);
    font-size: 11px;
    line-height: 1.5;
    color: rgba(43, 53, 143, 0.55);
}

.news-page__newsletter-lock {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(43, 53, 143, 0.42);
}
.news-page__empty {
    margin: 0;
    padding: clamp(40px, 6vw, 72px) 1rem;
    text-align: center;
    font-size: 16px;
    color: var(--news-muted);
    background: var(--white-color);
    border: 1px dashed var(--news-rule);
}

.news-page .news-page__pagination.inner-pagination {
    margin-top: clamp(36px, 5vw, 52px);
    padding-top: clamp(20px, 3vw, 28px);
    border-top: 1px solid var(--news-rule);
}

.news-page .news-page__pagination.inner-pagination .nav-links {
    gap: 8px;
}

.news-page .news-page__pagination.inner-pagination a,
.news-page .news-page__pagination.inner-pagination span {
    font-family: var(--font-body);
    font-size: 13px;
    min-width: 38px;
    height: 38px;
    border-radius: 2px;
    border-color: var(--news-rule);
}

.news-page .news-page__pagination.inner-pagination span.current {
    font-weight: 600;
}

/* ==========================================================================
   12. TESTIMONIALS SECTION (dark background)
   ========================================================================== */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -60px;
    right: 60px;
    font-family: var(--font-display);
    font-size: 400px;
    color: rgba(255,255,255,0.02);
    line-height: 1;
    pointer-events: none;
}

/* Equal-height cards per row: Swiper flex line + column card + quote grows */
.testimonials-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.testimonials-swiper .swiper-slide .testi-card {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
}

.testi-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 36px 32px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testi-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0, 164, 81, 0.35);
}

.testi-quote-icon {
    margin-bottom: 16px;
    opacity: 0.55;
}

.testi-quote-icon i {
    font-size: 28px;
    color: var(--color-accent);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testi-stars i {
    font-size: 16px;
    color: var(--color-accent);
}

.testi-text {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: auto;
}

.testi-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author-avatar span {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white-color);
}

.testi-author h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white-color);
    font-weight: 400;
    margin-bottom: 3px;
}

.testi-author span {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Testimonials Swiper Navigation */
.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--white-color);
    top: -70px;
    transition: background 0.25s, border-color 0.25s;
}

.testimonials-swiper .swiper-button-prev::after,
.testimonials-swiper .swiper-button-next::after {
    font-size: 12px;
    font-weight: 700;
}

.testimonials-swiper .swiper-button-prev {
    right: 56px;
    left: auto;
}

.testimonials-swiper .swiper-button-next {
    right: 0;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

/* ==========================================================================
   13. BLOG SECTION
   ========================================================================== */
.blog-section {
    padding: var(--section-pad) 0;
    background: var(--white-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 16px;
    color: var(--muted-color);
    padding: 40px 16px;
}

/* Trang chủ: >3 bài (không tính bài phòng) — Swiper */
.blog-slider-wrap {
    position: relative;
    margin-top: 8px;
    padding: 0 0 12px;
}

.blog-swiper {
    position: relative;
    overflow: hidden;
    padding-bottom: 44px;
}

.blog-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

.blog-swiper .blog-card {
    height: 100%;
    margin: 0;
}

.blog-swiper .swiper-button-prev,
.blog-swiper .swiper-button-next {
    top: 50%;
    margin-top: -22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--spa-header-green);
    border: 1px solid rgba(0, 164, 81, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-swiper .swiper-button-prev {
    left: 2px;
}

.blog-swiper .swiper-button-next {
    right: 2px;
}

.blog-swiper .swiper-button-prev::after,
.blog-swiper .swiper-button-next::after {
    font-size: 12px;
    font-weight: 700;
}

.blog-swiper .swiper-button-prev:hover,
.blog-swiper .swiper-button-next:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--white-color);
}

.blog-swiper .swiper-pagination {
    bottom: 6px !important;
}

.blog-swiper .swiper-pagination-bullet {
    background: rgba(0, 164, 81, 0.35);
    opacity: 1;
}

.blog-swiper .swiper-pagination-bullet-active {
    background: var(--color-accent);
}

.blog-card {
    border-radius: 4px;
    overflow: hidden;
    background: var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
    transition: transform 0.5s ease;
}

/* In-card scroll parallax layer (same geometry as .room-card__parallax; driven by main.js) */
.blog-card__parallax {
    position: absolute;
    left: 0;
    width: 100%;
    top: -14%;
    height: 128%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.blog-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h4 a {
    color: var(--dark-color);
    transition: color 0.2s;
}

.blog-card-content h4 a:hover {
    color: var(--primary-color);
}

.blog-card-content p {
    font-size: 14px;
    color: var(--muted-color);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-read-more {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    padding-bottom: 2px;
    border-bottom: 1px solid var(--primary-color);
    transition: color 0.2s, border-color 0.2s;
}

.blog-read-more:hover {
    color: var(--territory-color);
    border-color: var(--territory-color);
}

/* ==========================================================================
   14. CTA SECTION
   ========================================================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    /* CSS-only: warm dark forest + accent glow (no photo) */
    background-color: #0f1512;
    background-image:
        radial-gradient(ellipse 110% 55% at 18% -5%, rgba(43, 53, 143, 0.22), transparent 52%),
        radial-gradient(ellipse 90% 60% at 100% 105%, rgba(42, 61, 48, 0.72), transparent 58%),
        linear-gradient(158deg, #121a16 0%, #0b100e 38%, #14110f 72%, #0a0d0b 100%);
    background-attachment: scroll;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* Light depth only — photo darkening no longer needed */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.22) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white-color);
    margin-bottom: 18px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    line-height: 1.8;
    margin-bottom: 36px;
}

.btn-cta {
    font-size: 14px;
    padding: 15px 40px;
}

/* CTA inline booking form (replaces headline + button) */
.cta-inline-wrap {
    position: relative;
    z-index: 2;
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cta-inline-heading {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.2vw, 2.15rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--white-color);
    margin: 0;
    letter-spacing: 0.02em;
}

.cta-inline-lead {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 6px;
    max-width: 52rem;
}

.cta-inline-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color-scheme: dark;
}

.cta-inline-form__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px 18px;
    align-items: end;
}

.cta-inline-form__grid--contact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cta-inline-form__field label,
.cta-inline-form__guest-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
    font-weight: 600;
}

.cta-inline-form__req {
    color: var(--color-accent);
}

.cta-inline-form__field input[type="date"],
.cta-inline-form__field input[type="text"],
.cta-inline-form__field input[type="tel"],
.cta-inline-form__field input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-family: var(--font-body, inherit);
    font-size: 15px;
    font-weight: 500;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.cta-inline-form__field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) opacity(0.85);
    cursor: pointer;
}

.cta-inline-form__field input[type="date"]::-webkit-datetime-edit,
.cta-inline-form__field input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.cta-inline-form__field input[type="date"]::-webkit-datetime-edit-text,
.cta-inline-form__field input[type="date"]::-webkit-datetime-edit-month-field,
.cta-inline-form__field input[type="date"]::-webkit-datetime-edit-day-field,
.cta-inline-form__field input[type="date"]::-webkit-datetime-edit-year-field {
    color: #ffffff;
}

.cta-inline-form__field input::placeholder,
.cta-inline-form__field input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
}

.cta-inline-form__field input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
}

.cta-inline-form__field select {
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    height: auto;
    padding: 14px 40px 14px 14px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.12);
    background-image: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox%3D%220 0 24 24%22%3E%3Cpath fill%3D%22%2300A451%22 d%3D%22M7 10l5 5 5-5z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
    color: #ffffff;
    font-family: var(--font-body, inherit);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.cta-inline-form__field select option {
    line-height: 1.5;
    padding: 0.4em 0.5em;
    background-color: #1f1f1f;
    color: #f5f5f5;
}

.cta-inline-form__field input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 164, 81, 0.35);
    background: rgba(255, 255, 255, 0.16);
}

.cta-inline-form__field select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 164, 81, 0.35);
    background-color: rgba(255, 255, 255, 0.16);
}

.cta-inline-form__field--guests .quantity-selector {
    justify-content: flex-start;
    padding: 6px 0;
}

.cta-inline-form__field--guests .quantity-btn {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: #ffffff;
}

.cta-inline-form__field--guests .quantity-btn:hover,
.cta-inline-form__field--guests .quantity-btn:focus-visible {
    border-color: #008f47;
    background: #008f47;
    color: #ffffff;
}

.cta-inline-form__field--guests .quantity-value {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    min-width: 1.75rem;
    text-align: center;
}

.cta-inline-form__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
}

.cta-inline-form__submit {
    flex-shrink: 0;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: var(--color-accent);
    color: #ffffff;
    font-weight: 600;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.cta-inline-form__submit:hover {
    background: #008f47;
}

.cta-inline-form__submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 164, 81, 0.45);
}

.cta-inline-form__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.cta-inline-form__message {
    flex: 1;
    min-width: 200px;
    margin: 0;
    text-align: left;
}

.cta-inline-form__message.success,
.cta-inline-form__message.error {
    padding: 10px 14px;
    border-radius: 4px;
}

.cta-inline-form .ajax-indicator-message.success {
    background: rgba(0, 164, 81, 0.22);
    color: #eafff3;
    border: 1px solid rgba(0, 164, 81, 0.45);
}

.cta-inline-form .ajax-indicator-message.error {
    background: rgba(220, 53, 69, 0.15);
    color: #ffb3bd;
    border: 1px solid rgba(220, 53, 69, 0.35);
}

@media (max-width: 991.98px) {
    .cta-inline-wrap {
        padding-inline: clamp(0.75rem, 3.5vw, 1.25rem);
    }

    .cta-inline-form {
        gap: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .cta-inline-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1rem;
        align-items: stretch;
    }

    .cta-inline-form__field--room {
        grid-column: 1 / -1;
    }

    .cta-inline-form__grid--contact {
        grid-template-columns: 1fr;
    }

    .cta-inline-form__field {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    .cta-inline-form__field label,
    .cta-inline-form__guest-label {
        margin-bottom: 0;
        font-size: 10.5px;
        letter-spacing: 0.07em;
    }

    .cta-inline-form__field--guests {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem 1rem;
        flex-wrap: wrap;
    }

    .cta-inline-form__field--guests .cta-inline-form__guest-label {
        flex-shrink: 0;
    }

    .cta-inline-form__field--guests .quantity-selector {
        flex: 0 1 auto;
        justify-content: flex-end;
        padding: 0;
        gap: 12px;
        max-width: 12rem;
        margin-left: auto;
    }

    .cta-inline-form__field--guests .quantity-btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .cta-inline-form__field input[type="date"],
    .cta-inline-form__field input[type="text"],
    .cta-inline-form__field input[type="tel"],
    .cta-inline-form__field input[type="email"] {
        padding: 14px 16px;
        min-height: 48px;
        border-radius: 6px;
    }

    .cta-inline-form__field select {
        padding: 14px 40px 14px 16px;
        min-height: 48px;
        border-radius: 6px;
    }

    .cta-inline-form__field input::placeholder,
    .cta-inline-form__field input::-webkit-input-placeholder {
        color: rgba(255, 255, 255, 0.62);
        opacity: 1;
    }

    .cta-inline-form__field input::-moz-placeholder {
        color: rgba(255, 255, 255, 0.62);
        opacity: 1;
    }

    .cta-inline-form__field input:-ms-input-placeholder {
        color: rgba(255, 255, 255, 0.62);
    }

    .cta-inline-form__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
    }

    .cta-inline-form__submit {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 22px;
    }

    .cta-inline-form__message {
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .cta-inline-form__grid {
        grid-template-columns: 1fr;
    }

    .cta-inline-form__field--room {
        grid-column: auto;
    }
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark-color);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col {
    min-width: 0;
}

.footer-brand-logo {
    margin-bottom: 18px;
}

.footer-brand-logo__img {
    display: block;
    width: auto;
    height: 56px;
    max-width: 100%;
    object-fit: contain;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a,
.footer-social .footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.footer-social a i,
.footer-social .footer-social-link i {
    font-size: 15px;
    color: currentColor;
}

.footer-social a:hover,
.footer-social .footer-social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--white-color);
}

.footer-social-placeholder {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.25);
    pointer-events: none;
}

.footer-social-placeholder i {
    font-size: 15px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    transition: color 0.2s, padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-on-dark-accent);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--color-on-dark-accent);
    padding-left: 4px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--color-on-dark-accent);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
    width: 1em;
    text-align: center;
}

.footer-map {
    border-radius: 4px;
    overflow: hidden;
    height: 140px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(60%);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--color-on-dark-accent);
}

.footer-legal-links .footer-legal-muted {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   16. BOOKING MODAL
   ========================================================================== */
.booking-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.75);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.booking-modal-overlay.active {
    display: flex;
}

.booking-modal-card {
    background: var(--white-color);
    border-radius: 6px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.35s ease;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border-color);
    background: var(--dark-color);
}

.booking-modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--white-color);
}

.close-modal {
    font-size: 26px;
    color: rgba(255,255,255,0.7);
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--white-color);
}

.booking-modal-body {
    padding: 28px;
}

.booking-modal-summary {
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--muted-color);
    line-height: 1.6;
    margin-bottom: 24px;
}

.booking-modal-summary strong {
    color: var(--primary-color);
}

.booking-modal-summary--spa {
    background: rgba(43, 53, 143, 0.12);
    border-color: rgba(43, 53, 143, 0.35);
}

.booking-modal-summary--spa-hint {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--muted-color);
    line-height: 1.55;
}

.booking-modal-overlay--spa .booking-modal-header h3 {
    letter-spacing: 0.12em;
}

.booking-modal-form .form-group-custom {
    margin-bottom: 18px;
}

.booking-modal-form label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin-bottom: 7px;
}

.booking-modal-form input,
.booking-modal-form select,
.booking-modal-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark-color);
    background: var(--white-color);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.booking-modal-form input:focus,
.booking-modal-form select:focus,
.booking-modal-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 164, 81, 0.18);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--color-accent);
    color: var(--white-color);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.25s;
    margin-top: 8px;
}

.booking-submit-btn:hover {
    background: #008f47;
}

.ajax-indicator-message {
    display: none;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
}

.ajax-indicator-message.success {
    background: rgba(0, 164, 81, 0.12);
    color: #008f47;
    border: 1px solid rgba(0, 164, 81, 0.3);
}

.ajax-indicator-message.error {
    background: rgba(220,53,69,0.08);
    color: #dc3545;
    border: 1px solid rgba(220,53,69,0.2);
}

/* ==========================================================================
   17. SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.delay-100 { transition-delay: 0.1s; }
.reveal-on-scroll.delay-200 { transition-delay: 0.2s; }
.reveal-on-scroll.delay-300 { transition-delay: 0.3s; }
.reveal-on-scroll.delay-400 { transition-delay: 0.4s; }

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   18. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1280px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop / Tablet Landscape */
@media (max-width: 1024px) {
    :root { --section-pad: 80px; }

    .about-grid {
        gap: 50px;
    }
}

/* Footer 2 cột chỉ tablet ngang (992–1024px); <992 để block ≤991.98px xếp 1 cột */
@media (max-width: 1024px) and (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Header: grid + hamburger (≤991.98px) — desktop nav từ 992px */
@media (max-width: 991.98px) {
    :root {
        --header-height: calc(70px + var(--sat));
    }

    body.spa-hero-topbar {
        --header-height: calc(70px + var(--sat));
    }

    .header-topbar {
        display: none;
    }

    .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: clamp(6px, 1.8vw, 14px);
        height: 70px;
        min-height: 70px;
        padding-inline: clamp(10px, 2.8vw, 22px);
        min-width: 0;
        overflow-x: clip;
    }

    .site-header:not(.has-topbar) .header-inner {
        height: 70px;
        min-height: 70px;
    }

    .logo-text {
        font-size: clamp(0.72rem, 2.1vw + 0.42rem, 1.05rem);
        letter-spacing: clamp(0.06em, 0.35vw + 0.04em, 0.18em);
        line-height: 1;
        display: inline-flex;
        align-items: center;
    }

    .desktop-nav-menu {
        display: none;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        pointer-events: auto;
        width: auto;
        max-width: none;
    }

    .header-phone {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-height: 48px;
        padding: 0;
        justify-content: center;
        align-items: center;
        align-self: center;
        box-sizing: border-box;
        flex-shrink: 0;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .site-logo {
        position: static;
        transform: none;
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        min-width: 0;
        max-width: 100%;
        width: auto;
    }

    .site-logo__link {
        max-width: 100%;
        margin-inline: auto;
        justify-content: center;
        align-items: center;
        min-width: 0;
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        box-sizing: border-box;
    }

    .site-logo__img {
        height: 40px;
        max-height: 100%;
    }

    .site-header.scrolled .site-logo__img {
        height: 36px;
    }

    .header-actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        width: auto;
        max-width: none;
        gap: clamp(6px, 1.5vw, 12px);
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }

    .mobile-nav-toggle {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        align-self: center;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        max-height: 48px;
        display: flex;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .btn-book-header {
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        padding: 0 12px;
        font-size: 9px;
        letter-spacing: 0.08em;
        box-sizing: border-box;
        white-space: nowrap;
        flex-shrink: 0;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    body.spa-hero-topbar .hero-swiper .swiper-pagination {
        bottom: 40px;
    }
}

@media (max-width: 899.98px) {
    .header-inner {
        column-gap: 6px;
        padding-inline: clamp(8px, 3.2vw, 18px);
    }
}

@media (max-width: 639.98px) {
    .container {
        padding-inline: clamp(14px, 4.2vw, 22px);
    }

    .site-logo__link {
        gap: 6px;
        max-width: 100%;
    }

    .site-logo__lotus {
        width: 22px;
        height: 22px;
    }

    .btn-book-header {
        height: 48px;
        min-height: 48px;
        max-height: 48px;
        padding: 0 10px;
        font-size: 8.5px;
        letter-spacing: 0.06em;
    }
}

@media (min-width: 1400px) {
    :root {
        --container-max: min(1320px, 94vw);
    }
}

/* Booking bar — widget vuông kiểu mockup mới trên mobile/tablet (≤991.98px; desktop ≥992px giữ thanh ngang).
   Card cream chỉ bao quanh form. Trust strip nằm dưới card (nền hero tối). */
@media (max-width: 991.98px) {
    .booking-bar-section.booking-bar--docked {
        margin: -36px clamp(14px, 4vw, 22px) 0;
        border-radius: 0;
        overflow: visible;
        box-shadow: none;
        background: transparent;
    }

    .booking-bar-section.booking-bar--docked > .container {
        padding: 0;
    }

    .booking-bar-form {
        margin: 0;
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
    }

    .booking-bar-fields {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
        padding: 0;
    }

    .booking-bar-fields > .booking-bar-divider {
        display: none;
    }

    .booking-bar-field {
        width: 100%;
        padding: 0;
        gap: 0;
    }

    .booking-bar-field.booking-bar-field--date {
        padding: 0;
    }

    /* Pill ngày: nền trắng, icon vàng trái, text dọc (label nhỏ trên / date lớn dưới), calendar picker phải */
    .booking-bar-date-pill {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        min-height: 64px;
        padding: 14px 22px;
        background: var(--white-color);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-sizing: border-box;
        box-shadow: 0 2px 8px rgba(24, 18, 14, 0.04);
    }

    .booking-bar-date-pill__icon {
        font-size: 22px;
        color: var(--spa-accent);
    }

    .booking-bar-date-pill__text {
        gap: 4px;
    }

    .booking-bar-date-label {
        font-size: 11px;
        letter-spacing: 0.16em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0;
        color: var(--muted-color);
        cursor: pointer;
        line-height: 1;
        display: block;
    }

    input.booking-bar-date-input,
    .booking-bar-field--date input[type="date"] {
        flex: 0 0 auto;
        min-width: 0;
        width: 100%;
        text-align: left;
        font-size: 18px;
        font-weight: 700;
        padding: 0;
        min-height: 0;
        line-height: 1.2;
        background: transparent;
        color: var(--dark-color);
        letter-spacing: 0;
        font-variant-numeric: tabular-nums;
    }

    /* Calendar icon picker nằm bên phải pill, không hidden */
    input.booking-bar-date-input::-webkit-calendar-picker-indicator,
    .booking-bar-field--date input[type="date"]::-webkit-calendar-picker-indicator {
        opacity: 0.55;
        cursor: pointer;
        padding: 6px;
        margin-left: 8px;
        filter: brightness(0.2);
    }

    /* Guests row: 2 cột song song trên mọi mobile (kể cả <420px) — vì layout compact mockup yêu cầu */
    .booking-bar-guests-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        flex: unset;
        width: 100%;
        padding: 0;
    }

    .booking-bar-guests-row > .booking-bar-divider,
    .booking-bar-divider--guests {
        display: none !important;
    }

    .booking-bar-guests-row > .booking-bar-field {
        width: 100%;
        min-width: 0;
        flex: unset;
        padding: 0;
    }

    .booking-bar-field--qty {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 10px;
        padding: 14px 18px 14px;
        background: var(--white-color);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(24, 18, 14, 0.04);
    }

    .booking-bar-field--qty > label {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        letter-spacing: 0.14em;
        font-weight: 700;
        color: var(--muted-color);
        min-width: 0;
        text-transform: uppercase;
    }

    .booking-bar-field--qty > label i {
        font-size: 16px;
        color: var(--spa-accent);
    }

    .booking-bar-field--qty .quantity-selector {
        display: flex;
        flex: 0 0 auto;
        min-width: 0;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
    }

    .booking-bar-field--qty .quantity-btn {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        font-size: 15px;
        border-radius: 50%;
        background: rgba(0, 164, 81, 0.14);
        border: 1px solid rgba(0, 164, 81, 0.22);
        color: var(--color-accent);
        box-shadow: none;
    }

    .booking-bar-field--qty .quantity-btn:hover,
    .booking-bar-field--qty .quantity-btn:focus-visible {
        background: var(--color-accent);
        border-color: var(--color-accent);
        color: var(--white-color);
    }

    .booking-bar-field--qty .quantity-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark-color);
        min-width: 18px;
        text-align: center;
    }

    /* Nút Kiểm tra phòng trống — gold full-width with arrow */
    .booking-bar-submit {
        align-self: stretch;
        margin: 8px 0 0;
        width: 100%;
        min-height: 56px;
        border-radius: 16px;
        background: var(--color-accent);
        color: var(--white-color);
        box-shadow: 0 12px 28px rgba(0, 164, 81, 0.32);
        white-space: nowrap;
        text-align: center;
        line-height: 1.2;
        padding: 0 18px;
        font-size: 13px;
        letter-spacing: 0.16em;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
    }

    .booking-bar-submit:hover {
        background: #008f47;
    }

    .booking-bar-submit__label {
        font-weight: 700;
        text-transform: uppercase;
    }

    .booking-bar-submit__icon {
        font-size: 14px;
        line-height: 1;
        margin-left: 4px;
    }

    /* Trust strip — đã ẩn trên mọi viewport (giữ display:none từ rule gốc) */
    .booking-bar-trust {
        display: none !important;
    }

    /* Footer — mobile / tablet: một cột, thứ tự brand → liên kết → liên hệ */
    .site-footer {
        padding: 56px 0 0;
    }

    .site-footer > .container {
        padding-inline: clamp(16px, 4vw, 24px);
    }

    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-flow: row;
        align-items: start;
        width: 100%;
        gap: clamp(28px, 5vw, 40px);
        padding-bottom: 48px;
    }

    .site-footer .footer-grid > .footer-col {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

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

    .footer-brand-logo__img {
        height: 48px;
    }

    .footer-desc {
        margin-bottom: 20px;
        line-height: 1.75;
    }

    .footer-social {
        gap: 14px;
        flex-wrap: wrap;
    }

    .footer-social a,
    .footer-social .footer-social-link,
    .footer-social-placeholder {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        box-sizing: border-box;
    }

    .footer-social a i,
    .footer-social .footer-social-link i,
    .footer-social-placeholder i {
        font-size: 16px;
    }

    .footer-col h5 {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .footer-links {
        gap: 2px;
    }

    .footer-links.footer-links--services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 12px;
        row-gap: 0;
    }

    .footer-links a {
        min-height: 44px;
        padding: 10px 0;
        box-sizing: border-box;
    }

    .footer-contact-item {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .footer-contact-item a {
        overflow-wrap: anywhere;
    }

    .footer-map {
        height: clamp(160px, 42vw, 200px);
    }

    .footer-bottom {
        padding: 18px 0 22px;
    }

    .footer-bottom .container {
        padding-inline: clamp(16px, 4vw, 24px);
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 16px;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 1.55;
        margin: 0;
        max-width: none;
        text-align: left;
    }

    .footer-legal-links {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        align-self: stretch;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .footer-legal-links a {
        display: inline-flex;
        align-items: center;
        flex: 1 1 0;
        min-width: 0;
        min-height: 40px;
        padding: 6px 0;
        box-sizing: border-box;
        font-size: 11.5px;
        line-height: 1.35;
        text-align: left;
    }

    .footer-legal-links .footer-legal-muted {
        display: inline-flex;
        align-items: center;
        flex: 1 1 0;
        min-width: 0;
        min-height: 40px;
        padding: 6px 0;
        box-sizing: border-box;
        font-size: 11.5px;
        line-height: 1.35;
        text-align: left;
    }
}

/* Người lớn + Trẻ em xếp ngang khi đủ chỗ (≥420px viewport) */
@media (max-width: 991.98px) and (min-width: 420px) {
    .booking-bar-guests-row {
        grid-template-columns: 1fr 1fr;
        gap: 6px 10px;
    }
}

/* Tablet/landscape: xếp 2×2 — Nhận phòng + Trả phòng trên, Người lớn + Trẻ em dưới, nút full-width.
   Widget vuông được giới hạn bề ngang tối đa, căn giữa để trông đỡ rộng. */
@media (max-width: 991.98px) and (min-width: 600px) {
    .booking-bar-section.booking-bar--docked {
        margin-left: auto;
        margin-right: auto;
        max-width: 560px;
    }

    .booking-bar-form {
        padding: 0;
    }

    .booking-bar-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
        gap: 10px 12px;
        padding: 0;
    }

    .booking-bar-field {
        padding: 0;
    }

    .booking-bar-field.booking-bar-field--date {
        padding: 0;
    }

    .booking-bar-fields > .booking-bar-guests-row {
        grid-column: 1 / -1;
        padding: 0;
        gap: 10px 12px;
    }

    .booking-bar-guests-row > .booking-bar-field {
        padding-left: 0;
        padding-right: 0;
    }

    .booking-bar-submit {
        grid-column: 1 / -1;
        margin: 4px 0 0;
    }
}

/* Tablet (layout nội dung; header đã chuyển ở ≤991.98px) */
@media (max-width: 768px) {
    :root {
        --section-pad: 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        min-height: 360px;
    }

    .about-text {
        padding-left: 0;
    }

    .about-badge {
        left: 0;
    }

    .rooms-nav-slot {
        flex-basis: 38px;
    }

    .rooms-nav-slot .swiper-button-prev,
    .rooms-nav-slot .swiper-button-next {
        width: 34px;
        height: 34px;
    }

    .rooms-nav-slot .swiper-button-prev::after,
    .rooms-nav-slot .swiper-button-next::after {
        font-size: 11px;
    }

    .rooms-slider-outer > .rooms-pagination {
        margin-top: 18px;
    }

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

    .hero-slide-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        top: -50px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
}

/* Mobile */
@media (max-width: 480px) {
    :root { --section-pad: 50px; }

    .container {
        padding-inline: clamp(12px, 5vw, 20px);
    }

    h2 { font-size: 1.7rem; }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        text-align: center;
    }

    .about-stats {
        gap: 20px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    /* Chỉ thẻ Swiper trang chủ — không áp vào .rooms-grid-section article.room-card */
    .rooms-swiper .room-card,
    .rooms-slider-outer .room-card,
    .rooms-home-grid .room-card {
        height: 400px;
    }

    .rooms-nav-slot {
        flex-basis: 36px;
    }

    .rooms-nav-slot .swiper-button-prev,
    .rooms-nav-slot .swiper-button-next {
        width: 32px;
        height: 32px;
    }

    .offcanvas-mobile-drawer {
        width: calc(100% - var(--sal) - var(--sar));
        max-width: none;
    }

    .mobile-nav-toggle {
        width: 48px;
        height: 48px;
        gap: 6px;
    }

    .mobile-nav-toggle span {
        width: 24px;
    }

    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .site-footer {
        padding-top: 48px;
    }

    .site-footer > .container,
    .footer-bottom .container {
        padding-inline: clamp(14px, 5vw, 20px);
    }

    .site-footer .footer-grid {
        gap: 26px;
        padding-bottom: 40px;
    }

    .footer-brand-logo {
        margin-bottom: 12px;
    }

    .footer-brand-logo__img {
        height: 44px;
    }

    .footer-desc {
        font-size: 13px;
    }

    .footer-col h5 {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Font Awesome helpers (inner page templates)
   ========================================================================== */
.room-meta-icon {
    display: block;
    margin: 0 auto 6px auto;
    font-size: 16px;
    color: var(--color-primary, var(--primary-color));
}

.spa-features-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.spa-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.spa-features-list li i {
    color: var(--color-primary, var(--primary-color));
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.badge-icon-wrap i {
    font-size: 28px;
    line-height: 1;
    color: var(--color-primary, var(--primary-color));
}

.facility-icon-wrap i {
    font-size: 25px;
    color: var(--color-primary, var(--primary-color));
}

/* ==========================================================================
   Inner pages (page.php, single, archives, template-* inner layout)
   ========================================================================== */
.page-shell.inner-page {
    background: var(--secondary-color);
}

.page-shell__inner {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.inner-page-header.page-header-band {
    padding: clamp(48px, 8vw, 88px) 0 clamp(36px, 5vw, 56px);
    background: linear-gradient(165deg, rgba(24, 24, 24, 0.97) 0%, rgba(40, 36, 32, 0.92) 55%, rgba(24, 24, 24, 0.98) 100%);
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
    color: var(--white-color);
}

.inner-page-header__inner {
    text-align: center;
}

.inner-page-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 12px;
}

.inner-page-eyebrow a {
    color: var(--spa-accent);
}

.inner-page-header.page-header-band .inner-page-eyebrow a,
.inner-page-header.page-header-band .inner-page-meta a {
    color: #f4ead8;
    text-decoration: none;
}

.inner-page-header.page-header-band .inner-page-eyebrow a:hover,
.inner-page-header.page-header-band .inner-page-meta a:hover {
    color: #fff;
    text-decoration: underline;
}

.inner-page-title {
    color: var(--white-color);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    margin: 0;
}

.inner-page-meta,
.inner-page-lead {
    margin-top: 16px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
}

.inner-page-meta a {
    color: var(--spa-accent);
}

.inner-page-meta-sep {
    margin: 0 8px;
}

/* --- Chi tiết phòng: ảnh cover trên band tiêu đề --- */
.inner-page-header.page-header-band.inner-page-header--room {
    position: relative;
    isolation: isolate;
    min-height: clamp(320px, 48vh, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: clamp(56px, 10vw, 100px);
    padding-bottom: clamp(40px, 6vw, 72px);
    background-color: #181a17;
    background-image:
        linear-gradient(180deg, rgba(10, 11, 10, 0.78) 0%, rgba(10, 11, 10, 0.42) 42%, rgba(10, 11, 10, 0.9) 100%),
        var(--room-header-cover, none);
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.inner-page-header.inner-page-header--room .inner-page-header__inner {
    position: relative;
    z-index: 1;
}

.room-detail-type-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}

.inner-page-body--room-detail {
    padding-top: clamp(40px, 5vw, 64px);
}

.room-detail-container {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.room-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

.room-detail-article {
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(14, 18, 28, 0.06);
}

.room-detail-article .entry-content.inner-prose {
    max-width: none;
}

.room-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.room-detail-cta-card {
    padding: clamp(22px, 3vw, 28px);
    border-radius: 14px;
    background: linear-gradient(165deg, #1a221c 0%, #121814 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.room-detail-cta-card__kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c9e8c0;
}

.room-detail-cta-card__text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.room-detail-cta-card__btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    font-family: inherit;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
}

.room-detail-cta-card__btn--primary {
    margin-bottom: 10px;
    color: #fff;
    background: var(--color-accent);
    border: 1px solid transparent;
}

.room-detail-cta-card__btn--primary:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

.room-detail-cta-card__btn--ghost {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.room-detail-cta-card__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
}

.room-detail-aside-note {
    padding: 20px 22px;
    border-radius: 12px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(14, 18, 28, 0.04);
}

.room-detail-aside-note__title {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--territory-color);
}

.room-detail-aside-note__list {
    margin: 0;
    padding-left: 1.15em;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
}

.room-detail-aside-note__list li + li {
    margin-top: 8px;
}

@media (max-width: 960px) {
    .room-detail-grid {
        grid-template-columns: 1fr;
    }

    .room-detail-sidebar {
        order: -1;
    }
}

.inner-page-body {
    padding: clamp(48px, 6vw, 80px) 0 clamp(64px, 8vw, 100px);
}

.inner-page-article {
    background: var(--white-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(14, 18, 28, 0.04);
    padding: clamp(28px, 4vw, 48px);
}

.inner-prose,
.entry-content.inner-prose {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-color);
    max-width: 68ch;
}

.inner-prose > * + *,
.entry-content.inner-prose > * + * {
    margin-top: 0.55em;
}

.inner-prose h2,
.inner-prose h3,
.inner-prose h4,
.entry-content.inner-prose h2,
.entry-content.inner-prose h3,
.entry-content.inner-prose h4 {
    margin-top: 0.65em;
    margin-bottom: 0.3em;
}

/* Sau đoạn văn / list → tiêu đề (kể cả trong article / khối HTML) */
.entry-content.inner-prose p + h2,
.entry-content.inner-prose p + h3,
.entry-content.inner-prose ul + h2,
.entry-content.inner-prose ul + h3,
.entry-content.inner-prose ol + h2,
.entry-content.inner-prose ol + h3,
.entry-content.inner-prose .lead + h2,
.entry-content.inner-prose .lead + h3 {
    margin-top: 0.4em;
}

/* Bỏ khoảng đúp do margin-bottom đoạn + margin-top tiêu đề */
.entry-content.inner-prose p:has(+ h2),
.entry-content.inner-prose p:has(+ h3),
.entry-content.inner-prose p:has(+ h4) {
    margin-bottom: 0.15em;
}

.entry-content.inner-prose ul:has(+ h2),
.entry-content.inner-prose ul:has(+ h3),
.entry-content.inner-prose ol:has(+ h2),
.entry-content.inner-prose ol:has(+ h3) {
    margin-bottom: 0.2em;
}

.inner-prose ul,
.inner-prose ol,
.entry-content.inner-prose ul,
.entry-content.inner-prose ol {
    list-style: revert;
    padding-left: 1.35em;
}

.inner-prose blockquote,
.entry-content.inner-prose blockquote {
    margin: 1.5em 0;
    padding: 1em 1.25em;
    border-left: 4px solid var(--spa-accent);
    background: rgba(43, 53, 143, 0.08);
    font-style: italic;
    color: var(--territory-color);
}

.inner-prose table,
.entry-content.inner-prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin: 1.5em 0;
}

.inner-prose th,
.inner-prose td,
.entry-content.inner-prose th,
.entry-content.inner-prose td {
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    text-align: left;
}

.inner-prose th,
.entry-content.inner-prose th {
    background: rgba(43, 53, 143, 0.12);
    font-weight: 600;
}

.inner-page-featured {
    margin: 0 0 28px;
    border-radius: 8px;
    overflow: hidden;
}

.inner-page-featured-img {
    width: 100%;
    height: auto;
    display: block;
}

.inner-archive-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.inner-archive-card {
    padding: 28px 32px;
    background: var(--white-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(14, 18, 28, 0.04);
}

.inner-archive-card__title {
    font-size: 1.45rem;
    margin: 0 0 8px;
}

.inner-archive-card__title a:hover {
    color: var(--spa-accent);
}

.inner-archive-card__meta {
    font-size: 13px;
    color: var(--muted-color);
    margin-bottom: 10px;
}

.inner-archive-card__excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.inner-archive-card__more {
    display: inline-block;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--spa-accent);
}

.inner-pagination {
    margin-top: 40px;
}

.inner-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.inner-pagination a,
.inner-pagination span {
    display: inline-flex;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    font-size: 14px;
}

.inner-pagination span.current {
    background: var(--spa-accent);
    border-color: var(--spa-accent);
    color: var(--white-color);
}

.inner-empty,
.inner-page-archive-desc {
    text-align: center;
}

.inner-page-archive-desc {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.inner-search-count {
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--muted-color);
}

/* --- Blog: lưới bài (home / archive / search) + single tin --- */
.inner-page-lead {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 52ch;
    margin-left: auto;
    margin-right: auto;
}

.page-shell__inner--blog {
    max-width: 1120px;
}

.inner-page-body--blog-archive {
    background: var(--secondary-color);
}

.inner-search-count--blog {
    margin-bottom: 8px;
}

.blog-archive-feed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(22px, 3vw, 32px);
}

.blog-teaser-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 36px rgba(14, 18, 28, 0.06);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease;
}

.blog-teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(14, 18, 28, 0.1);
    border-color: rgba(0, 164, 81, 0.22);
}

.blog-teaser-card__media-link {
    display: block;
    text-decoration: none;
}

.blog-teaser-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(180deg, #eef0ed 0%, #e3e8e4 100%);
}

.blog-teaser-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-teaser-card:hover .blog-teaser-card__img {
    transform: scale(1.05);
}

.blog-teaser-card__placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 40%, rgba(0, 164, 81, 0.08), transparent 62%),
        linear-gradient(168deg, rgba(43, 53, 143, 0.06) 0%, rgba(24, 30, 26, 0.12) 100%);
}

.blog-teaser-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: clamp(18px, 2.5vw, 22px) clamp(18px, 2.5vw, 24px) clamp(20px, 2.5vw, 24px);
    border-top: 1px solid rgba(14, 18, 28, 0.06);
}

.blog-teaser-card__cat {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-teaser-card__cat a {
    color: #5a6c62;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-teaser-card__cat a:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.blog-teaser-card__title {
    margin: 0 0 8px;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.35;
}

.blog-teaser-card__title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-teaser-card__title a:hover {
    color: var(--color-accent);
}

.blog-teaser-card__meta {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--muted-color);
}

.blog-teaser-card__excerpt {
    margin: 0 0 16px;
    flex: 1;
    font-size: 15px;
    line-height: 1.65;
    color: #4a5650;
}

.blog-teaser-card__more {
    align-self: flex-start;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(0, 164, 81, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.blog-teaser-card__more:hover {
    color: #007a3d;
    border-bottom-color: rgba(0, 122, 61, 0.85);
}

.inner-pagination--blog {
    margin-top: clamp(36px, 5vw, 52px);
}

.inner-pagination--blog .nav-links {
    gap: 12px;
}

.inner-pagination--blog a,
.inner-pagination--blog span {
    border-radius: 8px;
    min-height: 44px;
    font-weight: 500;
}

.inner-pagination--blog span.current {
    box-shadow: 0 4px 14px rgba(43, 53, 143, 0.25);
}

/* Single bài tin (không áp dụng chi tiết phòng) */
.inner-blog-hero {
    margin: 0;
    max-height: min(52vh, 480px);
    overflow: hidden;
    background: #1a1e18;
}

.inner-blog-hero__img {
    width: 100%;
    height: min(52vh, 480px);
    object-fit: cover;
    display: block;
}

.inner-page-body--blog-single {
    padding-top: clamp(40px, 5vw, 64px);
}

.page-shell__inner--blog-reading {
    max-width: 780px;
}

.inner-blog-single .inner-page-article {
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(14, 18, 28, 0.06);
}

.inner-blog-tags {
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--muted-color);
}

.inner-blog-tags__label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--territory-color);
}

.inner-blog-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.inner-blog-tags__list a {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--text-color);
    background: rgba(43, 53, 143, 0.08);
    border: 1px solid rgba(43, 53, 143, 0.15);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.inner-blog-tags__list a:hover {
    background: rgba(43, 53, 143, 0.14);
    border-color: rgba(43, 53, 143, 0.28);
    color: var(--spa-accent);
}

.inner-blog-post-nav {
    margin-top: clamp(28px, 4vw, 40px);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.inner-blog-post-nav .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(14px, 2vw, 20px);
}

.inner-blog-post-nav a {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 22px rgba(14, 18, 28, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.inner-blog-post-nav a:hover {
    border-color: rgba(43, 53, 143, 0.25);
    box-shadow: 0 12px 32px rgba(14, 18, 28, 0.08);
    transform: translateY(-2px);
}

.inner-blog-post-nav .nav-next {
    text-align: right;
}

.inner-blog-post-nav__dir {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spa-accent);
}

.inner-blog-post-nav__title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
}

@media (max-width: 640px) {
    .inner-blog-post-nav .nav-links {
        grid-template-columns: 1fr;
    }

    .inner-blog-post-nav .nav-next {
        text-align: left;
    }
}

/* Single tin / sự kiện — layout tạp chí (category tin-tuc, su-kien, …) */
.single-news-magazine {
    background: linear-gradient(180deg, #e8e2d6 0%, #f2ede4 32%, #ebe6db 100%);
}

.single-news-magazine .news-magazine-article {
    margin: 0;
}

.news-magazine-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(300px, 52vh, 560px);
    display: flex;
    align-items: flex-end;
    color: #f7f4ec;
    background: linear-gradient(155deg, #132018 0%, #0a100d 50%, #1a2a20 100%);
    overflow: hidden;
}

.news-magazine-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #0f1612;
    background-image: var(--news-mag-hero-image, none);
    background-size: cover;
    background-position: center;
}

.news-magazine-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(8, 12, 10, 0.35) 0%,
        rgba(8, 12, 10, 0.55) 45%,
        rgba(8, 12, 10, 0.88) 100%
    );
    pointer-events: none;
}

.news-magazine-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: clamp(28px, 5vw, 56px) 0 clamp(52px, 8vw, 88px);
    max-width: min(1100px, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-magazine-hero__eyebrow {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-magazine-hero__eyebrow a {
    color: rgba(255, 250, 240, 0.88);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 250, 240, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.news-magazine-hero__eyebrow a:hover {
    color: #fff;
    border-bottom-color: rgba(180, 220, 190, 0.75);
}

.news-magazine-hero__title {
    margin: 0 0 16px;
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.75rem, 3.6vw, 2.65rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: #f7f4ec;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.news-magazine-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    font-size: 14px;
    color: rgba(247, 244, 236, 0.82);
}

.news-magazine-hero__meta a {
    color: rgba(200, 235, 210, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(200, 235, 210, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.news-magazine-hero__meta a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.45);
}

.news-magazine-hero__sep {
    opacity: 0.65;
}

.news-magazine-hero__lead {
    margin: clamp(16px, 2.5vw, 22px) 0 0;
    max-width: 52ch;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    line-height: 1.55;
    color: rgba(250, 247, 240, 0.9);
}

.news-magazine-sheet {
    position: relative;
    z-index: 2;
    margin-top: clamp(-36px, -4vw, -20px);
    padding: clamp(36px, 5vw, 56px) 0 clamp(48px, 7vw, 72px);
    background: #faf7f0;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 40px rgba(20, 24, 18, 0.08);
}

.news-magazine-sheet__inner.news-magazine-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
    gap: clamp(24px, 3.5vw, 44px);
    align-items: start;
    max-width: var(--container-max);
    margin-inline: auto;
}

.news-magazine-main {
    min-width: 0;
}

.news-magazine-main .news-magazine-prose {
    max-width: none;
}

.news-magazine-aside {
    min-width: 0;
}

.news-magazine-aside-stack {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 28px);
}

@media (min-width: 901px) {
    .news-magazine-aside-stack {
        position: sticky;
        top: calc(var(--header-height, 100px) + 20px);
    }
}

.news-magazine-widget {
    padding: 20px 20px 22px;
    border-radius: 14px;
    border: 1px solid rgba(26, 33, 29, 0.1);
    background: #fffef9;
    box-shadow: 0 8px 28px rgba(20, 24, 18, 0.06);
}

.news-magazine-widget__kicker {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--spa-accent, #007a3d);
}

.news-magazine-widget__heading {
    margin: 0 0 14px;
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
}

.news-magazine-widget__title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-color);
}

.news-magazine-widget__text {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted-color);
}

.news-magazine-widget__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    margin-bottom: 10px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #007a3d 0%, #005c2e 100%);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.news-magazine-widget__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 92, 46, 0.28);
}

.news-magazine-widget__link {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--spa-accent, #007a3d);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.news-magazine-widget__link:hover {
    border-bottom-color: rgba(0, 122, 61, 0.35);
}

.news-magazine-aside-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-magazine-aside-list__item + .news-magazine-aside-list__item {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 33, 29, 0.08);
}

.news-magazine-aside-list__link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-decoration: none;
    color: inherit;
    transition: color 0.15s ease;
}

.news-magazine-aside-list__link:hover .news-magazine-aside-list__title {
    color: var(--spa-accent, #007a3d);
}

.news-magazine-aside-list__date {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--muted-color);
}

.news-magazine-aside-list__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-color);
}

.news-magazine-quick-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-magazine-quick-links a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(26, 33, 29, 0.08);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.news-magazine-quick-links a:hover {
    color: var(--spa-accent, #007a3d);
    border-bottom-color: rgba(0, 122, 61, 0.25);
}

@media (max-width: 900px) {
    .news-magazine-sheet__inner.news-magazine-layout {
        grid-template-columns: 1fr;
    }

    .news-magazine-aside-stack {
        position: static;
    }
}

.news-magazine-prose {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.news-magazine-prose > p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-display, Georgia, serif);
    font-size: 3.1rem;
    line-height: 0.85;
    font-weight: 500;
    padding-right: 10px;
    padding-top: 4px;
    color: var(--spa-accent, #007a3d);
}

.news-magazine-tags {
    border-top-color: rgba(26, 33, 29, 0.12);
}

.news-magazine-post-nav {
    max-width: 100%;
}

/* Band full chiều ngang cho “Bài cùng chuyên mục” (template single-related-blog-posts) */
.single-related-strip {
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
    box-sizing: border-box;
}

.single-related-strip .single-related-wrap {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.single-news-magazine .single-related-strip {
    margin-top: 0;
    padding-top: clamp(32px, 5vw, 48px);
    padding-bottom: clamp(40px, 6vw, 64px);
    border-top: 1px solid rgba(26, 33, 29, 0.1);
    background: #faf7f0;
}

.inner-blog-single .single-related-strip {
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: clamp(28px, 4vw, 44px);
    padding-bottom: clamp(36px, 5vw, 52px);
    border-top: 1px solid var(--border-color);
    background: var(--secondary-color);
}

@media (max-width: 640px) {
    .news-magazine-prose > p:first-of-type::first-letter {
        font-size: 2.5rem;
    }
}

/* Bài cùng chuyên mục — cuối single tin */
.single-related-wrap {
    margin-top: clamp(28px, 4vw, 40px);
    padding-top: clamp(28px, 4vw, 44px);
    border-top: 1px solid var(--border-color);
}

.single-related {
    margin-bottom: clamp(8px, 2vw, 16px);
}

.single-related__title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 500;
    margin: 0 0 clamp(20px, 3vw, 28px);
    color: var(--text-color);
    text-align: center;
    line-height: 1.3;
}

.blog-archive-feed--related {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.inner-page-404-actions {
    text-align: center;
}

.inner-page-404-actions .search-form {
    margin-top: 28px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .blog-empty {
        padding: 32px 12px;
    }
}

/* --------------------------------------------------------------------------
   Khối factsheet (Giới thiệu), bảng giá Spa, chân trang liên hệ
   -------------------------------------------------------------------------- */
.spa-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hotel-facts-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--secondary-color);
}

/* Section này nằm ngoài .about-page__values nên không kế thừa override card sáng;
   gốc .facility-card được thiết kế cho nền tối (chữ trắng). Cần khôi phục màu cho
   nền sáng để Wi-Fi / tiện ích / chính sách đọc được. */
.hotel-facts-section .facility-card,
.hotel-facts-card {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(14, 18, 28, 0.04);
    color: var(--text-color);
    text-align: left;
    padding: clamp(22px, 3vw, 30px);
}

.hotel-facts-section .facility-card:hover,
.hotel-facts-card:hover {
    background: var(--white-color);
    border-color: rgba(43, 53, 143, 0.45);
    transform: translateY(-3px);
}

.hotel-facts-section .facility-card h4,
.hotel-facts-card h4 {
    color: var(--dark-color);
    text-align: left;
    margin-bottom: 10px;
}

.hotel-facts-section .facility-card p,
.hotel-facts-card p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.65;
}

.hotel-facts-section .facility-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 0 16px;
    background: rgba(43, 53, 143, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-facts-section .facility-icon-wrap i {
    color: var(--spa-accent);
    font-size: 22px;
}

.hotel-facts-card code {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(43, 53, 143, 0.14);
    color: var(--territory-color);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
    letter-spacing: 0.02em;
}

.hotel-facts-card .hotel-facts-wifi {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.85;
}

.hotel-facts-card .hotel-facts-wifi strong {
    color: var(--dark-color);
    font-weight: 600;
    margin-right: 4px;
}

.hotel-facts-muted {
    font-size: 14px;
    color: var(--muted-color);
    margin-top: 10px;
    line-height: 1.6;
}

.hotel-facts-section .hotel-facts-list {
    list-style: disc;
    padding-left: 1.2em;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
}

.hotel-facts-section .hotel-facts-list li {
    margin-bottom: 6px;
    color: var(--text-color);
}

.hotel-facts-prose {
    margin-top: clamp(32px, 5vw, 48px);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.hotel-facts-prose h3 {
    margin-top: 32px;
    margin-bottom: 14px;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.4vw, 1.5rem);
    color: var(--dark-color);
}

.hotel-facts-prose h3:first-child {
    margin-top: 0;
}

.table-responsive-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--white-color);
}

.hotel-facts-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: var(--text-color);
}

.hotel-facts-table th,
.hotel-facts-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.hotel-facts-table tr:last-child td {
    border-bottom: 0;
}

.hotel-facts-table th {
    background: rgba(43, 53, 143, 0.12);
    color: var(--dark-color);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hotel-facts-policies {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-color);
}

.hotel-facts-policies li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 18px;
    line-height: 1.65;
    color: var(--text-color);
}

.hotel-facts-policies li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--spa-accent);
}

.hotel-facts-policies li strong {
    color: var(--dark-color);
    margin-right: 4px;
}

.rooms-page__inventory-footnote {
    margin-top: 28px;
    font-size: 14px;
    color: var(--color-text-muted, #6e6a63);
    max-width: 72ch;
}

.footer-contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted, #9a948c);
    margin-bottom: 2px;
}

.footer-wifi-hint {
    font-size: 13px;
    color: var(--color-text-muted, #9a948c);
    margin-top: 16px;
    line-height: 1.45;
}

.footer-wifi-hint a {
    color: var(--color-primary);
}

.spa-pricing-head .spa-pricing-lead {
    max-width: 62ch;
    margin-top: 10px;
    color: var(--color-text-muted, #6e6a63);
    font-size: 15px;
}

.spa-pricing-accordion {
    max-width: 900px;
    margin: 28px auto 0;
}

.spa-pricing-details {
    border: 1px solid var(--color-border, #e5ddd0);
    border-radius: var(--radius-sm, 6px);
    margin-bottom: 10px;
    background: var(--color-surface, #fff);
}

.spa-pricing-summary {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 12px 16px;
    align-items: center;
    padding: 14px 16px;
    font-family: var(--font-body, inherit);
}

.spa-pricing-summary::-webkit-details-marker {
    display: none;
}

.spa-pricing-code {
    font-weight: 700;
    color: var(--color-primary);
    min-width: 2ch;
}

.spa-pricing-title {
    font-weight: 600;
    color: var(--color-secondary, #181818);
}

.spa-pricing-meta {
    font-size: 13px;
    color: var(--color-text-muted, #6e6a63);
    text-align: right;
}

.spa-pricing-price {
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
}

.spa-pricing-body {
    padding: 0 16px 16px;
    border-top: 1px solid var(--color-border, #e5ddd0);
}

.spa-pricing-body p {
    margin: 14px 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--color-text-muted, #444);
}

.spa-pricing-book {
    margin-top: 4px;
}

.spa-alacarte-heading {
    margin-top: 48px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.spa-alacarte-table td {
    vertical-align: top;
}

.spa-alacarte-note {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: var(--color-text-muted, #6e6a63);
}

@media (max-width: 640px) {
    .spa-pricing-summary {
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .spa-pricing-meta,
    .spa-pricing-price {
        text-align: left;
    }
}

/* ==========================================================================
   11f. TRANG DỊCH VỤ SPA — REDESIGN (intro + USP, card grid 8 gói, alacarte list)
   Bổ sung sau redesign /dich-vu-spa/. Class cũ (.spa-pricing-accordion / details)
   vẫn còn ở trên để tránh vỡ template khác, nhưng template-spa.php không dùng nữa.
   ========================================================================== */

/* Hero — bổ sung 1 dòng lead dưới H1 (đồng bộ rooms-page__hero-lead) */
.spa-page__hero-lead {
    margin: 16px auto 0;
    max-width: 36em;
    font-size: clamp(15px, 1.9vw, 17px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

/* ---- 2. INTRO + USP ---------------------------------------------------- */
.spa-page__intro.spa-intro-section {
    padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color);
}

.spa-intro-section__head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
}

.spa-intro-section__head .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.spa-intro-section__head h2 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark-color);
}

.spa-intro-section__head p {
    margin: 0;
    font-size: clamp(15px, 1.7vw, 16.5px);
    line-height: 1.7;
    color: var(--muted-color);
}

.spa-usp-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) {
    .spa-usp-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (min-width: 992px) {
    .spa-usp-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
    }
}

.spa-usp-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 22px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.spa-usp-item:hover {
    transform: translateY(-3px);
    border-color: rgba(43, 53, 143, 0.55);
    box-shadow: 0 18px 42px rgba(14, 18, 28, 0.07);
}

.spa-usp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(43, 53, 143, 0.12);
    color: var(--spa-accent);
    font-size: 20px;
}

.spa-usp-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.spa-usp-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted-color);
}

/* ---- 3. PRICING GRID (8 gói) ------------------------------------------ */
.spa-pricing-section.spa-pricing-section--grid {
    padding: clamp(64px, 9vw, 100px) 0 clamp(56px, 8vw, 88px);
    background: var(--secondary-color);
}

.spa-pricing-section--grid .spa-pricing-head {
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vw, 56px);
    text-align: center;
}

.spa-pricing-section--grid .spa-pricing-head .section-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.spa-pricing-head__title {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

.spa-pricing-section--grid .spa-pricing-lead {
    margin: 0 auto;
    max-width: 56ch;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-color);
}

.spa-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(20px, 3vw, 28px);
    align-items: stretch;
}

@media (min-width: 1200px) {
    .spa-pricing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.spa-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(14, 18, 28, 0.04);
    transition: var(--transition);
    height: 100%;
}

.spa-pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 53, 143, 0.55);
    box-shadow: 0 22px 50px rgba(14, 18, 28, 0.1);
}

.spa-pricing-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(230, 213, 195, 0.4);
}

.spa-pricing-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.spa-pricing-card:hover .spa-pricing-card__image {
    transform: scale(1.06);
}

.spa-pricing-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 18, 28, 0) 55%, rgba(14, 18, 28, 0.35) 100%);
    pointer-events: none;
}

.spa-pricing-card__duration {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--dark-color);
}

.spa-pricing-card__duration i {
    font-size: 11px;
    color: var(--spa-accent);
}

.spa-pricing-card__code {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    background: var(--spa-accent);
    color: var(--white-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
}

.spa-pricing-card__body {
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 26px 22px 22px;
}

.spa-pricing-card__icon {
    position: absolute;
    top: -22px;
    right: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--spa-accent);
    font-size: 18px;
    box-shadow: 0 6px 18px rgba(14, 18, 28, 0.08);
    pointer-events: none;
}

.spa-pricing-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
    padding-right: 48px;
}

.spa-pricing-card__tagline {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    color: var(--territory-color);
}

.spa-pricing-card__highlights {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spa-pricing-card__highlights li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-color);
}

.spa-pricing-card__highlights li i {
    margin-top: 5px;
    color: var(--spa-accent);
    font-size: 11px;
    flex-shrink: 0;
}

.spa-pricing-card__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.spa-pricing-card__price-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.spa-pricing-card__price-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-color);
}

.spa-pricing-card__price {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--spa-accent);
    margin-top: 2px;
}

.spa-pricing-card__btn {
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
    border-radius: 999px;
    align-self: center;
}

/* ---- 4. ALACARTE LIST (09–12) ----------------------------------------- */
.spa-alacarte-section {
    padding: clamp(56px, 8vw, 88px) 0;
    background: var(--white-color);
}

.spa-alacarte-section__head {
    max-width: 680px;
    margin: 0 auto clamp(28px, 4vw, 40px);
    text-align: center;
}

.spa-alacarte-section__head .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.spa-alacarte-section__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.spa-alacarte-section__lead {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted-color);
}

.spa-alacarte-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 880px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spa-alacarte-row {
    display: grid;
    grid-template-columns: auto auto 1fr auto auto;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.spa-alacarte-row:hover {
    border-color: rgba(43, 53, 143, 0.55);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 14px 30px rgba(14, 18, 28, 0.06);
}

.spa-alacarte-row__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    color: var(--spa-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 6px;
}

.spa-alacarte-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(43, 53, 143, 0.12);
    color: var(--spa-accent);
    font-size: 14px;
}

.spa-alacarte-row__body {
    min-width: 0;
}

.spa-alacarte-row__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.spa-alacarte-row__note {
    margin: 4px 0 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted-color);
}

.spa-alacarte-row__duration {
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--muted-color);
    white-space: nowrap;
}

.spa-alacarte-row__price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--spa-accent);
    white-space: nowrap;
}

@media (max-width: 720px) {
    .spa-alacarte-row {
        grid-template-columns: auto auto 1fr;
        grid-template-areas:
            "code icon body"
            "duration duration price";
        row-gap: 12px;
        column-gap: 14px;
    }

    .spa-alacarte-row__code   { grid-area: code; }
    .spa-alacarte-row__icon   { grid-area: icon; }
    .spa-alacarte-row__body   { grid-area: body; }
    .spa-alacarte-row__duration {
        grid-area: duration;
        align-self: center;
        padding-top: 4px;
        border-top: 1px dashed var(--border-color);
    }
    .spa-alacarte-row__price {
        grid-area: price;
        text-align: right;
        padding-top: 4px;
        border-top: 1px dashed var(--border-color);
    }
}

/* ---- 5. MEDICINAL HIGHLIGHT — refine spacing -------------------------- */
.spa-page__medicinal {
    padding: clamp(72px, 9vw, 108px) 0;
    background: var(--secondary-color);
}

.spa-medicinal-grid {
    align-items: center;
}

.spa-page__medicinal .spa-features-list li {
    align-items: flex-start;
}

/* ---- Card footer button: tránh stretch full khi card hẹp ------------- */
@media (max-width: 380px) {
    .spa-pricing-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .spa-pricing-card__btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   11g. TRANG LIÊN HỆ (template-contact.php — /lien-he/)
   Đồng bộ pattern hero / split / cta với rooms-page / about-page / spa-page.
   ========================================================================== */

/* ---- Hero ---- */
.contact-page__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(220px, 32vw, 380px);
    padding: clamp(56px, 10vw, 100px) 0;
    margin: 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
            165deg,
            rgba(14, 18, 28, 0.82) 0%,
            rgba(24, 22, 20, 0.55) 45%,
            rgba(14, 18, 28, 0.88) 100%
        ),
        var(--contact-hero-image);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid rgba(43, 53, 143, 0.45);
}

.contact-page__hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page__hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: var(--color-on-dark-accent) !important;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
}

.contact-page__hero-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white-color);
}

/* Tiếng Việt dài bọc spa-page__intro-typography → ép body font cho lead */
.contact-page__hero.spa-page__intro-typography .contact-page__hero-title {
    font-family: var(--font-display);
}

.contact-page__hero-lead {
    margin: 16px auto 0;
    max-width: 38em;
    font-size: clamp(15px, 1.9vw, 17px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

/* ---- Section 2: thẻ thông tin ---- */
.contact-info-section {
    padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
    background: var(--white-color);
    border-bottom: 1px solid var(--border-color, rgba(14, 18, 28, 0.06));
}

.contact-info-section__head {
    max-width: 640px;
    margin: 0 auto clamp(28px, 4vw, 44px);
    text-align: center;
}

.contact-info-section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-info-section__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 600px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
}

@media (min-width: 1100px) {
    .contact-info-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 26px 24px;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(14, 18, 28, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(43, 53, 143, 0.55);
    box-shadow: 0 18px 38px rgba(14, 18, 28, 0.08);
}

.contact-info-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 6px;
    background: rgba(43, 53, 143, 0.12);
    border-radius: 50%;
    color: var(--spa-accent, var(--primary-color));
    font-size: 18px;
}

.contact-info-card__label {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-color);
}

.contact-info-card__value {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--dark-color);
    font-weight: 500;
}

.contact-info-card__value--link {
    color: var(--spa-accent, var(--primary-color));
    word-break: break-word;
}

.contact-info-card__value--link:hover {
    color: var(--territory-color);
}

.contact-info-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.contact-info-card__phone {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.contact-info-card__phone:hover {
    color: var(--spa-accent, var(--primary-color));
}

.contact-info-card__note {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted-color);
}

.contact-info-card__note a {
    color: var(--spa-accent, var(--primary-color));
    font-weight: 600;
}

.contact-info-card__note a:hover {
    color: var(--territory-color);
    text-decoration: underline;
}

.contact-info-card__link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--spa-accent, var(--primary-color));
    transition: color 0.2s ease, gap 0.2s ease;
}

.contact-info-card__link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.contact-info-card__link:hover {
    color: var(--territory-color);
    gap: 12px;
}

/* ---- Section 3: split form + aside ---- */
.contact-page__split {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--secondary-color);
}

.contact-page__split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    align-items: flex-start;
}

@media (min-width: 900px) {
    .contact-page__split-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: clamp(36px, 4vw, 56px);
    }
}

/* Form card */
.contact-form-wrap {
    background: var(--white-color);
    padding: clamp(28px, 4vw, 44px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 16px 44px rgba(14, 18, 28, 0.05);
}

.contact-form-wrap__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-wrap__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.contact-form-wrap__lead {
    margin: 0 0 26px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted-color);
}

/* Form controls — đồng bộ với .booking-modal-form (đã có ở mục 16) */
.contact-form .form-group-custom {
    margin-bottom: 18px;
}

.contact-form .form-group-custom:last-of-type {
    margin-bottom: 22px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--dark-color);
    background: var(--white-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
    color: var(--dark-color);
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 164, 81, 0.16);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .booking-submit-btn {
    border-radius: 8px;
    margin-top: 4px;
}

/* Aside */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(14, 18, 28, 0.05);
}

.contact-aside__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dark-color);
}

.contact-aside__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-aside__media-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--dark-color);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(14, 18, 28, 0.12);
}

.contact-aside__media-badge i {
    color: var(--spa-accent, var(--primary-color));
    font-size: 14px;
}

.contact-aside__body {
    padding: clamp(24px, 3.5vw, 36px);
}

.contact-aside__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-aside__title {
    margin: 0 0 18px;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.contact-aside__features {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-aside__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 14px;
    background: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.contact-aside__features li > i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(43, 53, 143, 0.12);
    color: var(--spa-accent, var(--primary-color));
    border-radius: 50%;
    font-size: 15px;
}

.contact-aside__features li > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-aside__features strong {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.35;
}

.contact-aside__features span,
.contact-aside__features a {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted-color);
}

.contact-aside__features a {
    color: var(--spa-accent, var(--primary-color));
    font-weight: 600;
}

.contact-aside__features a:hover {
    color: var(--territory-color);
    text-decoration: underline;
}

.contact-aside__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ---- Section 4: map ---- */
.contact-map-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--white-color);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.contact-map-section__head {
    max-width: 720px;
    margin: 0 auto clamp(24px, 3.5vw, 40px);
    text-align: center;
}

.contact-map-section__head .section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color);
}

.contact-map-section__title {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

.contact-map-section__lead {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted-color);
}

.contact-map-section__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: clamp(280px, 38vw, 440px);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 18px 48px rgba(14, 18, 28, 0.08);
    background: var(--secondary-color);
}

.contact-map-section__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---- Section 5: cta ---- */
.contact-cta-section {
    position: relative;
    padding: clamp(56px, 8vw, 88px) 0;
    text-align: center;
    background-color: var(--dark-color);
    background-image: linear-gradient(
        165deg,
        rgba(14, 18, 28, 0.92) 0%,
        rgba(24, 22, 20, 0.78) 50%,
        rgba(14, 18, 28, 0.95) 100%
    );
    border-top: 3px solid rgba(43, 53, 143, 0.45);
}

.contact-cta-section__inner {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-section__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-on-dark-accent);
}

.contact-cta-section__title {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.35;
    color: var(--white-color);
}

/* ---- Mobile tinh chỉnh ---- */
@media (max-width: 599.98px) {
    .contact-form-wrap,
    .contact-aside__body {
        padding: 24px 20px;
    }

    .contact-info-card {
        padding: 22px 20px;
    }

    .contact-aside__features li {
        padding: 10px 12px;
    }
}
