/* ============================================================
   KULE HOTEL & SPA — Tasarım Sistemi
   Modern, bağımlılıksız CSS. Cappa esintili, Kule markasına özel.
   ============================================================ */

/* ---------- Tokenlar ---------- */
:root {
  --gold: #bea068;
  --gold-deep: #8a6f42;
  --gold-soft: #d4bd93;
  --ink: #1d2022;
  --charcoal: #3c3f40;
  --cream: #f8f5f0;
  --cream-deep: #f1ece3;
  --paper: #ffffff;
  --body: #5d6266;
  --muted: #a9adb0;
  --hairline: #e9e3d8;
  --line: #ececec;

  --font-serif: 'Gilda Display', 'Times New Roman', serif;
  --font-sans: 'Barlow', 'Helvetica Neue', sans-serif;
  --font-cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --section-y: clamp(64px, 9vw, 120px);
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --ease: cubic-bezier(.25, .8, .25, 1);
  --shadow-soft: 0 18px 50px -18px rgba(29, 32, 34, .22);
}

/* ---------- Reset / Taban ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--gold); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 .55em;
}
p { margin: 0 0 1em; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Tipografi yardımcıları ---------- */
.eyebrow {
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin-bottom: .5em;
}
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.09rem; }

.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: var(--muted); }
.on-dark .eyebrow { color: var(--gold); }

/* Yıldız dizisi */
.stars { display: inline-flex; gap: 5px; margin-bottom: 14px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; fill: currentColor; }

/* ---------- Bölümler ---------- */
.section { padding-block: var(--section-y); }
.section.tight { padding-block: calc(var(--section-y) * .62); }
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); }

/* ---------- Butonlar ---------- */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 0;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color .4s var(--ease);
  background: transparent;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  z-index: -1;
  transition: width .45s var(--ease);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold::after { background: var(--ink); }
.btn-gold:hover { color: #fff; }
.btn-gold:hover::after { width: 100%; }
.btn-outline { color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.btn-outline::after { background: #fff; }
.btn-outline:hover { color: var(--ink); }
.btn-outline:hover::after { width: 100%; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark::after { background: var(--gold); }
.btn-dark:hover { color: #fff; }
.btn-dark:hover::after { width: 100%; }

.text-link {
  font-family: var(--font-cond);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.text-link .arr { transition: transform .3s var(--ease); }
.text-link:hover .arr { transform: translateX(6px); }

/* ---------- Üst bar ---------- */
.topbar {
  background: var(--ink);
  color: #cfcabf;
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: .08em;
  position: relative;
  z-index: 60;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
  padding-block: 4px;
}
.topbar a { color: #cfcabf; }
.topbar a:hover { color: var(--gold); }
.topbar .tb-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar svg { width: 13px; height: 13px; fill: var(--gold); vertical-align: -1px; margin-right: 6px; }
.topbar .lang a.active { color: #fff; border-bottom: 1px solid var(--gold); }
@media (max-width: 767px) { .topbar .tb-addr { display: none; } }
@media (max-width: 560px) {
  .topbar { font-size: 13px; }
  .topbar .tb-p2 { display: none; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: absolute;
  inset-inline: 0;
  top: 42px;
  z-index: 50;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}
.navbar .brand { flex-shrink: 0; }
.navbar .brand img { width: clamp(150px, 16vw, 190px); display: block; }
.navbar .brand .logo-dark { display: none; }
.nav-menu { display: flex; align-items: center; gap: clamp(12px, 1.5vw, 24px); }
.nav-menu > li { position: relative; }
.nav-menu a {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 2px;
  white-space: nowrap;
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--gold); }

/* Alt menü */
.has-sub > a .caret { display: inline-block; margin-left: 5px; transition: transform .3s; }
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: var(--ink);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .3s var(--ease);
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu a { display: block; padding: 9px 22px; color: #d8d3c8; letter-spacing: .1em; }
.submenu a:hover { color: var(--gold); padding-left: 27px; }

/* Sabitlenmiş durum */
.navbar.is-fixed {
  position: fixed;
  top: 0;
  /* backdrop-filter yok: filtre, içindeki position:fixed mobil menüyü kapana kıstırıyor */
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 10px 30px -12px rgba(29,32,34,.18);
  animation: navDown .45s var(--ease);
}
.nav-open .navbar { z-index: 70; animation: none; }
@keyframes navDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.navbar.is-fixed .container { min-height: 76px; }
.navbar.is-fixed .nav-menu a { color: var(--charcoal); }
.navbar.is-fixed .nav-menu > li > a:hover,
.navbar.is-fixed .nav-menu > li > a.active { color: var(--gold-deep); }
.navbar.is-fixed .submenu { background: #fff; box-shadow: var(--shadow-soft); }
.navbar.is-fixed .submenu a { color: var(--charcoal); }
.navbar.is-fixed .brand .logo-light { display: none; }
.navbar.is-fixed .brand .logo-dark { display: block; }
.navbar.is-fixed .nav-cta.btn-outline { color: var(--ink); box-shadow: inset 0 0 0 1px var(--gold); }
.navbar.is-fixed .nav-cta.btn-outline::after { background: var(--gold); }
.navbar.is-fixed .nav-cta.btn-outline:hover { color: #fff; }

.nav-cta { padding: 11px 24px !important; font-size: 14px; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 70;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: all .35s var(--ease);
}
.navbar.is-fixed .nav-toggle span, .nav-open .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease);
    z-index: 60;
    overflow-y: auto;
    padding: 90px 0 40px;
  }
  .nav-open .nav-menu { opacity: 1; visibility: visible; }
  .nav-menu a { color: var(--charcoal) !important; font-size: 20px; }
  .nav-open .nav-menu .nav-cta {
    display: inline-block;
    margin-top: 18px;
    color: var(--ink) !important;
    box-shadow: inset 0 0 0 1px var(--gold);
  }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    text-align: center;
    display: none;
    padding: 0;
  }
  .has-sub.open .submenu { display: block; }
  .submenu a { font-size: 15px !important; color: var(--body) !important; }
  .nav-open .brand { position: relative; z-index: 70; }
  .nav-open .brand .logo-light { display: none; }
  .nav-open .brand .logo-dark { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Sağ kenar öğeleri: slider noktaları ve hemen solundaki sertifika rozeti.
     Ölçüler tek yerden yönetilir, birbirlerinden kopmazlar. */
  --hero-edge: 30px;   /* sağ kenar boşluğu */
  --hero-dot: 10px;    /* nokta çapı */
  --hero-gap: 18px;    /* rozet ile noktalar arası boşluk */
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ink);
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  /* Zoom (Ken Burns) efekti kaldırıldı: yalnızca yumuşak solma. */
  transition: opacity 1.6s var(--ease);
}
.hero-slide.active { opacity: 1; }

/* Telefonda dikey görsel — slaytta "Mobil görsel" doldurulmuşsa devreye girer.
   Boşsa `--bg-mobile` tanımsız kalır, kural geçersiz sayılır ve alttaki yatay
   görsel görünmeye devam eder. */
@media (max-width: 767px) {
  .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bg-mobile);
    background-size: cover;
    background-position: center;
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,22,24,.55) 0%, rgba(20,22,24,.18) 45%, rgba(20,22,24,.78) 100%);
}
.hero-inner { width: 100%; padding-bottom: clamp(90px, 14vh, 150px); text-align: center; }
/* Slider metin bloğu site genelinin %56'sı boyutunda tutulur (iki kez %25
   küçültüldü): görsel öne çıksın, yazı ekranın büyük bölümünü kaplamasın.
   Butonlar da aynı ölçekte küçültülür; dolgu oranlı azaltılır ki buton
   tıklanabilir kalsın ama hantal görünmesin. */
/* Üst başlık ("Kule Hotel & Spa Gaziantep"): altın yerine beyaz, %25 büyük. */
.hero .eyebrow { color: #fff; font-size: 10.55px; }
.hero h1 {
  color: #fff;
  font-size: clamp(1.2375rem, 3.15vw, 2.3625rem);
  letter-spacing: .06em;
  max-width: 900px;
  margin-inline: auto;
}
/* Alt metin %25 büyütüldü — uzun cümle daha rahat okunsun. */
.hero .hero-sub { color: #e6e1d6; max-width: 560px; margin: 0 auto 30px; font-size: .7383rem; }
.hero-cta { display: flex; gap: 10.5px; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn { font-size: 11.25px; padding: 11.25px 25.5px; }

/* Slayt değişirken metin blokları yumuşakça kaybolup yenisiyle döner */
.hero-anim { transition: opacity .42s var(--ease); }
.hero-anim.is-swapping { opacity: 0; }
.hero-anim > * { opacity: 0; transform: translateY(28px); }
.hero.is-ready .hero-anim > * { animation: heroUp .9s var(--ease) forwards; }
.hero.is-ready .hero-anim > *:nth-child(1) { animation-delay: .25s; }
.hero.is-ready .hero-anim > *:nth-child(2) { animation-delay: .45s; }
.hero.is-ready .hero-anim > *:nth-child(3) { animation-delay: .65s; }
.hero.is-ready .hero-anim > *:nth-child(4) { animation-delay: .85s; }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

.hero-dots {
  position: absolute;
  right: var(--hero-edge);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
  z-index: 5;
}
.hero-dots button {
  width: var(--hero-dot); height: var(--hero-dot);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.hero-dots button.active { background: var(--gold); border-color: var(--gold); transform: scale(1.25); }
@media (max-width: 767px) { .hero { --hero-edge: 14px; } }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  opacity: .8;
  animation: cueBounce 2.2s infinite;
  z-index: 4;
}
.scroll-cue svg { width: 22px; height: 22px; fill: currentColor; }
@keyframes cueBounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* Hero rozeti (sertifika) */
.hero-badge {
  position: absolute;
  /* Slider noktalarının hemen solunda, onlarla aynı dikey merkezde. */
  top: 50%;
  right: calc(var(--hero-edge) + var(--hero-dot) + var(--hero-gap));
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
  font-family: var(--font-cond);
  letter-spacing: .18em;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  background: rgba(20,22,24,.4);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
  padding: 14px 16px;
  transition: all .3s var(--ease);
}
.hero-badge:hover { background: rgba(20,22,24,.65); color: var(--gold-soft); }
.hero-badge strong { display: block; color: var(--gold); font-size: 13px; letter-spacing: .24em; margin-top: 4px; }
@media (max-width: 991px) { .hero-badge { display: none; } }

/* ---------- Sayfa başlığı (alt sayfalar) ---------- */
.page-header {
  position: relative;
  min-height: clamp(340px, 52vh, 520px);
  display: grid;
  align-items: end;
  color: #fff;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,22,24,.62) 0%, rgba(20,22,24,.28) 50%, rgba(20,22,24,.72) 100%);
}
.page-header .container { padding-bottom: clamp(40px, 7vh, 70px); }
.page-header h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: .2em; }
.page-header .eyebrow { color: var(--gold-soft); margin-bottom: 8px; }
.crumbs { font-family: var(--font-cond); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: #cfc9bd; }
.crumbs a { color: #cfc9bd; }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { margin-inline: 8px; color: var(--gold); }

/* ---------- Hakkında / split ---------- */
.split { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split .content .btn { margin-top: 10px; }

.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-media figure { margin: 0; overflow: hidden; }
.about-media img { aspect-ratio: 3 / 4; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease); }
.about-media figure:hover img { transform: scale(1.07); }
.about-media figure:first-child { margin-top: 48px; }

/* İstatistik bandı */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(20px, 4vw, 40px);
  text-align: center;
}
.stats .num {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: var(--gold);
  line-height: 1;
}
.stats .num sub { font-size: .45em; vertical-align: baseline; }
.stats .label {
  font-family: var(--font-cond);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 13px;
  color: #cfc9bd;
  margin-top: 10px;
}

/* ---------- Oda kartları ---------- */
.cards { display: grid; gap: 30px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.room-card { position: relative; overflow: hidden; background: var(--ink); }
.room-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.room-card:hover img { transform: scale(1.08); filter: brightness(.62); }
.room-card .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18,20,22,.88) 100%);
}
.room-card .con {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 26px 26px 22px;
  color: #fff;
  transform: translateY(54px);
  transition: transform .55s var(--ease);
}
.room-card:hover .con { transform: translateY(0); }
.room-card .tag {
  font-family: var(--font-cond);
  letter-spacing: .3em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.room-card h3 { color: #fff; font-size: 1.45rem; margin: 6px 0 10px; }
.room-card .line {
  width: 56px; height: 1px;
  background: var(--gold);
  transition: width .55s var(--ease);
  margin-bottom: 14px;
}
.room-card:hover .line { width: 100%; }
.room-card .meta {
  display: flex;
  gap: 18px;
  font-family: var(--font-cond);
  font-size: 14px;
  letter-spacing: .1em;
  color: #d8d3c8;
  opacity: 0;
  transition: opacity .5s .12s;
}
.room-card:hover .meta { opacity: 1; }
.room-card .meta svg { width: 15px; height: 15px; fill: var(--gold); margin-right: 6px; vertical-align: -2px; }
.room-card > a { position: absolute; inset: 0; z-index: 2; }

/* Toplantı & davet salonu kartları — oda kartlarının yatay varyantı */
.halls-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .halls-grid { grid-template-columns: repeat(2, 1fr); } }
.hall-card img { aspect-ratio: 4 / 3; }
.hall-card h4 { font-family: var(--font-serif); font-weight: 400; color: #fff; font-size: 1.45rem; line-height: 1.22; margin: 6px 0 10px; }
.hall-card .meta span { display: inline-flex; align-items: center; gap: 8px; text-transform: uppercase; }
.hall-card .meta span::after { content: "→"; color: var(--gold); }
/* Sabit üst menü hedefin üstünü kapatmasın */
.section[id] { scroll-margin-top: 96px; }

/* ---------- 50/50 servis satırları ---------- */
.svc-row { display: grid; }
@media (min-width: 900px) {
  .svc-row { grid-template-columns: 1fr 1fr; }
  .svc-row.flip .svc-media { order: 2; }
}
.svc-media { position: relative; overflow: hidden; min-height: 320px; }
.svc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.svc-row:hover .svc-media img { transform: scale(1.06); }
.svc-body {
  background: var(--cream);
  display: grid;
  align-content: center;
  padding: clamp(36px, 6vw, 80px);
}
.svc-body.dark { background: var(--ink); }
.svc-body.dark h3 { color: #fff; }
.svc-body.dark p { color: var(--muted); }
.svc-body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.svc-body .btn { justify-self: start; margin-top: 16px; }

/* ---------- Olanak kartları ---------- */
.facilities { display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.facility {
  position: relative;
  border: 1px solid var(--hairline);
  padding: 34px 28px;
  overflow: hidden;
  background: #fff;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.facility .ico { color: var(--gold); margin-bottom: 18px; }
.facility .ico svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.1; }
.facility h3 { font-size: 1.3rem; }
.facility p { font-size: .95rem; margin: 0; }
.facility .ghost {
  position: absolute;
  right: -18px;
  bottom: -24px;
  opacity: .05;
  pointer-events: none;
}
.facility .ghost svg { width: 130px; height: 130px; fill: none; stroke: var(--ink); stroke-width: .8; }

/* ---------- Sinematik bant / CTA ---------- */
.band {
  position: relative;
  isolation: isolate;
  color: #fff;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}
@media (hover: none), (max-width: 991px) { .band { background-attachment: scroll; } }
.band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(18,20,22,.62); }
.band h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.band .quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: #efeade;
  max-width: 760px;
  margin: 0 auto 8px;
}
.band .phone-line { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--gold-soft); }

/* Tanıtım videosu — metnin yanındaki sütunu tam doldurur.
   `margin: 0`: tarayıcının varsayılan figure boşluğu sütunu içeri kaydırıyordu. */
.video-figure { position: relative; overflow: hidden; margin: 0; }
.video-figure video { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }

/* ---------- Galeri ---------- */
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.g-item { position: relative; overflow: hidden; cursor: zoom-in; border: 0; padding: 0; background: none; }
.g-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1s var(--ease), filter 1s var(--ease); }
.g-item:hover img { transform: scale(1.07); filter: brightness(.72); }
.g-item::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 200;
  color: #fff;
  opacity: 0;
  transition: opacity .4s;
  background: rgba(18,20,22,.25);
  font-family: var(--font-cond);
}
.g-item:hover::after { opacity: 1; }
.g-item.tall img { aspect-ratio: 3 / 4; }

/* Sekmeli galeri */
.tab-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.tab-bar button {
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--body);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.tab-bar button:hover { border-color: var(--gold); color: var(--gold-deep); }
.tab-bar button.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.on-dark .tab-bar button { border-color: #3a3e41; color: var(--muted); }
.on-dark .tab-bar button.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Menü (restaurant/cafe) — görsel ağırlıklı kartlar ---------- */
.menu-grid {
  display: grid;
  gap: clamp(16px, 2.2vw, 26px);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
@media (min-width: 1100px) { .menu-grid { grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); } }
.menu-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(190, 160, 104, .2);
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.menu-card:hover {
  border-color: rgba(190, 160, 104, .58);
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -22px rgba(0, 0, 0, .75);
}
.menu-card .m-shot { display: block; width: 100%; flex: none; }
.menu-card .m-shot img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.menu-card .m-shot.empty {
  display: block;
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, rgba(190,160,104,.08) 0 12px, transparent 12px 24px);
}
.menu-card .m-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px 18px;
  margin-top: auto;
  border-top: 1px solid rgba(190, 160, 104, .16);
}
.menu-card .m-name { font-family: var(--font-serif); font-size: 1.04rem; line-height: 1.32; color: #fff; }
.menu-card .m-sub { display: block; font-family: var(--font-cond); font-size: 12.5px; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }
.menu-card .m-price {
  font-family: var(--font-cond);
  font-size: 1.12rem;
  line-height: 1.32;
  letter-spacing: .06em;
  color: var(--gold);
  white-space: nowrap;
}
.menu-note { text-align: center; font-family: var(--font-cond); letter-spacing: .14em; text-transform: uppercase; font-size: 13px; color: var(--muted); margin-top: 34px; }

/* ---------- Oda detay ---------- */
.room-hero { display: grid; gap: 14px; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; }
.room-hero .g-item:first-child { grid-column: span 2; grid-row: span 2; }
.room-hero .g-item img { height: 100%; aspect-ratio: auto; }
@media (max-width: 767px) {
  .room-hero { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .room-hero .g-item:first-child { grid-column: span 2; }
}
.room-layout { display: grid; gap: clamp(32px, 5vw, 72px); }
@media (min-width: 992px) { .room-layout { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.amenity-box { background: var(--cream); padding: 32px 30px; position: sticky; top: 100px; }
.amenity-box h3 { font-size: 1.3rem; margin-bottom: 18px; }
.amenity-box ul { display: grid; gap: 10px; }
.amenity-box li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.amenity-box li svg { width: 15px; height: 15px; fill: var(--gold); flex-shrink: 0; margin-top: 5px; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.spec-chips span {
  font-family: var(--font-cond);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 13px;
  border: 1px solid var(--hairline);
  color: var(--charcoal);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.spec-chips svg { width: 15px; height: 15px; fill: var(--gold); }
.feature-list { columns: 2; gap: 34px; margin-bottom: 8px; }
@media (max-width: 700px) { .feature-list { columns: 1; } }
.feature-list li { break-inside: avoid; display: flex; gap: 10px; padding-block: 6px; font-size: .95rem; }
.feature-list li svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; margin-top: 6px; }

/* ---------- Akordiyon ---------- */
.accordion { border-top: 1px solid var(--hairline); }
.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 4px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
  text-align: left;
}
.acc-head .plus { font-size: 1.5rem; color: var(--gold); transition: transform .35s var(--ease); font-family: var(--font-cond); }
.acc-item.open .acc-head .plus { transform: rotate(45deg); }
.acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > div { overflow: hidden; }
.acc-body p { padding: 0 4px 20px; margin: 0; }

/* ---------- İletişim ---------- */
.contact-grid { display: grid; gap: clamp(32px, 5vw, 64px); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }
.c-item { display: flex; gap: 18px; align-items: flex-start; padding-block: 14px; }
.c-item .ico { color: var(--gold); }
.c-item .ico svg { width: 30px; height: 30px; fill: currentColor; }
.c-item h3 { margin-bottom: 2px; font-size: 1.1rem; }
.c-item p, .c-item a { margin: 0; font-size: .98rem; }
.c-item a.big { font-family: var(--font-serif); font-size: 1.35rem; color: var(--ink); }
.c-item a.big:hover { color: var(--gold-deep); }
/* İletişim sütununun altındaki yol tarifi butonu */
.c-actions { margin: 20px 0 0; }

.form-grid { display: grid; gap: 22px; }
.field label {
  display: block;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-msg { display: none; background: var(--cream); border-left: 3px solid var(--gold); padding: 14px 18px; }
.form-msg.show { display: block; animation: fadeUp .4s var(--ease); }

.map-wrap { line-height: 0; filter: grayscale(100%); transition: filter .6s var(--ease); }
.map-wrap:hover { filter: grayscale(0); }
.map-wrap iframe { width: 100%; height: 440px; border: 0; }

/* ---------- Mesafeler ---------- */
.dist-list { display: grid; gap: 0; }
.dist-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding-block: 13px;
  border-bottom: 1px solid var(--hairline);
}
.dist-item .d-name { color: var(--charcoal); }
.dist-item .d-time {
  font-family: var(--font-cond);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold-deep);
  white-space: nowrap;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--muted); }
.footer-top { padding-block: clamp(56px, 8vw, 90px) clamp(36px, 5vw, 56px); }
.footer-grid { display: grid; gap: clamp(32px, 5vw, 60px); }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1.2fr; } }
.footer .f-logo img { width: 190px; margin-bottom: 20px; }
.footer p { font-size: .95rem; }
.footer h3 {
  color: #fff;
  font-family: var(--font-cond);
  font-size: 15px;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.f-links { display: grid; gap: 10px; }
.f-links a {
  color: var(--muted);
  font-family: var(--font-cond);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  transition: all .3s var(--ease);
}
.f-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.f-links a:hover { color: var(--gold); padding-left: 18px; }
.f-links a:hover::before { width: 12px; }
.f-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .95rem; align-items: flex-start; }
.f-contact svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 5px; }
.f-contact a { color: var(--muted); }
.f-contact a:hover { color: var(--gold); }
.f-contact .f-phone { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 22px;
  font-family: var(--font-cond);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Lightbox ---------- */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1200px);
  max-height: 92vh;
  outline: none;
}
.lightbox::backdrop { background: rgba(12, 13, 14, .92); }
.lightbox img { max-width: min(92vw, 1200px); max-height: 82vh; width: auto; height: auto; margin-inline: auto; object-fit: contain; }
.lb-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cfc9bd;
  font-family: var(--font-cond);
  letter-spacing: .15em;
  padding: 12px 4px;
}
.lb-bar button {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 17px;
  transition: all .3s;
  display: inline-grid;
  place-items: center;
}
.lb-bar button:hover { background: var(--gold); border-color: var(--gold); }
.lb-nav { display: flex; gap: 10px; }

/* ---------- Scroll üste dön ---------- */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  background: rgba(255,255,255,.92);
  color: var(--gold-deep);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all .35s var(--ease);
  z-index: 40;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: #fff; }
.to-top svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Reveal animasyonları ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-anim, .hero-anim > * { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .hero-slide { transition: opacity .3s !important; }
}

/* ---------- Yardımcılar ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.center { text-align: center; }
.grid-2 { display: grid; gap: clamp(24px, 4vw, 48px); }
@media (min-width: 900px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose ul { list-style: none; margin-bottom: 1em; }
.prose ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.doc-list { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.doc-card {
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--hairline);
  padding: 18px 20px;
  color: var(--charcoal);
  transition: all .35s var(--ease);
  background: #fff;
}
.doc-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-soft); color: var(--ink); }
.doc-card svg { width: 26px; height: 26px; fill: none; stroke: var(--gold); stroke-width: 1.3; flex-shrink: 0; }
.doc-card span { font-size: .95rem; line-height: 1.4; }

/* ---------- Hakkımızda: ikinci üst başlık + imza satırı ---------- */
.eyebrow-sub {
  margin-top: -8px;
  font-size: 13px;
  letter-spacing: .26em;
  color: var(--muted);
}
.about-sign {
  font-family: var(--font-serif);
  font-size: 1.06rem;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 1.6em;
}
.on-dark .about-sign { color: #fff; }

/* ---------- QR sayfası ---------- */
.qr-body { background: var(--ink); min-height: 100vh; min-height: 100svh; display: grid; place-items: center; }
.qr-wrap { text-align: center; padding: 40px 24px; }
.qr-logo { margin: 0 auto 26px; width: min(240px, 70vw); }
.qr-hello { color: var(--muted); font-size: 1.05rem; margin-bottom: 36px; }
.qr-tiles { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); max-width: 520px; margin-inline: auto; }
.qr-tile {
  border: 1px solid rgba(190, 160, 104, .4);
  color: #fff;
  padding: 34px 20px;
  display: grid;
  gap: 14px;
  justify-items: center;
  font-family: var(--font-cond);
  font-size: 17px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
}
.qr-tile .ico svg { width: 46px; height: 46px; fill: none; stroke: var(--gold); stroke-width: 1.2; }
.qr-tile:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.qr-tile:hover .ico svg { stroke: var(--ink); }
