/* ══════════════════════════════════════════
   main.css — Woiss Mobili
   Font: Montserrat 400 / 600
   ══════════════════════════════════════════ */

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

:root {
  --black: #111111;
  --white: #fafaf8;
  --gold:  #c9a96e;
  --cream: #f5f0eb;
  --mid:   #666666;
  --border:#e4e0db;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ══════════════════════
   TOP BAR
══════════════════════ */
.topbar {
  background: white;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
  z-index: 1001;
}

.topbar__lang { display: flex; align-items: center; gap: 6px; }
.topbar__lang a {
  color: black;
  text-decoration: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.topbar__lang a.active { color: black; }
.topbar__lang a:hover  { opacity: .7; }
.topbar__lang span     { color: #333; font-size: 10px; }

.topbar__social { display: flex; align-items: center; gap: 20px; }
.topbar__social a {
  color: black;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.topbar__social a:hover { opacity: .6; }
.topbar__social svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

/* ══════════════════════
   NAVBAR
══════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }

.navbar__logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
}

/* ── Desktop nav list ── */
.navbar__nav {
  display: flex;
  align-items: center;
  list-style: none;
  height: 100%;
}

/* ── Mobile header satırı: varsayılan GIZLI ── */
.mobile-nav-header {
  display: none;
}

/* ── Nav item ── */
.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a,
.nav-item > button {
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.nav-item > a:hover,
.nav-item > button:hover { opacity: .5; }

/* Chevron */
.chev {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform .2s;
  flex-shrink: 0;
}
.nav-item:hover .chev { transform: rotate(-135deg); margin-top: 2px; }

/* ── Dropdown (desktop) ── */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 999;
  min-width: 180px;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown--mega {
  min-width: 680px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  left: 50%;
  transform: translateX(-50%) translateY(6px);
}
.nav-item:hover .dropdown--mega {
  transform: translateX(-50%) translateY(0);
}

.dropdown--mega-2 {
  min-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  left: 0;
  transform: translateY(6px);
}
.nav-item:hover .dropdown--mega-2 {
  transform: translateY(0);
}

.dropdown__col {
  padding: 24px 20px;
  
}
.dropdown__col:last-child { border-right: none; }

.dropdown__heading {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 12px;
  padding-bottom: 8px;
}

.dropdown__list { list-style: none; }
.dropdown__list li a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  
  color: var(--mid);
  text-decoration: none;
  transition: opacity .2s;
}
.dropdown__list li a:hover { opacity: .5; }

.dropdown--simple { padding: 8px 0; }
.dropdown--simple a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;

  color: var(--mid);
  text-decoration: none;
  transition: opacity .2s;
}
.dropdown--simple a:hover { opacity: .5; }

/* ── Actions ── */
.navbar__actions { display: flex; align-items: center; gap: 16px; }

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--black);
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.btn-icon:hover { opacity: .5; }
.btn-icon svg { width: 17px; height: 17px; display: block; }

/* ── Mobile burger ── */
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all .25s;
}
.navbar__burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.active span:nth-child(2) { opacity: 0; }
.navbar__burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════
   MOBİL MENÜ  ≤1080px
══════════════════════ */
@media (max-width: 1080px) {
  .topbar { padding: 0 20px; justify-content: center;}
  .topbar__social { display: none; }
  .navbar { padding: 0 20px; }

  .navbar__nav    { display: none; }
  .navbar__burger { display: flex; }

  /* ── Tam ekran panel ── */
  .navbar__nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100dvh;
    background: #ffffff;
    z-index: 2000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    overscroll-behavior: contain;
  }

  /* ── Mobile header (siyah bar + kapat butonu) ── */
  .mobile-nav-header { display: none; }

  .navbar__nav.open .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 150px;
    min-height: 150px;
    flex-shrink: 0;
    background: #111111;
    border-bottom: 1px solid #222;
  }

  .navbar__nav.open .mobile-nav-header .navbar__logo {
    color: #ffffff;
    font-size: 16px;
  }

  .mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: #ffffff;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    transition: opacity .2s;
  }
  .mobile-close:hover { opacity: .6; }

  /* ── Her nav item dikey, tam genişlik ── */
  .nav-item {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid #e8e8e8;
    /* overflow: hidden KALDIRILDI — dropdown içeriği kesiliyordu */
  }

  .nav-item > a,
  .nav-item > button {
    width: 100%;
    height: 52px;
    padding: 0 20px;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #111111;
    background: #ffffff;
    transition: background .2s, color .2s, opacity .2s;
  }

  /* Açık item: siyah zemin beyaz yazı */
  .nav-item.open-mobile > button {
    background: #111111;
    color: #ffffff;
  }
  .nav-item.open-mobile > button .chev {
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    transform: rotate(-135deg);
    margin-top: 2px;
  }

  /* ── Dropdown: desktop kurallarını tamamen sıfırla ── */
  .dropdown {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    grid-template-columns: unset !important;
    background: #f5f5f5;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e0e0e0;
  }

  /* Açık accordion: dropdown göster */
  .nav-item.open-mobile > .dropdown {
    display: block !important;
  }

  /* Col'lar: dikey, tam genişlik */
  .dropdown__col {
    display: block !important;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 14px 20px;
    background: #f5f5f5;
  }
  .dropdown__col:last-child { border-bottom: none; }

  .dropdown__heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #000000;
    padding-bottom: 8px;
    margin-bottom: 10px;
  }

  .dropdown__list { list-style: none; }
  .dropdown__list li a {
    display: block;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    transition: opacity .2s;
  }
  .dropdown__list li a:hover { opacity: .5; }

  /* Simple dropdown */
  .dropdown--simple { padding: 0 !important; }
  .dropdown--simple a {
    display: block;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: opacity .2s;
  }
  .dropdown--simple a:last-child { border-bottom: none; }
  .dropdown--simple a:hover { opacity: .5; }
}

@media (max-width: 480px) {
  .topbar { padding: 0 16px; }
  .navbar  { padding: 0 16px; }
}

/* ══════════════════════
   SEARCH OVERLAY
══════════════════════ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  padding: 20px;
}
.search-overlay.active { opacity: 1; visibility: visible; }

.search-overlay__close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  color: #555;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: opacity .2s;
}
.search-overlay__close:hover { opacity: .6; }

.search-overlay__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 28px;
}

.search-overlay__form {
  width: min(600px, 100%);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #2a2a2a;
  padding-bottom: 10px;
}

.search-overlay__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 1px;
}
.search-overlay__input::placeholder { color: #2a2a2a; }

.search-overlay__submit {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.search-overlay__submit:hover { opacity: .7; }
.search-overlay__submit svg { width: 22px; height: 22px; }

.search-overlay__hint {
  margin-top: 20px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #333;
  text-transform: uppercase;
}

/* ══════════════════════
   HERO SLIDER
══════════════════════ */
.slider {
  position: relative;
  width: 100%;
  height: calc(100svh - 38px - var(--nav-h));
  min-height: 480px;
  overflow: hidden;
  background: #111;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform .85s cubic-bezier(.77,0,.175,1);
  will-change: transform;
}

.slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }

.slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 7s ease;
  transform: scale(1.04);
}
.slide.is-active .slide__bg { transform: scale(1); }

.slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
}

.slide__content {
  position: absolute;
  left: clamp(20px, 7vw, 80px);
  bottom: clamp(60px, 12vh, 120px);
  color: var(--white);
  max-width: min(500px, 85vw);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s .3s, transform .6s .3s;
}
.slide.is-active .slide__content { opacity: 1; transform: translateY(0); }

.slide__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 14px;
  display: block;
}

.slide__title {
  font-size: clamp(28px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.slide__desc {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
}

.slide__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.slide__btn:hover { opacity: .7; }
.slide__btn svg { width: 13px; height: 13px; flex-shrink: 0; }

.slider__arrows {
  position: absolute;
  right: clamp(16px, 4vw, 48px);
  bottom: clamp(60px, 12vh, 120px);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider__arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.3);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
  backdrop-filter: blur(4px);
}
.slider__arrow:hover { opacity: .6; }
.slider__arrow svg { width: 16px; height: 16px; }

.slider__dots {
  position: absolute;
  bottom: clamp(28px, 4vh, 36px);
  left: clamp(20px, 7vw, 80px);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.slider__dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}
.slider__dot.active { background: white; width: 44px; }

.slider__progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: white;
  width: 0;
  z-index: 10;
}

/* ══════════════════════
   ROOMS SECTION
══════════════════════ */
.rooms { background: var(--white); }

.rooms__header {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 24px clamp(32px, 5vw, 64px);
}
.rooms__header-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 14px;
  display: block;
}
.rooms__header-title {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1.2;
}

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

.room-row__image {
  position: relative;
  overflow: hidden;
  min-height: clamp(260px, 40vw, 560px);
}
.room-row__image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.room-row__num {
  position: absolute;
  top: 24px; left: 24px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

.room-row__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 6vw, 72px);
  background: var(--white);
}


.room-row__tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: black;
  margin-bottom: 16px;
}
.room-row__title {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .5px;
  margin-bottom: 18px;
  color: var(--black);
}
.room-row__desc {
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 32px;
}
.room-row__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
  width: fit-content;
  transition: opacity .2s;
}
.room-row__btn:hover { opacity: .5; }
.room-row__btn svg { width: 12px; height: 12px; flex-shrink: 0; }

.room-row--reverse .room-row__image { order: 2; }
.room-row--reverse .room-row__content { order: 1; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .18s; }
.reveal-d3 { transition-delay: .3s; }

@media (max-width: 768px) {
  .room-row { grid-template-columns: 1fr; }
  .room-row__image { min-height: 260px; order: 0 !important; }
  .room-row__content { order: 0 !important; padding: 36px 20px; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: #111111;
  color: #ffffff;
  padding: 64px 0 0;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer__logo-row { margin-bottom: 56px; }

.footer__logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: opacity .2s;
}
.footer__logo:hover { opacity: .6; }

.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.8fr;
  gap: 40px 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #222;
}

.footer__heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .2s;
}
.footer__list a:hover { opacity: .6; }

.footer__col--right { display: flex; flex-direction: column; gap: 40px; }

.footer__address { display: flex; flex-direction: column; gap: 8px; }
.footer__address-city {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}
.footer__address-line {
  font-size: 12px;
  font-weight: 400;
  color: #888;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity .2s;
}
.footer__address-line:hover { opacity: .6; }

.footer__newsletter-form { display: flex; margin-top: 14px; }
.footer__newsletter-input {
  flex: 1;
  background: transparent;
  border: 1px solid #333;
  border-right: none;
  padding: 0 14px;
  height: 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
  outline: none;
  letter-spacing: .5px;
  transition: border-color .2s;
}
.footer__newsletter-input::placeholder { color: #444; }
.footer__newsletter-input:focus { border-color: #555; }

.footer__newsletter-btn {
  background: #ffffff;
  color: #111111;
  border: none;
  padding: 0 18px;
  height: 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity .2s;
}
.footer__newsletter-btn:hover { opacity: .75; }

.footer__newsletter-msg {
  font-size: 10px;
  font-weight: 400;
  color: #555;
  margin-top: 8px;
  min-height: 16px;
  letter-spacing: .5px;
}
.footer__newsletter-msg--ok { color: #8aaa7a; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 28px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__social { display: flex; align-items: center; gap: 20px; }
.footer__social a {
  color: #666;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.footer__social a:hover { opacity: .6; }
.footer__social svg { width: 18px; height: 18px; display: block; }

.footer__copy {
  font-size: 10px;
  font-weight: 400;
  color: #444;
  letter-spacing: .5px;
}
.footer__copy a { color: #555; text-decoration: none; transition: opacity .2s; }
.footer__copy a:hover { opacity: .6; }

/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  z-index: 8888;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-banner--show { transform: translateY(0); }

.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text p {
  font-size: 11px;
  font-weight: 400;
  color: #888;
  line-height: 1.7;
  letter-spacing: .3px;
}
.cookie-banner__text a {
  color: #aaa;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}
.cookie-banner__text a:hover { opacity: .6; }

.cookie-banner__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.cookie-banner__btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  /* Mobilde kolay tıklansın */
  min-height: 40px;
}
.cookie-banner__btn:hover { opacity: .7; }
.cookie-banner__btn--primary  { background: #ffffff; color: #111111; }
.cookie-banner__btn--secondary { background: transparent; color: #666; border: 1px solid #333; }

/* ── RESPONSIVE: FOOTER + COOKIE ── */
@media (max-width: 1024px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer__col--right { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .footer__newsletter, .footer__address { flex: 1; min-width: 220px; }
}

@media (max-width: 640px) {
  .footer__inner { padding: 0 20px; }
  .footer__cols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__col--right { flex-direction: column; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer__newsletter-form { flex-direction: column; gap: 8px; }
  .footer__newsletter-input { border-right: 1px solid #333; }
  .footer__newsletter-btn { width: 100%; height: 40px; }
  .cookie-banner { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

@media (max-width: 400px) {
  .footer { padding: 48px 0 0; }
  .footer__logo-row { margin-bottom: 40px; }
}


  .cw-rooms { background: #111; width: 100%; }
  .cw-rooms__header { text-align: center; padding: 64px 24px 48px; background: #fafaf8; }
  .cw-rooms__header-tag { font-family: 'Montserrat', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #111; display: block; margin-bottom: 12px; }
  .cw-rooms__header-title { font-family: 'Montserrat', sans-serif; font-size: clamp(22px, 3vw, 42px); font-weight: 600; letter-spacing: 1px; color: #111; }

  .cw-panels { display: flex; width: 100%; height: 520px; overflow: hidden; }

  .cw-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .cw-panel:last-child { border-right: none; }
  .cw-panel:hover { flex: 2.8; }

  .cw-panel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .cw-panel:hover .cw-panel__bg { transform: scale(1.06); }

  .cw-panel__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: background 0.4s;
  }
  .cw-panel:hover .cw-panel__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.08) 100%);
  }

  .cw-panel__num {
    position: absolute;
    top: 24px;
    left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
  }
  .cw-panel:hover .cw-panel__num { color: rgba(255,255,255,0.6); }

  .cw-panel__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    transform: translateY(0);
  }

  .cw-panel__tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a96e;
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
  }
  .cw-panel:hover .cw-panel__tag { opacity: 1; transform: translateY(0); }

  .cw-panel__title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s 0.17s, transform 0.35s 0.17s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cw-panel:hover .cw-panel__title { opacity: 1; transform: translateY(0); }

  .cw-panel__desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s 0.22s, transform 0.35s 0.22s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cw-panel:hover .cw-panel__desc { opacity: 1; transform: translateY(0); }

  .cw-panel__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s 0.28s, transform 0.35s 0.28s;
  }
  .cw-panel:hover .cw-panel__btn { opacity: 1; transform: translateY(0); }

  .cw-panel__label {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: translateX(-50%) rotate(180deg);
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .cw-panel:hover .cw-panel__label { opacity: 0; }

  @media (max-width: 600px) {
    .cw-panels { flex-direction: column; height: auto; }
    .cw-panel { flex: none !important; height: 220px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .cw-panel:last-child { border-bottom: none; }
    .cw-panel__tag, .cw-panel__title, .cw-panel__desc, .cw-panel__btn { opacity: 1; transform: translateY(0); }
    .cw-panel__label { display: none; }
    .cw-panel__title { white-space: normal; }
  }
  
  /* ══════════════════════════════════════════
   custom-woisss — ROOMS PANEL
══════════════════════════════════════════ */
.custom-woisss-panels {
  display: flex;
  width: 100%;
  height: clamp(380px, 50vw, 620px);
  overflow: hidden;
  background: #111;
}

.custom-woisss-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.custom-woisss-panel:last-child { border-right: none; }

.custom-woisss-panel__bg,
.custom-woisss-panel__bg-hover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.custom-woisss-panel__bg {
  opacity: 1;
  transform: scale(1);
}

.custom-woisss-panel__bg-hover {
  opacity: 0;
  transform: scale(1.05);
}

.custom-woisss-panel:hover .custom-woisss-panel__bg {
  opacity: 0;
  transform: scale(1.05);
}

.custom-woisss-panel:hover .custom-woisss-panel__bg-hover {
  opacity: 1;
  transform: scale(1);
}

.custom-woisss-panel__link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

@media (max-width: 768px) {
  .custom-woisss-panels {
    flex-direction: column;
    height: auto;
  }
  .custom-woisss-panel {
    height: 220px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .custom-woisss-panel:last-child { border-bottom: none; }
}

/* ── Topbar kaldırıldı, dil linkleri navbar'a taşındı ── */
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.navbar__lang a {
  color: var(--black);
  text-decoration: none;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: opacity .2s;
}
.navbar__lang a.active { font-weight: 600; }
.navbar__lang a:hover  { opacity: .5; }
.navbar__lang span     { color: #ccc; font-size: 10px; }

/* Slider yüksekliğini güncelle — topbar artık yok */
.slider {
  height: calc(100svh - var(--nav-h));
}