/* =====================================================================
   ZENOBIA KONAK — Tasarım Sistemi
   Palet: Mardin sarı kesme taşı + logonun altın/bronz degradesi
   Yazı:  Cinzel (başlık, logo eşi) · Cormorant Garamond (alt başlık/alıntı)
          Inter (gövde)
   İmza:  Süryani kemer maskeli görseller + altın degrade harf aralıklı
          büyük başlıklar + kesme taş desenli çekmece menü
   ===================================================================== */

:root {
  /* Renkler */
  --stone-950: #171310;
  --stone-900: #211b15;
  --stone-800: #2c251c;
  --stone-700: #3a3226;
  --stone-200: #e9e0cf;
  --stone-100: #f3ecdd;
  --stone-50:  #faf6ec;
  --gold:      #c2a165;
  --gold-deep: #8c6f45;
  --gold-soft: #dcc28e;
  --ink:       #241f18;
  --ink-soft:  #5c5344;
  --white:     #ffffff;
  --ok:        #3e7a4e;
  --err:       #a4432f;

  /* Degrade — logodaki bronz→altın geçişi */
  --grad-gold: linear-gradient(105deg, #8c6f45 0%, #c2a165 45%, #e8d5a4 60%, #c2a165 78%, #8c6f45 100%);

  /* Yazı */
  --f-display: 'Cinzel', serif;
  --f-serif:   'Cormorant Garamond', serif;
  --f-body:    'Inter', system-ui, sans-serif;

  /* Ölçüler */
  --container: 1200px;
  --radius:    6px;
  --arch:      160px 160px 6px 6px;   /* kemer maskesi */
  --shadow:    0 18px 50px -18px rgba(23, 19, 16, .35);
  --ease:      cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Sıfırlama ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  overflow-x: clip;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: min(var(--container), 92%); margin-inline: auto; }

/* ---------- Tipografi ---------- */
h1, h2, h3 { font-family: var(--f-display); font-weight: 600; line-height: 1.2; }
.display {
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--gold); }
.lead { font-family: var(--f-serif); font-size: 1.25rem; color: var(--ink-soft); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h1, .section-head h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: .1em; text-transform: uppercase; }

/* ---------- İkonlar ---------- */
.ico { width: 20px; height: 20px; stroke-width: 1.6; flex: none; }
.ico-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn-gold { background: var(--grad-gold); background-size: 200% 100%; color: var(--stone-950); }
.btn-gold:hover { background-position: 100% 0; transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(140, 111, 69, .8); }
.btn-line { border: 1px solid var(--gold); color: var(--gold-deep); }
.btn-line:hover { background: var(--gold); color: var(--stone-950); }
.btn-dark { background: var(--stone-900); color: var(--stone-100); }
.btn-dark:hover { background: var(--stone-800); }
.btn .ico { width: 16px; height: 16px; }

/* =====================================================================
   ÜST BAR + HEADER
   ===================================================================== */
.topbar {
  background: var(--stone-950);
  color: var(--stone-200);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar-in { display: flex; justify-content: space-between; align-items: center; min-height: 38px; gap: 16px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; opacity: .85; transition: opacity .2s; }
.topbar a:hover { opacity: 1; color: var(--gold-soft); }
.topbar .ico { width: 14px; height: 14px; }
.topbar-contact { display: flex; gap: 22px; }

.lang-switch { display: flex; gap: 2px; }
.lang-switch a {
  padding: 3px 8px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
}
.lang-switch a.active { background: var(--gold); color: var(--stone-950); opacity: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 246, 236, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(140, 111, 69, .18);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(23, 19, 16, .4); }
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }

.logo img { height: 46px; width: auto; }
.logo-text { font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .3em; }

.main-nav { display: flex; gap: clamp(12px, 1.6vw, 24px); }
.main-nav a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 8px 2px;
  position: relative;
  color: var(--ink);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.header-cta { white-space: nowrap; padding: 10px 20px; font-size: .7rem; letter-spacing: .16em; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}
.burger span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   ÇEKMECE MENÜ — soldan açılır, ekranı tam kaplamaz, kesme taş desenli
   ===================================================================== */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 19, 16, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  z-index: 98;
}
.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100dvh;
  width: min(82%, 350px);
  background:
    /* kesme taş derz deseni */
    linear-gradient(rgba(194, 161, 101, .06) 1px, transparent 1px) 0 0 / 100% 46px,
    linear-gradient(90deg, rgba(194, 161, 101, .06) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(90deg, rgba(194, 161, 101, .06) 1px, transparent 1px) 46px 46px / 92px 92px,
    var(--stone-950);
  color: var(--stone-100);
  transform: translateX(-102%);
  transition: transform .45s var(--ease);
  z-index: 99;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(194, 161, 101, .4);
  box-shadow: 20px 0 60px -30px rgba(0, 0, 0, .7);
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
body.drawer-open { overflow: hidden; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(194, 161, 101, .25);
}
.drawer-head .logo-text { font-size: 1.05rem; letter-spacing: .34em; color: var(--gold-soft); }
.drawer-close { color: var(--stone-200); padding: 6px; }
.drawer-close .ico { width: 22px; height: 22px; }

.drawer-nav { flex: 1; overflow-y: auto; padding: 18px 0; }
.drawer-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 26px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-200);
  border-left: 2px solid transparent;
  opacity: 0;
  transform: translateX(-14px);
  transition: background .25s, border-color .25s, color .25s;
}
.drawer-nav a .ico { width: 14px; height: 14px; color: var(--gold-deep); }
.drawer-nav a:hover, .drawer-nav a.active {
  background: rgba(194, 161, 101, .1);
  border-left-color: var(--gold);
  color: var(--gold-soft);
}
body.drawer-open .drawer-nav a {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .25s, border-color .25s, color .25s;
}
/* kademeli giriş */
body.drawer-open .drawer-nav a:nth-child(1)  { transition-delay: .08s; }
body.drawer-open .drawer-nav a:nth-child(2)  { transition-delay: .12s; }
body.drawer-open .drawer-nav a:nth-child(3)  { transition-delay: .16s; }
body.drawer-open .drawer-nav a:nth-child(4)  { transition-delay: .20s; }
body.drawer-open .drawer-nav a:nth-child(5)  { transition-delay: .24s; }
body.drawer-open .drawer-nav a:nth-child(6)  { transition-delay: .28s; }
body.drawer-open .drawer-nav a:nth-child(7)  { transition-delay: .32s; }
body.drawer-open .drawer-nav a:nth-child(8)  { transition-delay: .36s; }
body.drawer-open .drawer-nav a:nth-child(9)  { transition-delay: .40s; }
body.drawer-open .drawer-nav a:nth-child(10) { transition-delay: .44s; }

.drawer-foot {
  padding: 20px 26px 26px;
  border-top: 1px solid rgba(194, 161, 101, .25);
  display: grid;
  gap: 12px;
  font-size: .82rem;
  color: var(--stone-200);
}
.drawer-foot a { display: flex; align-items: center; gap: 10px; }
.drawer-foot .ico { width: 15px; height: 15px; color: var(--gold); }
.drawer-langs { display: flex; gap: 6px; margin-top: 4px; }
.drawer-langs a {
  padding: 5px 11px;
  border: 1px solid rgba(194, 161, 101, .4);
  border-radius: 3px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.drawer-langs a.active { background: var(--gold); border-color: var(--gold); color: var(--stone-950); }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: clamp(540px, 88vh, 860px);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--stone-100);
  overflow: hidden;
  background: var(--stone-900);
}
.hero-bg, .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-slide { opacity: 0; transition: opacity 1.4s ease; }
.hero-slide.active { opacity: 1; }
.hero { --scrim: .55; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* metnin arkasını yumuşakça koyultan merkezi hale */
    radial-gradient(58% 46% at 50% 52%,
      rgba(20, 16, 12, calc(var(--scrim) * .85)) 0%,
      rgba(20, 16, 12, calc(var(--scrim) * .5)) 55%,
      transparent 100%),
    /* üst ve alt bantlar: menü ve kaydırma ipucu için */
    linear-gradient(180deg,
      rgba(20, 16, 12, calc(var(--scrim) * .9)) 0%,
      rgba(20, 16, 12, calc(var(--scrim) * .3)) 32%,
      rgba(20, 16, 12, calc(var(--scrim) * .35)) 62%,
      rgba(20, 16, 12, calc(var(--scrim) * 1.1)) 100%);
}
.hero-in { position: relative; z-index: 2; padding: 40px 20px; max-width: 860px; }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 20px;
  text-shadow: 0 2px 14px rgba(20, 16, 12, .9);
}
/* iki yanında ince altın çizgi — yazıyı fotoğraftan ayırır */
.hero-kicker::before, .hero-kicker::after {
  content: '';
  width: clamp(24px, 6vw, 54px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-title {
  color: #f6efe2;
  text-shadow:
    0 2px 4px rgba(20, 16, 12, .45),
    0 10px 40px rgba(20, 16, 12, .85);
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { color: #ece3d4; margin-bottom: 36px; text-shadow: 0 2px 20px rgba(20, 16, 12, .9); }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { box-shadow: 0 12px 34px -14px rgba(20, 16, 12, .95); }
.hero-actions .btn-line { backdrop-filter: blur(3px); background: rgba(20, 16, 12, .18); }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollHint 2.2s ease infinite;
}
@keyframes scrollHint { 0% { transform: translateX(-50%) scaleY(0); transform-origin: top; } 55% { transform: translateX(-50%) scaleY(1); transform-origin: top; } 100% { transform: translateX(-50%) scaleY(0); transform-origin: bottom; } }

/* =====================================================================
   KEMER MASKELİ GÖRSELLER — imza öğe
   ===================================================================== */
.arch-img {
  border-radius: var(--arch);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.arch-img::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(232, 213, 164, .55);
  border-radius: 150px 150px 4px 4px;
  z-index: 2;
  pointer-events: none;
}
.arch-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.arch-img:hover img { transform: scale(1.05); }

.img-ph {
  display: grid;
  place-items: center;
  width: 100%; height: 100%;
  min-height: 240px;
  background:
    radial-gradient(120% 90% at 30% 10%, rgba(232,213,164,.5), transparent 60%),
    linear-gradient(160deg, var(--stone-200), #d9cba9);
  color: var(--gold-deep);
  font-family: var(--f-display);
  font-size: 2.6rem;
  letter-spacing: .2em;
}

/* =====================================================================
   ANASAYFA BÖLÜMLERİ
   ===================================================================== */
.about-teaser { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about-teaser .arch-img { aspect-ratio: 3 / 4; max-width: 440px; }
.stat-row { display: flex; gap: clamp(24px, 4vw, 56px); margin-top: 34px; flex-wrap: wrap; }
.stat b { display: block; font-family: var(--f-display); font-size: 1.9rem; color: var(--gold-deep); }
.stat span { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }

/* Oda kartları */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.room-card {
  background: var(--white);
  border: 1px solid rgba(140, 111, 69, .16);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.room-card:hover .room-card-media img { transform: scale(1.06); }
.room-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(23, 19, 16, .78);
  color: var(--gold-soft);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.room-card-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.room-card-body h3 { font-size: 1.25rem; letter-spacing: .12em; text-transform: uppercase; }
.room-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--ink-soft); }
.room-meta li { display: flex; align-items: center; gap: 7px; }
.room-meta .ico { width: 15px; height: 15px; color: var(--gold-deep); }
.room-card-desc { font-size: .9rem; color: var(--ink-soft); flex: 1; }
.room-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(140, 111, 69, .16);
  padding-top: 16px;
}
.room-price small { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.room-price b { font-family: var(--f-display); font-size: 1.35rem; color: var(--gold-deep); }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.link-more .ico { width: 15px; height: 15px; transition: transform .3s; }
.link-more:hover .ico { transform: translateX(5px); }

/* Yorumlar */
.reviews { background: var(--stone-950); color: var(--stone-100); }
.reviews .section-head h1, .reviews .section-head h2 { color: var(--stone-100); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.review-card {
  border: 1px solid rgba(194, 161, 101, .3);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, .02);
}
.review-card .ico { color: var(--gold); width: 26px; height: 26px; margin-bottom: 14px; }
.review-text { font-family: var(--f-serif); font-size: 1.1rem; line-height: 1.6; margin-bottom: 18px; }
.review-meta { display: flex; justify-content: space-between; font-size: .78rem; letter-spacing: .1em; color: var(--gold-soft); }

/* CTA şeridi */
.cta-band {
  background:
    linear-gradient(rgba(23,19,16,.8), rgba(23,19,16,.8)),
    var(--stone-800) center / cover;
  color: var(--stone-100);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 26px; }

/* =====================================================================
   ODA DETAY — Booking tarzı
   ===================================================================== */
.room-hero { padding-top: clamp(40px, 6vw, 72px); }
/* ---- Breadcrumb bandı: tam genişlik, taş dokulu şerit ---- */
.crumb-band {
  width: 100vw;
  margin: calc(-1 * clamp(40px, 6vw, 72px)) 0 clamp(30px, 4.5vw, 52px) calc(50% - 50vw);
  background:
    linear-gradient(rgba(194, 161, 101, .07) 1px, transparent 1px) 0 0 / 100% 27px,
    linear-gradient(90deg, rgba(194, 161, 101, .07) 1px, transparent 1px) 0 0 / 88px 54px,
    linear-gradient(90deg, rgba(194, 161, 101, .07) 1px, transparent 1px) 44px 27px / 88px 54px,
    linear-gradient(100deg, var(--stone-950), #2a2118 60%, var(--stone-950));
  position: relative;
  box-shadow: inset 0 12px 24px -18px rgba(0, 0, 0, .8);
}
.crumb-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-deep) 18%, var(--gold-soft) 50%, var(--gold-deep) 82%, transparent);
  opacity: .85;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 17px 0;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-100);
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  transition: color .25s;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb a .ico { width: 14px; height: 14px; margin-top: -2px; }
.breadcrumb span[aria-current] {
  color: var(--stone-100);
  background: linear-gradient(105deg, var(--gold-soft), #f3e5c3 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.crumb-sep {
  width: 6px; height: 6px;
  border: 1px solid var(--gold-deep);
  transform: rotate(45deg);
  opacity: .8;
}
@media (max-width: 640px) {
  .breadcrumb { font-size: .68rem; letter-spacing: .14em; padding: 14px 0; }
}
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb .ico { width: 13px; height: 13px; }

.room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  border-radius: var(--radius);
  overflow: hidden;
}
.room-gallery a { position: relative; overflow: hidden; display: block; }
.room-gallery a:first-child { grid-row: span 2; }
.room-gallery img, .room-gallery .img-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); min-height: 0; }
.room-gallery a:hover img { transform: scale(1.05); }
.gallery-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 16, .55);
  color: var(--stone-100);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 48px);
}
.room-title h1 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: .1em; text-transform: uppercase; }
.room-sub { display: flex; flex-wrap: wrap; gap: 18px; margin: 14px 0 26px; color: var(--ink-soft); font-size: .88rem; }
.room-sub li { display: flex; align-items: center; gap: 8px; }
.room-sub .ico { color: var(--gold-deep); width: 17px; height: 17px; }

.room-desc { font-size: 1rem; color: var(--ink-soft); margin-bottom: 34px; max-width: 68ch; }

.block-title {
  font-family: var(--f-display);
  font-size: 1.05rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.block-title::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px 24px;
  margin-bottom: 12px;
}
.amenity-grid li { display: flex; align-items: center; gap: 11px; font-size: .9rem; padding: 7px 0; }
.amenity-grid .ico { color: var(--gold-deep); width: 18px; height: 18px; }
.note { font-size: .8rem; color: var(--ink-soft); font-style: italic; margin-bottom: 34px; }

/* Yakın yerler şeridi */
.nearby-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.nearby-card {
  border: 1px solid rgba(140, 111, 69, .18);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .3s, transform .3s;
}
.nearby-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.nearby-card b { font-size: .92rem; }
.nearby-card span { font-size: .78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }
.nearby-card .ico { width: 13px; height: 13px; color: var(--gold-deep); }

/* Fiyat kartı (sağ sütun, yapışkan) */
.price-card {
  position: sticky;
  top: 110px;
  background: var(--white);
  border: 1px solid rgba(140, 111, 69, .25);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.price-card .room-price b { font-size: 2rem; }
.price-card .season-tag { display: inline-block; margin-top: 6px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); background: rgba(194,161,101,.14); padding: 4px 10px; border-radius: 3px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 22px; }
.price-card .trust { margin-top: 18px; display: grid; gap: 9px; font-size: .8rem; color: var(--ink-soft); }
.price-card .trust li { display: flex; gap: 9px; align-items: center; }
.price-card .trust .ico { width: 15px; height: 15px; color: var(--ok); }

/* Mobil alt bar */
.mobile-book-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--stone-950);
  color: var(--stone-100);
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  z-index: 80;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(194, 161, 101, .35);
}
.mobile-book-bar .room-price b { color: var(--gold-soft); font-size: 1.2rem; }
.mobile-book-bar .room-price small { color: var(--stone-200); }

/* =====================================================================
   REZERVASYON FORMU
   ===================================================================== */
.res-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(140, 111, 69, .3);
  border-radius: var(--radius);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 161, 101, .18);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.form-note .ico { width: 15px; height: 15px; color: var(--gold-deep); margin-top: 2px; }

.res-side {
  background: var(--stone-950);
  color: var(--stone-100);
  border-radius: var(--radius);
  padding: 34px;
}
.res-side h3 { font-size: 1.1rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.res-side ul { display: grid; gap: 14px; font-size: .9rem; }
.res-side li { display: flex; gap: 12px; align-items: flex-start; }
.res-side .ico { color: var(--gold); width: 18px; height: 18px; margin-top: 2px; }

/* =====================================================================
   WIDGET — sağ alt hızlı erişim
   ===================================================================== */
.qwidget {
  position: fixed;
  inset: auto max(18px, env(safe-area-inset-right, 0px) + 12px) max(18px, env(safe-area-inset-bottom, 0px) + 12px) auto;
  top: auto !important;
  z-index: 85;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 12px;
  transform: translateZ(0);
}
.qwidget-toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--stone-950);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px -10px rgba(140, 111, 69, .8);
  transition: transform .3s var(--ease);
}
.qwidget-toggle:hover { transform: scale(1.07); }
.qwidget-toggle .ico { width: 24px; height: 24px; transition: transform .35s var(--ease); }
.qwidget.open .qwidget-toggle .ico { transform: rotate(135deg); }
.qwidget-items { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.qwidget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--stone-950);
  color: var(--stone-100);
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(194, 161, 101, .45);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(12px) scale(.92);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
}
.qwidget-item .ico { width: 17px; height: 17px; color: var(--gold-soft); }
.qwidget-item:hover { background: var(--stone-800); }
.qwidget.open .qwidget-item { opacity: 1; transform: none; pointer-events: auto; }
.qwidget.open .qwidget-item:nth-child(1) { transition-delay: .05s; }
.qwidget.open .qwidget-item:nth-child(2) { transition-delay: .1s; }
.qwidget.open .qwidget-item:nth-child(3) { transition-delay: .15s; }
.qwidget.open .qwidget-item:nth-child(4) { transition-delay: .2s; }
.qwidget.open .qwidget-item:nth-child(5) { transition-delay: .25s; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--stone-950); color: var(--stone-200); padding: clamp(48px, 7vw, 80px) 0 0; font-size: .88rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 48px; }
.footer-brand .logo-text { color: var(--gold-soft); display: block; margin-bottom: 6px; }
.footer-brand small { display: block; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.footer-brand p { opacity: .8; max-width: 34ch; }
.footer-col h4 { font-family: var(--f-display); font-size: .85rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { opacity: .8; transition: opacity .2s, color .2s; display: inline-flex; gap: 9px; align-items: center; }
.footer-col a:hover { opacity: 1; color: var(--gold-soft); }
.footer-col .ico { width: 15px; height: 15px; color: var(--gold-deep); }
.footer-bottom {
  border-top: 1px solid rgba(194, 161, 101, .2);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .76rem;
  opacity: .7;
}

/* =====================================================================
   ANİMASYONLAR (IntersectionObserver ile .in eklenir)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   DUYARLILIK
   ===================================================================== */
@media (max-width: 1160px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .room-layout { grid-template-columns: 1fr; }
  .price-card { position: static; display: none; }
  .mobile-book-bar { display: flex; }
  .res-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .topbar-contact span.txt { display: none; }
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser .arch-img { max-width: 100%; aspect-ratio: 4 / 3; }
  .room-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 130px; }
  .room-gallery a:first-child { grid-column: span 2; grid-row: auto; }
  .room-gallery a:nth-child(n+4) { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .qwidget { inset: auto 16px 16px auto; }
  body:has(.mobile-book-bar) .qwidget { bottom: 92px; } /* oda detayında alt bara çarpmasın */
}

/* =====================================================================
   FAZ 3 — İçerik sayfaları
   ===================================================================== */
.prose { line-height: 1.85; }
.prose p { margin-bottom: 1.1em; }
.prose h2, .prose h3 { margin: 1.4em 0 .6em; letter-spacing: .08em; }
.prose ul { list-style: none; margin: 0 0 1.1em; }
.prose ul li { padding-left: 22px; position: relative; margin-bottom: .4em; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); }
.prose img { border-radius: var(--radius); margin: 1.2em 0; }
.prose a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }

/* Galeri */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-tabs a {
  padding: 9px 20px;
  border: 1px solid rgba(140, 111, 69, .35);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all .25s;
}
.filter-tabs a.active, .filter-tabs a:hover { background: var(--stone-950); border-color: var(--stone-950); color: var(--gold-soft); }
.gallery-grid { columns: 3 280px; column-gap: 16px; }
.gallery-item { display: block; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; break-inside: avoid; position: relative; }
.gallery-item img { width: 100%; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

/* Keşfet */
.explore-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.explore-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(140, 111, 69, .16);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.explore-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.explore-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.explore-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.explore-card:hover .explore-media img { transform: scale(1.06); }
.explore-body { padding: 18px 20px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.explore-body b { font-family: var(--f-display); font-size: 1rem; letter-spacing: .08em; }
.explore-dist { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }
.explore-dist .ico { width: 13px; height: 13px; color: var(--gold-deep); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.blog-card { background: var(--white); border: 1px solid rgba(140, 111, 69, .16); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.blog-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.05); }
.blog-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-body time { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.blog-body h3 { font-size: 1.1rem; letter-spacing: .06em; line-height: 1.4; }
.blog-body p { font-size: .9rem; color: var(--ink-soft); flex: 1; }

/* SSS */
.faq-list { display: grid; gap: 12px; }
.faq-item { border: 1px solid rgba(140, 111, 69, .22); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: .95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { color: var(--gold-deep); transition: transform .3s var(--ease); }
.faq-item[open] summary .ico { transform: rotate(90deg); }
.faq-item[open] summary { border-bottom: 1px solid rgba(140, 111, 69, .16); color: var(--gold-deep); }
.faq-answer { padding: 18px 22px; color: var(--ink-soft); font-size: .92rem; }

/* İletişim */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-bottom: 40px; }
.contact-card {
  border: 1px solid rgba(140, 111, 69, .22);
  border-radius: var(--radius);
  background: var(--white);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .3s var(--ease), border-color .3s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-card .ico { width: 24px; height: 24px; color: var(--gold-deep); margin-bottom: 6px; }
.contact-card b { font-family: var(--f-display); font-size: .9rem; letter-spacing: .18em; text-transform: uppercase; }
.contact-card span { font-size: .88rem; color: var(--ink-soft); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---- Google puan rozeti ---- */
.g-rating { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 18px; }
.g-mark { font-family: Arial, sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: -.02em; }
.g-mark span:nth-child(1) { color: #4285F4; }
.g-mark span:nth-child(2) { color: #EA4335; }
.g-mark span:nth-child(3) { color: #FBBC05; }
.g-mark span:nth-child(4) { color: #4285F4; }
.g-mark span:nth-child(5) { color: #34A853; }
.g-mark span:nth-child(6) { color: #EA4335; }
.g-rating b { font-family: var(--f-display); font-size: 1.5rem; color: var(--gold-soft); }
.g-stars { display: inline-flex; gap: 3px; }
.g-star {
  width: 18px; height: 18px;
  background: rgba(255, 255, 255, .18);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.g-star.full { background: #FBBC05; }
.g-star.half { background: linear-gradient(90deg, #FBBC05 50%, rgba(255,255,255,.18) 50%); }

/* ---- Ana menü: daha belirgin öğeler + Konak açılır menüsü ---- */
.main-nav a, .main-nav .has-sub > button {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ink);
}
.nav-item.has-sub { position: relative; display: flex; align-items: center; }
.nav-item.has-sub > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  padding: 0;
  transition: color .25s;
}
.nav-item.has-sub > button .ico { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav-item.has-sub:hover > button .ico,
.nav-item.has-sub:focus-within > button .ico { transform: rotate(180deg); }
.nav-item.has-sub > button:hover,
.nav-item.has-sub > button.active { color: var(--gold-deep); }
.sub-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background:
    linear-gradient(rgba(194, 161, 101, .07) 1px, transparent 1px) 0 0 / 100% 27px,
    var(--stone-950);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .45);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 60;
}
.sub-menu::before { /* hover köprüsü: menüye inerken kapanmasın */
  content: '';
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.nav-item.has-sub:hover .sub-menu,
.nav-item.has-sub:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.sub-menu a {
  display: block;
  padding: 11px 22px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-100);
  white-space: nowrap;
  transition: color .2s, background .2s, padding-left .2s;
}
.sub-menu a:hover, .sub-menu a.active { color: var(--gold-soft); background: rgba(194, 161, 101, .1); padding-left: 28px; }

/* Çekmecede grup */
.drawer-group {
  display: block;
  padding: 16px 26px 6px;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.drawer-nav a.drawer-sub { padding-left: 42px; }

/* ---- Mobil: logo ortada ---- */
@media (max-width: 1160px) {
  .header-in { position: relative; }
  .header-in .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
