/* =====================================================================
   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 {
  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 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(16px, 2.2vw, 30px); }
.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; }

/* 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::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,19,16,.55) 0%, rgba(23,19,16,.25) 45%, rgba(23,19,16,.75) 100%);
}
.hero-in { position: relative; z-index: 2; padding: 40px 20px; max-width: 860px; }
.hero-kicker {
  font-size: .8rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero h1 { margin-bottom: 18px; }
.hero .lead { color: var(--stone-200); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.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 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(28px, 4vw, 48px); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .78rem; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 18px; }
.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; right: 22px; bottom: 22px; z-index: 85; display: flex; flex-direction: column-reverse; align-items: flex-end; gap: 12px; }
.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: 1024px) {
  .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 { right: 16px; bottom: 84px; }
}
