/* ==========================================================================
   Misgaron Hotel — Premium Luxury Theme (DLE 19.1)
   ========================================================================== */

/* ---------- VARS ---------- */
:root {
    --bg-dark: #0f0f0f;
    --bg-panel: #1a1a1a;
    --bg-soft: #121212;
    --gold: #c8a96b;
    --gold-deep: #8b6b3f;
    --gold-light: #e8c989;
    --cream: #f5f1e8;
    --text: #e8e3d6;
    --text-muted: #9a9488;
    --border: rgba(200, 169, 107, 0.2);
    --border-strong: rgba(200, 169, 107, 0.45);
    --shadow-gold: 0 20px 60px rgba(200, 169, 107, 0.15);
    --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.6);
    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-body: 'Manrope', 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --container: 1280px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold-light); }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--cream); font-weight: 500; letter-spacing: .5px; margin: 0 0 .6em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; color: var(--text-muted); }
button { font-family: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; }

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

/* ---------- ORIENTAL PATTERN BG ---------- */
.oriental-bg { position: relative; }
.oriental-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(200,169,107,0.06), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139,107,63,0.08), transparent 45%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23c8a96b' stroke-opacity='0.06' stroke-width='1'><path d='M60 10 L110 60 L60 110 L10 60 Z'/><path d='M60 25 L95 60 L60 95 L25 60 Z'/><circle cx='60' cy='60' r='18'/></g></svg>");
    background-size: auto, auto, 120px 120px;
    pointer-events: none;
    z-index: 0;
}
.oriental-bg > * { position: relative; z-index: 1; }

/* ---------- DIVIDER ---------- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 10px auto 18px;
    color: var(--gold);
}
.divider::before,
.divider::after {
    content: "";
    width: 60px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider-icon {
    width: 12px; height: 12px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 16px var(--gold);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    transition: color .4s var(--ease), border-color .4s var(--ease);
    cursor: pointer;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    transform: translateX(-101%);
    transition: transform .5s var(--ease);
    z-index: -1;
}
.btn:hover { color: #0f0f0f; border-color: var(--gold-light); }
.btn:hover::before { transform: translateX(0); }
.btn--solid {
    background: linear-gradient(135deg, var(--gold-deep), var(--gold));
    color: #0f0f0f;
}
.btn--solid::before { background: linear-gradient(135deg, var(--gold), var(--gold-light)); }
.btn--ghost { border-color: rgba(245,241,232,0.35); color: var(--cream); }
.btn--sm { padding: 10px 20px; font-size: .75rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: all .4s var(--ease);
    background: linear-gradient(180deg, rgba(15,15,15,0.85), rgba(15,15,15,0));
    backdrop-filter: blur(6px);
}
.site-header.scrolled {
    background: rgba(15,15,15,0.96);
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo img {
    height: 52px; width: auto;
    filter: drop-shadow(0 0 12px rgba(200,169,107,0.35));
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
}
.logo-text small {
    display: block;
    font-size: .6rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-top: 2px;
    text-transform: uppercase;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}
.main-nav a {
    position: relative;
    color: var(--cream);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 0;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .4s var(--ease);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* Burger */
.burger {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}
.burger span {
    position: absolute;
    left: 10px; right: 10px;
    height: 1.5px;
    background: var(--gold);
    transition: all .3s var(--ease);
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }
.burger.active span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(380px, 90vw);
    height: 100vh;
    background: var(--bg-panel);
    border-left: 1px solid var(--border);
    z-index: 99;
    padding: 100px 36px 40px;
    transition: right .5s var(--ease);
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
    display: block;
    padding: 18px 0;
    color: var(--cream);
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-display);
}
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s var(--ease);
}
.menu-backdrop.show { opacity: 1; pointer-events: all; }

/* ==========================================================================
   HERO — fullscreen slider behind, content perfectly centered
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

/* Swiper at z1, takes full width/height */
.hero-slider {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1;
}
.hero-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Preview placeholder: shows slide name */
.hero-slider .swiper-slide[data-ph]::before {
    content: attr(data-ph);
    position: absolute;
    bottom: 38%; left: 50%;
    transform: translateX(-50%);
    color: rgba(200,169,107,0.25);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
}
.hero-slider .swiper-slide:nth-child(1) {
    background-image:
        radial-gradient(circle at 20% 40%, rgba(200,169,107,0.18), transparent 50%),
        linear-gradient(135deg, #1a1510 0%, #0f0f0f 50%, #2a1f12 100%);
}
.hero-slider .swiper-slide:nth-child(2) {
    background-image:
        radial-gradient(circle at 80% 30%, rgba(232,201,137,0.15), transparent 55%),
        linear-gradient(135deg, #2a1f12 0%, #1a1510 50%, #0f0f0f 100%);
}
.hero-slider .swiper-slide:nth-child(3) {
    background-image:
        radial-gradient(circle at 50% 80%, rgba(139,107,63,0.2), transparent 55%),
        linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #2a1f12 100%);
}
.hero-slider .swiper-slide:nth-child(4) {
    background-image:
        radial-gradient(circle at 30% 60%, rgba(200,169,107,0.14), transparent 55%),
        linear-gradient(135deg, #2a1f12 0%, #1a1510 60%, #0a0a0a 100%);
}
.hero-slider .swiper-slide-active { animation: kenBurns 10s ease-out forwards; }
@keyframes kenBurns {
    0%   { transform: scale(1.05); }
    100% { transform: scale(1.18); }
}

/* Overlay / ornament above slider */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.92) 100%),
        linear-gradient(180deg, rgba(15,15,15,0.55), rgba(15,15,15,0.96));
    pointer-events: none;
}
.hero-ornament {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.08;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%23c8a96b' stroke-width='0.8'><path d='M100 20 L180 100 L100 180 L20 100 Z'/><path d='M100 40 L160 100 L100 160 L40 100 Z'/><path d='M100 60 L140 100 L100 140 L60 100 Z'/><circle cx='100' cy='100' r='18'/><circle cx='100' cy='100' r='8'/></g></svg>");
    background-size: 200px;
    pointer-events: none;
}

/* Content: strictly centered */
.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    letter-spacing: 8px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 22px;
}
.hero h1 {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    color: var(--cream);
    margin-bottom: 22px;
    line-height: 1.08;
}
.hero h1 span { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 36px;
    letter-spacing: .3px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero swiper pagination */
.hero-slider .swiper-pagination {
    position: absolute !important;
    bottom: 100px !important;
    left: 0; right: 0;
    z-index: 6;
    text-align: center;
    pointer-events: auto;
}
.hero-slider .swiper-pagination-bullet {
    width: 42px; height: 2px;
    border-radius: 0;
    background: rgba(245,241,232,0.3);
    opacity: 1;
    margin: 0 6px !important;
    transition: all .5s var(--ease);
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 64px;
    box-shadow: 0 0 12px rgba(200,169,107,0.6);
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    width: 54px; height: 54px;
    margin-top: -27px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--gold) !important;
    background: rgba(15,15,15,0.4);
    backdrop-filter: blur(6px);
    transition: all .4s var(--ease);
    z-index: 6;
}
.hero-slider .swiper-button-prev { left: 40px; }
.hero-slider .swiper-button-next { right: 40px; }
.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover {
    background: var(--gold);
    color: #0f0f0f !important;
    border-color: var(--gold);
    transform: scale(1.08);
}
.hero-slider .swiper-button-prev::after,
.hero-slider .swiper-button-next::after {
    font-size: 18px; font-weight: 600;
}

.hero-scroll {
    position: absolute;
    z-index: 6;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: .65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
/* Mouse icon */
.hero-scroll .mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--gold);
    border-radius: 14px;
    position: relative;
    box-shadow: 0 0 20px rgba(200,169,107,0.2);
}
.hero-scroll .mouse::after {
    content: "";
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: mouseWheel 1.6s ease-in-out infinite;
}
@keyframes mouseWheel {
    0%   { transform: translate(-50%, 0);    opacity: 1; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}
.hero-scroll .arrow {
    width: 10px; height: 10px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    margin-top: -8px;
    animation: arrowBounce 1.6s ease-in-out infinite;
}
@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translate(0,0); opacity: .4; }
    50%      { transform: rotate(45deg) translate(3px,3px); opacity: 1; }
}

@media (max-width: 1024px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next { display: none; }
    .hero-slider .swiper-pagination { bottom: 80px !important; }
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */
.section { padding: 80px 0; position: relative; }
.section-head { text-align: center; margin-bottom: 48px; }
.eyebrow {
    font-size: .72rem;
    letter-spacing: 6px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}
.section-title { margin-bottom: 10px; }
.section-sub {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* ==========================================================================
   ABOUT — identical column heights
   ========================================================================== */
.about { background: var(--bg-dark); }
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: stretch;
}
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    min-height: 520px;
}
.about-images .ph-img:nth-child(1) { grid-row: span 2; }
.about-images::before {
    content: "";
    position: absolute;
    top: -18px; left: -18px;
    width: 80px; height: 80px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}
.about-images::after {
    content: "";
    position: absolute;
    bottom: -18px; right: -18px;
    width: 80px; height: 80px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-text p { font-size: 1rem; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0;
}
.about-feature {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-panel);
    transition: all .4s var(--ease);
}
.about-feature:hover { border-color: var(--gold); transform: translateY(-4px); }
.about-feature strong {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.7rem;
    display: block;
    margin-bottom: 4px;
}
.about-feature span {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==========================================================================
   ROOMS — uniform-height cards, correct price placement
   ========================================================================== */
.rooms {
    background: var(--bg-soft);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(200,169,107,0.05), transparent 50%),
        radial-gradient(circle at 90% 100%, rgba(139,107,63,0.07), transparent 50%);
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-panel);
    border: 1px solid var(--border);
    transition: transform .5s var(--ease), border-color .4s var(--ease), box-shadow .5s var(--ease);
}
.room-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.room-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex: none;
}
.room-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.room-card:hover .room-image img { transform: scale(1.08); }

/* Price — top-right, clean and readable */
.room-price {
    position: absolute;
    top: 18px; right: 18px;
    z-index: 3;
    background: rgba(15,15,15,0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 14px;
    font-family: var(--font-display);
    font-size: .95rem;
    font-style: italic;
    border-radius: 2px;
    white-space: nowrap;
}
.room-price small {
    font-size: .7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-left: 2px;
    font-style: normal;
}

.room-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.room-body h3 { margin-bottom: 10px; }
.room-body p {
    font-size: .95rem;
    flex: 1;
    margin-bottom: 14px;
}
.room-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 18px;
}
.room-meta span {
    font-size: .75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}
.room-meta span::before {
    content: "";
    display: inline-block;
    width: 4px; height: 4px;
    background: var(--gold);
    transform: rotate(45deg);
}
.room-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.room-link {
    font-size: .75rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}
.room-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(.4);
    transform-origin: left;
    transition: transform .4s var(--ease);
}
.room-link:hover::after { transform: scaleX(1); }

/* ==========================================================================
   VIRTUAL TOUR (inspired by sevenseashotel.ae)
   ========================================================================== */
.virtual-tour {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.virtual-tour::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(200,169,107,0.08), transparent 45%),
        radial-gradient(circle at 80% 50%, rgba(139,107,63,0.08), transparent 45%);
    pointer-events: none;
}
.tour-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.tour-video {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background:
        linear-gradient(135deg, rgba(200,169,107,0.1), rgba(15,15,15,0.8)),
        linear-gradient(135deg, #2a1f12, #1a1510, #0f0f0f);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(200,169,107,0.1);
    cursor: pointer;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tour-video:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 80px rgba(200,169,107,0.2);
}
.tour-video::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%23c8a96b' stroke-width='0.5' stroke-opacity='0.2'><path d='M100 20 L180 100 L100 180 L20 100 Z'/><path d='M100 50 L150 100 L100 150 L50 100 Z'/></g></svg>");
    background-size: 160px;
    opacity: 0.5;
}
.tour-video iframe,
.tour-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 2;
}
.tour-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 96px; height: 96px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: rgba(15,15,15,0.5);
    backdrop-filter: blur(10px);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .5s var(--ease);
}
.tour-play::before {
    content: "";
    position: absolute;
    inset: -14px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    animation: tourPulse 2.4s ease-out infinite;
}
.tour-play::after {
    content: "";
    position: absolute;
    inset: -28px;
    border: 1px solid rgba(200,169,107,0.4);
    border-radius: 50%;
    animation: tourPulse 2.4s ease-out 0.6s infinite;
}
@keyframes tourPulse {
    0%   { transform: scale(.85); opacity: 1; }
    100% { transform: scale(1.4);  opacity: 0; }
}
.tour-play svg { width: 32px; height: 32px; margin-left: 4px; }
.tour-video:hover .tour-play {
    background: var(--gold);
    color: #0f0f0f;
    transform: translate(-50%, -50%) scale(1.08);
}

.tour-text { padding: 10px 0; }
.tour-text h2 { margin-bottom: 14px; }
.tour-features {
    list-style: none;
    margin-top: 24px;
}
.tour-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: .95rem;
}
.tour-features li:last-child { border-bottom: none; }
.tour-features li svg {
    width: 20px; height: 20px;
    color: var(--gold);
    flex: none;
}

@media (max-width: 1024px) {
    .tour-grid { grid-template-columns: 1fr; gap: 40px; }
    .tour-play { width: 80px; height: 80px; }
}

/* ==========================================================================
   RESTAURANT — Fine Dining split (text + slider right), equal heights
   ========================================================================== */
.restaurant {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}
.restaurant::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(200,169,107,0.08), transparent 40%),
        radial-gradient(circle at 85% 50%, rgba(139,107,63,0.1), transparent 45%);
    pointer-events: none;
}
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}
.restaurant-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
}
.restaurant-content h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
.restaurant-list {
    list-style: none;
    margin: 20px 0 28px;
}
.restaurant-list li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: var(--text);
    font-size: .95rem;
    border-bottom: 1px solid var(--border);
}
.restaurant-list li:last-child { border-bottom: none; }
.restaurant-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px; height: 8px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(200,169,107,0.5);
}

/* Slider right side — fills column height */
.restaurant-slider-wrap {
    position: relative;
    min-height: 440px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-deep);
}
.restaurant-slider-wrap::before {
    content: "";
    position: absolute;
    top: -18px; left: -18px;
    width: 70px; height: 70px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
    z-index: 6;
    pointer-events: none;
}
.restaurant-slider-wrap::after {
    content: "";
    position: absolute;
    bottom: -18px; right: -18px;
    width: 70px; height: 70px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
    z-index: 6;
    pointer-events: none;
}
.restaurant-slider { width: 100%; height: 100%; }
.restaurant-slider .swiper-slide { width: 100%; height: 100%; }
.restaurant-slider .swiper-slide .ph-img { height: 100%; width: 100%; border-radius: 0; border: none; }
.restaurant-slider .swiper-pagination {
    position: absolute;
    bottom: 18px !important;
    left: 0; right: 0;
    text-align: center;
    z-index: 4;
}
.restaurant-slider .swiper-pagination-bullet {
    width: 28px; height: 2px;
    border-radius: 0;
    background: rgba(245,241,232,0.3);
    opacity: 1;
    margin: 0 4px !important;
    transition: all .4s var(--ease);
}
.restaurant-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 44px;
}
.restaurant-slider .swiper-button-prev,
.restaurant-slider .swiper-button-next {
    width: 42px; height: 42px;
    margin-top: -21px;
    border-radius: 50%;
    background: rgba(15,15,15,0.5);
    border: 1px solid var(--border-strong);
    color: var(--gold) !important;
    backdrop-filter: blur(6px);
    transition: all .3s var(--ease);
}
.restaurant-slider .swiper-button-prev { left: 16px; }
.restaurant-slider .swiper-button-next { right: 16px; }
.restaurant-slider .swiper-button-prev:hover,
.restaurant-slider .swiper-button-next:hover {
    background: var(--gold);
    color: #0f0f0f !important;
    border-color: var(--gold);
}
.restaurant-slider .swiper-button-prev::after,
.restaurant-slider .swiper-button-next::after {
    font-size: 14px; font-weight: 700;
}
@media (max-width: 1024px) {
    .restaurant-grid { grid-template-columns: 1fr; gap: 40px; }
    .restaurant-content { max-width: 100%; }
    .restaurant-slider-wrap { min-height: 380px; }
}
@media (max-width: 560px) {
    .restaurant-slider-wrap { min-height: 280px; }
}

/* ==========================================================================
   SPA — uniform cards, strong hover animations, icon pack
   ========================================================================== */
.spa {
    background: linear-gradient(180deg, var(--bg-dark), #080808);
    position: relative;
}
.spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
    align-items: stretch;
}
.spa-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px 26px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, var(--bg-panel), var(--bg-soft));
    text-align: center;
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.spa-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(200,169,107,0.15), transparent 60%);
    opacity: 0;
    transition: opacity .5s var(--ease);
}
.spa-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,169,107,0.15);
}
.spa-card:hover::before { opacity: 1; }

/* ICON — hover: rotates 360°, pulses, glows, ring dances */
.spa-icon {
    width: 82px; height: 82px;
    margin: 0 auto 22px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at 50% 50%, rgba(200,169,107,0.06), transparent 70%);
    transition:
        transform .8s var(--ease),
        background .6s var(--ease),
        box-shadow .6s var(--ease),
        border-color .4s;
}
.spa-icon svg {
    width: 34px; height: 34px;
    transition: transform .8s var(--ease), stroke-width .4s;
}
/* outer dashed ring (appears on hover) */
.spa-icon::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(200,169,107,0.5);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.7) rotate(0deg);
    transition: opacity .5s var(--ease), transform .8s var(--ease);
}
/* pulsing glow ring */
.spa-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(200,169,107,0.0);
    transition: box-shadow .6s var(--ease);
}
.spa-card:hover .spa-icon {
    transform: rotate(360deg) scale(1.08);
    background: radial-gradient(circle at 50% 50%, rgba(200,169,107,0.3), rgba(200,169,107,0.05));
    box-shadow:
        0 0 48px rgba(200,169,107,0.45),
        inset 0 0 22px rgba(200,169,107,0.18);
    border-color: var(--gold-light);
}
.spa-card:hover .spa-icon::before {
    opacity: 1;
    transform: scale(1) rotate(180deg);
    animation: spaRingSpin 6s linear infinite;
}
.spa-card:hover .spa-icon::after {
    animation: spaPulseGlow 1.8s ease-out infinite;
}
.spa-card:hover .spa-icon svg {
    transform: rotate(-360deg);
    stroke-width: 1.8;
}
@keyframes spaRingSpin { to { transform: scale(1) rotate(540deg); } }
@keyframes spaPulseGlow {
    0%   { box-shadow: 0 0 0 0 rgba(200,169,107,0.55); }
    100% { box-shadow: 0 0 0 24px rgba(200,169,107,0); }
}

.spa-card h3 { font-size: 1.3rem; margin-bottom: 8px; position: relative; z-index: 2; }
.spa-card p {
    font-size: .9rem;
    margin: 0;
    position: relative;
    z-index: 2;
    color: var(--text-muted);
}

/* ==========================================================================
   GALLERY (Masonry)
   ========================================================================== */
.gallery { background: var(--bg-dark); }
.gallery-grid {
    columns: 3;
    column-gap: 18px;
}
.gallery-item {
    display: block;
    margin: 0 0 18px;
    break-inside: avoid;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    cursor: zoom-in;
}
.gallery-item img,
.gallery-item .ph-img {
    width: 100%;
    transition: transform .8s var(--ease);
    border-radius: 0;
    border: none;
}
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,15,15,0.9));
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
}
.gallery-item:hover img,
.gallery-item:hover .ph-img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
    position: absolute;
    bottom: 18px; left: 18px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.05rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all .4s var(--ease);
    z-index: 2;
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   NEWS / BLOG
   ========================================================================== */
.news { background: var(--bg-soft); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: stretch;
}
.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform .5s var(--ease), border-color .4s var(--ease);
}
.news-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.news-image { height: 220px; overflow: hidden; flex: none; }
.news-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.news-card:hover .news-image img { transform: scale(1.08); }
.news-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.news-meta {
    font-size: .72rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    gap: 14px;
}
.news-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.news-body h3 a { color: var(--cream); }
.news-body h3 a:hover { color: var(--gold); }
.news-excerpt { font-size: .9rem; margin-bottom: 14px; flex: 1; }

/* ==========================================================================
   CONTACTS
   ========================================================================== */
.contacts { background: var(--bg-dark); position: relative; }
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.contact-info-item:last-of-type { border-bottom: none; }
.contact-icon {
    width: 52px; height: 52px;
    flex: none;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease);
}
.contact-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, var(--gold-light), var(--gold-deep));
    transform: scale(0);
    border-radius: 50%;
    transition: transform .5s var(--ease);
}
.contact-info-item:hover .contact-icon {
    color: #0f0f0f;
    border-color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(200,169,107,0.35);
    transform: rotate(360deg);
}
.contact-info-item:hover .contact-icon::before { transform: scale(1); }
.contact-icon svg { width: 20px; height: 20px; position: relative; z-index: 1; transition: transform .4s var(--ease); }
.contact-info-item:hover .contact-icon svg { transform: scale(1.15); }
.contact-info-item strong {
    display: block;
    font-size: .72rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-weight: 500;
}
.contact-info-item span,
.contact-info-item a {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--cream);
}
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}
.contact-social a {
    width: 46px; height: 46px;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .3s var(--ease);
}
.contact-social a:hover {
    background: var(--gold);
    color: #0f0f0f;
    border-color: var(--gold);
    transform: translateY(-3px);
}
.contact-social svg { width: 18px; height: 18px; }

/* Booking form */
.booking-form {
    padding: 34px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.booking-form h3 { color: var(--gold); margin-bottom: 6px; }
.booking-form p { margin-bottom: 22px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-field label {
    display: block;
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--cream);
    padding: 12px 14px;
    font-family: inherit;
    font-size: .92rem;
    border-radius: 4px;
    transition: border-color .3s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.booking-form .btn { width: 100%; margin-top: 10px; }

/* Map — wide, fits section, under the grid */
.map-wrapper {
    margin-top: 48px;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    filter: grayscale(80%) contrast(1.1) brightness(.85);
    transition: filter .5s var(--ease);
    position: relative;
}
.map-wrapper:hover { filter: grayscale(0%) contrast(1) brightness(1); }
.map-wrapper iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}
@media (max-width: 768px) {
    .map-wrapper iframe { height: 320px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #080808;
    border-top: 1px solid var(--border);
    padding: 70px 0 26px;
    position: relative;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 160px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}
.footer-col h4 {
    font-size: .82rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: .9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-about p { font-size: .9rem; }
.footer-logo {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo img { height: 46px; }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: .8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.floating-actions {
    position: fixed;
    right: 24px; bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 50;
}
.floating-actions a {
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform .3s var(--ease);
}
.floating-actions a:hover { transform: scale(1.1); }
.floating-actions .tg { background: linear-gradient(135deg, #229ED9, #1a7db3); }
.floating-actions .wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.floating-actions svg { width: 24px; height: 24px; }

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity .8s var(--ease), visibility .8s var(--ease);
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
    width: 80px; height: 80px;
    position: relative;
    animation: logoPulse 2s ease-in-out infinite;
}
.preloader-logo::before,
.preloader-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    animation: logoSpin 4s linear infinite;
}
.preloader-logo::after {
    inset: 12px;
    animation-duration: 3s;
    animation-direction: reverse;
}
@keyframes logoSpin { to { transform: rotate(405deg); } }
@keyframes logoPulse { 50% { opacity: 0.6; } }
.preloader-text {
    font-family: var(--font-display);
    letter-spacing: 8px;
    color: var(--gold);
    font-size: 1.2rem;
    text-transform: uppercase;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; animation: fadeIn .3s ease; }
.lightbox img {
    max-width: 90%; max-height: 85vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 1.4rem;
    cursor: pointer;
    transition: all .3s var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: #0f0f0f; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ==========================================================================
   INNER PAGES
   ========================================================================== */
.page-header {
    padding: 160px 0 70px;
    text-align: center;
    background: linear-gradient(180deg, #0a0a0a, var(--bg-dark));
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%23c8a96b' stroke-width='0.5' stroke-opacity='0.15'><path d='M100 20 L180 100 L100 180 L20 100 Z'/><path d='M100 50 L150 100 L100 150 L50 100 Z'/></g></svg>");
    opacity: 0.4;
    background-size: 160px;
}
.breadcrumbs {
    font-size: .78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
    position: relative;
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs span { margin: 0 10px; color: var(--gold); }

.content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}
.article {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
}
.article img { border-radius: var(--radius-sm); margin: 20px 0; }
.article h2, .article h3 { color: var(--gold); }
.sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 22px;
}
.sidebar-widget h4 {
    font-size: .82rem;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.article-list { display: flex; flex-direction: column; gap: 22px; }
.article-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .3s var(--ease);
}
.article-row:hover { border-color: var(--gold); }
.article-row .img { height: 100%; min-height: 200px; overflow: hidden; }
.article-row .img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.article-row:hover .img img { transform: scale(1.06); }
.article-row .body { padding: 22px 26px; }
.article-row h3 { margin-bottom: 10px; }
.article-row h3 a { color: var(--cream); }
.article-row h3 a:hover { color: var(--gold); }

.search-form-big {
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px;
    margin-bottom: 36px;
    display: flex;
    gap: 14px;
}
.search-form-big input[type="text"] {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--cream);
    padding: 14px 18px;
    border-radius: 4px;
}

.navigation {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 44px;
}
.navigation a, .navigation span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    color: var(--cream);
    font-size: .9rem;
    border-radius: 4px;
    transition: all .3s var(--ease);
}
.navigation a:hover { border-color: var(--gold); color: var(--gold); }
.navigation span { background: var(--gold); color: #0f0f0f; border-color: var(--gold); }

.offline-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.offline-hero h1 { font-size: 7rem; color: var(--gold); margin-bottom: 0; }
.offline-hero p { max-width: 480px; margin: 0 auto 28px; }

/* ==========================================================================
   PLACEHOLDER IMAGES (preview only — replace with real photos)
   ========================================================================== */
.ph-img {
    background: linear-gradient(135deg, #2a1f12 0%, #1a1510 50%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.ph-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%23c8a96b' stroke-opacity='0.12' stroke-width='1'><path d='M50 10 L90 50 L50 90 L10 50 Z'/><circle cx='50' cy='50' r='12'/></g></svg>");
    background-size: 100px;
    opacity: 0.5;
    pointer-events: none;
}
.ph-img > * { position: relative; z-index: 1; }
.ph-img--room { height: 260px; }
.ph-img--g1 { height: 320px; }
.ph-img--g2 { height: 260px; }
.ph-img--g3 { height: 300px; }
.ph-img--g4 { height: 380px; }
.ph-img--g5 { height: 280px; }
.ph-img--g6 { height: 340px; }
