﻿/* ================================================================
   ADASYA HOTEL — Main Stylesheet  v2 (GSAP Edition)
   ================================================================ */

:root {
    /* ════════════════════════════════════════════════════════
       ADASYA HOTEL — 3 Renk Paleti
       ════════════════════════════════════════════════════════

       1. ORMAN YEŞİLİ — derinlik, doğa, zenginlik
       2. ALTIN        — lüks, sıcaklık, ışık
       3. FİLDİŞİ      — ferahlık, zerafet, dinginlik
    ════════════════════════════════════════════════════════ */

    /* Ege / Akdeniz ailesi — canlı tatil tonu */
    --g-deepest:  #020d1a;   /* gece okyanusu */
    --g-deep:     #051c30;   /* derin deniz */
    --g-dark:     #0a3550;   /* okyanus derinliği */
    --g-base:     #105e80;   /* Ege mavisi */
    --g-mid:      #1a8aaa;   /* berrak su */
    --g-light:    #2db0cc;   /* turkuaz yüzey */

    /* Altın ailesi */
    --gold:       #c4a35a;   /* ana altın */
    --gold-light: #d4b87a;   /* açık altın */
    --gold-pale:  #e8d5a8;   /* soluk altın tint */

    /* Beyaz-Yeşil ailesi (3. renk) */
    --ivory:      #eaf2ec;   /* açık yeşil-beyaz */
    --ivory-light:#f4faf6;   /* neredeyse beyaz, çok hafif yeşil hint */
    --white:      #ffffff;

    /* İşlevsel */
    --ink:        #051c30;
    --muted:      rgba(5,28,48,0.38);
    --border:     rgba(5,28,48,0.07);

    /* Eski değişken isimleri — geriye uyumluluk */
    --primary:       var(--g-base);
    --primary-dark:  var(--g-dark);
    --primary-light: var(--g-mid);
    --accent:        var(--gold);
    --accent-light:  var(--gold-light);
    --light:         var(--ivory-light);
    --dark:          var(--ink);

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans:  'Montserrat', system-ui, sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t: all 0.4s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: auto; font-size:16px; }
body { font-family:var(--sans); color:var(--ink); background:var(--ivory-light); overflow-x:hidden; line-height:1.7; margin:0; }
a { text-decoration:none; }
img { display:block; max-width:100%; }
ul { list-style:none; }

/* ================================================================
   CUSTOM CURSOR — kaldırıldı
   ================================================================ */

/* ================================================================
   PAGE LOADER — Premium
   ================================================================ */
#page-loader {
    position: fixed; inset: 0;
    background: #020d1a;
    z-index: 9999;
    display: flex;
    align-items: center; justify-content: center;
    overflow: hidden;
}

/* Merkez parlaması */
.loader-bg-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(16,94,128,.22) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 50% 50%, rgba(196,163,90,.08) 0%, transparent 55%);
}

/* İnce grid dokusu */
.loader-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(196,163,90,.05) 1px, transparent 1px),
        linear-gradient(0deg,  rgba(196,163,90,.05) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* Köşe aksan çizgileri */
#page-loader::before,
#page-loader::after {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-color: rgba(196,163,90,.22) transparent transparent rgba(196,163,90,.22);
    border-style: solid; border-width: 1px 0 0 1px;
}
#page-loader::before { top: 2.5rem; left: 2.5rem; }
#page-loader::after  { bottom: 2.5rem; right: 2.5rem;
    border-color: transparent rgba(196,163,90,.22) rgba(196,163,90,.22) transparent;
    border-width: 0 1px 1px 0;
}

/* İçerik */
.loader-inner {
    position: relative; z-index: 2;
    text-align: center;
    animation: loaderReveal .9s cubic-bezier(.23,1,.32,1) both;
}

/* Süsleme ornament */
.loader-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 1.8rem;
}
.loader-orn-line {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(196,163,90,.6));
}
.loader-orn-diamond {
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 12px rgba(196,163,90,.5);
    animation: loaderDiamondPulse 2s ease-in-out infinite;
}

/* Logo image (splash) */
.loader-logo-img {
    max-height: 200px;
    max-width: 460px;
    width: 60vw;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: .5rem;
}

/* Logo & subtitle */
.loader-logo {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300; letter-spacing: .55em;
    color: #fff; line-height: 1;
    text-indent: .55em;
    margin-bottom: .5rem;
    text-shadow: 0 0 60px rgba(196,163,90,.15);
}
.loader-sub {
    font-family: var(--sans);
    font-size: .52rem; letter-spacing: .42em; text-transform: uppercase;
    color: rgba(255,255,255,.32);
    text-indent: .42em;
}

/* Pulsing dots */
.loader-dots {
    display: flex; align-items: center; gap: .45rem;
}
.loader-dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--gold);
    animation: loaderDotPulse 1.5s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: .25s; }
.loader-dot:nth-child(3) { animation-delay: .5s; }

@keyframes loaderReveal {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderDotPulse {
    0%, 80%, 100% { opacity: .25; transform: scale(.75); }
    40%            { opacity: 1;   transform: scale(1.3); }
}
@keyframes loaderDiamondPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(196,163,90,.4); }
    50%       { box-shadow: 0 0 20px rgba(196,163,90,.8); }
}

/* ================================================================
   NAVIGATION — Dark glass, always premium
   ================================================================ */
.main-nav {
    position: fixed; top:0; left:0; right:0;
    z-index: 1000;
    padding: 2rem 0;
    background: linear-gradient(to bottom, rgba(2,13,26,0.55) 0%, transparent 100%);
    transition: padding 0.6s cubic-bezier(0.23,1,0.32,1),
                background 0.6s ease,
                backdrop-filter 0.6s ease;
}
.main-nav::after {
    content: '';
    position: absolute;
    bottom: 0; left: 4rem; right: 4rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,163,90,0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.main-nav.scrolled {
    padding: 1.1rem 0;
    background: rgba(2,13,26,0.96);
    backdrop-filter: blur(28px) saturate(1.4);
    -webkit-backdrop-filter: blur(28px) saturate(1.4);
}
.main-nav.scrolled::after { opacity: 1; }

.nav-container {
    max-width: 1480px; margin: 0 auto; padding: 0 4rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0.15rem; text-decoration: none; }
.nav-logo-img { max-height: 58px; max-width: 220px; object-fit: contain; display: block; }
.logo-text {
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 300;
    letter-spacing: 0.65em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    transition: color 0.5s ease;
}
.logo-tagline {
    font-size: 0.44rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
    align-self: stretch;
    text-align: center;
    transition: color 0.5s ease;
}
.main-nav.scrolled .logo-text    { color: var(--white); }
.main-nav.scrolled .logo-tagline { color: rgba(255,255,255,0.3); }

.nav-menu {
    display: flex; align-items: center; gap: 3rem; padding:0; margin:0;
}
.nav-link {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    position: relative;
    padding-bottom: 0.35rem;
    transition: color 0.35s ease;
}
.nav-link::after {
    content:'';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold);
    transition: left 0.4s cubic-bezier(0.23,1,0.32,1),
                right 0.4s cubic-bezier(0.23,1,0.32,1);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { left: 0; right: 0; }
.main-nav.scrolled .nav-link { color: rgba(255,255,255,0.6); }
.main-nav.scrolled .nav-link:hover { color: var(--white); }

/* Nav CTA — gradient sweep (span içermeli) */
.nav-cta {
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 0.72rem 1.85rem;
    border: 1px solid rgba(196,163,90,0.4);
    background: linear-gradient(to right, var(--gold) 50%, transparent 50%);
    background-size: 202% 100%;
    background-position: 100% 0;
    transition: background-position 0.55s cubic-bezier(0.23,1,0.32,1),
                color 0.55s ease,
                border-color 0.5s ease;
}
.nav-cta:hover {
    background-position: 0% 0;
    color: var(--g-deep);
    border-color: var(--gold);
}

.nav-toggle {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1100;
}
.nav-toggle .bar {
    display: block; width: 22px; height: 1px; background: rgba(255,255,255,0.8);
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), opacity 0.3s ease;
}
.nav-toggle .bar:last-child { width: 14px; }
.main-nav.scrolled .nav-toggle .bar { background: rgba(255,255,255,0.75); }
.nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 22px; }

/* Dil seçici */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 2rem;
    flex-shrink: 0;
}
.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    padding: 0.4rem 0.55rem;
    transition: color 0.3s ease;
    position: relative;
}
.lang-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 1px;
    background: var(--gold);
    transition: left 0.35s cubic-bezier(0.23,1,0.32,1), right 0.35s cubic-bezier(0.23,1,0.32,1);
}
.lang-btn:hover,
.lang-btn.active { color: rgba(255,255,255,0.95); }
.lang-btn.active::after { left: 0.55rem; right: 0.55rem; }
.lang-div {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.18);
    flex-shrink: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; will-change: transform;
    background: linear-gradient(145deg, #020d1a 0%, #051c30 30%, #0a3550 60%, #105e80 100%);
}
/* Hero video */
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(2,13,26,.25) 0%,
        rgba(2,13,26,.15) 40%,
        rgba(2,13,26,.55) 100%
    );
}
/* Video varken dalga canvas'ı ve gradient bg'yi gizle */
.has-video .hero-ripple-canvas { display: none !important; }
.has-video .hero-bg            { display: none !important; }
.hero-bg::after {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(ellipse at 18% 55%, rgba(196,163,90,0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 18%, rgba(26,138,170,0.18) 0%, transparent 50%);
}
/* Hero — mouse-driven ripple */
.hero-ripple-canvas {
    position: absolute; inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.72;
    z-index: 2;
}
/* Açık section'lar — ambient ripple */
.ambient-ripple-canvas {
    position: absolute; inset: 0;
    pointer-events: none;
    mix-blend-mode: normal;
    opacity: 0.32;
    z-index: 0;
}
/* Section'ların içeriği canvas'ın üstünde kalsın */
.rooms-section        > *:not(.ambient-ripple-canvas),
.features-section     > *:not(.ambient-ripple-canvas),
.gallery-section      > *:not(.ambient-ripple-canvas),
.food-section         > *:not(.ambient-ripple-canvas),
.about-section        > *:not(.ambient-ripple-canvas) { position: relative; z-index: 1; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 3;
    background: linear-gradient(to bottom, rgba(2,13,26,0.05) 0%, rgba(2,13,26,0.05) 50%, rgba(2,13,26,0.55) 100%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 3rem;
    max-width: 1100px;
    will-change: transform, opacity;
}

/* Hero text — GSAP sets opacity:0 via JS; if JS fails elements stay visible */

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.54rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    will-change: transform, opacity;
}
.hero-label::before,
.hero-label::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--gold);
    opacity: 0.55;
    flex-shrink: 0;
}
.hero-title {
    font-family: var(--serif);
    font-size: clamp(3.8rem, 9vw, 8.5rem);
    font-weight: 300;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    will-change: transform, opacity;
}
.hero-title em { font-style:italic; color: var(--accent-light); }
.hero-subtitle {
    font-size: 0.88rem; font-weight: 300; letter-spacing: 0.06em;
    color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 2.8rem;
    will-change: transform, opacity;
}
.hero-actions {
    display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
    will-change: transform, opacity;
}
.hero-scroll-indicator {
    position: absolute; bottom: 2.8rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    cursor: pointer; z-index: 2;
}
.scroll-label {
    font-size: 0.58rem; letter-spacing: 0.38em;
    text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.scroll-line {
    width: 1px; height: 44px;
    background: rgba(255,255,255,0.2); position: relative; overflow: hidden;
}
.scroll-dot {
    position: absolute; top: -100%; left: 0;
    width: 100%; height: 40%;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollDrop 2.2s ease infinite;
}
@keyframes scrollDrop { 0%{top:-40%} 100%{top:140%} }

/* ================================================================
   BUTTONS — Gradient background slide sweep
   Teknik: background-size:202% + background-position animasyonu
   Metin node'ları span gerektirmez, her zaman üstte kalır.
   ================================================================ */

/* Primary: Altın zemin, hover'da koyu yeşil soldan kaydırır */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 3.2rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--g-deep);
    background: linear-gradient(to right, var(--g-deep) 50%, var(--gold) 50%);
    background-size: 202% 100%;
    background-position: 100% 0;
    border: 1px solid var(--gold);
    transition: background-position 0.6s cubic-bezier(0.23,1,0.32,1),
                color 0.6s cubic-bezier(0.23,1,0.32,1);
    will-change: transform;
}
.btn-gold:hover {
    background-position: 0% 0;
    color: var(--gold);
}

/* Ghost: Şeffaf zemin, hover'da altın soldan kaydırır */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.15rem 3.2rem;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
    background: linear-gradient(to right, var(--gold) 50%, transparent 50%);
    background-size: 202% 100%;
    background-position: 100% 0;
    border: 1px solid rgba(255,255,255,0.25);
    transition: background-position 0.6s cubic-bezier(0.23,1,0.32,1),
                color 0.6s cubic-bezier(0.23,1,0.32,1),
                border-color 0.5s ease;
    will-change: transform;
}
.btn-ghost:hover {
    background-position: 0% 0;
    color: var(--g-deep);
    border-color: var(--gold);
}

/* Dark outline: Açık zeminler için (rooms, gallery vb.) */
.btn-dark-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 2.2rem;
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--g-base);
    background: linear-gradient(to right, var(--g-base) 50%, transparent 50%);
    background-size: 202% 100%;
    background-position: 100% 0;
    border: 1px solid rgba(30,69,53,0.28);
    transition: background-position 0.55s cubic-bezier(0.23,1,0.32,1),
                color 0.55s cubic-bezier(0.23,1,0.32,1),
                border-color 0.5s ease;
    will-change: transform;
}
.btn-dark-outline:hover {
    background-position: 0% 0;
    color: var(--ivory-light);
    border-color: var(--g-base);
}

/* Magnetic helper */
.magnet { will-change: transform; }

/* ================================================================
   SHARED TYPOGRAPHY
   ================================================================ */
.tag-label {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.54rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.tag-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
.tag-light { color: var(--gold-light); }
.tag-light::before { background: var(--gold-light); }

/* Centered section headers — tag-label sol çizgisini gizle */
.services-header .tag-label::before,
.test-header .tag-label::before,
.booking-content .tag-label::before,
.gallery-header .tag-label::before { display: none; }

.section-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--g-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: inherit; }
.light-title { color: var(--white); }

.gold-line {
    width: 42px; height: 1px;
    background: var(--gold);
    margin: 1.4rem 0 2rem;
    transform-origin: left center;
    will-change: transform;
}

/* ================================================================
   SCROLL REVEAL HELPERS
   Initial states are set by GSAP via gsap.set() — NOT in CSS.
   This prevents elements from being permanently hidden if JS fails.
   ================================================================ */
.gsap-hide      { opacity: 0 !important; }
.gsap-clip-down { clip-path: inset(0% 0% 100% 0%) !important; }
.gsap-clip-left { clip-path: inset(0% 100% 0% 0%) !important; }

/* ================================================================
   WELCOME STRIP
   ================================================================ */
.welcome-strip {
    background: var(--g-base);
    padding: 7.5rem 2rem;
    text-align: center;
    position: relative;
}
.welcome-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,163,90,0.3), transparent);
}
.welcome-inner { max-width: 820px; margin: 0 auto; }
/* Tag-label in centered context: hide the side line */
.welcome-strip .tag-label::before { display: none; }
.welcome-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.welcome-title em { font-style: italic; color: var(--gold-light); }
.welcome-strip .gold-line { margin: 1.6rem auto 2rem; }
.welcome-text {
    font-size: 0.88rem;
    line-height: 2;
    color: rgba(255,255,255,0.48);
    margin: 0 auto;
    letter-spacing: 0.02em;
}

/* ================================================================
   MARQUEE STRIP
   ================================================================ */
.marquee-strip {
    background: var(--accent); overflow: hidden;
    padding: 0.9rem 0; white-space: nowrap; user-select: none;
}
.marquee-track {
    display: inline-block;
    animation: marqueeScroll 22s linear infinite;
    white-space: nowrap;
}
.marquee-track span {
    display: inline-block;
    font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--dark);
    padding: 0 1.8rem;
}
.marquee-track .dot {
    font-size: 0.5rem; padding: 0 0.5rem; opacity: 0.6;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* Footer marquee — koyu arka plan, altın metin (anasayfanın tersi) */
.marquee-footer {
    background: #020d1a !important;
}
.marquee-footer .marquee-track span {
    color: rgba(196,163,90,.75) !important;
}
.marquee-footer .marquee-track .dot {
    color: rgba(196,163,90,.35) !important;
}
.marquee-footer .marquee-track {
    animation-direction: reverse; /* ters yönde kayar */
    animation-duration: 28s;
}

/* ================================================================
   ROOMS SECTION
   ================================================================ */
.rooms-section {
    padding: 7rem 0 7rem 2.5rem;
    background: var(--light); overflow: hidden; position: relative;
}
.rooms-header {
    max-width: 1300px; margin: 0 auto 3.5rem; padding-right: 2.5rem;
    display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.rooms-nav { display: flex; gap: 0.6rem; }
.swiper-nav-btn {
    width: 48px; height: 48px; border: 1px solid var(--primary);
    background: none; cursor: pointer; color: var(--primary); font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.35s, color 0.35s; will-change: transform;
}
.swiper-nav-btn:hover { background: var(--primary); color: var(--white); }

.rooms-swiper { overflow: visible !important; }

.room-card {
    background: var(--white);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
    will-change: transform;
    border: 1px solid rgba(10,26,16,0.06);
}
.room-card:hover { transform: translateY(-4px); }
.room-img { position: relative; height: 260px; overflow: hidden; }
.room-img-bg {
    position: absolute; inset: 0;
    transition: transform 0.85s var(--ease);
    will-change: transform;
}
.room-card:hover .room-img-bg { transform: scale(1.06); }

.room-tag {
    position: absolute; top: 1.1rem; left: 1.1rem;
    background: var(--accent); color: var(--dark);
    font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 0.35rem 0.75rem; z-index: 2;
}
.room-img-hover {
    position: absolute; inset: 0; background: rgba(15,40,38,0.55);
    color: var(--white); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em;
    display: flex; align-items: center; justify-content: center; gap: 0.4rem;
    opacity: 0; transition: opacity 0.4s; z-index: 1; cursor: pointer;
}
.room-card:hover .room-img-hover { opacity: 1; }
.room-body { padding: 1.75rem; }
.room-name {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
    color: var(--primary); margin-bottom: 0.5rem;
}
.room-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.2rem; }
.room-amenities {
    display: flex; gap: 1.1rem; flex-wrap: wrap;
    padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); margin-bottom: 1.2rem;
}
.room-amenities span { font-size: 0.72rem; color: var(--muted); display:flex; align-items:center; gap:0.35rem; }
.room-amenities i { color: var(--accent); font-size: 0.68rem; }
.room-footer-row { display: flex; align-items: center; justify-content: space-between; }
.room-price { font-family: var(--serif); font-size: 1.3rem; color: var(--primary); }
.room-price small { font-family: var(--sans); font-size: 0.7rem; color: var(--muted); font-weight:400; }
.room-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--g-base);
    background: none;
    padding: 0;
    border-bottom: 1px solid rgba(30,69,53,0.22);
    padding-bottom: 0.28rem;
    transition: gap 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    will-change: transform;
}
.room-btn::after { content: '→'; font-style: normal; transition: transform 0.35s ease; }
.room-btn:hover { gap: 0.9rem; color: var(--gold); border-color: var(--gold); }
.room-btn:hover::after { transform: translateX(4px); }

/* ================================================================
   FEATURES SECTION
   ================================================================ */
.features-section { background: var(--ivory-light); padding: 7rem 2rem 0; position: relative; overflow: hidden; }
.features-intro { max-width: 1300px; margin: 0 auto 4rem; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); }

.feature-card {
    position: relative; height: 520px; overflow: hidden; cursor: pointer;
    will-change: clip-path;
}
.feature-bg {
    position: absolute; inset: 0;
    transition: transform 0.9s var(--ease); will-change: transform;
}
.feature-card:hover .feature-bg { transform: scale(1.07); }
.feature-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,30,28,0.92) 0%, rgba(10,30,28,0.4) 55%, rgba(10,30,28,0.15) 100%);
    transition: opacity 0.5s;
}
.feature-card:hover .feature-shade { opacity: 0.95; }
.feature-body {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 2.8rem; z-index: 2;
    transform: translateY(12px); transition: transform 0.5s var(--ease);
}
.feature-card:hover .feature-body { transform: translateY(0); }
.feature-icon-box {
    width:50px; height:50px; border: 1px solid var(--accent);
    display:flex; align-items:center; justify-content:center;
    color: var(--accent); font-size: 1.1rem; margin-bottom: 1.1rem; transition: var(--t);
}
.feature-card:hover .feature-icon-box { background: var(--accent); color: var(--dark); }
.feature-title { font-family: var(--serif); font-size: 2rem; font-weight:400; color: var(--white); margin-bottom: 0.7rem; }
.feature-desc {
    font-size: 0.82rem; color: rgba(255,255,255,0.7); line-height: 1.75;
    max-height: 0; overflow: hidden; opacity: 0; margin-bottom: 0.8rem;
    transition: max-height 0.55s var(--ease), opacity 0.4s ease;
}
.feature-card:hover .feature-desc { max-height: 120px; opacity: 1; }
.feature-link {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); display: inline-flex; align-items: center; gap: 0.5rem;
    opacity: 0; transform: translateX(-10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s var(--ease) 0.1s, color 0.3s;
    will-change: transform;
}
.feature-link i { font-size: 0.65rem; }
.feature-link:hover { color: var(--accent-light); }
.feature-card:hover .feature-link { opacity: 1; transform: translateX(0); }

/* ================================================================
   GALLERY SECTION
   ================================================================ */
.gallery-section { padding: 7rem 2rem; background: var(--light); position: relative; overflow: hidden; }
.gallery-header {
    max-width: 1300px; margin: 0 auto 3rem;
    display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.gallery-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 220px; gap: 0.75rem;
}
.gallery-item {
    position: relative; overflow: hidden; background: var(--primary); cursor: pointer;
    will-change: clip-path;
}
.gi-tall  { grid-row: span 2; }
.gi-wide  { grid-column: span 2; }
.gi-bg {
    position: absolute; inset: 0;
    transition: transform 0.8s var(--ease), opacity 0.4s; will-change: transform;
}
.gallery-item:hover .gi-bg { transform: scale(1.09); opacity: 0.65; }
.gi-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.4rem; opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover .gi-overlay { opacity: 1; }

/* ================================================================
   FOOD SECTION (Lezzet Durağı)
   ================================================================ */
.food-section {
    padding: 7rem 2rem;
    background: var(--ivory-light);
    position: relative;
    overflow: hidden;
}
.food-header {
    max-width: 1300px;
    margin: 0 auto 3rem;
}
.food-tag { color: var(--accent) !important; }
.food-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 0.75rem;
}
.food-item {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    cursor: default;
    will-change: clip-path;
}
.food-item-tall  { grid-row: span 2; }
.food-item-wide  { grid-column: span 2; }
.food-item-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s var(--ease), opacity 0.4s;
    will-change: transform;
}
.food-item img {
    transition: transform 0.8s var(--ease);
    will-change: transform;
}
.food-item:hover img,
.food-item:hover .food-item-bg { transform: scale(1.07); }
.food-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(2,13,26,0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
}
.food-item-overlay span {
    font-family: var(--serif);
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.02em;
}
.food-item:hover .food-item-overlay { opacity: 1; }

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-section { background: var(--primary); padding: 7rem 2rem; }
.services-header { max-width: 1300px; margin: 0 auto 4.5rem; }
.services-header .gold-line { background: var(--accent); }
.services-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(255,255,255,0.08);
}
.service-card {
    padding: 3rem 2.2rem; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background 0.4s; cursor: pointer;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(255,255,255,0.04); }
.service-icon {
    width:58px; height:58px; border: 1px solid var(--accent);
    display:flex; align-items:center; justify-content:center;
    margin: 0 auto 1.5rem; color: var(--accent); font-size: 1.25rem; transition: var(--t);
}
.service-card:hover .service-icon { background: var(--accent); color: var(--dark); }
.service-title { font-family: var(--serif); font-size: 1.3rem; font-weight:400; color: var(--white); margin-bottom: 0.75rem; }
.service-text { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 1.2rem; }
.service-link {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--accent); display:inline-flex; align-items:center; gap:0.4rem; transition: var(--t);
}
.service-link:hover { color: var(--accent-light); }
.service-link i { font-size: 0.6rem; }

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 580px; background: var(--ivory-light); position: relative; overflow: hidden; }
.about-image { position: relative; overflow: hidden; will-change: clip-path; }
.about-img-bg {
    position: absolute; inset: 0;
    transition: transform 0.9s var(--ease); will-change: transform;
}
.about-section:hover .about-img-bg { transform: scale(1.04); }
.about-img-frame {
    position: absolute; bottom: 2.5rem; right: -1.5rem;
    width: 70%; height: 70%;
    border: 1.5px solid var(--accent); opacity: 0.35; pointer-events: none;
}
.about-content {
    padding: 5rem 4rem 5rem 5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.about-text { font-size: 0.88rem; line-height: 1.9; color: var(--muted); margin-bottom: 1.2rem; }
.about-badges { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0 2.2rem; }
.badge-item { display:flex; align-items:center; gap:0.5rem; font-size:0.75rem; font-weight:500; color:var(--primary); }
.badge-item i { color: var(--accent); font-size: 0.85rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { background: var(--light); padding: 7rem 2rem; }
.test-header { max-width: 1300px; margin: 0 auto 4rem; }
.test-swiper { max-width: 900px; margin: 0 auto; }
.test-card { background: var(--white); padding: 3.5rem 3rem; border: 1px solid rgba(10,26,16,0.07); text-align: center; }
.test-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.test-quote { font-family: var(--serif); font-size: 1.2rem; font-weight:300; font-style:italic; color:var(--primary); line-height:1.7; margin-bottom:2rem; }
.test-author { display:flex; align-items:center; justify-content:center; gap:1rem; }
.test-avatar { width:42px; height:42px; background:var(--primary); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:1.1rem; }
.test-author strong { display:block; font-size:0.82rem; font-weight:600; color:var(--dark); }
.test-author span { font-size:0.72rem; color:var(--muted); }
.test-pagination { margin-top: 2rem !important; text-align: center; }
.test-pagination .swiper-pagination-bullet { background: var(--primary); }
.test-pagination .swiper-pagination-bullet-active { background: var(--accent); }

/* ================================================================
   BOOKING CTA
   ================================================================ */
.booking-cta { position: relative; padding: 6rem 2rem; text-align: center; overflow: hidden; }
.booking-bg { position: absolute; inset: 0; will-change: transform; }
.booking-bg::before {
    content:''; position:absolute; inset:0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(196,163,90,0.14) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(44,90,84,0.22) 0%, transparent 50%);
}
.booking-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.booking-desc { font-size: 0.9rem; line-height: 1.9; color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 3rem; }
.booking-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   MANIFESTO REVEAL SECTION
   ================================================================ */
.manifesto-section {
    background: var(--ivory-light);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.manifesto-inner {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 4rem;
    align-items: center;
}
.manifesto-col { display: flex; flex-direction: column; gap: 1.5rem; }
.manifesto-left { padding-top: 3rem; }
.manifesto-right { padding-bottom: 3rem; }
.m-img {
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.m-img-tall { height: 280px; }
.m-img-sm   { height: 160px; }
.m-img-label {
    position: absolute;
    bottom: 1rem; left: 1rem;
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}
.manifesto-center { text-align: center; }
.m-tag::before { display: none; }
.manifesto-heading {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0.8rem 0 0;
}
.manifesto-heading em { font-style: italic; color: var(--g-base); }
.m-line { margin: 1.8rem auto; }
.manifesto-text {
    font-size: 0.88rem;
    line-height: 2;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 2.2rem;
}
.m-cta { display: inline-flex; }

/* ================================================================
   PAGE HERO — Ayrı sayfalar için üst bölüm
   ================================================================ */
.page-hero {
    position: relative;
    height: 52vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}
.page-hero-bg {
    position: absolute; inset: 0;
    will-change: transform;
}
.page-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(2,13,26,0.35) 0%, rgba(2,13,26,0.55) 100%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 2rem; }
.ph-tag { color: var(--gold); }
.ph-tag::before { display: none; }
.page-hero-title {
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0.6rem 0 0;
    line-height: 1.1;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }

/* ================================================================
   ROOMS PAGE
   ================================================================ */
.page-rooms-section { background: var(--ivory-light); padding: 6rem 2rem; }
.page-rooms-intro {
    max-width: 1300px; margin: 0 auto 4rem;
    text-align: center;
    font-size: 0.9rem; color: var(--muted); line-height: 1.9;
}
.page-rooms-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.page-room-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1), box-shadow 0.45s ease;
}
.page-room-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(5,28,48,0.1); }
.prc-full { grid-column: span 3; display: grid; grid-template-columns: 380px 1fr; }
.prc-img { height: 220px; position: relative; }
.prc-full .prc-img { height: 100%; min-height: 260px; }
.prc-body { padding: 2rem; }
.prc-tag {
    display: inline-block;
    font-size: 0.48rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--g-base); background: rgba(16,94,128,0.08);
    padding: 0.3rem 0.8rem; margin-bottom: 0.8rem;
}
.prc-tag-gold { color: var(--gold); background: rgba(196,163,90,0.1); }
.prc-tag-dark { color: var(--white); background: var(--g-dark); }
.prc-name { font-family: var(--serif); font-size: 1.55rem; font-weight: 300; color: var(--ink); margin-bottom: 0.75rem; }
.prc-desc { font-size: 0.82rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.2rem; }
.prc-features {
    display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; margin-bottom: 1.8rem;
    font-size: 0.74rem; color: rgba(5,28,48,0.55);
}
.prc-features i { color: var(--g-mid); margin-right: 0.3rem; }
.prc-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.prc-price { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); }
.prc-price small { font-size: 0.72rem; font-family: var(--sans); color: var(--muted); }
.prc-img-link { display: block; }
.prc-img { position: relative; overflow: hidden; }
.prc-img-hover {
    position: absolute; inset: 0;
    background: rgba(2,13,26,0.45);
    display: flex; align-items: center; justify-content: center;
    gap: 0.5rem; color: var(--white);
    font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0; transition: opacity 0.35s ease;
}
.prc-img-link:hover .prc-img-hover { opacity: 1; }
.prc-actions { display: flex; align-items: center; gap: 0.8rem; }
.prc-detail-btn {
    font-size: 0.56rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--g-base); border-bottom: 1px solid rgba(16,94,128,0.3);
    padding-bottom: 0.2rem; transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}
.prc-detail-btn:hover { color: var(--gold); border-color: var(--gold); }
.prc-name { color: var(--ink); transition: color 0.3s; }
a:hover .prc-name { color: var(--g-base); }

/* ================================================================
   EXPERIENCES PAGE
   ================================================================ */
.page-exp-section { background: var(--ivory-light); padding: 6rem 2rem; }
.page-exp-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.page-exp-card {
    position: relative; overflow: hidden;
    background: var(--g-dark);
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.page-exp-card:hover { transform: translateY(-5px); }
.pec-featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; min-height: 320px; }
.pec-bg {
    position: absolute; inset: 0;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.pec-featured .pec-bg { position: relative; min-height: 280px; }
.page-exp-card:hover .pec-bg { transform: scale(1.04); }
.pec-body {
    position: relative; z-index: 1;
    padding: 2.5rem;
    color: var(--white);
}
.pec-featured .pec-body { background: rgba(2,13,26,0.92); }
.page-exp-card:not(.pec-featured) .pec-body {
    padding: 2rem;
    background: linear-gradient(to top, rgba(2,13,26,0.95) 0%, rgba(2,13,26,0.6) 100%);
}
.pec-icon {
    width: 48px; height: 48px;
    border: 1px solid rgba(196,163,90,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--gold);
    margin-bottom: 1.2rem;
}
.pec-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.9rem; }
.pec-body p  { font-size: 0.82rem; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 1.2rem; }
.pec-list { list-style: none; padding: 0; margin: 0; }
.pec-list li { font-size: 0.78rem; color: rgba(255,255,255,0.5); padding: 0.3rem 0; }
.pec-list i  { color: var(--gold); margin-right: 0.5rem; font-size: 0.6rem; }

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.page-gallery-section { background: var(--ivory-light); padding: 5rem 2rem 6rem; }
.page-gallery-filters {
    display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
    max-width: 1300px; margin: 0 auto 3.5rem;
}
.pgf-btn {
    font-size: 0.54rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
    padding: 0.6rem 1.4rem; border: 1px solid var(--border);
    background: none; cursor: pointer; color: var(--muted);
    transition: all 0.3s ease;
}
.pgf-btn:hover, .pgf-btn.active { background: var(--g-dark); color: var(--white); border-color: var(--g-dark); }
.page-gallery-grid {
    max-width: 1300px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.pg-item {
    position: relative; overflow: hidden; cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--ivory);
}
.pg-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.pg-item:hover img { transform: scale(1.06); }
.pg-bg {
    position: absolute; inset: 0;
    transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
}
.pg-item:hover .pg-bg { transform: scale(1.06); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.page-about-section { background: var(--ivory-light); }
.pa-intro {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.pa-img { background-size: cover; background-position: center; }
.pa-text { padding: 5rem 4rem; }
.pa-text p { font-size: 0.88rem; line-height: 2; color: var(--muted); }
.pa-values { background: var(--white); padding: 7rem 2rem; text-align: center; }
.pa-values-header { margin-bottom: 4rem; }
.pa-values-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem;
}
.pa-val-card { text-align: center; }
.pa-val-icon {
    width: 56px; height: 56px; border: 1px solid rgba(16,94,128,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--g-base);
    margin: 0 auto 1.2rem;
}
.pa-val-card h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.6rem; color: var(--ink); }
.pa-val-card p { font-size: 0.8rem; line-height: 1.85; color: var(--muted); }
.pa-stats-row {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 0; padding: 4rem 2rem;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.pa-stat { flex: 1; text-align: center; min-width: 140px; }
.pa-stat-val {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: .3rem;
}
.pa-stat-lbl {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
}
.pa-stat-div {
    width: 1px; height: 60px;
    background: var(--border);
    flex-shrink: 0;
    margin: 0 2rem;
}
.pa-awards {
    max-width: 1300px; margin: 0 auto; padding: 5rem 2rem;
    display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap;
}
.pa-award-item {
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    text-align: center; padding: 2rem 2.5rem;
    border: 1px solid var(--border);
    background: var(--white);
    min-width: 200px;
}
.pa-award-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 0.5rem; }
.pa-award-item strong { font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.pa-award-item span { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--muted); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.page-contact-section { background: var(--ivory-light); padding: 6rem 2rem; }
.pc-grid {
    max-width: 1200px; margin: 0 auto 5rem;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem;
    align-items: start;
}
.pc-info .tag-label { margin-bottom: 0.6rem; }
.pc-info-items { margin: 2rem 0; display: flex; flex-direction: column; gap: 1.5rem; }
.pc-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.pci-icon {
    width: 40px; height: 40px; border: 1px solid rgba(16,94,128,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--g-base); font-size: 0.85rem;
}
.pc-info-item strong { display: block; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.25rem; }
.pc-info-item span { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }
.pc-social { display: flex; gap: 0.75rem; margin-top: 2rem; }
.pc-social a {
    width: 38px; height: 38px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: 0.85rem; transition: var(--t);
}
.pc-social a:hover { border-color: var(--g-base); color: var(--g-base); }
.pc-form { display: flex; flex-direction: column; gap: 1.4rem; }
.pcf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.pcf-group { display: flex; flex-direction: column; gap: 0.5rem; }
.pcf-group label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink); }
.pcf-group input,
.pcf-group textarea {
    background: var(--white); border: 1px solid var(--border);
    padding: 0.85rem 1rem; font-size: 0.84rem; color: var(--ink);
    font-family: var(--sans); outline: none; resize: none;
    transition: border-color 0.3s ease;
}
.pcf-group input:focus,
.pcf-group textarea:focus { border-color: var(--g-mid); }
.pc-map {
    max-width: 1200px; margin: 0 auto;
    height: 450px; background: var(--white); overflow: hidden;
}
.pc-map i { font-size: 2rem; color: var(--g-mid); }
.pc-map span { font-size: 0.8rem; letter-spacing: 0.1em; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #020d1a; }
.footer-top { padding: 5.5rem 2rem; }
.footer-container {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem;
}
.footer-logo { font-family: var(--serif); font-size: 2.1rem; font-weight:300; letter-spacing:0.38em; color:var(--white); margin-bottom:0.9rem; }
.footer-logo-img { max-height: 56px; max-width: 200px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 0.9rem; display: block; }
.footer-brand p { font-size:0.82rem; line-height:1.85; color:rgba(255,255,255,0.4); margin-bottom:1.5rem; }
.footer-social { display:flex; gap:0.75rem; }
.footer-social a {
    width:36px; height:36px; border:1px solid rgba(255,255,255,0.15);
    display:flex; align-items:center; justify-content:center;
    color:rgba(255,255,255,0.5); font-size:0.8rem; transition:var(--t);
}
.footer-social a:hover { border-color:var(--accent); color:var(--accent); }
.footer-links h4, .footer-contact h4 {
    font-family:var(--serif); font-size:0.95rem; font-weight:400; letter-spacing:0.1em;
    color:var(--white); margin-bottom:1.5rem;
}
.footer-links li { margin-bottom:0.7rem; }
.footer-links a { font-size:0.8rem; color:rgba(255,255,255,0.4); transition:var(--t); display:inline-block; }
.footer-links a:hover { color:var(--accent); padding-left:5px; }
.footer-contact p { font-size:0.8rem; color:rgba(255,255,255,0.4); margin-bottom:0.8rem; display:flex; align-items:flex-start; gap:0.8rem; }
.footer-contact i { color:var(--accent); margin-top:3px; flex-shrink:0; font-size:0.75rem; }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.06); padding:1.5rem 2rem;
    display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:0.75rem;
}
.footer-bottom p, .footer-bottom-links { font-size:0.72rem; color:rgba(255,255,255,0.25); }
.footer-bottom-links { display:flex; gap:0.75rem; align-items:center; }
.footer-bottom-links a { color:rgba(255,255,255,0.25); transition:color 0.3s; }
.footer-bottom-links a:hover { color:var(--accent); }

/* ================================================================
   ROOMS SECTION — Mouse-Driven Horizontal Scroll
   ================================================================ */
.rooms-section {
    padding: 0 0 4rem !important;
    overflow: hidden;
    position: relative;
    background: var(--ivory-light);
    cursor: none; /* custom cursor active here */
}

.rooms-section .rooms-header {
    max-width: none;
    margin: 0;
    padding: 2.5rem 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.rooms-header-text .gold-line { margin: 0.9rem 0 0; }

.rooms-track-outer {
    overflow: visible;
    padding-left: 3rem;
    display: flex;
    align-items: center;
    height: 560px;
    position: relative;
}

.rooms-track {
    display: flex;
    gap: 28px;
    width: max-content;
    will-change: transform;
    align-items: stretch;
}

/* Bigger, more immersive cards */
.rooms-track .room-card {
    width: 480px;
    flex-shrink: 0;
    border-radius: 0;
}
.rooms-track .room-card .room-img {
    height: 340px;
}

.rooms-track-end {
    width: 3rem;
    flex-shrink: 0;
}

.rooms-progress-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.rooms-pbar-track {
    width: 160px;
    height: 1px;
    background: rgba(0,0,0,0.12);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.rooms-progress-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: var(--accent);
    border-radius: 0;
    transition: none; /* JS directly sets this */
}

.rooms-scroll-hint {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    min-width: 130px;
    transition: opacity 0.3s ease;
}
.rooms-scroll-hint i { font-size: 0.65rem; }


/* ================================================================
   WORD SPLIT ANIMATION
   ================================================================ */
.split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
    margin-bottom: -0.1em;
    padding-bottom: 0.1em;
}
.split-word-inner {
    display: inline-block;
    will-change: transform;
}
/* Preserves italic styling inside split spans */
.split-word-inner em { font-style: italic; }

/* ================================================================
   SECTION PANEL ENTER ANIMATION (triggered by GSAP)
   ================================================================ */
.features-section,
.gallery-section,
.food-section,
.services-section,
.about-section,
.testimonials-section,
.booking-cta {
    /* will-change managed by GSAP */
    transform-origin: center bottom;
}

/* ================================================================
   IMAGE PARALLAX LAYERS
   ================================================================ */
.feature-bg,
.gi-bg,
.about-img-bg {
    transform-origin: center center;
}

/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .service-card:nth-child(2) { border-right: none; }
    .service-card:nth-child(3),
    .service-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .about-content { padding: 4rem 3rem; }
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { height: 380px; }
    .feature-desc { max-height: 80px; opacity: 1; }
    .feature-link { opacity: 1; transform: none; }
    .about-section { grid-template-columns: 1fr; }
    .about-image { height: 340px; }
    .about-content { padding: 4rem 2.5rem; }
    .about-img-frame { display: none; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gi-tall { grid-column: span 2; grid-row: span 1; }
    .gi-wide { grid-column: span 2; }
    .food-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .food-item-tall { grid-column: span 2; grid-row: span 1; }
    .food-item-wide { grid-column: span 2; }
}

/* ================================================================
   ROOM DETAIL PAGE
   ================================================================ */
.rd-hero {
    position: relative;
    height: 80vh; min-height: 560px;
    display: flex; align-items: flex-end;
    overflow: hidden;
}
.rd-hero-bg {
    position: absolute; inset: 0; will-change: transform;
    transition: transform 8s ease;
}
.rd-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,13,26,0.85) 0%, rgba(2,13,26,0.3) 60%, rgba(2,13,26,0.1) 100%);
}
.rd-hero-content {
    position: relative; z-index: 2;
    padding: 0 4rem 4rem;
    max-width: 900px;
    color: var(--white);
}
.rd-breadcrumb {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-bottom: 1.2rem;
}
.rd-breadcrumb a { color: inherit; transition: color 0.3s; }
.rd-breadcrumb a:hover { color: var(--gold); }
.rd-tag {
    display: inline-block;
    font-size: 0.48rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); border: 1px solid rgba(196,163,90,0.45);
    padding: 0.3rem 0.9rem; margin-bottom: 1rem;
}
.rd-tag.prc-tag-dark { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.25); }
.rd-hero-title {
    font-family: var(--serif); font-size: clamp(3rem,7vw,6rem);
    font-weight: 300; color: var(--white);
    letter-spacing: -0.02em; margin: 0 0 0.75rem; line-height: 1.05;
}
.rd-hero-sub { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1.8rem; }
.rd-hero-meta {
    display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
    font-size: 0.78rem; color: rgba(255,255,255,0.65);
}
.rd-hero-meta i { color: var(--gold); margin-right: 0.4rem; }
.rd-price { font-family: var(--serif); font-size: 1.5rem; color: var(--white); margin-left: auto; }
.rd-price small { font-family: var(--sans); font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.rd-hero-scroll {
    position: absolute; bottom: 2rem; right: 4rem; z-index: 2;
}

/* Body layout */
.rd-body {
    max-width: 1300px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 380px; gap: 5rem;
    padding: 5rem 2rem 6rem;
    background: var(--ivory-light);
    position: relative;
}

/* Section styling */
.rd-section { }
.rd-section-title {
    font-family: var(--serif); font-size: clamp(1.6rem,3vw,2.4rem);
    font-weight: 300; color: var(--ink); margin: 0.4rem 0 0;
}
.rd-section-title em { font-style: italic; color: var(--g-base); }
.rd-text { font-size: 0.88rem; line-height: 2; color: var(--muted); }

/* Highlights bar */
.rd-highlights {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 0; margin-top: 2.5rem;
    border: 1px solid var(--border);
    background: var(--white);
}
.rd-hl-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.4rem 1.5rem;
    border-right: 1px solid var(--border);
}
.rd-hl-item:last-child { border-right: none; }
.rd-hl-item > i { font-size: 1.1rem; color: var(--g-base); flex-shrink: 0; }
.rd-hl-label { display: block; font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.rd-hl-val   { font-family: var(--serif); font-size: 1rem; color: var(--ink); }

/* Gallery */
.rd-gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 180px;
    gap: 0.75rem;
}
.rd-gi          { position: relative; overflow: hidden; cursor: pointer; }
.rd-gi-tall     { grid-row: span 2; }
.rd-gi-wide     { grid-column: span 2; }
.rd-gi-bg       { position: absolute; inset: 0; transition: transform 0.55s cubic-bezier(0.23,1,0.32,1); }
.rd-gi:hover .rd-gi-bg { transform: scale(1.06); }
.rd-gi-overlay  {
    position: absolute; inset: 0;
    background: rgba(2,13,26,0);
    display: flex; align-items: flex-end; justify-content: space-between;
    padding: 1rem; transition: background 0.35s ease;
}
.rd-gi:hover .rd-gi-overlay { background: rgba(2,13,26,0.45); }
.rd-gi-overlay span { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: transparent; transition: color 0.35s; }
.rd-gi-overlay i     { color: transparent; transition: color 0.35s; }
.rd-gi:hover .rd-gi-overlay span,
.rd-gi:hover .rd-gi-overlay i    { color: rgba(255,255,255,0.9); }

/* Amenities */
.rd-amenities {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 0.8rem 1.5rem;
}
.rd-amenity {
    display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.8rem; color: var(--muted); padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.rd-amenity i { color: var(--g-base); font-size: 0.85rem; width: 16px; text-align: center; flex-shrink: 0; }

/* Booking sidebar */
.rd-sidebar { position: sticky; top: 110px; height: fit-content; }
.rd-booking-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2.2rem;
    margin-bottom: 1.5rem;
}
.rdb-header { margin-bottom: 1.8rem; }
.rdb-tag::before { display: none; }
.rdb-price {
    font-family: var(--serif); font-size: 2rem; color: var(--ink); margin-top: 0.4rem;
}
.rdb-price small { font-family: var(--sans); font-size: 0.72rem; color: var(--muted); }
.rdb-form { display: flex; flex-direction: column; gap: 1.2rem; }
.rdb-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rdb-group { display: flex; flex-direction: column; gap: 0.4rem; }
.rdb-group label { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.rdb-group label i { margin-right: 0.3rem; color: var(--g-base); }
.rdb-group input,
.rdb-group select {
    border: 1px solid var(--border); background: var(--ivory-light);
    padding: 0.75rem 0.9rem; font-size: 0.82rem; color: var(--ink);
    font-family: var(--sans); outline: none; transition: border-color 0.3s;
}
.rdb-group input:focus,
.rdb-group select:focus { border-color: var(--g-mid); }
.rdb-summary {
    border-top: 1px solid var(--border); padding-top: 1.2rem;
    display: flex; flex-direction: column; gap: 0.6rem;
}
.rdb-sum-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--muted); }
.rdb-sum-total { font-size: 0.92rem; color: var(--ink); border-top: 1px solid var(--border); padding-top: 0.6rem; margin-top: 0.2rem; }
.rdb-btn { width: 100%; justify-content: center; margin-top: 0.4rem; }
.rdb-note {
    display: flex; align-items: center; gap: 0.6rem; margin-top: 1rem;
    font-size: 0.72rem; color: var(--muted);
}
.rdb-note i { color: var(--g-base); }
.rdb-contact {
    background: var(--white); border: 1px solid var(--border);
    padding: 1.5rem 2rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.rdb-contact p { font-size: 0.78rem; color: var(--muted); }
.rdb-call, .rdb-msg {
    display: flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.65rem 1rem; border: 1px solid var(--border);
    color: var(--ink); transition: all 0.3s ease;
}
.rdb-call:hover { background: var(--g-dark); color: var(--white); border-color: var(--g-dark); }
.rdb-msg:hover  { background: var(--g-base); color: var(--white); border-color: var(--g-base); }
.rdb-call i, .rdb-msg i { color: var(--g-base); }
.rdb-call:hover i, .rdb-msg:hover i { color: var(--gold); }

/* Related rooms */
.rd-related { background: var(--white); padding: 6rem 2rem; }
.rd-related-inner { max-width: 1300px; margin: 0 auto; }
.rd-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.rd-rel-card {
    display: block; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}
.rd-rel-card:hover { transform: translateY(-5px); }
.rd-rel-img { height: 200px; transition: transform 0.55s cubic-bezier(0.23,1,0.32,1); }
.rd-rel-card:hover .rd-rel-img { transform: scale(1.04); }
.rd-rel-body { padding: 1.5rem; }
.rd-rel-tag {
    font-size: 0.48rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--g-base); display: block; margin-bottom: 0.4rem;
}
.rd-rel-name  { font-family: var(--serif); font-size: 1.25rem; font-weight: 300; color: var(--ink); margin-bottom: 0.4rem; }
.rd-rel-price { font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.rd-rel-link  {
    font-size: 0.56rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--g-base); display: inline-flex; align-items: center; gap: 0.4rem;
    border-bottom: 1px solid rgba(16,94,128,0.2); padding-bottom: 0.2rem;
    transition: gap 0.3s, color 0.3s, border-color 0.3s;
}
.rd-rel-card:hover .rd-rel-link { gap: 0.7rem; color: var(--gold); border-color: var(--gold); }

/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
/* ── Mobil drawer ── */
.mob-overlay {
    display: none; position: fixed; inset: 0; z-index: 1099;
    background: rgba(2,13,26,.55); backdrop-filter: blur(4px);
    opacity: 0; transition: opacity .35s ease;
}
.mob-overlay.open { display: block; opacity: 1; }

.mob-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: #020d1a;
    z-index: 1100;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.23,1,.32,1);
    box-shadow: -8px 0 48px rgba(0,0,0,.5);
    overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

/* Üst: logo + kapat */
.mob-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.mob-drawer-logo {
    text-decoration: none; display: flex; flex-direction: column;
}
.mob-drawer-logo span {
    font-family: var(--serif); font-size: 1.3rem; font-weight: 300;
    letter-spacing: .35em; color: #fff;
}
.mob-drawer-logo small {
    font-family: var(--sans); font-size: .52rem; letter-spacing: .3em;
    text-transform: uppercase; color: rgba(255,255,255,.3); margin-top: .1rem;
}
.mob-close {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%; width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: rgba(255,255,255,.6); font-size: .9rem;
    transition: background .2s, color .2s;
}
.mob-close:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* Navigasyon */
.mob-nav {
    flex: 1; padding: 1rem 0;
    display: flex; flex-direction: column;
}
.mob-nav-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: .9rem 1.5rem;
    font-family: var(--sans); font-size: .82rem; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.75);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.05);
    transition: color .2s, background .2s, padding-left .2s;
}
.mob-nav-item i { font-size: .6rem; color: rgba(255,255,255,.25); transition: color .2s, transform .2s; }
.mob-nav-item:hover {
    color: var(--gold); background: rgba(196,163,90,.06);
    padding-left: 2rem;
}
.mob-nav-item:hover i { color: var(--gold); transform: translateX(3px); }

.mob-nav-cta {
    margin: 1.2rem 1.5rem 0;
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .85rem;
    background: var(--gold); color: #fff;
    border-radius: 10px; text-decoration: none;
    font-family: var(--sans); font-size: .75rem; letter-spacing: .18em;
    text-transform: uppercase; transition: background .2s;
}
.mob-nav-cta:hover { background: #a8883d; color: #fff; }

/* Alt: dil + telefon */
.mob-drawer-foot {
    padding: 1.2rem 1.5rem 2rem;
}
.mob-foot-divider {
    height: 1px; background: rgba(255,255,255,.07); margin-bottom: 1.2rem;
}
.mob-lang-switch {
    display: flex; gap: .6rem; margin-bottom: 1rem;
}
.mob-lang-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
    padding: .6rem; border-radius: 8px;
    border: 1px solid rgba(255,255,255,.1);
    font-family: var(--sans); font-size: .75rem; letter-spacing: .1em;
    color: rgba(255,255,255,.5); text-decoration: none;
    transition: all .2s;
}
.mob-lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.mob-lang-active {
    background: rgba(196,163,90,.12) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}
.mob-foot-phone {
    display: flex; align-items: center; gap: .5rem;
    font-size: .78rem; color: rgba(255,255,255,.35);
    text-decoration: none; transition: color .2s;
}
.mob-foot-phone:hover { color: var(--gold); }
.mob-foot-phone i { color: var(--gold); font-size: .72rem; }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    /* Desktop nav-menu mobilde gizle */
    .nav-menu { display: none; }
    .nav-lang  { display: none; }

    .hero-subtitle br { display: none; }

    /* Rooms mobile: touch scroll */
    .rooms-section {
        height: auto;
        min-height: 0;
        cursor: auto;
    }
    .rooms-section .rooms-header { padding: 3rem 1.5rem 1.5rem; }
    .rooms-track-outer {
        padding-left: 1.2rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 1.5rem;
        padding-top: 1rem;
        flex: none;
        height: auto;
    }
    .rooms-track-outer::-webkit-scrollbar { height: 2px; }
    .rooms-track-outer::-webkit-scrollbar-thumb { background: var(--accent); }
    .rooms-track { gap: 16px; align-items: flex-start; }
    .rooms-track .room-card { width: 300px; scroll-snap-align: start; }
    .rooms-track .room-card .room-img { height: 220px; }
    .rooms-progress-bar { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .service-card:last-child { border-bottom: none; }
    .service-card:nth-child(3) { border-top: none; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { justify-content: center; text-align: center; }
    .booking-cta { padding: 4rem 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gi-tall, .gi-wide { grid-column: span 1; }
    .food-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .food-item-tall, .food-item-wide { grid-column: span 1; grid-row: span 1; }
    .food-item-overlay { opacity: 1; }

    /* Manifesto */
    .manifesto-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .manifesto-col { flex-direction: row; }
    .m-img-tall, .m-img-sm { height: 140px; flex: 1; }
    .manifesto-left, .manifesto-right { padding: 0; }

    /* Page hero */
    .page-hero { height: 42vh; min-height: 300px; }

    /* Rooms page */
    .page-rooms-grid { grid-template-columns: 1fr; }
    .prc-full { grid-column: span 1; grid-template-columns: 1fr; }
    .prc-full .prc-img { min-height: 200px; }

    /* Experiences page */
    .page-exp-grid { grid-template-columns: 1fr; }
    .pec-featured { grid-column: span 1; grid-template-columns: 1fr; }

    /* Gallery page — tablet: 2 kolon */
    .page-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }

    /* About page */
    .pa-intro { grid-template-columns: 1fr; }
    .pa-img { height: 280px; }
    .pa-text { padding: 3rem 2rem; }
    .pa-values-grid { grid-template-columns: repeat(2,1fr); }

    /* Contact page */
    .pc-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pcf-row { grid-template-columns: 1fr; }

.pc-success-msg { display:flex; align-items:center; gap:1rem; background:rgba(45,176,204,0.1); border:1px solid rgba(45,176,204,0.3); padding:1.2rem 1.5rem; border-radius:4px; margin-bottom:2rem; color:var(--g-mid); }
.pc-success-msg i { font-size:1.2rem; }
.pcf-error { display:block; font-size:0.72rem; color:#e05252; margin-top:.3rem; }

    /* Room detail */
    .rd-hero { height: 60vh; }
    .rd-hero-content { padding: 0 1.5rem 2.5rem; }
    .rd-body { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
    .rd-highlights { grid-template-columns: repeat(2,1fr); }
    .rd-hl-item { border-bottom: 1px solid var(--border); }
    .rd-hl-item:nth-child(2n) { border-right: none; }
    .rd-gallery { grid-template-columns: 1fr 1fr; }
    .rd-gi-tall, .rd-gi-wide { grid-column: span 1; grid-row: span 1; }
    .rd-amenities { grid-template-columns: 1fr 1fr; }
    .rd-sidebar { position: static; }
    .rd-related-grid { grid-template-columns: 1fr; }

    /* Disable magnetic on mobile */
    .magnet { will-change: auto !important; }
}

/* ================================================================
   ROOMS EDITORIAL — Aman / Six Senses style alternating panels
   ================================================================ */

/* ── Intro Section ── */
.rooms-intro-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.ri-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ri-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 12rem 6vw 7rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}
.ri-tag {
    color: var(--gold) !important;
    margin-bottom: 1.5rem;
    display: block;
}
.ri-title {
    font-family: var(--serif);
    font-size: clamp(5rem, 10vw, 10rem);
    font-weight: 300;
    line-height: 0.88;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
}
.ri-title em {
    font-style: italic;
    color: var(--gold-light);
}
.ri-right {
    padding-bottom: 0.5rem;
}
.ri-desc {
    font-family: var(--sans);
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 3rem;
}
.ri-stat-row {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem;
}
.ri-stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.ri-stat strong {
    font-family: var(--serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
}
.ri-stat span {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.ri-scroll-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(196,163,90,0.6));
    z-index: 2;
}

/* ── Editorial Wrapper ── */
.rooms-editorial {
    background: #fff;
}

/* ── Chapter Base ── */
.re-chapter {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    overflow: hidden;
}
.re-chapter.re-villa {
    grid-template-columns: 1fr;
    min-height: 100vh;
}

/* ── Decorative Number ── */
.re-num {
    position: absolute;
    top: 3rem;
    left: 5vw;
    font-family: var(--serif);
    font-size: clamp(12rem, 20vw, 22rem);
    font-weight: 700;
    line-height: 1;
    color: var(--g-deep);
    opacity: 0.045;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    letter-spacing: -0.05em;
}
.re-chapter.re-right .re-num {
    left: auto;
    right: 5vw;
}
.re-num-light {
    color: #fff;
    opacity: 0.06;
}
.re-num-villa {
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.04;
}

/* ── Image Column ── */
.re-img-col {
    position: relative;
    overflow: hidden;
}
.re-img-wrap {
    display: block;
    position: absolute;
    inset: 0;
    overflow: hidden;
    text-decoration: none;
}
.re-img {
    position: absolute;
    inset: 0;
    transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.re-img-wrap:hover .re-img {
    transform: scale(1.04);
}
.re-img-label {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    z-index: 2;
}
.re-img-label-light {
    color: rgba(255,255,255,0.7);
}
.re-img-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--g-deepest);
    background: var(--gold);
    padding: 0.45rem 1rem;
    z-index: 2;
}
.re-img-badge-gold {
    background: var(--gold);
    color: #020d1a;
}

/* ── Text Column ── */
.re-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(4rem, 7vw, 8rem) clamp(3rem, 6vw, 7rem);
    position: relative;
    z-index: 2;
    background: #fff;
}
.re-chapter.re-dark .re-text-col {
    background: var(--g-deepest);
}

/* ── Category Tag ── */
.re-category {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--g-base);
    margin-bottom: 1.4rem;
}
.re-category-gold { color: var(--gold); }
.re-category-light { color: rgba(255,255,255,0.5); }

/* ── Room Name ── */
.re-name {
    font-family: var(--serif);
    font-size: clamp(4.5rem, 7.5vw, 9rem);
    font-weight: 300;
    line-height: 0.88;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin: 0 0 2rem;
}
.re-name em {
    font-style: italic;
    color: var(--g-base);
}
.re-name-light { color: #fff; }
.re-name-light em { color: var(--gold-light); }
.re-name-villa {
    font-size: clamp(5rem, 9vw, 11rem);
}

/* ── Divider ── */
.re-divider {
    width: 3rem;
    height: 1px;
    background: var(--g-base);
    margin-bottom: 2rem;
}
.re-divider-gold { background: var(--gold); }

/* ── Description ── */
.re-desc {
    font-family: var(--sans);
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    color: var(--muted);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 2rem;
}
.re-desc-light { color: rgba(255,255,255,0.6); }

/* ── Meta Specs ── */
.re-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem 2.5rem;
    margin-bottom: 2.5rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--muted);
}
.re-meta i {
    margin-right: 0.5rem;
    color: var(--g-base);
}
.re-meta-light { color: rgba(255,255,255,0.45); }
.re-meta-light i { color: var(--gold); }

/* ── Footer ── */
.re-footer {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.re-price {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 600;
    color: var(--ink);
}
.re-price small {
    font-size: 0.75em;
    font-weight: 400;
    color: var(--muted);
    margin-left: 0.25rem;
}
.re-price-gold { color: var(--gold); }
.re-price-lg { font-size: clamp(2rem, 3.5vw, 3rem); }

/* ── CTA (text + SVG line) ── */
.re-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--g-base);
    text-decoration: none;
    transition: gap 0.4s var(--ease);
}
.re-cta svg {
    transition: width 0.4s var(--ease);
    flex-shrink: 0;
}
.re-cta:hover {
    gap: 1.8rem;
}
.re-cta:hover svg {
    width: 70px;
}
.re-cta-gold { color: var(--gold); }

/* ── Accent chapter (gold tint on border) ── */
.re-chapter.re-accent .re-footer {
    border-color: rgba(196,163,90,0.2);
}

/* ── Dark chapter overrides ── */
.re-chapter.re-dark {
    background: var(--g-deepest);
}
.re-chapter.re-dark .re-footer {
    border-color: rgba(255,255,255,0.1);
}

/* ── Villa chapter ── */
.re-villa {
    position: relative;
    display: block;
    min-height: 100vh;
}
.re-villa-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.re-villa-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: 6vw;
    padding: 8rem 6vw;
}
.re-villa-img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 70vh;
}
.re-villa-img-col .re-img-wrap {
    flex: 1;
    position: relative;
    inset: auto;
    min-height: 0;
    display: block;
    overflow: hidden;
}
.re-villa-img {
    position: absolute !important;
    inset: 0;
}
.re-villa-img2 {
    height: 28%;
    flex-shrink: 0;
    opacity: 0.6;
}
.re-villa-text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.re-villa-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0.5rem;
}
.re-vs-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.re-vs-item strong {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
}
.re-vs-item span {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}
.re-villa .re-footer {
    border-color: rgba(255,255,255,0.1);
}

/* ── Scroll reveal: chapters fade+slide in ── */
.re-chapter {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.re-chapter.re-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .ri-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 9rem 5vw 5rem;
    }
    .re-chapter {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .re-chapter.re-right .re-img-col { order: -1; }
    .re-img-col { min-height: 55vw; }
    .re-img-wrap { position: relative; height: 55vw; display: block; }
    .re-text-col {
        padding: 3.5rem 5vw;
    }
    .re-name { font-size: clamp(3.5rem, 14vw, 6rem); }
    .re-num { font-size: clamp(8rem, 30vw, 14rem); opacity: 0.03; }
    .re-villa-inner {
        grid-template-columns: 1fr;
        padding: 6rem 5vw;
        gap: 3rem;
    }
    .re-villa-img-col { height: 60vw; }
    .re-villa-specs { grid-template-columns: repeat(2,1fr); }
    .ri-stat-row { gap: 2rem; }
}

/* ══════════════════════════════════════════
/* ══════════════════════════════════════════
   BLOG SECTION
══════════════════════════════════════════ */
.blog-section {
    padding: 6rem 6vw;
    background: #fff;
}
.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.blog-header .section-title { margin: .5rem 0 0; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.1); }
.blog-img {
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-category {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(196,163,90,.9);
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .8rem;
    border-radius: 20px;
}
.blog-body { padding: 1.5rem; }
.blog-date { font-size: .75rem; color: #94a3b8; }
.blog-title {
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: #1e293b;
    margin: .5rem 0 .75rem;
    line-height: 1.4;
}
.blog-summary { font-size: .875rem; color: #64748b; line-height: 1.6; margin-bottom: 1rem; }
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    color: #c4a35a;
    text-decoration: none;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: gap .2s;
}
.blog-link:hover { gap: .7rem; }

/* ================================================================
   ÇEREZ ONAYI — BAR + MODAL
   ================================================================ */
@keyframes ckBarIn  { from { transform:translateY(100%); opacity:0 } to { transform:translateY(0); opacity:1 } }
@keyframes ckFadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes ckModalUp{ from { opacity:0; transform:translateY(32px) scale(.98) } to { opacity:1; transform:none } }

/* ── BAR ─────────────────────────────────────────── */
.ck-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
    background: #0a1f35;
    border-top: 1px solid rgba(196,163,90,0.22);
    box-shadow: 0 -8px 40px rgba(2,13,26,0.55);
    display: none;
    padding: 1.5rem 2.5rem;
}
.ck-bar.ck-bar-show {
    display: block;
    animation: ckBarIn 0.45s cubic-bezier(0.23,1,0.32,1) forwards;
}
.ck-bar-inner {
    max-width: 1300px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
}
.ck-bar-left { display: flex; align-items: flex-start; gap: 1.1rem; flex: 1; min-width: 0; }
.ck-bar-icon { color: #c4a35a; font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.ck-bar-text { display: flex; flex-direction: column; gap: 0.3rem; }
.ck-bar-heading { margin: 0; font-size: 1rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.ck-bar-desc { margin: 0; font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.65; }
.ck-bar-desc strong { color: rgba(255,255,255,0.75); }
.ck-bar-desc a { color: #c4a35a; text-decoration: underline; text-underline-offset: 3px; }
.ck-bar-btns { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; align-items: center; }
.ck-bar-btn {
    padding: 0.7rem 1.4rem; font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase; border-radius: 2px;
    cursor: pointer; white-space: nowrap; border: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.ck-bar-ghost   { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); }
.ck-bar-ghost:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.35); }
.ck-bar-outline { background: transparent; color: rgba(196,163,90,0.8); border: 1px solid rgba(196,163,90,0.35); }
.ck-bar-outline:hover { background: rgba(196,163,90,0.08); color: #c4a35a; border-color: #c4a35a; }
.ck-bar-gold    { background: #c4a35a; color: #020d1a; border: 1px solid #c4a35a; }
.ck-bar-gold:hover { background: #d4b570; border-color: #d4b570; }

/* ── OVERLAY ─────────────────────────────────────── */
.ck-overlay {
    position: fixed; inset: 0; z-index: 10001;
    background: rgba(2,13,26,0.7);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    display: none; align-items: center; justify-content: center;
    padding: 1rem;
}
.ck-overlay.ck-show {
    display: flex;
    animation: ckFadeIn 0.3s ease forwards;
}

/* ── MODAL ───────────────────────────────────────── */
.ck-modal {
    width: 100%; max-width: 620px;
    background: #0a1f35;
    border: 1px solid rgba(196,163,90,0.18);
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(2,13,26,0.65);
    display: flex; flex-direction: column;
    max-height: 90vh;
    animation: ckModalUp 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
}
.ck-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 1.6rem 1.1rem;
    border-bottom: 1px solid rgba(196,163,90,0.12);
    flex-shrink: 0;
}
.ck-modal-title-row { display: flex; align-items: center; gap: 0.9rem; }
.ck-modal-icon {
    width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
    background: rgba(196,163,90,0.1); border: 1px solid rgba(196,163,90,0.22);
    display: flex; align-items: center; justify-content: center;
    color: #c4a35a; font-size: 0.9rem;
}
.ck-title { font-family: var(--serif, Georgia,serif); font-size: 1.15rem; font-weight:400; color:#fff; margin:0 0 .15rem; }
.ck-subtitle { font-size: 0.68rem; color: rgba(196,163,90,0.75); letter-spacing: 0.12em; text-transform: uppercase; margin: 0; }
.ck-close {
    background: none; border: none; cursor: pointer; padding: 0.35rem;
    color: rgba(255,255,255,0.35); font-size: 1rem; line-height: 1;
    transition: color 0.2s;
}
.ck-close:hover { color: rgba(255,255,255,0.85); }

.ck-modal-body { padding: 1.2rem 1.6rem; overflow-y: auto; flex: 1; }
.ck-intro-text { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0 0 1.1rem; }
.ck-intro-text a { color: #c4a35a; text-decoration: underline; text-underline-offset: 3px; }

/* Category rows */
.ck-cat {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.9rem 0;
}
.ck-cat:last-child { border-bottom: none; }
.ck-cat-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.ck-cat-meta { display: flex; align-items: flex-start; gap: 0.8rem; flex: 1; min-width: 0; }
.ck-cat-ic {
    width: 30px; height: 30px; flex-shrink: 0; margin-top: 1px;
    background: rgba(196,163,90,0.08); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #c4a35a; font-size: 0.75rem;
}
.ck-cat-meta h4 { margin: 0 0 0.25rem; font-size: 0.85rem; font-weight: 600; color: #fff; }
.ck-cat-meta p  { margin: 0; font-size: 0.76rem; color: rgba(255,255,255,0.42); line-height: 1.6; }
.ck-always-on {
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(196,163,90,0.75); border: 1px solid rgba(196,163,90,0.25);
    padding: 0.22rem 0.6rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0; margin-top: 3px;
}

/* Toggle */
.ck-toggle { position: relative; width: 42px; height: 23px; flex-shrink: 0; cursor: pointer; margin-top: 4px; }
.ck-toggle input { opacity: 0; width: 0; height: 0; }
.ck-slider {
    position: absolute; inset: 0; border-radius: 23px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.28s, border-color 0.28s;
}
.ck-slider::before {
    content: ''; position: absolute;
    width: 15px; height: 15px; border-radius: 50%;
    left: 3px; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.35);
    transition: left 0.28s, background 0.28s;
}
.ck-toggle input:checked + .ck-slider { background: rgba(196,163,90,0.22); border-color: rgba(196,163,90,0.5); }
.ck-toggle input:checked + .ck-slider::before { left: 22px; background: #c4a35a; }

/* Footer buttons */
.ck-modal-footer {
    display: flex; gap: 0.6rem; flex-wrap: wrap;
    padding: 1rem 1.6rem 1.4rem;
    border-top: 1px solid rgba(196,163,90,0.1);
    background: rgba(2,13,26,0.3);
    flex-shrink: 0;
}
.ck-btn {
    flex: 1; min-width: 110px; padding: 0.65rem 0.8rem;
    font-size: 0.73rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
    border-radius: 2px; cursor: pointer; border: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
}
.ck-btn:hover { transform: translateY(-1px); }
.ck-btn-ghost   { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); }
.ck-btn-ghost:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.ck-btn-outline { background: transparent; color: rgba(196,163,90,0.8); border: 1px solid rgba(196,163,90,0.35); }
.ck-btn-outline:hover { background: rgba(196,163,90,0.08); color: #c4a35a; border-color: #c4a35a; }
.ck-btn-gold    { background: #c4a35a; color: #020d1a; border: 1px solid #c4a35a; }
.ck-btn-gold:hover { background: #d4b570; border-color: #d4b570; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 640px) {
    .ck-bar { padding: 1rem 1.2rem; }
    .ck-bar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .ck-bar-icon { font-size: 1.3rem; }
    .ck-bar-heading { font-size: 0.9rem; }
    .ck-bar-btns { width: 100%; }
    .ck-bar-btn { flex: 1; text-align: center; }
    .ck-overlay { align-items: flex-end; padding: 0; }
    .ck-modal { max-width: 100%; border-radius: 12px 12px 0 0; max-height: 88vh; }
    .ck-modal-footer { flex-direction: column; }
    .ck-btn { width: 100%; flex: none; min-width: 0; }
}
@media (max-width: 480px) { .page-gallery-grid { grid-template-columns: 1fr; gap: 0.4rem; } }
