/* ============================================================
   HAVEN — Boutique Hotel & Resort
   Palette : warm sand ground + deep aubergine + honey-amber
   Fonts   : Fraunces (display serif) + Jost (body sans)
   ============================================================ */

:root {
  --sand:        #efe6d6;   /* warm oat ground              */
  --sand-soft:   #f8f2e8;   /* lighter cards / panels       */
  --sand-deep:   #e6dac4;   /* deeper section band          */
  --ink:         #2a2420;   /* warm cocoa text              */
  --plum:        #45303f;   /* deep aubergine (dark bands)  */
  --plum-deep:   #33232f;   /* footer                       */
  --amber:       #bd7a38;   /* honey-amber accent           */
  --amber-dark:  #a1642a;
  --amber-soft:  #e9d3b0;
  --taupe:       #877868;   /* muted body text              */
  --line:        #ddd0ba;   /* warm hairline                */
  --cream:       #f6efe3;

  --radius:   4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(42,36,32,.05), 0 6px 18px rgba(42,36,32,.06);
  --shadow-md: 0 18px 44px rgba(42,36,32,.14);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1200px;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--amber); }
h1,h2,h3,h4 { font-family: "Fraunces", Georgia, "Times New Roman", serif; font-weight: 500; color: var(--ink); line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: max(20px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px), clamp(20px, 5vw, 24px));
  box-sizing: border-box;
}
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
section[id] { scroll-margin-top: 90px; }
.sr-only, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto;
  margin: 0; padding: 10px 18px; clip: auto; z-index: 2000;
  background: var(--plum); color: var(--cream); border-radius: var(--radius);
}
:focus-visible { outline: 2px solid var(--amber-dark); outline-offset: 3px; border-radius: 2px; }

/* ---------- typography helpers ---------- */
.eyebrow {
  font-family: "Jost", sans-serif; font-weight: 500; font-size: .74rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--amber-dark);
  margin: 0 0 .9rem; display: flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--amber-dark); display: inline-block; }
.eyebrow-light { color: var(--amber-soft); }
.eyebrow-light::before { background: var(--amber-soft); }
.section-title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.section-title--light { color: var(--cream); }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3.2rem);
}
.section-head-note { max-width: 34ch; color: var(--taupe); margin: 0; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: "Jost", sans-serif; font-weight: 500; font-size: .92rem;
  letter-spacing: .04em; padding: .82rem 1.5rem; border: 1px solid transparent;
  border-radius: var(--radius); cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  line-height: 1;
}
.btn-lg { padding: 1rem 1.9rem; font-size: .98rem; }
.btn-amber { background: var(--amber); color: #fff; border-color: var(--amber); }
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); color: #fff; transform: translateY(-2px); }
.btn-cream { background: var(--cream); color: var(--plum); border-color: var(--cream); }
.btn-cream:hover { background: #fff; color: var(--plum); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(246,239,227,.5); }
.btn-ghost-light:hover { background: rgba(246,239,227,.12); color: #fff; border-color: var(--cream); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 10030;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Menü açıkken header (içindeki drawer) overlay’in üstünde olmalı */
html.nav-is-open .site-header {
  z-index: 10055;
}
.header-inner { display: flex; align-items: center; gap: 1rem; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; color: var(--cream); font-family: "Fraunces", serif; font-weight: 600; font-size: 1.5rem; letter-spacing: .02em; flex: none; z-index: 1; }
.brand:hover { color: #fff; }
.brand-mark { flex: none; width: 32px; height: 32px; }
.brand-word { line-height: 1.05; font-size: clamp(1.35rem, 2.8vw, 1.75rem); white-space: nowrap; }

/* dil seçici — asla dikey yığılma / ezilme */
.lang-switch {
  display: inline-flex; flex-direction: row; flex-wrap: nowrap;
  align-items: center; gap: 0; flex-shrink: 0;
  border: 1px solid rgba(246,239,227,.35); border-radius: 999px; overflow: hidden;
  background: rgba(246,239,227,.08);
}
.lang-btn {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  color: rgba(246,239,227,.75); font-family: "Jost", sans-serif; font-size: .78rem;
  font-weight: 500; letter-spacing: .06em; padding: .35rem .7rem; line-height: 1;
  transition: background .2s var(--ease), color .2s var(--ease);
  flex: none; white-space: nowrap;
}
.lang-btn.is-active { background: var(--amber); color: #fff; }
.lang-btn:not(.is-active):hover { color: #fff; background: rgba(246,239,227,.12); }
.site-header.scrolled .lang-switch { border-color: var(--line); background: #fff; }
.site-header.scrolled .lang-btn { color: var(--taupe); }
.site-header.scrolled .lang-btn.is-active { background: var(--amber); color: #fff; }
.site-header.scrolled .lang-btn:not(.is-active):hover { color: var(--ink); background: var(--sand-soft); }

/* header scrolled state */
.site-header.scrolled {
  background: var(--sand);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(42,36,32,.07);
}
.site-header.scrolled .header-actions {
  background: var(--sand);
}
.site-header.scrolled .brand,
.site-header.scrolled .header-phone,
.site-header.scrolled .nav-toggle { color: var(--ink); }
.site-header.scrolled .nav-list a { color: var(--ink); }

/* Ortak menü (body sonunda) */
.main-nav {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
}
.nav-list { display: flex; align-items: center; gap: 1.9rem; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  color: var(--cream); font-family: "Jost", sans-serif; font-weight: 400;
  font-size: .96rem; letter-spacing: .01em; position: relative; padding: .2rem 0;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--amber); transition: width .25s var(--ease);
}
.nav-list a:hover { color: #fff; }
body:has(.site-header.scrolled) .main-nav .nav-list a,
body.header-scrolled .main-nav .nav-list a { color: var(--ink); }
body:has(.site-header.scrolled) .main-nav .nav-list a:hover,
body.header-scrolled .main-nav .nav-list a:hover { color: var(--amber-dark); }
.nav-list a:hover::after { width: 100%; }
.nav-cta, .nav-close { display: none; }

.header-actions {
  display: flex; flex-wrap: nowrap; align-items: center; gap: .85rem;
  flex: 0 0 auto; margin-left: auto; z-index: 2;
  padding-left: .75rem;
}
.header-phone {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--cream);
  font-size: 1.05rem; font-weight: 500; letter-spacing: .02em;
  white-space: nowrap; flex-shrink: 0;
}
.header-phone span { white-space: nowrap; }
.header-phone:hover { color: var(--amber-soft); }
.header-book { padding: .7rem 1.3rem; }
.nav-toggle, .nav-close {
  display: none; background: none; border: 0; padding: 4px; cursor: pointer; color: var(--cream);
}

.nav-overlay {
  position: fixed; inset: 0; background: rgba(42,36,32,.55); z-index: 10040;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), visibility .25s var(--ease);
  pointer-events: none;
}
.nav-overlay.show {
  opacity: 1; visibility: visible; pointer-events: auto;
}

/* Masaüstü: menü header içinde — sabit konum yok */
@media (min-width: 901px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
  }
  .main-nav {
    position: static;
    min-width: 0;
    height: auto;
    width: auto;
    max-width: none;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: none;
    justify-content: center;
  }
  .main-nav .nav-list {
    gap: clamp(.65rem, 1.2vw, 1.55rem);
    flex-wrap: nowrap;
    justify-content: center;
  }
  .main-nav .nav-list a {
    color: var(--cream);
    font-size: clamp(.76rem, 1vw, .9rem);
    white-space: nowrap;
  }
  body:has(.site-header.scrolled) .main-nav .nav-list a,
  body.header-scrolled .main-nav .nav-list a { color: var(--ink); }
  .nav-overlay, .nav-close, .nav-cta, .nav-toggle { display: none !important; }
}

/* Orta masaüstü: ikincil menü + telefon gizle — İletişim / TR-EN çakışmasın */
@media (min-width: 901px) and (max-width: 1399px) {
  .nav-item-secondary { display: none; }
  .header-phone { display: none !important; }
  .header-actions { gap: .65rem; }
  .header-book { padding: .6rem 1.05rem; font-size: .88rem; }
  .brand-word { font-size: clamp(1.15rem, 2vw, 1.4rem); }
}

@media (min-width: 1400px) {
  .header-phone { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 96vh; display: flex; flex-direction: column; justify-content: center; padding-top: 78px; }
.hero-media { position: absolute; inset: 0; z-index: -1; background: var(--plum-deep); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(51,35,47,.55) 0%, rgba(51,35,47,.15) 32%, rgba(42,36,32,.35) 68%, rgba(42,36,32,.72) 100%),
    linear-gradient(90deg, rgba(51,35,47,.5) 0%, rgba(51,35,47,0) 60%);
}
.hero-content { position: relative; padding-block: clamp(3rem, 8vw, 6rem) clamp(7rem, 12vw, 10rem); max-width: 760px; }
.hero-title {
  color: var(--cream); font-size: clamp(2.7rem, 7vw, 5rem); font-weight: 500;
  line-height: 1.02; letter-spacing: -.02em; margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-lead { color: rgba(246,239,227,.92); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* booking widget */
.booking-anchor { position: relative; margin-top: auto; padding-bottom: clamp(1.5rem, 4vw, 2.5rem); scroll-margin-top: 100px; }
.booking-widget {
  background: var(--sand-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1.15rem 1.15rem;
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: .9rem; align-items: end;
  position: relative;
}
.bw-field { display: flex; flex-direction: column; gap: .35rem; min-width: 0; }
.bw-field label { font-size: .74rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); padding-left: .2rem; }
.bw-input {
  display: flex; align-items: center; gap: .55rem; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: .1rem .8rem;
  color: var(--amber-dark); transition: border-color .2s var(--ease);
}
.bw-input:focus-within { border-color: var(--amber); }
.bw-input svg { flex: none; }
.bw-input input, .bw-input select {
  border: 0; background: none; outline: none; width: 100%;
  font-family: "Jost", sans-serif; font-size: .96rem; color: var(--ink);
  padding: .68rem 0; cursor: pointer;
}
.bw-input select { appearance: none; -webkit-appearance: none; }
.bw-submit { height: 48px; align-self: end; white-space: nowrap; }
.bw-note {
  grid-column: 1 / -1; margin: 0; font-size: .88rem; color: var(--amber-dark);
  min-height: 0; padding-left: .2rem;
}
.bw-note:not(:empty) { padding-top: .2rem; }

/* ============================================================
   WELCOME
   ============================================================ */
.welcome { background: var(--sand); }
.welcome-grid { display: grid; grid-template-columns: .85fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.welcome-figure { position: relative; }
.welcome-badge {
  position: absolute; right: -14px; bottom: 30px; background: var(--plum); color: var(--cream);
  padding: 1.1rem 1.3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .9rem; max-width: 250px;
}
.wb-num { font-family: "Fraunces", serif; font-size: 1.5rem; line-height: 1.05; color: var(--amber-soft); font-weight: 600; }
.wb-txt { font-size: .82rem; line-height: 1.4; color: rgba(246,239,227,.85); }
.welcome-copy p { color: var(--taupe); }
.welcome-copy .section-title { margin-bottom: 1.3rem; }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: "Fraunces", serif; font-size: 2.3rem; font-weight: 600; color: var(--plum); line-height: 1; }
.stat-label { font-size: .82rem; letter-spacing: .04em; color: var(--taupe); margin-top: .35rem; }

/* image frames (aspect-ratio safe) */
.frame { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--sand-deep); }
.frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.frame-tall { aspect-ratio: 4/5; }

/* ============================================================
   ROOMS
   ============================================================ */
.rooms { background: var(--sand-soft); }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.room-card {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.room-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.room-media { aspect-ratio: 3/4; }
.room-media img { transition: transform .6s var(--ease); object-position: 50% 45%; }
.room-card:hover .room-media img { transform: scale(1.05); }
.room-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(246,239,227,.92); color: var(--ink); font-size: .72rem;
  font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: var(--radius); backdrop-filter: blur(2px);
}
.room-tag--gold { background: var(--amber); color: #fff; }
.room-body { padding: 1.5rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.room-titleline { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.room-name { font-size: 1.5rem; position: relative; }
.room-price { margin: 0; font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 600; color: var(--amber-dark); white-space: nowrap; }
.room-price span { font-family: "Jost", sans-serif; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe); font-weight: 500; display: block; margin-bottom: -.15rem; }
.room-price small { font-size: .72rem; font-weight: 400; color: var(--taupe); }
.room-desc { color: var(--taupe); font-size: .95rem; margin-bottom: 1.1rem; }
.room-specs { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-bottom: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.room-specs li { display: flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--ink); }
.room-specs svg { color: var(--amber-dark); flex: none; }
.room-link {
  margin-top: auto; display: inline-flex; align-items: center; gap: .45rem;
  font-family: "Jost", sans-serif; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; font-size: .8rem; color: var(--ink); align-self: flex-start;
}
.room-link svg { transition: transform .25s var(--ease); }
.room-link:hover { color: var(--amber-dark); }
.room-link:hover svg { transform: translateX(4px); }
.room-card--feature { border-color: var(--amber); box-shadow: 0 0 0 1px var(--amber); }

/* ============================================================
   AMENITIES
   ============================================================ */
.amenities { background: var(--sand-deep); }
.amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.amenity { background: var(--sand); padding: clamp(1.6rem, 3vw, 2.4rem); transition: background .25s var(--ease); }
.amenity:hover { background: var(--sand-soft); }
.amenity-ic {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px;
  border-radius: 50%; background: var(--cream); color: var(--amber-dark); margin-bottom: 1.1rem;
  border: 1px solid var(--line);
}
.amenity h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.amenity p { color: var(--taupe); font-size: .92rem; margin: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--sand); }
.gallery-grid { columns: 3; column-gap: 1.1rem; }
.gallery-item {
  display: block; width: 100%; margin: 0 0 1.1rem; padding: 0; border: 0; cursor: pointer;
  break-inside: avoid; position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--sand-deep); line-height: 0;
}
.gallery-item img { width: 100%; height: auto; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: rgba(51,35,47,0);
  transition: background .3s var(--ease);
}
.gallery-item:hover::after { background: rgba(51,35,47,.28); }
.gallery-plus {
  position: absolute; inset: 0; margin: auto; width: 46px; height: 46px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); color: var(--plum); border-radius: 50%;
  opacity: 0; transform: scale(.8); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-item:hover .gallery-plus { opacity: 1; transform: scale(1); }

/* ============================================================
   DINING
   ============================================================ */
.dining { background: var(--plum); }
.dining-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.dining-media { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.frame-dining { aspect-ratio: 4/5; box-shadow: var(--shadow-md); }
.frame-dining-inset {
  position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1/1;
  border: 5px solid var(--plum); box-shadow: var(--shadow-md);
}
.dining-copy .section-title { margin-bottom: 1.3rem; }
.dining-copy > p { color: rgba(246,239,227,.82); }
.dining-menu { margin: 1.8rem 0; border-top: 1px solid rgba(246,239,227,.15); }
.dining-menu li { display: flex; align-items: baseline; gap: .6rem; padding: .85rem 0; border-bottom: 1px solid rgba(246,239,227,.15); }
.dm-name { color: var(--cream); font-size: 1rem; }
.dm-dots { flex: 1; border-bottom: 1px dotted rgba(246,239,227,.35); transform: translateY(-3px); }
.dm-price { font-family: "Fraunces", serif; font-weight: 600; color: var(--amber-soft); font-size: 1.05rem; }
.dining-hours { display: flex; align-items: center; gap: .6rem; color: rgba(246,239,227,.75); font-size: .88rem; margin-bottom: 1.7rem; }
.dining-hours svg { color: var(--amber-soft); flex: none; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--sand-soft); }
.review-carousel { display: flex; align-items: center; gap: 1rem; }
.rc-viewport { overflow: hidden; flex: 1; }
.rc-track { display: flex; transition: transform .5s var(--ease); will-change: transform; }
.review-card {
  flex: 0 0 calc((100% - 2.4rem) / 3); margin: 0 1.2rem 0 0; background: var(--sand);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column;
}
.review-card:last-child { margin-right: 0; }
.stars { display: flex; gap: .2rem; color: var(--amber); margin-bottom: 1rem; }
.review-card blockquote {
  margin: 0 0 1.4rem; font-family: "Fraunces", serif; font-size: 1.12rem; line-height: 1.5;
  color: var(--ink); font-weight: 400; flex: 1;
}
.reviewer { display: flex; align-items: center; gap: .8rem; }
.reviewer img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; background: var(--sand-deep); }
.reviewer span { display: flex; flex-direction: column; }
.reviewer strong { font-weight: 500; font-size: .98rem; }
.reviewer small { color: var(--taupe); font-size: .82rem; }
.rc-arrow {
  flex: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--sand); color: var(--ink); cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.rc-arrow:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.rc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 2rem; }
.rc-dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s var(--ease), width .2s var(--ease); }
.rc-dot.active { background: var(--amber); width: 26px; border-radius: 5px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: var(--plum-deep); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; }
.cta-title { color: var(--cream); font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: .8rem; max-width: 20ch; }
.cta-sub { color: rgba(246,239,227,.78); margin: 0; max-width: 46ch; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.cta-call { display: inline-flex; align-items: center; gap: .55rem; color: var(--amber-soft); font-size: 1.2rem; font-family: "Fraunces", serif; white-space: nowrap; }
.cta-call span { white-space: nowrap; }
.cta-call:hover { color: #fff; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.contact-intro { color: var(--taupe); margin-bottom: 1.8rem; max-width: 46ch; }
.contact-list { display: grid; gap: 1.1rem; margin-bottom: 2.2rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .9rem; }
.ci {
  flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--sand-soft);
  border: 1px solid var(--line); color: var(--amber-dark); display: flex; align-items: center; justify-content: center;
}
.contact-list span:not(.ci) { display: flex; flex-direction: column; font-size: .96rem; line-height: 1.4; padding-top: .15rem; }
.contact-list strong { font-weight: 500; font-family: "Jost", sans-serif; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--taupe); margin-bottom: .1rem; }
.contact-list a[href^="tel"],
.contact-list a[href*="wa.me"] {
  white-space: nowrap; font-size: 1.08rem; font-weight: 500;
}

.enquiry-form { background: var(--sand-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ef-field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.ef-field label { font-size: .74rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe); }
.enquiry-form input, .enquiry-form textarea {
  font-family: "Jost", sans-serif; font-size: .96rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: .7rem .85rem;
  width: 100%; transition: border-color .2s var(--ease); resize: vertical;
}
.enquiry-form input:focus, .enquiry-form textarea:focus { outline: none; border-color: var(--amber); }
.enquiry-form textarea { min-height: 96px; }
.ef-note { margin: .8rem 0 0; font-size: .88rem; color: var(--amber-dark); }

.contact-map { position: relative; }
.frame-map { aspect-ratio: 16/9; box-shadow: var(--shadow-sm); }
.frame-map img { object-position: center center; }
.map-embed-wrap { padding: 0; overflow: hidden; background: var(--sand-deep); }
.map-embed-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block;
}
.map-open-link {
  display: inline-block; margin-top: .35rem; font-size: .8rem; color: var(--amber-dark);
  text-decoration: underline; text-underline-offset: 2px;
}
.map-pin {
  position: absolute; left: 20px; bottom: 20px; background: var(--sand-soft);
  border: 1px solid var(--line); border-radius: var(--radius); padding: .7rem .95rem;
  display: flex; align-items: center; gap: .7rem; box-shadow: var(--shadow-md);
}
.map-pin-ic { color: var(--amber-dark); display: flex; }
.map-pin span:not(.map-pin-ic) { display: flex; flex-direction: column; font-size: .82rem; line-height: 1.3; }
.map-pin strong { font-family: "Jost", sans-serif; font-weight: 600; font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--plum-deep); color: rgba(246,239,227,.72);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
  padding-bottom: max(8px, env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
}
.site-footer > .container {
  padding-inline: 0;
  width: 100%;
  max-width: var(--maxw);
  box-sizing: border-box;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(246,239,227,.6); font-size: .94rem; max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(246,239,227,.2);
  display: flex; align-items: center; justify-content: center; color: rgba(246,239,227,.8);
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.footer-social a:hover { background: var(--amber); color: #fff; border-color: var(--amber); }
.footer-col h3 { color: var(--cream); font-size: 1.05rem; font-family: "Jost", sans-serif; font-weight: 600; letter-spacing: .04em; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: rgba(246,239,227,.62); font-size: .92rem; }
.footer-col a:hover { color: var(--amber-soft); }
.footer-col a[href^="tel"] { white-space: nowrap; font-size: 1.02rem; }
.footer-news p { color: rgba(246,239,227,.6); font-size: .9rem; margin-bottom: 1rem; }
.news-form { display: flex; gap: .5rem; }
.news-form input {
  flex: 1; min-width: 0; font-family: "Jost", sans-serif; font-size: .92rem; color: var(--cream);
  background: rgba(246,239,227,.06); border: 1px solid rgba(246,239,227,.2);
  border-radius: var(--radius); padding: .65rem .8rem;
}
.news-form input::placeholder { color: rgba(246,239,227,.4); }
.news-form input:focus { outline: none; border-color: var(--amber); }
.news-form .btn { padding: .65rem .9rem; flex: none; }
.news-note { color: var(--amber-soft); font-size: .84rem; margin: .7rem 0 0; }

.footer-legal {
  display: flex; flex-wrap: wrap; gap: .75rem 1.4rem;
  padding: 1.2rem 0 0; border-top: 1px solid rgba(246,239,227,.12);
  max-width: 100%;
  box-sizing: border-box;
}
.footer-legal a {
  color: rgba(246,239,227,.55); font-size: .82rem; letter-spacing: .01em;
  word-break: break-word;
}
.footer-legal a:hover { color: var(--amber-soft); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.4rem 0 1.8rem;
  max-width: 100%;
  box-sizing: border-box;
}
.footer-bottom p { margin: 0; font-size: .86rem; color: rgba(246,239,227,.5); }
.footer-bottom a { color: var(--amber-soft); }

/* yasal sayfa */
.legal-page { padding: 7.5rem 0 4rem; background: var(--sand); min-height: 70vh; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .6rem .9rem; margin: 1.5rem 0 2.5rem; }
.legal-nav a {
  font-size: .84rem; color: var(--taupe); border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.legal-nav a:hover, .legal-nav a.is-active { color: var(--amber-dark); border-bottom-color: var(--amber); }
.legal-block { margin-bottom: 3rem; scroll-margin-top: 100px; }
.legal-block h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.legal-block p, .legal-block li { color: var(--taupe); font-size: .95rem; line-height: 1.7; }
.legal-block ul { margin: .8rem 0 0; padding-left: 1.2rem; display: grid; gap: .45rem; }
.legal-block li { list-style: disc; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 1100; background: rgba(30,20,26,.92);
  display: flex; align-items: center; justify-content: center; padding: 4vh 6vw;
  opacity: 0; transition: opacity .3s var(--ease);
}
.lightbox.open { opacity: 1; }
.lb-figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: .8rem; }
.lb-figure img { max-width: 100%; max-height: 82vh; width: auto; border-radius: var(--radius-lg); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-figure figcaption { color: rgba(246,239,227,.85); font-family: "Fraunces", serif; font-size: 1.05rem; text-align: center; }
.lb-close { position: fixed; top: 22px; right: 24px; background: none; border: 0; color: var(--cream); cursor: pointer; padding: 6px; }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(246,239,227,.1); border: 1px solid rgba(246,239,227,.25); color: var(--cream); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease); }
.lb-arrow:hover { background: rgba(246,239,227,.22); }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .review-card { flex: 0 0 calc((100% - 1.2rem) / 2); }
}

@media (max-width: 900px) {
  .header-book { display: none; }
  .header-phone { display: none; }
  .header-actions { margin-left: auto; }
  .header-inner {
    display: flex !important;
    grid-template-columns: none !important;
  }
  /* Masaüstü gizleme mobil drawer’da geçerli olmasın */
  .nav-item-secondary { display: list-item !important; }

  .nav-toggle {
    display: inline-flex !important;
    position: relative; z-index: 10060;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
    touch-action: manipulation; cursor: pointer;
  }
  .brand-word { font-size: 1.28rem; }

  .nav-overlay {
    z-index: 10040;
  }

  /* Mobil drawer */
  .main-nav {
    position: fixed !important;
    top: 0; bottom: 0;
    left: auto;
    right: -110%;
    width: min(84vw, 340px);
    z-index: 10050 !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--plum);
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: none;
    transition: right .28s ease;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: none;
  }

  html.nav-is-open .main-nav,
  body.nav-is-open .main-nav,
  .main-nav.open {
    right: 0 !important;
    pointer-events: auto !important;
    box-shadow: -16px 0 40px rgba(0,0,0,.35);
  }

  html.nav-is-open,
  html.nav-is-open body {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .main-nav .nav-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
  }
  .main-nav .nav-list li {
    display: list-item !important;
    border-bottom: 1px solid rgba(246,239,227,.12);
    width: 100%;
  }
  .main-nav .nav-list a {
    color: #f6efe3 !important;
    display: block !important;
    width: 100%;
    padding: 1.1rem .35rem;
    font-size: 1.12rem;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(189,122,56,.25);
    position: relative;
    z-index: 1;
  }
  .main-nav .nav-list a::after { display: none !important; }
  .main-nav .nav-cta {
    display: inline-flex !important;
    margin-top: 1.6rem;
    align-self: flex-start;
    touch-action: manipulation;
    position: relative;
    z-index: 1;
  }
  .main-nav .nav-close {
    display: inline-flex !important;
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    z-index: 2;
    color: #f6efe3;
    touch-action: manipulation;
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }

  .welcome-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .welcome-figure { max-width: 460px; }
  .welcome-badge { right: auto; left: 20px; }
  .dining-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dining-media { max-width: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { max-width: 460px; }
}

@media (max-width: 780px) {
  .room-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
  .booking-widget { grid-template-columns: 1fr 1fr; }
  .bw-submit { grid-column: 1 / -1; }
  .review-card { flex: 0 0 100%; margin-right: 0; }
  .rc-track { gap: 0; }
}

@media (max-width: 560px) {
  .header-inner { height: 66px; }
  .hero { min-height: 92vh; }
  .room-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .booking-widget { grid-template-columns: 1fr; }
  .ef-row { grid-template-columns: 1fr; }
  .stat-row { gap: 1.6rem; }
  .cta-actions { width: 100%; }
  .section-head { margin-bottom: 2rem; }
  .container {
    padding-inline: max(20px, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }
  .site-footer {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }
  .room-titleline { flex-direction: column; align-items: flex-start; gap: .35rem; }
  .footer-grid { gap: 1.6rem; padding-bottom: 2rem; }
  .footer-legal { gap: .7rem 1.1rem; padding-top: 1.3rem; }
  .footer-legal a { font-size: .78rem; }
  .footer-seo { padding-top: 1.4rem; }
  .footer-seo-links { gap: .55rem .75rem; }
  .footer-seo-links a { font-size: .76rem; }
  .footer-map-block { padding: 1.4rem 0 1rem; }
  .footer-bottom { padding: 1.3rem 0 1.8rem; }
  .footer-brand p { max-width: 100%; }
}

/* Çerez bandı — style.css’te de (article.css yüklenmese bile sabit kalsın) */
.cookie-banner {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  z-index: 20000 !important;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  transform: none !important;
}
