/*
Theme Name:   Prasanthi Hotel Theme (b — HSBS)
Theme URI:    https://www.ompom.id/hotel/
Author:       ompom
Author URI:   https://www.ompom.id/ompom/
Description:  Prasanthi-HSBS theme adaptation. Extends v1.0.0 with Smart Booking support: Adult/Child pax fields, promo code input, live price preview, outlet single templates (meeting room, café, restaurant). LiteSpeed-safe. Lighthouse ≥ 90.
Version:      1.1.0
License:      GPL-2.0+
License URI:  http://www.gnu.org/licenses/gpl-2.0.txt
Text Domain:  prasanthi-hotel
Tags:         hotel, boutique, custom-menu, featured-images, full-width-template, custom-header, footer-widgets, translation-ready
*/

/* ============================================================
   DESIGN TOKENS — Single source of truth for all colours,
   typography, spacing, and motion values across the theme.
   ============================================================ */

:root {
    /* ── Brand Colours ──────────────────────────────────────── */
    --clr-maroon: #6B1A1A;
    --clr-maroon-dark: #4A1010;
    --clr-maroon-light: #8B2E2E;
    --clr-maroon-muted: #6B1A1A26;
    /* 15% alpha overlay */
    --clr-brown: #5C3317;
    --clr-brown-dark: #3D2010;
    --clr-brown-light: #7A4A28;
    --clr-gold: #C9A96E;
    --clr-gold-light: #E8D5A3;
    --clr-gold-muted: #C9A96E33;

    /* ── Neutrals ───────────────────────────────────────────── */
    --clr-white: #FFFFFF;
    --clr-cream: #FAF7F2;
    --clr-cream-dark: #F0EAE0;
    --clr-stone: #E8E0D5;
    --clr-stone-dark: #D4C8B8;
    --clr-ink: #1A1208;
    --clr-ink-light: #3D2E1A;
    --clr-muted: #7A6E62;
    --clr-muted-light: #A89880;

    /* ── Typography ─────────────────────────────────────────── */
    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', 'Lato', system-ui, sans-serif;
    --font-accent: 'Cormorant', Georgia, serif;
    --font-ui: 'Jost', system-ui, sans-serif;

    /* ── Type Scale (clamp: mobile → desktop) ───────────────── */
    --text-xs: clamp(0.75rem, 1.5vw, 0.8125rem);
    --text-sm: clamp(0.875rem, 1.8vw, 0.9375rem);
    --text-base: clamp(1rem, 2vw, 1.0625rem);
    --text-lg: clamp(1.125rem, 2.2vw, 1.25rem);
    --text-xl: clamp(1.25rem, 2.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 3vw, 2rem);
    --text-3xl: clamp(2rem, 4vw, 2.75rem);
    --text-4xl: clamp(2.5rem, 5vw, 3.75rem);
    --text-5xl: clamp(3rem, 6vw, 5rem);
    --text-hero: clamp(3.5rem, 8vw, 7rem);

    /* ── Line Heights ───────────────────────────────────────── */
    --leading-tight: 1.1;
    --leading-snug: 1.3;
    --leading-normal: 1.6;
    --leading-relaxed: 1.8;

    /* ── Letter Spacing ─────────────────────────────────────── */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.12em;
    --tracking-widest: 0.2em;

    /* ── Spacing Scale ──────────────────────────────────────── */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-section: clamp(4rem, 8vw, 7rem);

    /* ── Layout ─────────────────────────────────────────────── */
    --max-width: 1440px;
    --content-width: 1200px;
    --narrow-width: 760px;
    --gutter: clamp(1.25rem, 5vw, 2.5rem);
    --grid-cols: 12;
    --col-gap: 1.5rem;

    /* ── Border Radius ──────────────────────────────────────── */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-pill: 999px;

    /* ── Shadows ────────────────────────────────────────────── */
    --shadow-sm: 0 1px 4px rgba(26, 18, 8, .08);
    --shadow-md: 0 4px 20px rgba(26, 18, 8, .12);
    --shadow-lg: 0 12px 48px rgba(26, 18, 8, .18);
    --shadow-xl: 0 24px 80px rgba(26, 18, 8, .24);
    --shadow-maroon: 0 8px 32px rgba(107, 26, 26, .3);

    /* ── Motion ─────────────────────────────────────────────── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-base: 280ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;

    /* ── Z-index scale ──────────────────────────────────────── */
    --z-below: -1;
    --z-base: 0;
    --z-raised: 10;
    --z-overlay: 100;
    --z-modal: 200;
    --z-nav: 300;
    --z-toast: 400;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--clr-ink);
    background-color: var(--clr-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--clr-maroon);
    text-decoration: none;
    transition: color var(--duration-base) var(--ease-out);
}

a:hover {
    color: var(--clr-brown);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Focus Styles (accessibility) ──────────────────────────── */
:focus-visible {
    outline: 2px solid var(--clr-gold);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ── Screen-reader only ─────────────────────────────────────── */
.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;
}

/* ── Skip link ──────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--gutter);
    background: var(--clr-maroon);
    color: var(--clr-white);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    z-index: var(--z-toast);
    transition: top var(--duration-base);
}

.skip-link:focus {
    top: var(--space-4);
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

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

.container--wide {
    max-width: var(--max-width);
}

.container--narrow {
    max-width: var(--narrow-width);
}

.section-pad {
    padding-top: var(--space-section);
    padding-bottom: var(--space-section);
}

/* 12-col grid */
.grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-cols), 1fr);
    gap: var(--col-gap);
}

/* Flexbox utils */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-sm {
    gap: var(--space-4);
}

.gap-md {
    gap: var(--space-8);
}

.gap-lg {
    gap: var(--space-12);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

.font-accent {
    font-family: var(--font-accent);
}

.text-hero {
    font-size: var(--text-hero);
}

.text-5xl {
    font-size: var(--text-5xl);
}

.text-4xl {
    font-size: var(--text-4xl);
}

.text-3xl {
    font-size: var(--text-3xl);
}

.text-2xl {
    font-size: var(--text-2xl);
}

.text-xl {
    font-size: var(--text-xl);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-base {
    font-size: var(--text-base);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-xs {
    font-size: var(--text-xs);
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: var(--tracking-widest);
}

.tracking-wider {
    letter-spacing: var(--tracking-wider);
}

.tracking-wide {
    letter-spacing: var(--tracking-wide);
}

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

.text-right {
    text-align: right;
}

.weight-300 {
    font-weight: 300;
}

.weight-400 {
    font-weight: 400;
}

.weight-500 {
    font-weight: 500;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

/* ── Section label (e.g. "OUR ROOMS", "THE EXPERIENCE") ──────── */
.label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--clr-gold);
}

.label::before,
.label::after {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: currentColor;
}

/* ── Section headings ───────────────────────────────────────── */
.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 400;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--clr-ink);
}

.section-title em {
    font-style: italic;
    color: var(--clr-maroon);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: var(--leading-relaxed);
    color: var(--clr-muted);
    max-width: 52ch;
}

/* ── Decorative rule ────────────────────────────────────────── */
.ornament {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: var(--clr-gold);
    font-family: var(--font-accent);
    font-size: var(--text-xl);
    font-style: italic;
}

.ornament::before,
.ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--clr-stone-dark);
}

/* ============================================================
   COLOUR UTILITIES
   ============================================================ */

.bg-cream {
    background-color: var(--clr-cream);
}

.bg-cream-dark {
    background-color: var(--clr-cream-dark);
}

.bg-maroon {
    background-color: var(--clr-maroon);
}

.bg-brown {
    background-color: var(--clr-brown);
}

.bg-ink {
    background-color: var(--clr-ink);
}

.bg-white {
    background-color: var(--clr-white);
}

.text-white {
    color: var(--clr-white);
}

.text-cream {
    color: var(--clr-cream);
}

.text-maroon {
    color: var(--clr-maroon);
}

.text-brown {
    color: var(--clr-brown);
}

.text-gold {
    color: var(--clr-gold);
}

.text-muted {
    color: var(--clr-muted);
}

.text-ink {
    color: var(--clr-ink);
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--duration-base) var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Primary — maroon fill */
.btn-primary {
    background: var(--clr-maroon);
    color: var(--clr-white);
    border: 1px solid var(--clr-maroon);
}

.btn-primary:hover {
    background: var(--clr-maroon-dark);
    border-color: var(--clr-maroon-dark);
    color: var(--clr-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-maroon);
}

/* Secondary — outline */
.btn-secondary {
    background: transparent;
    color: var(--clr-maroon);
    border: 1px solid var(--clr-maroon);
}

.btn-secondary:hover {
    background: var(--clr-maroon);
    color: var(--clr-white);
    transform: translateY(-1px);
}

/* Ghost — on dark / image backgrounds */
.btn-ghost {
    background: transparent;
    color: var(--clr-white);
    border: 1px solid rgba(255, 255, 255, .5);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--clr-white);
    color: var(--clr-white);
}

/* Gold accent */
.btn-gold {
    background: var(--clr-gold);
    color: var(--clr-ink);
    border: 1px solid var(--clr-gold);
}

.btn-gold:hover {
    background: #b8924a;
    border-color: #b8924a;
    color: var(--clr-white);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 169, 110, .35);
}

/* Size variants */
.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-sm);
}

/* Arrow suffix */
.btn .arrow {
    transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* Booking CTA — floating pill */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--clr-maroon);
    color: var(--clr-white);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-pill);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    box-shadow: var(--shadow-maroon);
    transition: all var(--duration-base) var(--ease-out);
    white-space: nowrap;
}

.btn-book:hover {
    background: var(--clr-maroon-dark);
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(107, 26, 26, .4);
}

/* ============================================================
   CARDS
   ============================================================ */

.card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-slow) var(--ease-out);
}

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

.card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out);
}

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

.card__body {
    padding: var(--space-6) var(--space-8);
}

.card__label {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-2);
}

.card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    line-height: var(--leading-snug);
    color: var(--clr-ink);
    margin-bottom: var(--space-3);
}

.card__text {
    font-size: var(--text-sm);
    color: var(--clr-muted);
    line-height: var(--leading-relaxed);
}

.card__footer {
    padding: var(--space-4) var(--space-8) var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--clr-stone);
}

.card__price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--clr-maroon);
}

.card__price small {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--clr-muted);
    letter-spacing: 0;
    text-transform: none;
}

/* ── Room card variant ──────────────────────────────────────── */
.card--room .card__image {
    aspect-ratio: 3/2;
}

.card__badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--clr-maroon);
    color: var(--clr-white);
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
}

.card__badge--gold {
    background: var(--clr-gold);
    color: var(--clr-ink);
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-label {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--clr-ink-light);
}

.form-control {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--clr-ink);
    background: var(--clr-white);
    border: 1px solid var(--clr-stone-dark);
    border-radius: var(--radius-sm);
    transition: border-color var(--duration-base) var(--ease-out),
        box-shadow var(--duration-base) var(--ease-out);
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-maroon);
    box-shadow: 0 0 0 3px var(--clr-maroon-muted);
}

.form-control::placeholder {
    color: var(--clr-muted-light);
}

select.form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B1A1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10);
}

.form-control.is-error {
    border-color: #C0392B;
}

.form-control.is-valid {
    border-color: #27AE60;
}

.form-error {
    font-size: var(--text-xs);
    color: #C0392B;
}

/* ── Booking bar (used in hero) ─────────────────────────────── */
.booking-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    background: var(--clr-stone-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.booking-bar__field {
    flex: 1 1 160px;
    background: var(--clr-white);
    padding: var(--space-4) var(--space-5);
}

.booking-bar__field label {
    display: block;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-maroon);
    margin-bottom: var(--space-1);
}

.booking-bar__field input,
.booking-bar__field select {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--clr-ink);
    background: transparent;
    cursor: pointer;
}

.booking-bar__field select {
    appearance: none;
    -webkit-appearance: none;
}

.booking-bar__submit {
    flex: 0 0 auto;
    background: var(--clr-maroon);
    color: var(--clr-white);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--duration-base) var(--ease-out);
}

.booking-bar__submit:hover {
    background: var(--clr-maroon-dark);
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    transition: background var(--duration-slow) var(--ease-out),
        box-shadow var(--duration-slow) var(--ease-out),
        padding var(--duration-slow) var(--ease-out);
}

/* Transparent on hero */
.site-header--transparent {
    background: transparent;
    padding: var(--space-6) 0;
}

/* Scrolled state — activated via JS */
.site-header--scrolled {
    background: rgba(250, 247, 242, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--clr-stone), var(--shadow-sm);
    padding: var(--space-4) 0;
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    height: 100px;
}

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo__img {
    height: 52px;
    width: auto;
    transition: height var(--duration-slow) var(--ease-out);
}

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

/* Text fallback logo */
.site-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-logo__name {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--clr-white);
    letter-spacing: var(--tracking-wide);
    transition: color var(--duration-slow);
}

.site-logo__tagline {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-gold);
}

.site-header--scrolled .site-logo__name {
    color: var(--clr-maroon);
}

/* ── Primary Navigation ─────────────────────────────────────── */
.site-nav {
    margin-left: auto;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.site-nav__link {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    position: relative;
    padding-bottom: 3px;
    transition: color var(--duration-base) var(--ease-out);
}

.site-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-gold);
    transition: width var(--duration-base) var(--ease-out);
}

.site-nav__link:hover,
.site-nav__link.current-menu-item {
    color: var(--clr-white);
}

.site-nav__link:hover::after,
.site-nav__link.current-menu-item::after {
    width: 100%;
}

/* Scrolled nav links */
.site-header--scrolled .site-nav__link {
    color: var(--clr-ink-light);
}

.site-header--scrolled .site-nav__link:hover {
    color: var(--clr-maroon);
}

/* ── Dropdown ────────────────────────────────────────────────── */
.site-nav .menu-item-has-children {
    position: relative;
}

.site-nav .sub-menu {
    position: absolute;
    top: calc(100% + var(--space-4));
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--clr-white);
    border-top: 2px solid var(--clr-maroon);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration-base) var(--ease-out);
    z-index: var(--z-overlay);
}

.site-nav .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.site-nav .sub-menu li a {
    display: block;
    padding: var(--space-3) var(--space-5);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--clr-ink-light);
    border-bottom: 1px solid var(--clr-stone);
    transition: all var(--duration-fast) var(--ease-out);
}

.site-nav .sub-menu li:last-child a {
    border-bottom: none;
}

.site-nav .sub-menu li a:hover {
    color: var(--clr-maroon);
    padding-left: var(--space-7);
    background: var(--clr-cream);
}

/* ── Header Actions ─────────────────────────────────────────── */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

/* ── Hamburger ──────────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--clr-white);
    transition: all var(--duration-base) var(--ease-out);
    transform-origin: left center;
}

.site-header--scrolled .hamburger span {
    background: var(--clr-maroon);
}

.hamburger.is-active span:nth-child(1) {
    transform: rotate(40deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: rotate(-40deg);
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--clr-cream);
    z-index: calc(var(--z-nav) - 1);
    padding: 120px var(--gutter) var(--space-16);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-out);
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.mobile-nav__link {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 400;
    color: var(--clr-ink);
    letter-spacing: var(--tracking-tight);
    transition: color var(--duration-base);
}

.mobile-nav__link:hover {
    color: var(--clr-maroon);
}

/* Mobile Sub-menu nested layout */
.mobile-nav .sub-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-3);
    margin-bottom: var(--space-2);
    padding-left: var(--space-5);
    border-left: 2px solid var(--clr-gold);
    margin-left: 4px;
    list-style: none;
}

.mobile-nav .sub-menu a,
.mobile-nav .sub-menu .mobile-nav__link {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--clr-ink-light);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    transition: color var(--duration-base) var(--ease-out);
}

.mobile-nav .sub-menu a:hover,
.mobile-nav .sub-menu .mobile-nav__link:hover {
    color: var(--clr-maroon);
}

.mobile-nav__actions {
    margin-top: var(--space-12);
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: var(--space-20);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: var(--z-below);
}

.hero__bg img,
.hero__bg video,
.hero__bg iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Crucial to prevent absorbing clicks on the hero elements */
    border: none;
}

/* Gradient overlay — bottom-heavy for text legibility */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 18, 8, .15) 0%,
            rgba(26, 18, 8, .08) 40%,
            rgba(26, 18, 8, .65) 75%,
            rgba(26, 18, 8, .88) 100%);
    background-color: rgba(0, 0, 0, 0.5);
    /* Ubah 0.5 untuk tingkat kegelapan */
    z-index: var(--z-below);
}

.hero__content {
    position: relative;
    z-index: var(--z-base);
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-family: var(--font-ui);
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-top: var(--space-6);
    margin-bottom: var(--space-6);
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 3rem;
    height: 1px;
    background: var(--clr-gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 300;
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
    color: var(--clr-white);
    margin-bottom: var(--space-6);
    max-width: 14ch;
}

.hero__title em {
    font-style: italic;
    color: var(--clr-gold-light);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 300;
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, .8);
    max-width: 46ch;
    margin-bottom: var(--space-10);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
}

/* ── Hero booking bar ───────────────────────────────────────── */
.hero__booking {
    margin-top: var(--space-12);
}

/* ── Hero scroll indicator ──────────────────────────────────── */
.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    right: var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    writing-mode: vertical-rl;
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    z-index: var(--z-raised);
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, .3);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--clr-gold);
    animation: scroll-line 2s var(--ease-in-out) infinite;
}

@keyframes scroll-line {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ── Slide counter ──────────────────────────────────────────── */
.hero__counter {
    position: absolute;
    bottom: var(--space-8);
    left: var(--gutter);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .5);
    letter-spacing: var(--tracking-widest);
    z-index: var(--z-raised);
}

.hero__counter strong {
    color: var(--clr-white);
}

/* ── Video control buttons ──────────────────────────────────── */
.hero__video-controls {
    position: absolute;
    bottom: var(--space-8);
    left: var(--gutter);
    display: flex;
    gap: var(--space-3);
    z-index: var(--z-raised);
}

.hero__video-btn {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--clr-white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    padding: 0;
}

.hero__video-btn:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-ink);
    transform: scale(1.08);
}

.hero__video-btn svg {
    transition: transform var(--duration-base) var(--ease-out);
}

.hero__video-btn:active {
    transform: scale(0.95);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */

.announcement-bar {
    background: var(--clr-maroon);
    color: var(--clr-white);
    text-align: center;
    padding: var(--space-2) var(--gutter);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    position: relative;
    z-index: calc(var(--z-nav) + 1);
}

.announcement-bar a {
    color: var(--clr-gold-light);
    text-decoration: underline;
}

.announcement-bar a:hover {
    color: var(--clr-white);
}

/* ============================================================
   ROOMS SECTION
   ============================================================ */

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--space-8);
}

.room-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-slow) var(--ease-out);
}

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

.room-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out);
}

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

.room-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 8, .7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.room-card:hover .room-card__overlay {
    opacity: 1;
}

.room-card__quick-book {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: all var(--duration-slow) var(--ease-out);
    white-space: nowrap;
}

.room-card:hover .room-card__quick-book {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.room-card__body {
    padding: var(--space-6) var(--space-7) var(--space-7);
}

.room-card__floor {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-2);
}

.room-card__name {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--clr-ink);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.room-card__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--clr-muted);
}

.room-card__meta-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--clr-muted-light);
}

.room-card__price {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--clr-maroon);
    display: flex;
    align-items: baseline;
    gap: var(--space-2);
}

.room-card__price sup {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 400;
}

.room-card__price small {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--clr-muted);
    font-weight: 400;
}

/* ── Pulse animation for limited room availability ── */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(192, 57, 43, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(192, 57, 43, 0);
    }
}


/* ============================================================
   FEATURES / AMENITIES STRIP
   ============================================================ */

.features-strip {
    background: var(--clr-ink);
    padding: var(--space-16) 0;
    overflow: hidden;
}

/* .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-8);
} */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-8);
    grid-auto-flow: column;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-md);
    transition: border-color var(--duration-base) var(--ease-out);
}

.feature-item:hover {
    border-color: var(--clr-gold);
}

.feature-item__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, .12);
    border-radius: 50%;
    color: var(--clr-gold);
}

.feature-item__icon svg {
    width: 35px;
    height: 35px;
}

h3.feature-item__title {
    font-family: var(--font-ui);
    font-size: var(--text-lg) !important;
    font-weight: 500;
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-white);
}

.feature-item__text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .5);
    line-height: var(--leading-relaxed);
}

/* ============================================================
   PROMO SECTION
   ============================================================ */

.promo-strip {
    background: var(--clr-maroon);
    position: relative;
    overflow: hidden;
}

.promo-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    pointer-events: none;
}

.promo-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    padding: var(--space-8) var(--space-10);
    transition: all var(--duration-base) var(--ease-out);
}

.promo-card:hover {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-4px);
}

.promo-card__tag {
    display: inline-block;
    background: var(--clr-gold);
    color: var(--clr-ink);
    padding: var(--space-1) var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-4);
}

.promo-card__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    color: var(--clr-white);
    margin-bottom: var(--space-3);
}

.promo-card__text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .7);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.promo-card__validity {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    color: rgba(255, 255, 255, .45);
    margin-top: var(--space-4);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
    background: #fff8ec;
}

.testimonial-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: var(--space-8) var(--space-10);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow var(--duration-slow) var(--ease-out);
    display: grid;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    line-height: 1;
    color: var(--clr-stone-dark);
    margin-bottom: var(--space-4);
    font-style: normal;
}

.testimonial-card__text {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--clr-ink-light);
    font-style: italic;
    margin-bottom: var(--space-6);
}

.testimonial-card__stars {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    color: var(--clr-gold);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    border-top: 1px solid var(--clr-stone);
    padding-top: var(--space-5);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-stone);
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__name {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-ink);
}

.testimonial-card__origin {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--clr-muted);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 260px;
    gap: var(--space-3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
}

.gallery-item:nth-child(3) {
    grid-column: span 5;
}

.gallery-item:nth-child(4) {
    grid-column: span 4;
}

.gallery-item:nth-child(5) {
    grid-column: span 4;
}

.gallery-item:nth-child(6) {
    grid-column: span 4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slower) var(--ease-out);
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(107, 26, 26, .6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
    display: flex;
    align-items: flex-end;
    padding: var(--space-6);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}

.gallery-item__label {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-white);
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
}

.cta-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107, 26, 26, .88) 0%, rgba(92, 51, 23, .75) 100%);
}

.cta-section__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
}

.contact-info__address {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--clr-muted);
    margin-bottom: var(--space-6);
}

/* 1. Reset/Set warna dasar untuk container item */
.contact-info__item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: #ffffff;
    /* Pakai putih langsung */
}

/* 2. Pastikan link di dalamnya juga putih dan tidak bergaris bawah */
.contact-info__item a {
    color: #ffffff;
    text-decoration: none;
}

/* 3. Atur icon SVG - pastikan stroke putih dan ukurannya pas */
.contact-info__item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    /* Timpa warna maroon dengan putih */
    margin-top: 2px;
}

/* ── Map container ──────────────────────────────────────────── */
#hotel-map {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    background: var(--clr-ink);
    color: rgba(255, 255, 255, .65);
}

.site-footer__main {
    padding: var(--space-20) 0 var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
}

.footer-brand__logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--clr-white);
    letter-spacing: var(--tracking-wide);
    display: block;
    margin-bottom: var(--space-4);
}

.footer-brand__tagline {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-bottom: var(--space-6);
}

.footer-brand__desc {
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    color: rgba(255, 255, 255, .5);
    max-width: 30ch;
    margin-bottom: var(--space-8);
}

.footer-nav__title {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--clr-white);
    margin-bottom: var(--space-5);
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

ul.footer-nav__list li a {
    color: #fcf6ed !important;
}

.footer-nav__link {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .55);
    transition: color var(--duration-base);
    position: relative;
    padding-left: 0;
    transition: color var(--duration-base), padding-left var(--duration-base);
}

.footer-nav__link:hover {
    color: var(--clr-gold-light);
    padding-left: var(--space-2);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    color: rgba(255, 255, 255, .55);
    transition: all var(--duration-base) var(--ease-out);
}

.footer-social__link svg {
    width: 16px;
    height: 16px;
}

.footer-social__link:hover {
    background: var(--clr-maroon);
    border-color: var(--clr-maroon);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* ── Newsletter ─────────────────────────────────────────────── */
.footer-newsletter__form {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.footer-newsletter__input {
    flex: 1;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    color: var(--clr-white);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    transition: border-color var(--duration-base);
}

.footer-newsletter__input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.footer-newsletter__input:focus {
    outline: none;
    border-color: var(--clr-gold);
}

/* ── Footer bottom bar ──────────────────────────────────────── */
.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: var(--space-6) 0;
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.site-footer__copy {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .3);
}

.site-footer__legal {
    display: flex;
    gap: var(--space-6);
}

.site-footer__legal a {
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, .3);
    transition: color var(--duration-base);
}

.site-footer__legal a:hover {
    color: var(--clr-gold-light);
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */

/* ── Page hero (interior pages) ─────────────────────────────── */
.page-hero {
    position: relative;
    /* height: 50vh; */
    height: 266.39px;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: var(--space-12);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 18, 8, .25) 0%, rgba(26, 18, 8, .75) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 300;
    line-height: var(--leading-tight);
    color: var(--clr-white);
    letter-spacing: var(--tracking-tight);
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: var(--space-4);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, .6);
}

.page-hero__breadcrumb a:hover {
    color: var(--clr-gold);
}

/* ── Single room layout ─────────────────────────────────────── */
.room-detail {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--space-12);
    align-items: start;
}

.room-detail__sticky {
    position: sticky;
    top: calc(80px + var(--space-8));
}

.room-detail__facilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin: var(--space-8) 0;
}

.facility-tag {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-xs);
    color: var(--clr-muted);
    letter-spacing: var(--tracking-wide);
}

.facility-tag svg {
    width: 14px;
    height: 14px;
    stroke: var(--clr-gold);
}

/* Booking widget */
.booking-widget {
    background: var(--clr-white);
    border: 1px solid var(--clr-stone);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.booking-widget__price {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--clr-maroon);
    margin-bottom: var(--space-6);
}

.booking-widget__price small {
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--clr-muted);
}

/* ============================================================
   ANIMATIONS & SCROLL REVEAL
   ============================================================ */

/* Initial states for JS-triggered reveals */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slower) var(--ease-out),
        transform var(--duration-slower) var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 100ms;
}

.reveal-delay-2 {
    transition-delay: 200ms;
}

.reveal-delay-3 {
    transition-delay: 300ms;
}

.reveal-delay-4 {
    transition-delay: 400ms;
}

.reveal-delay-5 {
    transition-delay: 500ms;
}

/* Fade in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Slide up */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Scale in */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ── Parallax (JS-aided via --parallax custom prop) ─────────── */
.parallax-layer {
    will-change: transform;
}

/* ============================================================
   MEDIA QUERIES
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

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

    .room-detail__sticky {
        position: static;
    }

    .gallery-grid {
        grid-auto-rows: 200px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .site-header__actions {
        margin-left: auto;
    }

    .mobile-nav {
        display: block;
    }

    .site-header__actions .btn-book {
        display: none;
    }

    .hero__eyebrow {
        font-size: var(--text-xs);
    }

    .hero__title {
        font-size: var(--text-4xl);
    }

    .hero__subtitle {
        font-size: var(--text-base);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .site-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .booking-bar__field {
        flex: 1 1 100%;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
        display: grid !important;
        grid-auto-flow: row !important;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {

    .site-header,
    .mobile-nav,
    .announcement-bar,
    .hero__scroll,
    .site-footer {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* ============================================================
   WP CORE ALIGNMENT CLASSES
   ============================================================ */

.alignleft {
    float: left;
    margin: 0 var(--space-6) var(--space-4) 0;
}

.alignright {
    float: right;
    margin: 0 0 var(--space-4) var(--space-6);
}

.aligncenter {
    display: block;
    margin: 0 auto var(--space-8);
}

.alignwide {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
}

.alignfull {
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* ── WP Captions ────────────────────────────────────────────── */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: var(--text-xs);
    color: var(--clr-muted);
    margin-top: var(--space-2);
    font-style: italic;
    text-align: center;
}

/* ── WP Pagination ──────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-16);
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--clr-stone-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    color: var(--clr-muted);
    transition: all var(--duration-base);
}

.pagination a:hover,
.pagination .current {
    background: var(--clr-maroon);
    border-color: var(--clr-maroon);
    color: var(--clr-white);
}

/* ── WP Gutenberg block defaults ────────────────────────────── */
.wp-block-image {
    margin-bottom: var(--space-8);
}

.wp-block-quote {
    border-left: 3px solid var(--clr-maroon);
    padding-left: var(--space-6);
    margin: var(--space-8) 0;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--clr-ink-light);
}

/* ============================================================
   CUSTOM SCROLLBAR (WebKit)
   ============================================================ */

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--clr-cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-stone-dark);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-maroon);
}

/* ============================================================
   HSBS v1.1.0 — Smart Booking UI
   Adult/Child pax, promo code, price preview, outlet pages
   ============================================================ */

/* ── Pax fields (Adult + Child) ──────────────────────────── */
.hotel-bkg-pax-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    align-items: end;
}

.hotel-bkg-pax-group label {
    display: block;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--clr-muted);
    margin-bottom: var(--space-2);
}

.hotel-bkg-pax-group input[type="number"] {
    width: 100%;
    text-align: center;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--clr-maroon);
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--clr-stone);
    border-radius: var(--radius-sm);
    background: var(--clr-cream);
    transition: border-color .2s;
}

.hotel-bkg-pax-group input[type="number"]:focus {
    outline: none;
    border-color: var(--clr-gold);
}

.hotel-bkg-pax-total {
    font-size: var(--text-sm);
    color: var(--clr-muted);
    text-align: right;
    margin-top: calc(var(--space-2) * -1);
    margin-bottom: var(--space-4);
}

.hotel-bkg-pax-total strong {
    color: var(--clr-maroon);
}

/* ── Promo code field ────────────────────────────────────── */
.hotel-bkg-promo-wrap {
    display: flex;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    align-items: flex-end;
}

.hotel-bkg-promo-wrap input[type="text"] {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}

.hotel-bkg-promo-btn {
    white-space: nowrap;
    padding: var(--space-3) var(--space-6);
    background: var(--clr-maroon);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.hotel-bkg-promo-btn:hover {
    background: var(--clr-maroon-dark);
}

.hotel-bkg-promo-msg {
    font-size: var(--text-sm);
    margin-top: var(--space-2);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    display: none;
}

.hotel-bkg-promo-msg.is-valid {
    background: #E8F5E9;
    color: #2E7D32;
    display: block;
}

.hotel-bkg-promo-msg.is-invalid {
    background: #FFEBEE;
    color: #C62828;
    display: block;
}

/* ── Live Price Preview card ─────────────────────────────── */
.hotel-bkg-price-preview {
    background: var(--clr-cream);
    border: 1px solid var(--clr-stone);
    border-left: 4px solid var(--clr-gold);
    border-radius: var(--radius-sm);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    transition: opacity .3s;
}

.hotel-bkg-price-preview.is-loading {
    opacity: .5;
}

.hotel-bkg-price-preview__title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-muted);
    margin-bottom: var(--space-4);
}

.hotel-bkg-price-preview__row {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--clr-stone);
    color: var(--clr-ink-light);
}

.hotel-bkg-price-preview__row:last-child {
    border-bottom: none;
}

.hotel-bkg-price-preview__row--total {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--clr-maroon);
    padding-top: var(--space-4);
    border-top: 2px solid var(--clr-gold);
    border-bottom: none;
    margin-top: var(--space-2);
}

.hotel-bkg-price-preview__discount {
    color: #C0392B;
}

.hotel-bkg-price-preview__hidden {
    display: none;
}

/* ── Outlet single pages ─────────────────────────────────── */
.hotel-outlet-hero {
    background: linear-gradient(135deg, var(--clr-maroon) 0%, var(--clr-brown) 100%);
    padding: var(--space-20) 0 var(--space-16);
    color: var(--clr-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hotel-outlet-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hotel-outlet-hero__tag {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--clr-gold);
    margin-bottom: var(--space-3);
    display: block;
}

.hotel-outlet-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-4);
    position: relative;
}

.hotel-outlet-hero__meta {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, .75);
    display: flex;
    gap: var(--space-6);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.hotel-outlet-hero__meta span::before {
    content: '·';
    margin-right: var(--space-3);
}

.hotel-outlet-hero__meta span:first-child::before {
    content: '';
    margin: 0;
}

/* Outlet detail layout */
.hotel-outlet-detail {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-16);
    align-items: start;
    padding: var(--space-20) 0;
}

.hotel-outlet-detail__sticky {
    position: sticky;
    top: calc(var(--space-20) + 80px);
}

/* Capacity table (meeting rooms) */
.hotel-capacity-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-8);
    font-size: var(--text-sm);
}

.hotel-capacity-table th {
    background: var(--clr-maroon);
    color: var(--clr-white);
    padding: var(--space-3) var(--space-5);
    text-align: left;
    font-size: var(--text-xs);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hotel-capacity-table td {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--clr-stone);
    color: var(--clr-ink-light);
}

.hotel-capacity-table tr:nth-child(even) td {
    background: var(--clr-cream);
}

.hotel-capacity-table .cap-value {
    font-weight: 700;
    color: var(--clr-maroon);
    text-align: right;
}

/* Upcoming events strip on outlet page */
.hotel-outlet-events {
    background: var(--clr-cream);
    padding: var(--space-16) 0;
    border-top: 2px solid var(--clr-stone);
}

.hotel-outlet-events__title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-8);
    color: var(--clr-ink);
}

.hotel-outlet-event-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    align-items: center;
    margin-bottom: var(--space-4);
    border-left: 4px solid var(--clr-gold);
    transition: box-shadow .2s;
}

.hotel-outlet-event-card:hover {
    box-shadow: var(--shadow-md);
}

.hotel-outlet-event-card__date {
    min-width: 60px;
    text-align: center;
    font-family: var(--font-display);
}

.hotel-outlet-event-card__day {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--clr-maroon);
    line-height: 1;
}

.hotel-outlet-event-card__mon {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--clr-muted);
}

.hotel-outlet-event-card__info {
    flex: 1;
}

.hotel-outlet-event-card__name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--clr-ink);
    margin-bottom: var(--space-1);
}

.hotel-outlet-event-card__meta {
    font-size: var(--text-xs);
    color: var(--clr-muted);
}

/* Responsive */
@media (max-width:960px) {
    .hotel-outlet-detail {
        grid-template-columns: 1fr;
    }

    .hotel-outlet-detail__sticky {
        position: static;
    }

    .hotel-bkg-pax-group {
        grid-template-columns: 1fr 1fr;
    }
}

/* Container Grid - Uniform Layout */
.mtg-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Item Link/Container Gambar */
.mtg-gallery__grid a.glightbox {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    /* Enforce a square shape for all thumbnails */
    aspect-ratio: 1 / 1;
}

/* Gaya Gambar & Efek Hover */
.mtg-gallery__grid a.glightbox img {
    width: 100%;
    height: 100%;
    /* Ensure image fills the square container */
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.mtg-gallery__grid a.glightbox:hover img {
    transform: scale(1.1);
}

/* Responsive for medium screens (Tablet) */
@media (max-width: 1024px) {
    .mtg-gallery__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive for small screens (Mobile) */
@media (max-width: 768px) {
    .mtg-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Container Utama Fasilitas */
.hotel-outlet-detail__main div:has(> .hotel-facilities-list) {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 32px 0;
}

/* List Fasilitas (Grid) */
ul.hotel-facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px 20px;
    padding: 0;
    list-style: none;
    margin: 0;
}

/* Item List */
ul.hotel-facilities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.4;
}

/* Perbaikan Ukuran Ikon */
ul.hotel-facilities-list li svg,
ul.hotel-facilities-list li i {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    flex-shrink: 0;
    fill: #64748b;
    /* Warna ikon */
}

/* -------- ompom -------- */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Menggunakan campuran warna solid dan gradien untuk kedalaman */
    background-color: rgba(26, 18, 8, 0.3);
    background-image: linear-gradient(to bottom,
            rgba(26, 18, 8, 0.5) 0%,
            rgba(26, 18, 8, 0.3) 50%,
            rgba(26, 18, 8, 0.8) 100%);
    z-index: 1;
    /* Pastikan berada di atas background tapi di bawah konten */
}

/* Pastikan konten hero berada di atas overlay */
.hero__content {
    position: relative;
    z-index: 2;
}

.room-detail__content {
    margin-bottom: var(--space-4);
}

.mtg-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-3);
}

.mtg-gallery__grid a.glightbox img {
    width: 100%;
    aspect-ratio: 3 / 2;
    /* Atau gunakan 1/1 untuk kotak */
    object-fit: cover;
    display: block;
}

h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl) !important;
    color: var(--clr-maroon);
    margin-bottom: var(--space-4);
}

.dl-spec-tag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}

.dt-spec-tag {
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: .1em;
}

.dd-spec-tag {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    color: maroon;
    font-weight: bolder;
}

.facility-tag {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-ui);
    font-size: var(--text-lg);
    color: var(--clr-muted);
    letter-spacing: var(--tracking-wide);
}

/* Breadcrumb */
/* Container Breadcrumb dengan Glassmorphism */
nav.breadcrumb {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* List Utama */
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.75rem;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Penambahan Ikon Home pada Item Pertama */
.breadcrumb__item:first-child::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-color: currentColor;
    /* Menggunakan ikon home SVG via mask agar warna mengikuti teks */
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    vertical-align: -2px;
}

/* Item & Separator */
.breadcrumb__item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb__item:not(:last-child)::after {
    content: '•';
    margin-left: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Link Style */
.breadcrumb__item a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb__item a:hover {
    color: var(--clr-accent, gold);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Item Terakhir */
.breadcrumb__item:last-child {
    color: #ffffff;
    font-weight: 600;
}

/* ────────────────────────────────────────────────────────────
   BREADCRUMB MOBILE RESPONSIVE REFACTOR
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    nav.breadcrumb {
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
    }

    .breadcrumb__list {
        font-size: 0.725rem;
        gap: 0.5rem;
    }

    .breadcrumb__item:not(:last-child)::after {
        margin-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    nav.breadcrumb {
        display: inline-flex;
        border-radius: 14px;
        /* Transition from rigid pill shape to elegant card style to handle multi-line wrapping */
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .breadcrumb__list {
        font-size: 0.65rem;
        gap: 0.35rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .breadcrumb__item:first-child::before {
        width: 11px;
        height: 11px;
        margin-right: 4px;
        vertical-align: -1.5px;
    }

    .breadcrumb__item:not(:last-child)::after {
        margin-left: 0.35rem;
    }
}