/* ==========================================================================
   BAYOU Luxury Resorts & Villas
   Ana stil dosyası — Pine-up Medya
   Renk ve tipografi değerleri UI/UX dosyasından birebir örneklenmiştir.
   ========================================================================== */

/* --- 1. Tokenlar ---------------------------------------------------------- */
:root {
  /* Marka renkleri */
  --green:      #405244;
  --green-dk:   #2F3D33;
  --brown:      #594D3D;
  --brown-dk:   #463D30;
  --sand:       #CECBB8;
  --sand-lt:    #E4E1D2;
  --cream:      #F9FAF4;
  --cream-warm: #FAF6EE;
  --gold:       #A17315;
  --menu-bg:    #F1F0EC;
  --gold-lt:    #B98A22;
  --ink:        #14150F;
  --ink-soft:   #3A3A32;
  --muted:      #6E6A60;
  --line:       rgba(20, 21, 15, .16);
  --line-lt:    rgba(255, 255, 255, .3);

  /* Tipografi */
  --display: "EB Garamond", "Times New Roman", serif;
  --body:    "Wix Madefor Text", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --label:   "Poppins", var(--body);
  --mark:    "Jost", var(--label);

  /* Ölçü */
  --hdr-h:  76px;
  --gutter: clamp(20px, 5vw, 74px);
  --maxw:   1624px;

  /* Hareket */
  --ease:  cubic-bezier(.22, .61, .36, 1);
  --ease2: cubic-bezier(.65, 0, .35, 1);
  --slow:  1.1s;
}

/* --- 2. Sıfırlama --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --- 3. Tipografik ölçek -------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.16;
  margin: 0;
}

.t-hero    { font-size: clamp(1.8rem, 3.3vw, 2.9rem); line-height: 1.2; }
.t-display { font-size: clamp(1.6rem, 2.9vw, 2.5rem); }
.t-section { font-size: clamp(1.35rem, 1.9vw, 1.65rem); }
.t-card    { font-size: clamp(1.1rem, 1.4vw, 1.5rem); }

.eyebrow {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px;
  display: block;
}
.eyebrow--light { color: rgba(255, 255, 255, .82); }

.lede {
  font-size: 13.5px;
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 22px auto 0;
}
.lede--left { margin-left: 0; margin-right: 0; }

/* --- 4. Yerleşim ---------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--narrow { max-width: 1080px; }

.section { padding: clamp(64px, 8.4vw, 132px) 0; }
.section--tight { padding: clamp(48px, 5.4vw, 80px) 0; }
.section--flush { padding: 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--warm  { background: var(--cream-warm); }
.section--green { background: var(--green); color: #fff; }
.section--brown { background: var(--brown); color: #fff; }

.section--green .lede,
.section--brown .lede { color: rgba(255, 255, 255, .8); }

.center { text-align: center; }

/* --- 5. Bağlantı ve butonlar ---------------------------------------------- */
.link {
  display: inline-block;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding-bottom: 5px;
  position: relative;
}
.link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.link:hover::after { transform: scaleX(0); transform-origin: left; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1px solid currentColor;
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.btn--gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn--ghost:hover { background: currentColor; }
.btn--ghost-light { color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--green); }

/* --- 6. Header ------------------------------------------------------------ */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--hdr-h);
  display: flex;
  align-items: center;
  color: #fff;
  transition: background .55s var(--ease), color .55s var(--ease),
              box-shadow .55s var(--ease), height .55s var(--ease);
}
.hdr::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 18, 14, .48), transparent);
  opacity: 1;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.hdr.is-static, .hdr.is-solid {
  background: var(--cream);
  color: var(--ink);
  height: 64px;
  box-shadow: 0 1px 0 rgba(20, 21, 15, .09);
}
.hdr.is-static::before, .hdr.is-solid::before { opacity: 0; }
.hdr { transition-property: background, color, box-shadow, height, transform; }

.hdr__in {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 26px;
}

/* Hamburger */
.burger {
  width: 26px; height: 16px;
  position: relative;
  flex: none;
}
.burger span {
  position: absolute;
  left: 0;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform .45s var(--ease), opacity .3s var(--ease), width .45s var(--ease);
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 7px; width: 78%; }
.burger span:nth-child(3) { top: 14px; }
.burger:hover span:nth-child(2) { width: 100%; }

/* Ana menü */
.nav { display: flex; align-items: center; gap: clamp(11px, 1.15vw, 22px); }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--label);
  font-size: clamp(10.2px, .62vw, 11.5px);
  font-weight: 400;
  letter-spacing: .035em;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  opacity: .92;
  transition: opacity .3s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__item.is-current .nav__link {
  font-weight: 600;
  opacity: 1;
  border-bottom: 1px solid currentColor;
}
.nav__caret {
  width: 8px; height: 8px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .4s var(--ease);
}
.nav__item.is-open .nav__caret { transform: rotate(225deg) translate(-3px, -3px); }

/* Resorts & Villas açılır menüsü */
.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: -22px;
  min-width: 620px;
  background: var(--cream);
  color: var(--ink);
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
  box-shadow: 0 24px 50px -28px rgba(20, 21, 15, .38);
}
.nav__item.is-open .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop__card figure { margin: 0; overflow: hidden; }
.drop__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.drop__card:hover img { transform: scale(1.06); }
.drop__card b {
  display: block;
  font-family: var(--mark);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .1em;
  margin-top: 12px;
}
.drop__card span {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
  display: block;
  margin-top: 3px;
}

/* Sağ blok */
.hdr__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}
.hdr__tel {
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: .03em;
}
.lang {
  position: relative;
  display: inline-flex;
}
.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.lang__caret {
  width: 6px; height: 6px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s var(--ease);
}
.lang.is-open .lang__caret {
  transform: rotate(225deg) translateY(-2px);
}
.lang__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 150px;
  background: rgba(12, 14, 18, .96);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 8px 0;
  display: none;
  flex-direction: column;
  z-index: 60;
  backdrop-filter: blur(6px);
}
.lang.is-open .lang__menu { display: flex; }
.lang__menu a {
  font-family: var(--label);
  font-size: 11.5px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  padding: 9px 18px;
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.lang__menu a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.lang__menu a.is-active { color: var(--gold); }

/* Overlay (açık zemin) içindeki dil menüsü açık tema kullanır */
.overlay__top .lang__menu {
  background: rgba(255, 255, 255, .97);
  border-color: rgba(20, 21, 15, .14);
}
.overlay__top .lang__menu a {
  color: rgba(20, 21, 15, .72);
}
.overlay__top .lang__menu a:hover {
  color: var(--ink);
  background: rgba(20, 21, 15, .05);
}
.overlay__top .lang__menu a.is-active { color: var(--gold); }

/* Ortadaki marka
   Saydam durumda tasarımdaki gibi nav satırının ALTINDA, ortada durur.
   Header katılaşınca 64px'e düşer ve altta yer kalmaz; bu durumda marka
   hamburgerin yanına geçer — böylece nav ile aynı satırda çakışmaz. */
.hdr__mark {
  position: absolute;
  left: 50%;
  top: 48px;
  transform: translateX(-50%);
  text-align: center;
  transition: opacity .35s var(--ease);
}
.hdr__mark img {
  width: 132px;
  margin: 0 auto;
  transition: width .45s var(--ease), filter .45s var(--ease);
}
.hdr__mark small {
  display: block;
  font-family: var(--label);
  font-size: 8px;
  font-weight: 300;
  letter-spacing: .34em;
  color: #fff;
  margin-top: 4px;
}

.hdr.is-solid .hdr__mark,
.hdr.is-static .hdr__mark {
  position: static;
  transform: none;
  order: -1;
  margin-right: 4px;
}
.hdr.is-solid .hdr__mark img,
.hdr.is-static .hdr__mark img { filter: invert(1) brightness(.08); width: 98px; }
.hdr.is-solid .hdr__mark small,
.hdr.is-static .hdr__mark small { display: none; }
.hdr.is-solid .burger,
.hdr.is-static .burger { order: -2; }

@media (max-width: 1400px) {
  .hdr__mark { position: static; transform: none; order: -1; margin-right: 4px; }
  .hdr__mark img { width: 100px; }
  .hdr__mark small { display: none; }
  .burger { order: -2; }
}

/* --- 7. Tam ekran menü (tasarım s.17) ------------------------------------
   Açık zeminli, iki sütunlu. Sol sütunda ana menü, dikey çizginin sağında
   seçili başlığın alt kırılımı. Sağ üstte marka, sağ altta sosyal ikonlar.
   -------------------------------------------------------------------------- */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--menu-bg);
  color: var(--ink);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .9s var(--ease2);
  visibility: hidden;
  overflow-y: auto;
}
.overlay.is-open { clip-path: inset(0 0 0 0); visibility: visible; }

.overlay__in {
  min-height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: clamp(26px, 4vh, 44px) clamp(24px, 4vw, 78px) clamp(30px, 5vh, 60px);
  display: grid;
  grid-template-columns: minmax(210px, 300px) 1fr auto;
  column-gap: clamp(30px, 5vw, 84px);
  align-content: start;
}

.overlay__close {
  grid-column: 1 / -1;
  width: 26px; height: 26px;
  position: relative;
  justify-self: start;
  margin-bottom: clamp(40px, 9vh, 96px);
}
.overlay__close::before, .overlay__close::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.4px;
  background: var(--ink);
  transition: transform .4s var(--ease);
}
.overlay__close::before { transform: rotate(45deg); }
.overlay__close::after  { transform: rotate(-45deg); }
.overlay__close:hover::before { transform: rotate(135deg); }
.overlay__close:hover::after  { transform: rotate(45deg); }

/* Sol sütun — ana menü */
.overlay__nav {
  list-style: none;
  margin: 0;
  padding: 0 clamp(20px, 3vw, 50px) 0 0;
  border-right: 1px solid rgba(20, 21, 15, .22);
  min-height: clamp(300px, 52vh, 520px);
}
.overlay__nav li { display: block; }
.overlay__nav li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: calc(var(--i) * 45ms);
}
.overlay.is-open .overlay__nav li { opacity: 1; transform: none; }
.overlay__nav a, .overlay__nav button {
  display: inline-block;
  padding: 6px 0;
  margin-bottom: 10px;
  font-family: var(--body);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.35;
  color: #9C9B95;
  border-bottom: 1px solid transparent;
  text-align: left;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.overlay__nav a:hover, .overlay__nav button:hover { color: var(--ink); }
.overlay__nav .is-on > a, .overlay__nav .is-on > button {
  color: var(--ink);
  border-color: var(--ink);
}

/* Orta sütun — alt kırılım */
.overlay__sub { position: relative; min-height: 40px; }
.overlay__panel {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 4px 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
}
.overlay__panel.is-shown { opacity: 1; visibility: visible; }
.overlay__panel li { margin-bottom: 16px; }
.overlay__panel a {
  font-family: var(--label);
  font-size: clamp(10.5px, .72vw, 12px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), opacity .35s var(--ease);
  opacity: .78;
}
.overlay__panel a:hover { opacity: 1; border-color: var(--ink); }
.overlay__panel a.is-current { opacity: 1; border-color: var(--ink); }

/* Sağ sütun — marka + sosyal */
.overlay__side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  min-height: clamp(300px, 52vh, 520px);
}
.overlay__side img { width: clamp(120px, 9vw, 172px); filter: invert(1) brightness(.08); }
.overlay__social { display: flex; gap: 16px; align-items: center; }
.overlay__social a { opacity: .6; transition: opacity .3s var(--ease); }
.overlay__social a:hover { opacity: 1; }
.overlay__social svg { width: 16px; height: 16px; display: block; }

/* Mobil menü (tasarım s.15) */
.overlay__top {
  display: none;
  grid-column: 1 / -1;
  align-items: center;
  margin-bottom: 34px;
}
.overlay__top img { width: 120px; filter: invert(1) brightness(.08); }
.overlay__foot { display: none; grid-column: 1 / -1; margin-top: 40px; }
.overlay__foot .btn { width: 100%; padding: 16px; }
.overlay__foot .overlay__tel {
  display: block;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .01em;
  margin: 26px 0 22px;
}

@media (max-width: 900px) {
  .overlay__in {
    grid-template-columns: 1fr;
    padding: 22px clamp(20px, 6vw, 34px) 40px;
  }
  .overlay__close {
    position: absolute;
    top: 24px; left: clamp(20px, 6vw, 34px);
    margin: 0;
    z-index: 3;
  }
  .overlay__top { display: flex; justify-content: center; position: relative; padding-top: 4px; }
  .overlay__top .lang { position: absolute; right: 0; top: 10px; color: var(--ink); }
  .overlay__nav { border-right: 0; padding: 0; min-height: 0; }
  .overlay__nav a, .overlay__nav button { font-size: 17px; margin-bottom: 14px; }
  .overlay__sub { position: static; min-height: 0; }
  .overlay__panel {
    position: static;
    display: none;
    padding: 4px 0 18px 30px;
  }
  .overlay__panel.is-shown { display: block; opacity: 1; visibility: visible; }
  .overlay__side { display: none; }
  .overlay__foot { display: block; }
  .overlay__foot .overlay__social { justify-content: flex-start; }
}

/* --- 8. Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  height: clamp(560px, 92vh, 940px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.hero--short { height: clamp(440px, 74vh, 720px); }

.hero__bg { position: absolute; inset: -6% 0; will-change: transform; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.11); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12, 15, 11, .34) 0%, rgba(12, 15, 11, 0) 34%),
    linear-gradient(to top,   rgba(12, 15, 11, .34) 0%, rgba(12, 15, 11, 0) 40%);
}
.hero__in {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 1120px;
}
.hero__title { text-shadow: 0 1px 30px rgba(0, 0, 0, .22); }

/* Aşağı kaydırma düğmesi */
.scroll-cue {
  width: 62px; height: 62px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 34px auto 0;
  transition: background .5s var(--ease), border-color .5s var(--ease);
}
.scroll-cue:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }
.scroll-cue svg { width: 15px; height: 15px; }

/* --- 9. Rezervasyon çubuğu ------------------------------------------------ */
.booking {
  position: relative;
  width: max-content;
  max-width: 100%;
  z-index: 3;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 780px;
  background: rgba(24, 21, 16, .5);
  backdrop-filter: blur(7px);
  border: 1px solid rgba(255, 255, 255, .2);
}
.booking__field {
  flex: 1 1 0;
  min-width: 150px;
  padding: 15px 18px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-align: center;
  white-space: nowrap;
  transition: background .35s var(--ease);
}
.booking__field:hover { background: rgba(255, 255, 255, .09); }
.booking__submit {
  flex: 0 0 155px;
  background: #fff;
  color: var(--ink);
  padding: 15px 18px;
  font-family: var(--label);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.booking__submit:hover { background: var(--gold); color: #fff; }

/* --- 10. "This is BAYOU" şeridi ------------------------------------------- */
.strip {
  background: var(--sand);
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.strip__label {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink);
}
.strip__dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink);
  margin: 9px auto 0;
}
.strip__plus {
  position: absolute;
  right: var(--gutter);
  width: 26px; height: 26px;
  background: rgba(20, 21, 15, .1);
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  transition: background .4s var(--ease);
}
.strip__plus:hover { background: rgba(20, 21, 15, .2); }

/* --- 11. Resort kartları -------------------------------------------------- */
.resorts { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(8px, .9vw, 16px); }
.resort { background: var(--cream); text-align: center; }
.resort__fig { margin: 0; overflow: hidden; position: relative; }
.resort__fig img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.resort:hover .resort__fig img { transform: scale(1.055); }
.resort__body { padding: 34px 26px 58px; }
.resort__mark {
  font-family: var(--mark);
  font-size: clamp(1.35rem, 1.9vw, 1.75rem);
  font-weight: 400;
  letter-spacing: .01em;
  line-height: 1;
}
.resort__mark small {
  display: block;
  font-family: var(--label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .38em;
  margin-top: 6px;
  text-transform: uppercase;
}
.resort__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--ink); margin: 20px auto; }
.resort__txt { font-size: 13.5px; color: var(--ink-soft); max-width: 25ch; margin: 0 auto 26px; line-height: 1.6; }

/* --- 12. Tam genişlik görsel bantları ------------------------------------- */
.band { position: relative; overflow: hidden; }
.band img { width: 100%; height: clamp(320px, 46vw, 620px); object-fit: cover; }
.band--tall img { height: clamp(380px, 56vw, 760px); }
.band__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* --- 13. Metin + görsel blokları ------------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
}
.split--flip .split__fig { order: 2; }
.split__fig { margin: 0; overflow: hidden; }
.split__fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.split:hover .split__fig img { transform: scale(1.04); }
.split__body { max-width: 46ch; }
.split__body p { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 26px; }

/* --- 14. Kart ızgarası ---------------------------------------------------- */
.wrap > .center + .cards,
.wrap > .center + .rail,
.wrap > .center + .dots { margin-top: clamp(30px, 3.6vw, 54px); }

.cards {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), 1fr);
  gap: clamp(20px, 2.6vw, 42px);
}
.card__fig { margin: 0 0 20px; overflow: hidden; }
.card__fig img {
  width: 100%;
  aspect-ratio: var(--ratio, 4 / 5);
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.card:hover .card__fig img { transform: scale(1.05); }
.card p { font-size: 13.5px; color: var(--ink-soft); margin: 10px 0 16px; line-height: 1.62; }
.card .eyebrow { margin-bottom: 10px; }

/* --- 15. Yatay kaydırmalı carousel ---------------------------------------- */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: clamp(18px, 2.4vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail--3 { grid-auto-columns: minmax(260px, calc((100% - 2 * 40px) / 3)); }
.rail--4 { grid-auto-columns: minmax(220px, calc((100% - 3 * 28px) / 4)); }
.rail--5 { grid-auto-columns: minmax(190px, calc((100% - 4 * 18px) / 5)); }

.dots { display: flex; gap: 9px; justify-content: flex-start; margin-top: 34px; }
.dots button {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(20, 21, 15, .22);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.dots button.is-on { background: var(--ink); transform: scale(1.25); }

/* --- 16. Kolaj ------------------------------------------------------------ */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.4vw, 22px);
  align-items: start;
}
.collage figure { margin: 0; overflow: hidden; }
.collage img { width: 100%; object-fit: cover; transition: transform 1.6s var(--ease); }
.collage figure:hover img { transform: scale(1.05); }
.collage .c1 { grid-column: 1 / 3;  }
.collage .c2 { grid-column: 3 / 5;  margin-top: 2%; }
.collage .c3 { grid-column: 5 / 9;  }
.collage .c4 { grid-column: 9 / 11; margin-top: 1.2%; }
.collage .c5 { grid-column: 11 / 13; margin-top: 3.6%; }
.collage .c1 img { aspect-ratio: 4/5; }
.collage .c1 { margin-top: .4%; }
.collage .c2 img { aspect-ratio: 4/5; }
.collage .c3 img { aspect-ratio: 4/5; }
.collage .c4 img { aspect-ratio: 4/5; }
.collage .c5 img { aspect-ratio: 4/5; }

/* --- 17. Görsel üstü kart (Families sayfası) ------------------------------ */
.tile { position: relative; overflow: hidden; display: block; }
.tile img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 1.6s var(--ease); }
.tile:hover img { transform: scale(1.06); }
.tile__in {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(20, 18, 12, .12), rgba(20, 18, 12, .38));
}
.tile__in b {
  display: block;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tile__in span {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: .04em;
  margin-top: 2px;
}
.tile__in p { font-size: 12.5px; margin: 10px 0 0; opacity: .88; max-width: 26ch; }

/* --- 18. Filtre sekmeleri ------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.filters button {
  padding-bottom: 5px;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color .35s var(--ease), border-color .35s var(--ease);
}
.filters button:hover { color: var(--ink); }
.filters button.is-on { color: var(--ink); border-color: var(--ink); }

/* --- 19. Galeri masonry --------------------------------------------------- */
.masonry { columns: 3; column-gap: clamp(10px, 1.5vw, 22px); }
.masonry figure {
  margin: 0 0 clamp(10px, 1.5vw, 22px);
  break-inside: avoid;
  overflow: hidden;
  cursor: zoom-in;
}
.masonry img { width: 100%; transition: transform 1.6s var(--ease), opacity .5s var(--ease); }
.masonry figure:hover img { transform: scale(1.045); }
.masonry figure.is-hidden { display: none; }

/* Lightbox */
.lbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14, 16, 12, .94);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.lbox.is-open { opacity: 1; visibility: visible; }
.lbox img { max-width: 86vw; max-height: 84vh; object-fit: contain; }
.lbox__x, .lbox__prev, .lbox__next {
  position: absolute;
  color: #fff;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px;
}
.lbox__x { top: 20px; right: 24px; }
.lbox__prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }
.lbox__next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }

/* --- 20. Resort alt menüsü (yapışkan) ------------------------------------- */
.subnav {
  background: var(--sand);
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 75;
  box-shadow: 0 -1px 0 rgba(20, 21, 15, .08);
}
body.has-subnav { padding-bottom: var(--subnav-h, 66px); }
.subnav__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 17px var(--gutter);
  display: flex;
  align-items: center;
  gap: 30px;
}
.subnav__mark {
  font-family: var(--mark);
  font-size: 17px;
  letter-spacing: .01em;
  line-height: 1.1;
  flex: none;
}
.subnav__mark b { font-weight: 500; }
.subnav__mark span { font-weight: 300; }
.subnav__mark small {
  display: block;
  font-family: var(--label);
  font-size: 8.5px;
  letter-spacing: .2em;
  color: var(--ink-soft);
  margin-top: 2px;
}
.subnav__links {
  display: flex;
  gap: 26px;
  margin: 0 auto 0 0;
  justify-content: center;
  flex: 1;
  font-family: var(--label);
  font-size: 11.5px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav__links::-webkit-scrollbar { display: none; }
.subnav__links a { white-space: nowrap; padding: 4px 0; border-bottom: 1px solid transparent; transition: border-color .35s var(--ease); }
.subnav__links a:hover, .subnav__links a.is-on { border-color: var(--ink); }

/* --- 21. Newsletter + footer --------------------------------------------- */
.news { background: var(--brown); color: #fff; }
.news__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 84px) var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
}
.news h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing: .02em; line-height: 1.32; }
.news p { font-size: 13px; color: rgba(255, 255, 255, .74); max-width: 46ch; margin: 16px 0 0; }
.news__input {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  background: transparent;
  color: #fff;
  padding: 9px 0;
  min-width: 230px;
  font-family: var(--label);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.news__input::placeholder { color: rgba(255, 255, 255, .6); }
.news__input:focus { outline: none; border-color: #fff; }

.foot { background: var(--green); color: #fff; }
.foot__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(52px, 6vw, 78px) var(--gutter) 34px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.foot__brand small {
  display: block;
  font-family: var(--label);
  font-size: 9.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 14px;
}
.foot__brand img {
  width: clamp(180px, 15vw, 250px);
  opacity: .95;
}
.foot__col h3 { margin: 0 0 18px; }
.foot__toggle {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .95);
  display: block;
  width: 100%;
  text-align: left;
  cursor: default;
}
.foot__toggle i { display: none; }
.foot__col ul { list-style: none; margin: 0; padding: 0; }
.foot__col li { margin-bottom: 11px; }
.foot__col a {
  font-size: 13px;
  color: rgba(255, 255, 255, .78);
  transition: color .35s var(--ease);
}
.foot__col a:hover { color: #fff; }

.foot__base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter) 40px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.foot__base p { margin: 0; font-size: 11.5px; color: rgba(255, 255, 255, .62); }
.foot__mark { font-family: var(--mark); font-size: 26px; letter-spacing: .1em; }

/* --- 22. Erişilebilirlik aracı ------------------------------------------- */
.a11y {
  position: fixed;
  right: 0;
  top: 46%;
  z-index: 80;
  background: rgba(255, 255, 255, .94);
  padding: 8px 9px;
  text-align: center;
  box-shadow: 0 2px 16px -8px rgba(0, 0, 0, .3);
}
.a11y small {
  display: block;
  font-family: var(--label);
  font-size: 8px;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 3px;
}
.a11y button { display: block; width: 100%; line-height: 1.1; color: var(--ink); }
.a11y button:last-child { font-size: 11px; color: var(--gold); }

/* --- 23. Scroll reveal ---------------------------------------------------- */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.rv.is-in { opacity: 1; transform: none; }

/* Satır satır başlık açılışı */
.line-mask { display: block; overflow: hidden; }
.line-mask > span {
  display: block;
  transform: translateY(105%);
  transition: transform 1.05s var(--ease);
  transition-delay: calc(var(--d, 0) * 105ms);
}
.is-in .line-mask > span, .line-mask.is-in > span { transform: none; }

/* --- 24. Duyarlı ---------------------------------------------------------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .hdr__tel { display: none; }
  .resorts { grid-template-columns: repeat(2, 1fr); }
  .foot__in { grid-template-columns: 1fr 1fr 1fr; }
  .masonry { columns: 2; }
}

@media (max-width: 860px) {
  :root { --hdr-h: 62px; }
  .hdr__right .lang { display: none; }
  .hdr__right .btn { padding: 10px 18px; font-size: 10px; }
  .hdr__mark img { width: 92px; }
  .hdr.is-solid .hdr__mark img { width: 86px; }
  .booking { width: 100%; margin-top: 26px; }
  .booking__field, .booking__submit { padding: 13px 14px; font-size: 9.5px; }
  .hero { height: clamp(520px, 84vh, 720px); }
  .scroll-cue { width: 50px; height: 50px; margin-top: 26px; }
  .overlay { grid-template-columns: 1fr; }
  .overlay__right { display: none; }
  .overlay__list a { font-size: clamp(1.35rem, 6.4vw, 1.8rem); line-height: 1.62; }
  .overlay__mark { width: 108px; }
  .split, .split--flip .split__fig { grid-template-columns: 1fr; order: 0; }
  .cards { --cols: 2; }
  .news__in { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr 1fr; }
  .collage { grid-template-columns: repeat(2, 1fr); }
  .collage .c1, .collage .c2, .collage .c3, .collage .c4, .collage .c5 {
    grid-column: auto; margin-top: 0;
  }
  .collage .c3 { grid-column: 1 / -1; }
  .a11y { display: none; }
  .booking { flex-direction: column; }
  .booking__field { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .2); }
  .booking__submit { flex: 1 1 auto; }
}

@media (max-width: 600px) {
  .resorts { grid-template-columns: 1fr; }
  .cards { --cols: 1; }
  .masonry { columns: 1; }
  .foot__in { grid-template-columns: 1fr; }
  .foot__base { flex-direction: column; align-items: flex-start; }
  .hdr__mark img { width: 104px; }
}

/* --- 25. Hareket azaltma -------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .rv { opacity: 1; transform: none; }
  .line-mask > span { transform: none; }
  .hero__bg img { animation: none; }
}


/* --- 26. Etiketli görsel şeridi ------------------------------------------ */
.capfig { margin: 0; overflow: visible; }
.capfig img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.capfig:hover img { transform: scale(1.04); }
.capfig figcaption {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}
.capfig--light figcaption {
  color: rgba(255, 255, 255, .88);
  letter-spacing: .02em;
  text-transform: none;
  font-size: 12.5px;
  font-weight: 400;
}

/* Görsel üstü metin bloğu */
.band__copy { padding: 0 var(--gutter); color: #fff; max-width: none; width: 100%; }
.band__copy > * { max-width: 880px; margin-inline: auto; }
.band__copy .eyebrow { margin: 0 0 16px; }
.band__copy h2 { margin: 0 0 20px; }
.band__copy p {
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 22px rgba(0, 0, 0, .28);
}
.band__copy .link { margin-top: 20px; }

/* Anda F&B carousel'indeki metin kartı */
.fb-note {
  background: #fff;
  padding: 26px;
  align-self: center;
}
.fb-note .eyebrow { line-height: 1.8; letter-spacing: .16em; margin-bottom: 10px; }
.fb-note p { margin: 0; }


/* --- 27. Geniş ekrana özel satır sonları -------------------------------- */
@media (max-width: 1500px) {
  .hero__title br, .band__copy br, .lede br, .t-display br { display: none; }
}


/* --- 28. Mobil header zili --------------------------------------------- */
.hdr__bell { display: none; }
.hdr__bell svg { width: 26px; height: 26px; display: block; }

@media (max-width: 900px) {
  .hdr__right .hdr__tel,
  .hdr__right .btn { display: none; }
  .hdr__bell { display: block; }
  .overlay__panel a { font-size: 12px; }
  .overlay__panel li { margin-bottom: 20px; }
}

/* --- 29. Mobil footer akordeonu --------------------------------------- */
@media (max-width: 860px) {
  .foot__in { grid-template-columns: 1fr; gap: 0; }
  .foot__brand { margin-bottom: 34px; }
  .foot__col { border-bottom: 1px solid rgba(255, 255, 255, .16); }
  .foot__col h3 { margin: 0; }
  .foot__toggle {
    cursor: pointer;
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
  }
  .foot__toggle i {
    display: block;
    width: 9px; height: 9px;
    border-right: 1.3px solid currentColor;
    border-bottom: 1.3px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .4s var(--ease);
  }
  .foot__col.is-open .foot__toggle i { transform: rotate(225deg) translateY(-2px); }
  .foot__col ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease), padding .5s var(--ease);
    padding-left: 18px;
  }
  .foot__col.is-open ul { max-height: 360px; padding-bottom: 16px; }
}

/* --- 30. Yüzen hızlı aksiyon yığını (tasarım s.16 / s.18) -------------- */
.qa {
  position: absolute;
  right: var(--gutter);
  bottom: calc(100% + 16px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  pointer-events: none;
}
.qa a {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-family: var(--body);
  font-size: 13.5px;
  padding: 12px 22px;
  white-space: nowrap;
  transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s var(--ease);
  transition-delay: calc(var(--i) * 55ms);
}
.qa a:hover { background: #fff; }
.qa a.qa--gold {
  background: var(--gold);
  color: #fff;
  font-family: var(--label);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 13px 26px;
}
.qa a.qa--gold:hover { background: var(--gold-lt); }
.strip.is-open .qa { pointer-events: auto; }
.strip.is-open .qa a { opacity: 1; transform: none; pointer-events: auto; }

.strip { position: relative; }
.strip__plus {
  font-family: var(--body);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.strip.is-open .strip__plus { background: var(--gold); color: #fff; }

@media (max-width: 860px) {
  .qa a { font-size: 13px; padding: 11px 18px; }
}

/* --- 31. Breadcrumb ------------------------------------------------------ */
.crumbs {
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 34px;
}
.crumbs span { margin: 0 10px; opacity: .6; }
.crumbs a:hover { color: var(--ink); }

/* --- 32. Oda / restoran satırı ------------------------------------------ */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}
.row--flip .row__fig { order: 2; }
.row__fig { margin: 0; overflow: hidden; }
.row__fig img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.row:hover .row__fig img { transform: scale(1.04); }
.row__body { max-width: 46ch; }
.row__body p { font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; }

.specs { margin: 26px 0 0; border-top: 1px solid var(--line); }
.specs div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.specs span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.specs svg { width: 15px; height: 15px; flex: none; color: var(--gold); }

.price {
  font-family: var(--label);
  font-weight: 200;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -.01em;
  margin: 26px 0 0;
  line-height: 1;
}
.price small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 7px;
}

/* --- 33. Özellik listesi ------------------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px clamp(24px, 4vw, 64px);
}
.features span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 7px 0;
  line-height: 1.5;
}
.features svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--gold); }

/* --- 34. Kat planı ------------------------------------------------------ */
.inset { max-width: 1060px; margin-inline: auto; }

.plan { display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center; }
.plan img { width: 100%; max-width: 360px; }
.plan ul { list-style: none; margin: 0; padding: 0; }
.plan li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--label);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.plan b {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #A08E6A;
  color: #fff;
  font-family: var(--body);
  font-weight: 400;
  font-size: 11px;
  display: grid;
  place-items: center;
}

/* --- 35. Servis saatleri ------------------------------------------------ */
.hours dt {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 24px;
}
.hours dd {
  margin: 5px 0 0;
  font-family: var(--label);
  font-weight: 200;
  font-size: 18px;
  letter-spacing: .1em;
  color: var(--ink-soft);
}

/* --- 36. Kulüp / aktivite kartı ----------------------------------------- */
.actcard {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--card-bg, #fff);
}
.actcard img { width: 100%; height: 100%; object-fit: cover; }
.actcard__body { padding: clamp(26px, 3vw, 44px); }
.actcard__body p { font-size: 13.5px; color: var(--ink-soft); margin: 12px 0 0; }
.actcard__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin: 24px 0;
}
.actcard__meta em { font-style: normal; text-align: right; }

/* --- 37. Üç kapak (A New Chapter Begins) --------------------------------- */
.chapters { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 34px); }
.chapters figure { position: relative; margin: 0; overflow: hidden; }
.chapters img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 1.6s var(--ease); }
.chapters figure:hover img { transform: scale(1.05); }
.chapters figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 20px;
  background: linear-gradient(rgba(18,16,12,.1), rgba(18,16,12,.3));
}

/* --- 38. İletişim bloğu -------------------------------------------------- */
.contactline {
  display: inline-block;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  margin-top: 18px;
  font-size: 13.5px;
}
.contactline b { font-weight: 500; }

@media (max-width: 900px) {
  .row, .actcard, .plan { grid-template-columns: 1fr; }
  .row--flip .row__fig { order: 0; }
  .features { grid-template-columns: 1fr 1fr; }
  .chapters { grid-template-columns: 1fr; }
  .specs div { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
}

/* Koyu zemin dışındaki alt yazılı görseller */
.capfig--plain figcaption {
  text-transform: none;
  letter-spacing: .02em;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-soft);
}
.capfig--light img, .capfig--plain img { aspect-ratio: 4 / 3; }

/* Mobil — breadcrumb ve alt menü sıkıştırması */
@media (max-width: 700px) {
  .crumbs { font-size: 9px; letter-spacing: .12em; line-height: 1.9; }
  .crumbs span { margin: 0 6px; }
  .subnav__in { padding: 13px clamp(20px, 6vw, 34px); gap: 16px; }
  .subnav__mark { font-size: 15px; }
  .subnav__links { margin: 0; }
  .subnav__in .btn { padding: 10px 16px; font-size: 10px; }
  .hours dt { font-size: 13px; margin-top: 20px; }
  .hours dd { font-size: 16px; }
  .plan img { max-width: 100%; }
  .actcard__meta { grid-template-columns: 1fr; }
  .actcard__meta em { text-align: left; }
}

/* --- 39. Galen Spa kolajı — tasarımdaki hizalama --------------------------- */
.collage--spa .c1 { margin-top: 0; }
.collage--spa .c2 { margin-top: 1.6%; }
.collage--spa .c3 { margin-top: 0; }
.collage--spa .c4 { margin-top: 1.2%; }
.collage--spa .c5 { margin-top: 3.4%; }
.collage--spa .c1 img, .collage--spa .c2 img,
.collage--spa .c4 img, .collage--spa .c5 img { aspect-ratio: 3 / 4; }
.collage--spa .c3 img { aspect-ratio: 4 / 5; }

/* --- 40. Local Area — görsel üstü kart ------------------------------------ */
.overlap { position: relative; max-width: 1180px; margin-inline: auto; }
.overlap > figure { margin: 0; overflow: hidden; }
.overlap > figure img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.overlap__card {
  position: absolute;
  left: clamp(-90px, -5vw, -40px);
  bottom: 10%;
  width: min(330px, 60%);
  background: var(--cream);
  padding: 30px 32px;
}
.overlap__card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.62; }
.overlap__card .link { margin-top: 20px; }

/* --- 41. Local Area — kaçık genişlikli görsel şeridi ---------------------- */
.bleed-row {
  display: grid;
  grid-template-columns: 0.62fr 1fr 0.64fr;
  gap: clamp(14px, 2vw, 34px);
  align-items: start;
  padding-left: 0;
}
.bleed-row figure { margin: 0; }
.bleed-row img { width: 100%; object-fit: cover; display: block; }
.bleed-row .b1 img { aspect-ratio: 3 / 4.1; }
.bleed-row .b2 img { aspect-ratio: 3 / 2.68; }
.bleed-row .b3 img { aspect-ratio: 3 / 2.64; }
.bleed-row figcaption {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .88);
}

/* --- 42. Ortalı, dar metin sütunu (The Art of Living) --------------------- */
.stackcol { max-width: 640px; margin-inline: auto; }
.stackcol figure { margin: 0 0 30px; overflow: hidden; }
.stackcol figure img { width: 100%; aspect-ratio: 1 / 1.18; object-fit: cover; }
.stackcol p { font-size: 13.5px; line-height: 1.72; margin: 0 0 16px; }

/* --- 43. Etkileşimli harita ----------------------------------------------
   Otel adları normalde gizli. Noktanın üzerine gelindiğinde bağlantı çizgisi
   aşağıdan yukarı doğru çizilir ve otel adı belirir.
   ------------------------------------------------------------------------ */
.mapbox { position: relative; background: #fff; line-height: 0; }
.mapbox > img { width: 100%; display: block; }

.maphot { position: absolute; inset: 0; pointer-events: none; line-height: 1; }

.maphot__dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  pointer-events: auto;
  cursor: pointer;
}
.maphot__dot::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 22px;
  margin: -11px 0 0 -11px;
  border: 1px solid rgba(20, 21, 15, .45);
  border-radius: 50%;
  opacity: 0;
  transform: scale(.6);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.maphot__dot:hover::before,
.maphot.is-on .maphot__dot::before { opacity: 1; transform: scale(1); }

.maphot__line {
  position: absolute;
  left: var(--x);
  top: var(--lt);
  height: var(--lh);
  width: 1px;
  background: rgba(20, 21, 15, .6);
  transform: translateX(-50%) scaleY(0);
  transform-origin: var(--origin, top);
  transition: transform .6s var(--ease);
}
.maphot__label {
  position: absolute;
  left: var(--x);
  top: var(--ly);
  transform: translate(-50%, 6px);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s;
}
.maphot__label b {
  display: block;
  font-family: var(--mark);
  font-weight: 400;
  font-size: clamp(14px, 1.45vw, 27px);
  letter-spacing: .02em;
  line-height: 1;
}
.maphot__label small {
  display: block;
  font-family: var(--label);
  font-size: clamp(6.5px, .5vw, 9px);
  font-weight: 500;
  letter-spacing: .34em;
  margin-top: 5px;
}
.maphot__label em {
  display: block;
  font-style: normal;
  font-family: var(--label);
  font-size: clamp(6.5px, .5vw, 9px);
  letter-spacing: .2em;
  color: var(--muted);
  margin-top: 16px;
}
.maphot__dot:hover ~ .maphot__line,
.maphot.is-on .maphot__line { transform: translateX(-50%) scaleY(1); }
.maphot__dot:hover ~ .maphot__label,
.maphot.is-on .maphot__label { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .overlap__card { position: static; width: 100%; margin-top: -40px; }
  .bleed-row { grid-template-columns: 1fr; }
  .mapbox__label b { font-size: 13px; }
}

/* --- 44. Galen Spa görsel şeridi -----------------------------------------
   Tasarımdaki gibi: beş görselin üstü hizalı, genişlik ve yükseklikleri
   farklı, ortadaki en uzun.
   ------------------------------------------------------------------------ */
.spa-row {
  display: grid;
  grid-template-columns: 1.94fr 1.21fr 2.65fr 1.18fr 2.13fr;
  gap: clamp(10px, 1.3vw, 26px);
  align-items: start;
}
.spa-row figure { margin: 0; overflow: hidden; }
.spa-row img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s var(--ease);
}
.spa-row figure:hover img { transform: scale(1.05); }
.spa-row .s1 img { aspect-ratio: 3 / 4; }
.spa-row .s2 img { aspect-ratio: 3 / 3.95; }
.spa-row .s3 img { aspect-ratio: 3 / 3.8; }
.spa-row .s4 img { aspect-ratio: 3 / 4.9; }
.spa-row .s5 img { aspect-ratio: 3 / 4.15; }

@media (max-width: 900px) {
  .spa-row { grid-template-columns: 1fr 1fr; }
  .spa-row .s3 { grid-column: 1 / -1; }
}

/* Mobil — sabit alt menü daralt */
@media (max-width: 700px) {
  .subnav__in { padding: 11px 14px; gap: 12px; }
  .subnav__mark { font-size: 13px; }
  .subnav__mark small { font-size: 7.5px; }
  .subnav__links { font-size: 11px; gap: 18px; }
  .subnav__in .btn { padding: 9px 13px; font-size: 9.5px; letter-spacing: .12em; }
}

/* --- 45. Haritadaki havalimanı uçakları ---------------------------------
   İkonlar tabandan kaldırıldı; burada yeniden çizilip küçük bir loop
   hareketiyle havalimanlarının fark edilmesi sağlanıyor.
   ------------------------------------------------------------------------ */
.mapplane {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, 1.1%);
  color: var(--ink);
  pointer-events: none;
  animation: planeDrift 7s var(--ease) infinite;
}
.mapplane svg {
  width: 100%; height: auto; display: block;
  fill: currentColor;
  transform: rotate(48deg);
}

@keyframes planeDrift {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  25%  { transform: translate(calc(-50% + 4px), calc(-50% - 3px)) rotate(4deg); }
  50%  { transform: translate(-50%, calc(-50% - 5px)) rotate(0deg); }
  75%  { transform: translate(calc(-50% - 4px), calc(-50% - 3px)) rotate(-4deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}
.mapplane--b { animation-delay: -3.5s; }

@media (prefers-reduced-motion: reduce) {
  .mapplane { animation: none; }
}

/* --- 46. Restoran bölümü — büyük görsel + üstüne binen kart ------------- */
.dine { position: relative; max-width: 1180px; margin-inline: auto; }
.dine > figure { margin: 0; overflow: hidden; }
.dine > figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.dine__card {
  position: absolute;
  right: 4%;
  bottom: -78px;
  width: min(520px, 52%);
  background: #fff;
  padding: 30px 34px;
}
.dine__card .eyebrow { margin: 0 0 12px; line-height: 1.75; letter-spacing: .16em; }
.dine__card p { margin: 0; font-size: 13.5px; color: var(--ink-soft); line-height: 1.62; }
.dine__card .links { display: flex; gap: 30px; margin-top: 18px; }
.dine + .dots { margin-top: 96px; }

@media (max-width: 900px) {
  .dine__card { position: static; width: 100%; padding: 24px 0 0; }
  .dine + .dots { margin-top: 26px; }
}
