/* ============================================================
   Woodcastle Hotel Website — Luxury International Design System
   Fonts: Cormorant Garamond (headings) · Inter (body)
   ============================================================ */

/* ---- Local Font Faces ---- */
@font-face {
    font-family: 'Noto Sans Lao';
    src: url('../fonts/NotoSansLao.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ---- Language Font Classes ---- */
.font-en { font-family: 'Inter', 'Roboto', sans-serif; }
.font-th { font-family: 'Noto Sans Thai', 'Inter', sans-serif; }
.font-lo { font-family: 'Noto Sans Lao', 'Inter', sans-serif; }
.font-kr { font-family: 'Noto Sans KR', 'Inter', sans-serif; }

html[lang="lo"] {
    --font-serif: 'Noto Sans Lao', 'Inter', sans-serif;
    --font-sans: 'Noto Sans Lao', 'Inter', sans-serif;
}

html[lang="lo"] .navbar,
html[lang="lo"] .navbar a,
html[lang="lo"] .navbar a:focus,
html[lang="lo"] .navbar .dropdown ul a,
html[lang="lo"] .btn-getstarted {
    font-family: 'Noto Sans Lao', 'Inter', sans-serif !important;
}

html[lang="lo"] .footer,
html[lang="lo"] .footer a,
html[lang="lo"] .footer h1,
html[lang="lo"] .footer h3,
html[lang="lo"] .footer p,
html[lang="lo"] .footer .copyright {
    font-family: 'Noto Sans Lao', 'Inter', sans-serif !important;
}

/*--------------------------------------------------------------
# Root – Design Tokens
--------------------------------------------------------------*/
:root {
    /* Brand Palette */
    --color-gold:        #c9a84c;
    --color-gold-light:  #e8d5a3;
    --color-gold-dim:    rgba(201, 168, 76, 0.15);
    --color-charcoal:    #1a2332;
    --color-dark:        #1c1c1e;
    --color-medium:      #6b6b6b;
    --color-light:       #d4cfc8;
    --color-cream:       #faf9f7;
    --color-bg-alt:      #f2ede6;
    --color-white:       #ffffff;
    --color-black:       #000000;
    --color-green:       #28A745;
    --color-blue:        #3b82f6;

    /* Legacy aliases – keeps existing Blade/CSS from breaking */
    --color-default:     #1c1c1e;
    --color-primary:     #1a2332;
    --color-secondary:   #6b6b6b;
    --color-background:  #faf9f7;

    /* RGB variants for rgba() */
    --color-default-rgb:    28, 28, 30;
    --color-primary-rgb:    26, 35, 50;
    --color-secondary-rgb:  107, 107, 107;
    --color-background-rgb: 250, 249, 247;
    --color-white-rgb:      255, 255, 255;
    --color-black-rgb:      0, 0, 0;
    --color-green-rgb:      40, 167, 69;
    --color-blue-rgb:       59, 130, 246;
    --color-gold-rgb:       201, 168, 76;

    /* Typography */
    --font-serif:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:     'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-primary:  var(--font-sans);
    --font-secondary: var(--font-serif);

    /* Size Scale */
    --font-hero:      clamp(2.8rem, 7vw, 5.5rem);
    --font-hero-sub:  clamp(0.8rem, 1.5vw, 1rem);
    --font-header:    2rem;
    --font-title:     1.5rem;
    --font-text:      1rem;
    --font-sm-header: 1.25rem;
    --font-sm-title:  1.0625rem;
    --font-sm-text:   0.875rem;

    --font-icon-big:    3.5rem;
    --font-icon-middle: 3rem;
    --font-icon-small:  2.5rem;

    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
body {
    font-family: var(--font-sans);
    color: var(--color-dark);
    background: var(--color-cream);
}

a {
    color: var(--color-charcoal);
    text-decoration: none;
}
a:hover {
    color: var(--color-gold);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p { margin-bottom: 0; }

.font-primary   { font-family: var(--font-sans); }
.font-secondary { font-family: var(--font-serif); }

.border-green {
    border: 1px solid var(--color-green) !important;
    box-shadow: 0 0 4px 2px rgba(var(--color-green-rgb), 0.5);
}

.form-check-input:checked {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
}

.break-all-text { word-break: break-all !important; }

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
#section {
    padding: 90px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    padding-bottom: 48px;
}

.section-title h2 {
    position: relative;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-charcoal);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.section-title h2 a {
    color: inherit;
}

.section-title h2 a:hover {
    color: var(--color-gold);
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title h2::after {
    display: none;
}

.section-title p {
    color: var(--color-medium);
    font-size: var(--font-sm-title);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-hero {
    display: flex;
    align-items: center;
    background: var(--color-charcoal);
    height: 110px;
    position: relative;
    overflow: hidden;
}

.section-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, transparent 60%);
    pointer-events: none;
}

.section-hero .section-hero-title {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    background: var(--color-bg-alt);
    padding: 10px 0;
}

.breadcrumbs ol {
    display: flex;
    color: var(--color-medium);
    flex-wrap: wrap;
    font-size: var(--font-sm-text);
    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumbs ol a {
    color: var(--color-charcoal);
    transition: color 0.25s;
}
.breadcrumbs ol a:hover { color: var(--color-gold); }

.breadcrumbs ol li + li { padding-left: 8px; }
.breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    color: var(--color-light);
    padding-right: 8px;
}

/*--------------------------------------------------------------
# Scroll-to-top
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    background: var(--color-gold);
    border-radius: 0;
    bottom: -100px;
    right: 24px;
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
}

.scroll-top i {
    color: var(--color-charcoal);
    font-size: 1.25rem;
    line-height: 0;
}

.scroll-top:hover {
    background: var(--color-charcoal);
}
.scroll-top:hover i { color: var(--color-white); }

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 24px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    background: var(--color-cream);
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease-out;
}

#preloader::before {
    content: '';
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-light);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    height: 80px;
    z-index: 997;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    background: var(--color-white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.07);
}

/* Transparent header — only on homepage hero */
.header.header-hero {
    background: transparent;
    box-shadow: none;
}

/* Sticked (becomes fixed on scroll) */
.header.sticked {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: var(--color-white);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.sticked-header-offset {
    margin-top: 80px;
}

section {
    scroll-margin-top: 80px;
}

/* Logo */
.header .logo img {
    width: auto;
    height: 56px;
    max-height: 56px;
    margin-right: 10px;
    object-fit: contain;
}


.header.header-hero:not(.sticked) .btn-getstarted,
.header.header-hero:not(.sticked) .btn-getstarted:focus {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.88);
}

.header.header-hero:not(.sticked) .btn-getstarted:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.header.header-hero:not(.sticked) .mobile-nav-show,
.header.header-hero:not(.sticked) .mobile-nav-hide {
    color: rgba(255, 255, 255, 0.88);
}

/* Book button (solid header) */
.header .btn-getstarted,
.header .btn-getstarted:focus {
    border: 1px solid var(--color-charcoal);
    border-radius: 0;
    color: var(--color-charcoal);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 9px 22px;
    transition: all 0.3s;
}

.header .btn-getstarted i,
.header .btn-getstarted:focus i {
    font-size: 0.85rem;
    line-height: 0;
    margin-right: 6px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar { padding: 0; }

.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li { position: relative; }

.navbar > ul > li {
    padding: 8px 0 8px 24px;
    white-space: nowrap;
}

.navbar a,
.navbar a:focus {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-secondary);
    font-size: var(--font-sm-title);
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    background: var(--color-primary);
    bottom: -4px;
    height: 2px;
    left: 0;
    transition: all 0.3s ease-in-out 0s;
    visibility: hidden;
    width: 0px;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: var(--color-primary);
}

.navbar .btn-getstarted,
.navbar .btn-getstarted:focus {
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    color: var(--color-secondary);
    font-size: var(--font-text);
    font-weight: 600;
    margin-right: 0;
    padding: 8px 16px;
}

.navbar .btn-getstarted i,
.navbar .btn-getstarted:focus i {
    font-size: var(--font-text);
    line-height: 0;
    margin-right: 8px;
}

.navbar .btn-getstarted:before { height: 0; }

.navbar .btn-getstarted:hover,
.navbar .btn-getstarted:focus:hover {
    color: var(--color-white);
    background: var(--color-primary);
}

.navbar .dropdown ul {
    position: absolute;
    display: block;
    background: var(--color-white);
    box-shadow: 0px 0px 20px rgba(var(--color-secondary-rgb), 0.25);
    border-radius: 4px;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
}

.navbar .dropdown ul li { min-width: 200px; }

.navbar .dropdown ul a {
    color: var(--color-secondary);
    font-size: var(--font-text);
    font-weight: 600;
    padding: 10px 20px;
    text-transform: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    margin-top: -80px; /* slide under transparent header */
    overflow: hidden;
    background-color: var(--color-charcoal); /* dark fallback when no slides */
}

.hero .hero-background {
    position: absolute;
    inset: 0;
}

/* Dramatic gradient overlay */
.hero .hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 15, 28, 0.78) 0%,
        rgba(10, 15, 28, 0.35) 45%,
        rgba(10, 15, 28, 0.12) 100%
    );
    z-index: 1;
}

.hero .hero-background > img,
.hero .hero-background > picture {
    position: absolute;
    inset: 0;
}

.hero .hero-background img,
.hero .hero-background picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-background .hero-detail {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0 24px;
    z-index: 2;
    padding-top: 80px; /* compensate for header */
}

.hero .hero-background .hero-detail .hero-title {
    font-family: var(--font-serif);
    font-size: var(--font-hero);
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.15;
    letter-spacing: 0.02em;
    margin-bottom: 0;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

/* Gold accent line under title */
.hero .hero-background .hero-detail .hero-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 1px;
    background: var(--color-gold);
    margin: 24px auto 20px;
}

.hero .hero-background .hero-detail .hero-subtitle {
    font-size: var(--font-hero-sub);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.hero .hero-background .hero-detail .btn-get-started {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 0;
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 44px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: all 0.35s;
}

.hero .hero-background .hero-detail .btn-get-started:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* Hero search bar (if enabled) */
.hero .hero-search {
    position: relative;
    top: -51px;
}

.hero .hero-search .search-box {
    background: var(--color-white);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    padding: 20px 24px;
    width: 920px;
    z-index: 1;
}

.hero .hero-search .search-box .form-label {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .hero-search .search-box .form-control,
.hero .hero-search .search-box .form-select {
    border: 1px solid var(--color-light);
    border-radius: 0;
}

.hero .hero-search .search-box .btn-submit { margin-top: auto; }

.hero .hero-search .search-box .btn-submit button {
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    border-radius: 0;
    color: var(--color-white);
    padding: 8px 20px;
    width: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: var(--font-sm-text);
    transition: background 0.25s;
}

.hero .hero-search .search-box .btn-submit button:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/*--------------------------------------------------------------
# Section Background
--------------------------------------------------------------*/
.section-bg {
    background: var(--color-bg-alt);
}

/*--------------------------------------------------------------
# Room Cards
--------------------------------------------------------------*/
.room .card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    background: var(--color-white);
    padding: 0;
    min-height: unset;
    transition: box-shadow 0.35s, transform 0.35s;
}

.room .card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    transform: translateY(-4px);
}

.room .card .room-img {
    margin: 0;
    overflow: hidden;
    position: relative;
}

.room .card .room-img img {
    border-radius: 0;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.65s ease;
}

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

.room .card .room-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--color-charcoal);
    padding: 20px 20px 0;
    margin: 0;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.room .card hr {
    margin: 12px 20px;
    border-color: var(--color-light);
    opacity: 1;
}

.room .card .room-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--color-bg-alt);
    padding: 0 20px 14px;
    margin: 0;
}

.room .card .room-icons i {
    color: var(--color-gold);
    font-size: 1.15rem;
    border-left: none;
    padding: 0 6px;
}

.room .card .room-icons i:first-child { padding-left: 0; }

.room .card .room-price {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 12px 20px 20px;
    margin: 0;
}

.room .card .room-price span {
    color: var(--color-charcoal);
    font-size: var(--font-sm-title);
    font-weight: 600;
    margin-right: 4px;
}

.room .card .room-content {
    display: -webkit-box;
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    margin: 8px 20px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.room .room-img .room-type {
    position: absolute;
    background: var(--color-gold);
    color: var(--color-charcoal);
    bottom: 0;
    left: 0;
    padding: 4px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Room View (detail page)
--------------------------------------------------------------*/
.room-view .room-detail {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.room-view .room-detail .room-title span {
    color: var(--color-charcoal);
    font-family: var(--font-serif);
    font-size: var(--font-title);
    font-weight: 400;
    margin-bottom: 8px;
    display: block;
}

.room-view .room-detail .room-title span:last-child {
    color: var(--color-medium);
    font-family: var(--font-sans);
    font-size: var(--font-sm-text);
    font-weight: 400;
    margin-bottom: 0;
}

.room-view .room-detail .room-price {
    color: var(--color-charcoal);
    font-size: var(--font-sm-header);
    font-weight: 600;
    text-align: right;
}

.room-view .room-view-swiper-top {
    text-align: center;
    margin: 0 0 12px 0;
    border-radius: 0;
    overflow: hidden;
}

.room-view .room-view-swiper-top img {
    max-width: 100%;
    height: 420px;
    object-fit: cover;
}

.room-view .room-view-swiper-top .swiper-button-next::after,
.room-view .room-view-swiper-top .swiper-button-prev::after {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 700;
}

.room-view .room-view-swiper-bottom { text-align: center; margin-bottom: 28px; }

.room-view .room-view-swiper-bottom img {
    max-width: 100%;
    height: 80px;
    object-fit: cover;
}

.swiper-slide { width: 100%; overflow: hidden; }

.room-view .room-view-swiper-bottom .swiper-slide { opacity: 0.35; transition: opacity 0.2s; }
.room-view .room-view-swiper-bottom .swiper-slide-thumb-active { opacity: 1; }

/* Slow parallax zoom on swiper slides (room view) */
.room-view-swiper-top .swiper-slide img {
    animation: slow-zoom 20s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes slow-zoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.room-view .room-title {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-title);
    font-weight: 400;
    margin-top: 20px;
}

.room-view .room-content { margin-top: 10px; }

.room-view .room-content .info {
    color: var(--color-charcoal);
    font-size: var(--font-text);
    font-weight: 600;
    margin-bottom: 8px;
}

.room-view .room-content .info span { color: var(--color-medium); }

.room-view .room-description {
    color: var(--color-medium);
    font-size: var(--font-text);
    line-height: 1.8;
}

.room-view .room-view-detail .card {
    border: 1px solid var(--color-bg-alt);
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.room-view .room-view-detail .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.room-view .room-view-detail .card .room-img {
    margin: 0;
    overflow: hidden;
}

.room-view .room-view-detail .card .room-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-view .room-view-detail .card:hover .room-img img { transform: scale(1.05); }

.room-view .room-view-detail .card .room-title {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-sm-title);
    font-weight: 400;
    margin: 12px 16px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-view .room-view-detail .card .room-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    border-bottom: 1px solid var(--color-bg-alt);
    margin: 12px 0 0;
    padding: 0 16px 10px;
}

.room-view .room-view-detail .card .room-icons i {
    color: var(--color-gold);
    font-size: 1rem;
    border-left: none;
    padding: 0 4px;
}

.room-view .room-view-detail .card .room-price {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    font-weight: 400;
    margin: 8px 16px 16px;
}

.room-view .room-amenity { margin: 20px 0; }

.room-view .room-amenity .title {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-title);
    font-weight: 400;
    margin-bottom: 12px;
}

.room-view .room-amenity .amenity-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.room-view .room-amenity .info {
    border-left: 2px solid var(--color-gold);
    color: var(--color-charcoal);
    font-size: var(--font-sm-text);
    font-weight: 500;
    margin-bottom: 0;
    padding: 2px 12px;
}

.room-view .room-amenity .info i {
    font-size: 1rem;
    margin-right: 4px;
    color: var(--color-gold);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service .card {
    border: 1px solid var(--color-light);
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    padding: 36px 20px;
    background: var(--color-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service .card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 4px 24px rgba(var(--color-gold-rgb), 0.12);
}

.service .card .service-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--color-charcoal);
    margin-bottom: 14px;
}

.service .card .service-title i {
    font-size: 2.6rem;
    color: var(--color-gold);
}

.service .card .service-title span {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.service .card .service-detail {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    line-height: 1.75;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery img {
    border-radius: 0;
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s, opacity 0.3s;
}

.gallery a:hover img {
    opacity: 0.88;
    transform: scale(1.03);
}

.gallery a { display: block; overflow: hidden; }

/*--------------------------------------------------------------
# Discover (legacy — kept for compatibility)
--------------------------------------------------------------*/
.discover-bg { background: var(--color-bg-alt); }

.discover .discover-item { position: relative; }

.discover .discover-item .discover-img { overflow: hidden; }

.discover .discover-item .discover-img img {
    border-radius: 0;
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.discover .discover-item:hover .discover-img img { transform: scale(1.05); }

.discover .discover-item .discover-info {
    position: absolute;
    background: rgba(26, 35, 50, 0.92);
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px;
    transition: opacity 0.3s;
    opacity: 0;
    z-index: 3;
}

.discover .discover-item:hover .discover-info { opacity: 1; }

.discover .discover-item .discover-info h3 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: var(--font-sm-title);
    font-weight: 400;
    margin-bottom: 0;
}

.discover .discover-item .discover-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-sm-text);
    margin-bottom: 0;
}

.discover .discover-item .discover-info .preview-link,
.discover .discover-item .discover-info .details-link {
    position: absolute;
    color: var(--color-gold-light);
    font-size: var(--font-sm-header);
    top: calc(50% - 18px);
    right: 40px;
    transition: color 0.2s;
}

.discover .discover-item .discover-info .details-link { right: 10px; }

.discover .discover-item .discover-info .preview-link:hover,
.discover .discover-item .discover-info .details-link:hover { color: var(--color-gold); }

/*--------------------------------------------------------------
# Discover View (legacy)
--------------------------------------------------------------*/
.discover-view .discover-img { position: relative; }
.discover-view .discover-img img { width: 100%; height: 560px; object-fit: cover; }

.discover-view .discover-img .title {
    position: absolute;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: var(--font-header);
    font-weight: 400;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 0 24px;
}

.discover-view .discover-content {
    color: var(--color-medium);
    font-size: var(--font-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.discover-view .source-link a {
    color: var(--color-gold);
    font-size: var(--font-text);
}

.discover-view .map iframe { height: 400px; margin-top: 20px; width: 100%; }

/*--------------------------------------------------------------
# News (legacy)
--------------------------------------------------------------*/
.news .card {
    box-shadow: none;
    border: 1px solid var(--color-bg-alt);
    border-radius: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.news .card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.news .card .news-img { overflow: hidden; }

.news .card .news-img img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news .card:hover .news-img img { transform: scale(1.05); }

.news .card .news-title {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-sm-title);
    font-weight: 400;
    margin: 14px 16px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.news .card .news-date {
    color: var(--color-medium);
    font-style: italic;
    font-size: var(--font-sm-text);
    margin: 8px 16px;
}

.news .card .news-content {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    margin: 0 16px 16px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-bg { background: var(--color-bg-alt); }

.contact .info i {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-gold-dim);
    border-radius: 50%;
    color: var(--color-gold);
    font-size: var(--font-title);
    float: left;
    width: 44px;
    height: 44px;
    transition: all 0.3s;
}

.contact .info h3 {
    color: var(--color-charcoal);
    font-family: var(--font-serif);
    font-size: var(--font-sm-title);
    font-weight: 400;
    margin-bottom: 8px;
    padding: 0 0 0 60px;
}

.contact .info p {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    margin-bottom: 20px;
    padding: 0 0 10px 60px;
}

.contact .info iframe { border: 0; width: 100%; height: 320px; }

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .facebook:hover i {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

/*--------------------------------------------------------------
# Reservation
--------------------------------------------------------------*/
.reservation .search-box { margin-bottom: 28px; }

.reservation .search-box .form-label {
    color: var(--color-medium);
    font-size: var(--font-sm-text);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.reservation .search-box .form-control,
.reservation .search-box .form-select {
    border: 1px solid var(--color-light);
    border-radius: 0;
    margin-bottom: 8px;
}

.reservation .search-box .btn-submit { margin-top: auto; margin-bottom: 8px; }

.reservation .search-box .btn-submit button {
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    border-radius: 0;
    color: var(--color-white);
    padding: 9px 20px;
    width: 100%;
    letter-spacing: 0.1em;
    font-size: var(--font-sm-text);
    text-transform: uppercase;
    transition: background 0.25s;
}

.reservation .search-box .btn-submit button:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.reservation .reservation-box .step {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-light);
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
}

.reservation .reservation-box .step #step_start,
.reservation .reservation-box .step #step_finish {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-medium);
    font-size: var(--font-sm-header);
    font-weight: 500;
    width: 50%;
    height: 60px;
}

.reservation .reservation-box .step #step_start.active,
.reservation .reservation-box .step #step_finish.active {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.reservation .reservation-box .step #step_start.active::after {
    position: absolute;
    content: '';
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid var(--color-charcoal);
    height: 0;
    width: 0;
    right: -30px;
}

.reservation .reservation-box .step #step_finish.active::after {
    position: absolute;
    content: '';
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid var(--color-white);
    height: 0;
    width: 0;
    left: 0;
}

.reservation .reservation-box .step #step_start.active-all,
.reservation .reservation-box .step #step_finish.active-all {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.reservation .reservation-box .step #step_start.active-all::after {
    position: absolute;
    content: '';
    border: 1px solid rgba(255,255,255,0.3);
    height: 80%;
    width: 0;
    right: 0;
}

.reservation .reservation-box .step #step_finish.active-all::after {
    position: absolute;
    content: '';
    border: 1px solid rgba(255,255,255,0.3);
    height: 80%;
    width: 0;
    left: 0;
}

.reservation .reservation-box #fieldset_start .room {
    display: flex;
    padding: 20px;
    border: 1px solid var(--color-bg-alt);
    border-radius: 0;
}

.reservation .reservation-box #fieldset_start .room .room-img { width: 40%; }

.reservation .reservation-box #fieldset_start .room .room-img img {
    border-radius: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.reservation .reservation-box #fieldset_start .room .room-content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 0 0 20px;
}

.reservation .reservation-box #fieldset_start .room .room-content .first-content .title {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-title);
    font-weight: 400;
}

.reservation .reservation-box #fieldset_start #next_step {
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    border-radius: 0;
    color: var(--color-white);
    padding: 10px 20px;
    width: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: var(--font-sm-text);
    transition: background 0.25s;
}

.reservation .reservation-box #fieldset_start #next_step:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.reservation .reservation-box #fieldset_start #next_step:disabled {
    pointer-events: none;
    opacity: 0.6;
}

.reservation .reservation-box #fieldset_finish .btn-outline-primarys {
    background: var(--color-charcoal);
    border: 1px solid var(--color-charcoal);
    border-radius: 0;
    color: var(--color-white);
    padding: 10px 20px;
    letter-spacing: 0.1em;
    font-size: var(--font-sm-text);
    transition: background 0.25s;
}

.reservation .reservation-box #fieldset_finish .btn-outline-primarys:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

.reservation .reservation-box #fieldset_finish .btn-outline-primarys:disabled {
    pointer-events: none;
    opacity: 0.6;
}

.reservation .reservation-box #fieldset_start .room .room-content .last-content {
    border-top: 1px solid var(--color-bg-alt);
    padding-top: 10px;
}

.reservation .reservation-box #fieldset_finish h3,
.reservation .reservation-box #fieldset_summary h3 {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-header);
    font-weight: 400;
    margin-bottom: 20px;
}

.reservation .reservation-box #fieldset_summary h4 {
    font-family: var(--font-serif);
    color: var(--color-charcoal);
    font-size: var(--font-title);
    font-weight: 400;
    margin-bottom: 16px;
}

.reservation .reservation-box .thank-you {
    display: flex;
    align-items: center;
    color: var(--color-gold);
    font-family: var(--font-serif);
    font-size: var(--font-title);
    font-weight: 400;
    margin-bottom: 20px;
}

.reservation .reservation-box .thank-you i {
    font-size: var(--font-sm-header);
    margin-right: 10px;
}

.reservation .reservation-box #fieldset_summary .table-darks {
    border-color: var(--color-charcoal) !important;
    background-color: var(--color-charcoal) !important;
    color: var(--color-white) !important;
}

.reservation #card_notification {
    border: 0;
    box-shadow: 0 0 40px rgba(0,0,0,0.10);
    width: 500px;
}

.reservation #card_notification #notification_icon {
    text-align: center;
    margin-top: 20px;
}

.reservation #card_notification #notification_icon i {
    font-size: var(--font-icon-middle);
    color: var(--color-gold);
}

.reservation #card_notification #sorry_title {
    color: var(--color-charcoal);
    font-family: var(--font-serif);
    font-size: var(--font-sm-header);
    font-weight: 400;
    margin-top: 16px;
    text-align: center;
}

.reservation #card_notification #sorry_description {
    color: var(--color-medium);
    font-size: var(--font-sm-title);
    font-weight: 400;
    margin: 10px 0 20px;
    text-align: center;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer .footer-top {
    background: var(--color-charcoal);
    padding: 80px 0 56px;
}

.footer .footer-info .logo {
    line-height: 0;
    margin-bottom: 20px;
}

.footer .footer-info .logo img {
    max-height: 44px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer .footer-info .logo h1 {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: var(--font-header);
    font-weight: 400;
    letter-spacing: 0.04em;
}

.footer .footer-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--font-sm-text);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer h3 {
    position: relative;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding-bottom: 16px;
    margin-bottom: 4px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--color-gold);
}

.footer .footer-links { margin-bottom: 30px; }

.footer .footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer .footer-links ul i {
    padding-right: 8px;
    color: var(--color-gold);
    font-size: var(--font-sm-text);
    line-height: 0;
}

.footer .footer-links ul li {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.footer .footer-links ul li:first-child { padding-top: 0; }

.footer .footer-links ul a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--font-sm-text);
    line-height: 1;
    transition: color 0.25s;
}

.footer .footer-links ul a:hover { color: var(--color-gold); }

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: var(--font-text);
    color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    margin-right: 8px;
    transition: all 0.25s;
}

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

.footer .footer-contact p {
    color: rgba(255, 255, 255, 0.55);
    font-size: var(--font-sm-text);
    line-height: 1.9;
}

.footer .footer-contact strong { color: rgba(255, 255, 255, 0.8); }

.footer .copyright {
    background: rgba(0, 0, 0, 0.25);
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 18px 0;
}

/*--------------------------------------------------------------
# AOS — disable delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Responsive — ≤ 1199px  (mobile nav)
--------------------------------------------------------------*/
@media (max-width: 1199.98px) {

    /* Navbar drawer */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 100%;
        max-width: 340px;
        transition: right 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        display: block;
        position: absolute;
        background: var(--color-white);
        inset: 0;
        margin: 0;
        padding: 70px 0 20px;
        overflow-y: auto;
        z-index: 9998;
    }

    .navbar > ul > li { padding: 0; }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: var(--color-secondary);
        font-size: var(--font-sm-title);
        font-weight: 600;
        padding: 10px 20px;
        transition: 0.3s;
        white-space: nowrap;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before { visibility: hidden; }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a { color: var(--color-primary); }

    .navbar .getstarted { display: none; }

    .navbar .dropdown ul {
        position: static;
        display: none;
        background: var(--color-bg-alt);
        border-top: none;
        box-shadow: none;
        padding: 6px 0;
        margin: 0 20px;
        transition: none;
    }

    .navbar .dropdown > .dropdown-active { display: block; opacity: 1; visibility: visible; }

    /* Hamburger icons */
    .mobile-nav-show {
        cursor: pointer;
        color: var(--color-charcoal);
        font-size: 1.6rem;
        line-height: 0;
        margin-right: 10px;
        transition: color 0.3s;
        z-index: 9999;
    }

    .mobile-nav-hide {
        position: fixed;
        cursor: pointer;
        color: var(--color-charcoal);
        font-size: 1.6rem;
        line-height: 0;
        top: 22px;
        right: 22px;
        transition: color 0.3s;
        z-index: 9999;
    }

    .mobile-nav-active { overflow: hidden; }

    .mobile-nav-active .navbar { right: 0; }

    .mobile-nav-active .navbar::before {
        content: '';
        position: fixed;
        background: rgba(26, 35, 50, 0.55);
        inset: 0;
        z-index: 9996;
    }

    /* Hero */
    .hero { min-height: 560px; }

    .hero .hero-background .hero-detail .hero-title { font-size: clamp(2rem, 8vw, 3rem); }

    /* Room view */
    .room-view .room-view-swiper-top img { height: 320px; }
    .room-view .room-view-detail .card .room-img img { height: 160px; }

    /* Services */
    .service .card .service-title i { font-size: 2.2rem; }
    .service .card .service-title span { font-size: 1.1rem; }

    /* Gallery */
    .gallery img { height: 240px; }
}

/*--------------------------------------------------------------
# Responsive — ≤ 991px
--------------------------------------------------------------*/
@media (max-width: 991.98px) {

    .section-title h2 { font-size: 1.7rem; }
    .section-hero .section-hero-title { font-size: 1.4rem; }

    #section { padding: 60px 0; }

    /* Hero */
    .hero { min-height: 480px; }

    /* Room cards */
    .room .card .room-img img { height: 220px; }
    .room .card .room-icons { padding: 0 16px 12px; }

    /* Room view */
    .room-view .room-view-swiper-top img { height: 300px; }

    /* Services */
    .service .col { margin-bottom: 16px; }

    /* Gallery */
    .gallery img { height: 200px; }

    /* Discover */
    .discover .discover-item .discover-img img { height: 220px; }

    /* Hero search fallback */
    .hero .hero-search { top: 0; }
    .hero .hero-search .search-box { box-shadow: none; padding: 16px 0 0; width: 100%; }
}

/*--------------------------------------------------------------
# Responsive — ≤ 767px
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
    .hero .hero-background .hero-detail { padding: 0 20px; padding-top: 80px; }
    .room .card .room-img img { height: 240px; }
    .room-view .room-view-swiper-top img { height: 240px; }
    .gallery img { height: 180px; }
}

/* ============================================================
   Public Website Redesign Layer
   Keeps existing CMS-fed Blade structure while modernizing UI.
   ============================================================ */
:root {
    --kit-ink: #172026;
    --kit-ink-soft: #263640;
    --kit-sage: #516b5a;
    --kit-brass: #b9964b;
    --kit-mist: #eef2f1;
    --kit-paper: #fbfaf7;
    --kit-stone: #d9ddd8;
    --kit-muted: #6d7672;
    --kit-shadow: 0 18px 50px rgba(23, 32, 38, 0.12);

    --color-gold: var(--kit-brass);
    --color-gold-light: #d7bf7c;
    --color-gold-dim: rgba(185, 150, 75, 0.16);
    --color-charcoal: var(--kit-ink);
    --color-dark: var(--kit-ink);
    --color-medium: var(--kit-muted);
    --color-light: var(--kit-stone);
    --color-cream: var(--kit-paper);
    --color-bg-alt: var(--kit-mist);
    --color-primary: var(--kit-ink);
    --color-secondary: var(--kit-sage);
    --color-background: var(--kit-paper);
}

body {
    background:
        linear-gradient(180deg, rgba(238, 242, 241, 0.55), rgba(251, 250, 247, 0) 360px),
        var(--kit-paper);
    color: var(--kit-ink);
    -webkit-font-smoothing: antialiased;
}

#section {
    padding: 96px 0;
}

@supports (content-visibility: auto) {
    main > section:not(.hero):not(.home-booking-band) {
        content-visibility: auto;
        contain-intrinsic-size: 720px;
    }
}

.container {
    --bs-gutter-x: 2rem;
}

.section-title {
    padding-bottom: 42px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3.15rem);
    letter-spacing: 0;
    padding-bottom: 18px;
}

.section-title h2::before {
    width: 56px;
    left: calc(50% - 28px);
    background: var(--kit-sage);
}

.section-title p,
.service .card .service-detail,
.room .card .room-price,
.footer .footer-info p,
.footer .footer-contact p {
    line-height: 1.75;
}

.section-hero {
    min-height: 220px;
    height: auto;
    padding: 112px 0 48px;
    background: linear-gradient(110deg, rgba(23,32,38,0.93), rgba(38,54,64,0.72));
}

.section-hero .section-hero-title {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    letter-spacing: 0;
}


.header {
    height: 82px;
    background: rgba(251, 250, 247, 0.94);
    border-bottom: 1px solid rgba(23, 32, 38, 0.08);
    box-shadow: none;
}

.header.sticked {
    background: rgba(251, 250, 247, 0.98);
    box-shadow: 0 12px 36px rgba(23, 32, 38, 0.08);
}

.header.header-hero:not(.sticked) {
    background: linear-gradient(180deg, rgba(23,32,38,0.58), rgba(23,32,38,0));
}

.header .logo img {
    max-height: 58px;
}

.navbar > ul > li {
    padding-left: 24px;
}


.header .btn-getstarted,
.header .btn-getstarted:focus,
.navbar .btn-getstarted,
.navbar .btn-getstarted:focus,
.home-booking-cta {
    border-radius: 6px;
    border-color: var(--kit-sage);
    background: var(--kit-sage);
    color: #fff;
}

.header .btn-getstarted:hover,
.navbar .btn-getstarted:hover,
.home-booking-cta:hover {
    background: var(--kit-ink);
    border-color: var(--kit-ink);
    color: #fff;
}

.hero {
    min-height: 680px;
    background: linear-gradient(120deg, rgba(23,32,38,0.92), rgba(81,107,90,0.58));
}

.hero.hero-empty {
    background: var(--kit-mist);
}

.hero .hero-background::after {
    background:
        linear-gradient(90deg, rgba(28,24,18,0.28), rgba(28,24,18,0) 54%, rgba(28,24,18,0.16)),
        linear-gradient(to top, rgba(28,24,18,0.30), transparent 44%);
}

.hero .hero-background img {
    filter: saturate(1.18) contrast(1.06) brightness(1.04);
}

.hero.hero-empty .hero-background::after {
    display: none;
}

.hero .hero-background .hero-detail {
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    max-width: 1180px;
    margin: 0 auto;
    left: 0;
    right: 0;
    padding: 0 32px 220px;
}

.hero .hero-background .hero-detail .hero-title {
    max-width: 820px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.hero .hero-background .hero-detail .hero-title::after {
    margin: 26px 0 22px;
    width: 72px;
    background: var(--color-gold-light);
}

.hero .hero-background .hero-detail .hero-subtitle {
    max-width: 720px;
    font-size: clamp(0.9rem, 1.6vw, 1.08rem);
    letter-spacing: 0.08em;
    line-height: 1.8;
    text-transform: none;
}

.hero .hero-background .hero-detail .btn-get-started {
    border-radius: 6px;
    background: var(--kit-paper);
    border-color: var(--kit-paper);
    color: var(--kit-ink);
    box-shadow: 0 12px 34px rgba(0,0,0,0.18);
}

.hero .hero-background .hero-detail .btn-get-started:hover {
    background: var(--kit-brass);
    border-color: var(--kit-brass);
    color: var(--kit-ink);
}

.home-booking-band {
    position: relative;
    z-index: 3;
    margin-top: -132px;
    padding-bottom: 38px;
}

.home-booking-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: center;
    gap: 0;
    background: rgba(251, 250, 247, 0.96);
    border: 1px solid rgba(23,32,38,0.08);
    border-radius: 8px;
    box-shadow: var(--kit-shadow);
    overflow: hidden;
    backdrop-filter: blur(18px);
}

.home-booking-inner > div {
    position: relative;
    min-height: 108px;
    padding: 26px 28px;
    border-right: 1px solid rgba(23,32,38,0.08);
}

.home-booking-inner span {
    display: block;
    color: var(--kit-muted);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.home-booking-inner strong {
    display: block;
    color: var(--kit-ink);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
}

.booking-field {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--kit-ink);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    text-align: left;
}
.booking-field::placeholder { color: var(--kit-stone); }
.booking-field:focus { outline: none; box-shadow: none; }

.booking-date-field {
    min-height: 28px;
    padding-right: 28px;
    background-image: linear-gradient(transparent, transparent);
}

.booking-date-field:empty::before {
    content: "DD/MM/YYYY";
    color: var(--kit-stone);
}

.home-booking-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 190px;
    padding: 24px 30px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-booking-cta i {
    margin-right: 8px;
    font-size: 1rem;
}

.section-bg {
    background: linear-gradient(180deg, var(--kit-mist), rgba(238,242,241,0.28));
}

.room .card,
.service .card,
.gallery a,
.rd-card,
.contact_us .card,
.reservation .reservation-box #fieldset_start .room {
    border-radius: 8px;
}

.room .card {
    border: 1px solid rgba(23,32,38,0.08);
    box-shadow: 0 10px 30px rgba(23,32,38,0.06);
}

.room .card:hover {
    box-shadow: var(--kit-shadow);
    transform: translateY(-6px);
}

.room .card .room-img img {
    height: 320px;
}

.room .card .room-title {
    font-size: 1.65rem;
}

.room .card .room-price {
    color: var(--kit-sage);
}

.service .card {
    border-color: rgba(23,32,38,0.08);
    box-shadow: 0 10px 26px rgba(23,32,38,0.05);
}

.service .card:hover {
    border-color: rgba(81,107,90,0.4);
    box-shadow: var(--kit-shadow);
}

.service .card .service-title i {
    color: var(--kit-sage);
}

.service .card .service-title span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Services page - alternating image/text cards */
.service-card {
    border-radius: 2px;
    overflow: hidden;
    background: var(--kit-paper);
    border: 1px solid rgba(23,32,38,0.08);
    box-shadow: 0 2px 24px rgba(23,32,38,0.06);
    margin-bottom: 48px;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card:hover {
    box-shadow: 0 8px 40px rgba(23,32,38,0.12);
    transform: translateY(-3px);
}

.service-card .service-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.service-card .service-placeholder {
    min-height: 340px;
    background: rgba(81,107,90,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .service-placeholder i {
    font-size: 5rem;
    color: var(--kit-sage);
    opacity: 0.45;
}

.service-card .service-content {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(81,107,90,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-card .service-icon i {
    font-size: 1.5rem;
    color: var(--kit-sage);
}

.service-card .service-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--kit-ink);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-card .service-description {
    color: var(--kit-muted);
    font-size: 0.88rem;
    line-height: 1.9;
}

/* Discover card grid */
.discover-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 24px rgba(23,32,38,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.discover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(23,32,38,0.12);
}

.discover-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.discover-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.discover-card:hover .discover-card-img img {
    transform: scale(1.05);
}

.discover-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--kit-mist);
    display: flex;
    align-items: center;
    justify-content: center;
}

.discover-card-placeholder i {
    font-size: 3rem;
    color: var(--kit-stone);
}

.discover-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.discover-card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--kit-ink);
    margin-bottom: 8px;
    line-height: 1.4;
}

.discover-card-desc {
    font-size: 0.83rem;
    color: var(--kit-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

/* Gallery masonry grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

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

.gallery-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--kit-mist);
}

.gallery-link img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-link:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23,32,38,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-link:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}

@media (max-width: 991.98px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-link img { height: 180px; }
}
@media (max-width: 479.98px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

.rd-card {
    box-shadow: 0 12px 30px rgba(23,32,38,0.06);
}

.rd-book-btn {
    border-radius: 6px !important;
    background: var(--kit-sage) !important;
}

.rd-contact-btn {
    border-radius: 6px !important;
}

.reservation .search-box,
.reservation .reservation-box {
    background: #fff;
    border: 1px solid rgba(23,32,38,0.08);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(23,32,38,0.05);
}

.reservation .reservation-box #fieldset_start .room {
    border-color: rgba(23,32,38,0.08);
    background: var(--kit-paper);
}

.reservation .reservation-box #fieldset_start #next_step,
.reservation .reservation-box #fieldset_finish .btn-outline-primarys {
    border-radius: 6px;
    background: var(--kit-sage);
    border-color: var(--kit-sage);
}

.reservation .reservation-box #fieldset_start #next_step:hover,
.reservation .reservation-box #fieldset_finish .btn-outline-primarys:hover {
    background: var(--kit-ink);
    border-color: var(--kit-ink);
    color: #fff;
}

.footer .footer-top {
    background: linear-gradient(135deg, rgba(23,32,38,0.98), rgba(38,54,64,0.96));
}

.footer .copyright {
    background: var(--kit-ink);
}

@media (max-width: 1199.98px) {
    .navbar {
        max-width: 360px;
    }

    .navbar ul {
        background: var(--kit-paper);
        padding: 78px 0 40px;
    }

    /* Subtle separator between nav items */
    .navbar > ul > li:not(.header-lang):not(.getstarted) {
        border-bottom: 1px solid rgba(23, 32, 38, 0.07);
    }


    /* Language dropdown — expanded inline */
    .navbar .header-lang .dropdown-menu {
        position: static !important;
        display: block;
        box-shadow: none;
        border: none;
        background: rgba(23, 32, 38, 0.04);
        padding: 4px 0;
        margin: 10px 0 0;
        border-radius: 8px;
        transform: none !important;
    }

    .navbar .header-lang .dropdown-item {
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        color: var(--kit-ink);
        padding: 10px 16px;
        border-radius: 0;
        transition: background 0.15s, color 0.15s;
    }

    .navbar .header-lang .dropdown-item:hover,
    .navbar .header-lang .dropdown-item:focus {
        background: rgba(81, 107, 90, 0.09);
        color: var(--kit-sage);
    }

    /* Close (X) button — pill circle */
    .mobile-nav-hide {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(23, 32, 38, 0.07);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        top: 20px;
        right: 18px;
        transition: background 0.2s;
    }

    .mobile-nav-hide:hover {
        background: rgba(23, 32, 38, 0.13);
    }

    /* Hamburger & close icons */
    .mobile-nav-show,
    .mobile-nav-hide {
        color: var(--kit-ink);
    }

    .hero .hero-background .hero-detail {
        padding-bottom: 210px;
    }
}

@media (max-width: 991.98px) {
    #section {
        padding: 72px 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero .hero-background .hero-detail {
        padding: 0 26px 190px;
    }

    .home-booking-band {
        margin-top: -118px;
    }

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

    .home-booking-inner > div {
        min-height: 92px;
    }

    .home-booking-cta {
        grid-column: 1 / -1;
        min-height: 70px;
    }

    .room .card .room-img img,
    .gallery img {
        height: 260px;
    }
}

@media (max-width: 767.98px) {
    .header {
        height: 74px;
    }

    .header .logo img {
        max-height: 48px;
    }

    .hero {
        height: 440px;
        min-height: unset;
        margin-top: -74px;
    }

    .hero .hero-background .hero-detail {
        padding: 0 22px 190px;
    }

    .hero .hero-background .hero-detail .hero-title {
        font-size: clamp(2.55rem, 12vw, 4rem);
    }

    .home-booking-band {
        margin-top: -105px;
    }

    .home-booking-inner {
        grid-template-columns: 1fr;
        border-radius: 8px;
        box-shadow: 0 14px 34px rgba(23, 32, 38, 0.16);
    }

    .home-booking-inner > div {
        min-height: 88px;
        border-right: 0;
        border-bottom: 1px solid rgba(23,32,38,0.08);
        padding: 20px;
    }

    .home-booking-inner span {
        margin-bottom: 10px;
    }

    .booking-field {
        min-height: 24px;
        font-size: 1.05rem;
    }

    .home-booking-cta {
        min-height: 54px;
        padding: 18px 20px;
    }

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

    .gallery img {
        height: 160px;
    }

    .section-hero {
        min-height: 180px;
        padding-top: 96px;
    }

    .service-card .service-content {
        padding: 32px 28px;
    }

    .service-card .service-img,
    .service-card .service-placeholder {
        min-height: 240px;
    }

    .reservation .reservation-box #fieldset_start .room {
        display: block;
    }

    .reservation .reservation-box #fieldset_start .room .room-img,
    .reservation .reservation-box #fieldset_start .room .room-content {
        width: 100%;
    }

    .reservation .reservation-box #fieldset_start .room .room-content {
        padding: 18px 0 0;
    }
}
