/* ============================================
   Melita Edirne Boutique Hotel - Styles
   Theme: Gold luxury inspired by logo
   ============================================ */

:root {
    --navy: #0B1D3A;
    --navy-light: #132B4F;
    --navy-dark: #071428;
    --gold: #D4AF37;
    --gold-light: #E8D5A3;
    --gold-dark: #B8962E;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --charcoal: #0B1D3A;
    --charcoal-light: #132B4F;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --white: #FFFFFF;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --whatsapp: #25D366;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --header-height: 80px;
    --topbar-height: 40px;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.mb-60 { margin-bottom: 60px; }

/* Typography */
.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

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

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* Placeholder Images */
.placeholder-img {
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 50%, var(--gold-light) 100%);
    position: relative;
    overflow: hidden;
}

.placeholder-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(201, 168, 76, 0.08) 50%, transparent 60%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(201, 168, 76, 0.03) 20px,
            rgba(201, 168, 76, 0.03) 40px
        );
}

.placeholder-img::after {
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--gold-dark);
    opacity: 0.5;
    text-transform: capitalize;
    text-align: center;
    padding: 0 20px;
}

.placeholder-img.no-label::after {
    content: none;
    display: none;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.7); }

.section-cream {
    background: var(--cream);
}

.section-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.section-gold .section-label { color: rgba(255,255,255,0.8); }
.section-gold .section-title,
.section-gold .cta-title { color: var(--white); }
.section-gold .cta-desc { color: rgba(255,255,255,0.9); }

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

/* Top Bar */
.top-bar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
}

.top-bar-item:hover { color: var(--gold); }

.top-bar-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--whatsapp);
    font-weight: 500;
}

.top-bar-domain {
    color: var(--gold-light);
    font-weight: 500;
}

.top-bar-domain:hover { color: var(--gold); }

.top-bar-whatsapp:hover { color: #1ebe57; }

/* Language Switcher */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
}

.lang-switcher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    padding: 4px 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition);
    border-radius: 2px;
}

.lang-switcher-btn:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
}

.lang-switcher-btn.is-active {
    background: var(--gold);
    color: var(--navy);
}

.top-bar-right .lang-switcher {
    margin-right: 8px;
}

.nav-lang-mobile {
    display: none;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-lang-mobile .lang-switcher {
    width: 100%;
    justify-content: center;
    padding: 6px;
}

.nav-lang-mobile .lang-switcher-btn {
    flex: 1;
    min-height: 40px;
    font-size: 0.8rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
    background: var(--navy-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active { color: var(--gold); }

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

.nav-backdrop {
    display: none;
    position: fixed;
    top: calc(var(--topbar-height) + var(--header-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 20, 40, 0.55);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-backdrop.is-visible {
    display: block;
    opacity: 1;
}

/* Hero */
.hero {
    position: relative;
    height: calc(100vh - var(--topbar-height) - var(--header-height));
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

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

.hero-bg-image {
    background-color: var(--navy-dark);
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 26, 0.3) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
    padding: 0 16px;
    box-sizing: border-box;
}

.hero-label {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
    font-weight: 300;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-arrow {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Welcome */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.welcome-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.welcome-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--cream-dark);
}

.info-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    border-bottom: 1px solid var(--cream-dark);
    transition: background var(--transition);
}

.info-card:last-child { border-bottom: none; }
.info-card:hover { background: var(--cream); }

.info-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.info-card h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text);
}

.info-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.info-link:hover { color: var(--gold-dark); }

/* Experience */
.experience {
    padding: 80px 0;
}

.experience .section-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--gold);
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.room-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.room-image img,
.room-image .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-size {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 2;
}

.room-body {
    padding: 24px;
    border: 1px solid var(--cream-dark);
    border-top: none;
}

.room-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.room-capacity {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.room-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.room-link:hover {
    color: var(--gold-dark);
    gap: 10px;
}

/* Discover */
.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.discover-image {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.discover-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.amenity-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
}

.amenity-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--cream);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.service-item:hover {
    background: var(--gold-light);
}

.service-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* CTA */
.cta { padding: 80px 0; }

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-short { height: 300px; }

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg-hotel {
    background-position: 72% center;
}

.page-hero-bg-room {
    background-position: center center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.7), rgba(26,26,26,0.4));
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 12px;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Room Detail */
.rooms-filter-panel {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 40px;
    margin-bottom: 56px;
    background: linear-gradient(135deg, var(--cream) 0%, #fffdf8 55%, rgba(212, 175, 55, 0.12) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: var(--shadow);
}

.rooms-filter-desc {
    max-width: 620px;
    margin: 0;
}

.rooms-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.rooms-filter-btn {
    padding: 12px 20px;
    border: 1px solid rgba(11, 29, 58, 0.14);
    background: rgba(255, 255, 255, 0.82);
    color: var(--charcoal);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
}

.rooms-filter-btn:hover,
.rooms-filter-btn.is-active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 29, 58, 0.14);
}

.rooms-detail-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.room-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.room-detail[hidden] {
    display: none !important;
}

.room-detail-reverse {
    direction: rtl;
}

.room-detail-reverse > * {
    direction: ltr;
}

/* Room Carousel */
.room-carousel {
    width: 100%;
}

.room-carousel-main {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: var(--cream-dark);
}

.room-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    cursor: zoom-in;
}

.room-carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.room-carousel-img,
.room-carousel-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-carousel-placeholder {
    position: relative;
}

.room-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    background: rgba(11, 29, 58, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}

.room-carousel-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.room-carousel-prev { left: 16px; }
.room-carousel-next { right: 16px; }

.room-carousel-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    background: rgba(11, 29, 58, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.room-carousel-zoom:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.room-carousel-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.room-carousel-thumb {
    flex: 1;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-dark);
    transition: border-color var(--transition);
}

.room-carousel-thumb.active,
.room-carousel-thumb:hover {
    border-color: var(--gold);
}

.room-carousel-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-carousel-thumb-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream-dark) 0%, var(--cream) 100%);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 40, 0.96);
    backdrop-filter: blur(8px);
}

.lightbox-stage {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 78vh;
    object-fit: contain;
    user-select: none;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.lightbox.open .lightbox-img.is-loaded {
    transform: scale(1);
    opacity: 1;
}

.lightbox-img.is-changing {
    opacity: 0;
    transform: scale(0.95);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 4;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 20px 24px 28px;
    background: linear-gradient(to top, rgba(7, 20, 40, 0.9), transparent);
}

.lightbox-counter {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.lightbox-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90vw;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 4px;
}

.lightbox-thumb {
    width: 56px;
    height: 42px;
    padding: 0;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all var(--transition);
    flex-shrink: 0;
    background: none;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumb.active,
.lightbox-thumb:hover {
    opacity: 1;
    border-color: var(--gold);
}

.lightbox-caption {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    text-align: center;
    max-width: 80vw;
    pointer-events: none;
}

.room-detail-size {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}

.room-detail-content h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.room-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.room-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 32px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.room-features svg { color: var(--gold); }

.rooms-empty-state {
    margin-top: 40px;
    padding: 40px 32px;
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--cream-dark);
}

.rooms-empty-state h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.rooms-empty-state p {
    color: var(--text-light);
}

/* About */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    height: 500px;
    background-size: cover;
    background-position: center;
}

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

.value-card {
    text-align: center;
    padding: 40px 20px;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.edirne-places {
    margin-top: 20px;
}

.edirne-places li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.95rem;
    color: var(--text-light);
}

.edirne-places li strong {
    color: var(--charcoal);
}

/* Gallery */
.gallery-page {
    background: var(--white);
}

.gallery-section {
    margin-bottom: 60px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-category-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    color: var(--navy);
}

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

.gallery-item {
    height: 260px;
    padding: 0;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: var(--cream-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11, 29, 58, 0.15);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 29, 58, 0);
    transition: background 0.3s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-item-overlay {
    background: rgba(11, 29, 58, 0.45);
}

.gallery-zoom-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.gallery-note svg { color: var(--gold); flex-shrink: 0; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    border: 1px solid var(--cream-dark);
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.contact-card-whatsapp {
    background: rgba(37, 211, 102, 0.05);
    border-color: rgba(37, 211, 102, 0.2);
}

.contact-card-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.contact-card-whatsapp .contact-card-icon {
    color: var(--whatsapp);
}

.contact-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.map-embed {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-click-layer {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.55) 0%, transparent 50%);
    text-decoration: none;
    transition: background var(--transition);
    cursor: pointer;
}

.map-click-layer:hover {
    background: linear-gradient(to top, rgba(11, 29, 58, 0.7) 0%, rgba(11, 29, 58, 0.1) 60%);
}

.map-click-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 28px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition), box-shadow var(--transition);
}

.map-click-layer:hover .map-click-content {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.map-click-content svg {
    color: var(--navy);
}

.map-click-content small {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
}

.map-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

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

.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.9rem;
    align-items: flex-start;
}

.footer-contact svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

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

.footer-cta p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--charcoal);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--cream-dark);
    z-index: 998;
    padding: 8px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.mobile-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text);
    padding: 6px;
}

.mobile-bar-whatsapp {
    color: var(--whatsapp);
}

/* Responsive */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .welcome-grid { grid-template-columns: 1fr; }
    .welcome-info { display: grid; grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .rooms-filter-panel { align-items: flex-start; flex-direction: column; }
    .rooms-filter { justify-content: flex-start; width: 100%; }

    .nav-list { gap: 20px; }
    .nav-list a { font-size: 0.8rem; }
}

@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }

    .container { padding: 0 20px; }

    .nav {
        position: fixed;
        top: calc(var(--topbar-height) + var(--header-height));
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy);
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        padding: 32px 24px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list a {
        display: block;
        padding: 18px 0;
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list a::after { display: none; }

    .menu-toggle { display: flex; }
    .header-actions .btn { display: none; }
    .nav-lang-mobile { display: block; }

    .logo img { height: 44px; }

    .room-detail,
    .about-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .room-detail-reverse { direction: ltr; }
    .rooms-detail-list { gap: 60px; }
    .room-carousel-main { height: 360px; }
    .about-intro-image { height: 380px; }
    .discover-image { height: 360px; }
    .map-embed { height: 420px; }
}

@media (max-width: 768px) {
    :root {
        --topbar-height: 36px;
        --header-height: 64px;
    }

    .section { padding: 56px 0; }
    .container { padding: 0 16px; }

    .top-bar {
        font-size: 0.72rem;
    }

    .top-bar-left { display: none; }
    .top-bar-domain { display: none; }
    .top-bar-right .lang-switcher { display: none; }

    .top-bar-inner {
        justify-content: center;
    }

    .hero {
        height: calc(100svh - var(--topbar-height) - var(--header-height));
        min-height: 420px;
        max-height: none;
    }

    .hero-slider {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 100%;
    }

    .hero-content {
        bottom: 18%;
        width: 100%;
        max-width: calc(100% - 32px);
        padding: 0 16px;
        z-index: 2;
    }

    .hero-content .btn-lg {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 0.8rem;
        white-space: normal;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
        margin-bottom: 12px;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        overflow-wrap: break-word;
    }

    .hero-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-nav {
        bottom: 20px;
        gap: 12px;
        z-index: 3;
        width: 92%;
        max-width: 360px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
    }

    .page-hero { height: 300px; }
    .page-hero-short { height: 240px; }

    .page-hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .page-hero-content p {
        font-size: 0.95rem;
    }

    .rooms-grid { grid-template-columns: 1fr; }
    .discover-grid { grid-template-columns: 1fr; }
    .discover-image { height: 280px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }

    .room-carousel-main { height: 280px; }
    .room-carousel-thumbs { gap: 6px; }
    .room-carousel-thumb { height: 52px; }
    .room-carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .room-detail-content h2 {
        font-size: 1.75rem;
    }

    .rooms-filter-panel {
        padding: 24px 20px;
        margin-bottom: 36px;
        gap: 20px;
    }

    .rooms-filter-btn {
        flex: 1 1 calc(50% - 6px);
        min-width: calc(50% - 6px);
        justify-content: center;
        padding: 11px 14px;
        font-size: 0.75rem;
    }

    .rooms-detail-list { gap: 48px; }

    .welcome-info { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }
    .about-intro-image { height: 280px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-top { padding: 56px 0 40px; }

    .contact-card {
        padding: 20px;
        flex-direction: column;
        gap: 14px;
    }

    .contact-card .btn {
        width: 100%;
    }

    .map-embed { height: 320px; }
    .map-actions {
        flex-direction: column;
    }

    .map-actions .btn {
        width: 100%;
    }

    .cta { padding: 56px 0; }
    .cta-title { font-size: clamp(1.5rem, 5vw, 2rem); }
    .cta-desc { font-size: 1rem; }

    .btn {
        white-space: normal;
        line-height: 1.4;
    }

    .btn-lg {
        padding: 16px 24px;
        font-size: 0.82rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
        gap: 16px;
    }

    .section-header .btn-outline {
        width: 100%;
    }

    .experience .section-title,
    .experience-title {
        font-size: clamp(2.5rem, 10vw, 4rem) !important;
    }

    .value-card {
        padding: 28px 16px;
    }

    .amenity-card {
        padding: 32px 20px;
    }

    .info-card {
        padding: 20px;
    }

    .lightbox-prev { left: 8px; width: 44px; height: 44px; }
    .lightbox-next { right: 8px; width: 44px; height: 44px; }
    .lightbox-close { top: 8px; right: 8px; width: 42px; height: 42px; }
    .lightbox-caption { font-size: 0.95rem; top: 16px; }
    .lightbox-thumb { width: 48px; height: 36px; }

    .whatsapp-float {
        bottom: calc(72px + env(safe-area-inset-bottom, 0px));
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-tooltip { display: none; }

    .mobile-bottom-bar {
        display: flex;
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    body {
        padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
    }

    body.menu-open {
        overflow: hidden;
        touch-action: none;
    }
}

@media (max-width: 480px) {
    .section { padding: 48px 0; }

    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { height: 220px; }
    .services-grid { grid-template-columns: 1fr; }
    .room-features { grid-template-columns: 1fr; }

    .rooms-filter-btn {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .hero-nav {
        width: 92%;
        justify-content: space-between;
    }

    .hero-dots { gap: 6px; }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .room-image { height: 220px; }
    .room-body { padding: 20px; }
    .room-name { font-size: 1.25rem; }

    .page-hero { height: 260px; }
    .page-hero-short { height: 200px; }

    .contact-info h2 { font-size: 1.6rem; }
    .map-embed { height: 260px; }

    .footer-social a {
        width: 44px;
        height: 44px;
    }

    .cta .btn-lg,
    .section-gold .btn-lg {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 360px) {
    .container { padding: 0 12px; }

    .top-bar-whatsapp span,
    .top-bar-whatsapp {
        font-size: 0.68rem;
    }

    .logo img { height: 38px; }

    .hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.65rem; }
}

/* ============================================
   Scroll Animations (Ana Sayfa)
   ============================================ */

.page-home .hero-content {
    animation: heroContentFadeIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero-label {
    animation: heroItemFadeIn 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero-title {
    animation: heroItemFadeIn 1.2s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero-subtitle {
    animation: heroItemFadeIn 1s 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-home .hero-content .btn {
    animation: heroItemFadeIn 1s 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

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

.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.92); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                color 0.6s ease;
    transition-delay: calc(var(--delay, 0) * 0.12s);
}

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

.reveal-stagger .reveal-item {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

.line-reveal {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px 0 24px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.reveal.is-visible .line-reveal {
    width: 80px;
}

.text-center .line-reveal {
    margin-left: auto;
    margin-right: auto;
}

.text-highlight .highlight-word {
    display: inline-block;
    color: #c8c8c8;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--wi, 0) * 0.06s);
    margin-right: 0.2em;
}

.text-highlight.is-visible .highlight-word {
    color: var(--navy);
    transform: translateY(0);
}

.text-highlight-light .highlight-word {
    color: rgba(255, 255, 255, 0.35);
}

.text-highlight-light.is-visible .highlight-word {
    color: var(--white);
}

.section-dark .text-highlight.is-visible .highlight-word,
.section-gold .text-highlight-light.is-visible .highlight-word {
    color: var(--gold-light);
}

.experience-title {
    font-size: clamp(3.5rem, 8vw, 7rem) !important;
    letter-spacing: 0.05em;
}

.experience-title .highlight-word {
    color: rgba(212, 175, 55, 0.25);
}

.experience-title.is-visible .highlight-word {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.page-home .welcome-text {
    transition: color 0.8s ease;
}

.page-home .reveal.is-visible .welcome-text {
    color: var(--text);
}

.page-home .discover-content p {
    transition: color 0.8s ease 0.2s;
    color: #aaa;
}

.page-home .reveal.is-visible .discover-content p {
    color: var(--text-light);
}

.page-home .info-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.page-home .reveal-stagger.is-visible .info-card:hover,
.page-home .reveal-stagger.is-visible .room-card:hover,
.page-home .reveal-stagger.is-visible .amenity-card:hover {
    transform: translateY(-6px);
}

.page-home .section-label {
    transition: letter-spacing 0.6s ease, color 0.6s ease;
}

.page-home .reveal.is-visible .section-label {
    letter-spacing: 4px;
}

.page-home .service-item {
    transition: background 0.4s ease, transform 0.4s ease, color 0.4s ease;
}

.page-home .reveal-stagger.is-visible .service-item:hover {
    transform: translateX(6px);
    background: var(--gold-light);
    color: var(--navy);
}

.page-home .discover-image {
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .discover-image.is-visible {
    transform: scale(1);
}

.page-home .discover-image.reveal-left {
    transform: scale(1.05) translateX(-50px);
}

@media (prefers-reduced-motion: reduce) {
    .page-home .hero-label,
    .page-home .hero-title,
    .page-home .hero-subtitle,
    .page-home .hero-content .btn,
    .reveal,
    .reveal-item,
    .line-reveal,
    .text-highlight .highlight-word {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .page-home .hero-content {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: translateX(-50%) !important;
    }

    .line-reveal { width: 80px; }
    .text-highlight .highlight-word { color: inherit; }
}
