/* ═══════════════════════════════════════════════
   Esinti Bungalov — Luxury Lodge Design System
   v2.1 — Web & Mobile Uyumluluk Düzeltmeleri
═══════════════════════════════════════════════ */

:root {
  --ink:       #0e0d0b;
  --ink2:      #161410;
  --ink3:      #1e1b15;
  --amber:     #c8893a;
  --amber2:    #e5a04a;
  --text:      #f0ece4;
  --text-dim:  #9a8f7a;
  --border:    rgba(240,236,228,.09);
  --border2:   rgba(200,137,58,.25);
  --radius:    4px;
  --radius-lg: 14px;
  --shadow-lg: 0 24px 64px rgba(0,0,0,.6);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --topbar-h: 72px;
}

/* @import MUST be first — moved to <link> in HTML so this is fine as comment */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* scrollbar-gutter sadece overflow:scroll olan elementlerde çalışır, body'ye uygulamak layout shift yaratır */
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* iOS momentum scrolling */
  -webkit-overflow-scrolling: touch;
}

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

/* tap highlight kaldır iOS */
a, button { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .4s ease, box-shadow .4s ease;
  /* iOS safe area */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
@media (min-width: 861px) {
  :root { --topbar-h: 98px; }
}
.topbar.scrolled {
  background: rgba(14,13,11,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 8px 28px rgba(0,0,0,.4);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  padding-inline: 0;
}
@media (min-width: 861px) {
  .topbar__inner {
    min-height: var(--topbar-h);
  }
  .nav {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
  }
  .topbar__right {
    margin-left: auto;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
  top: 0;
}
.brand__mark {
  width: 34px; height: 34px; flex-shrink: 0;
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 1rem;
  color: var(--amber);
}
.brand__text {
  display: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: .9;
  transform: translateY(-1px);
}
.brand__logo {
  display: block;
  flex-shrink: 0;
  transform: none;
}
.nav { display: flex; gap: 2px; align-items: center; }
.nav a {
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); background: rgba(240,236,228,.06); }

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  top: 0;
}

.topbar__right .btn--sm {
  padding-inline: 22px;
}

/* Hamburger */
.hamburger {
  width: 42px; height: 42px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(240,236,228,.05);
  border: 1px solid var(--border) !important;
  border-radius: var(--radius);
  padding: 0;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  background: rgba(14,13,11,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px 24px;
  z-index: 99;
  /* iOS safe area */
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .25s;
  /* min tap target */
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--amber); padding-left: 8px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .2s, background .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  /* min tap target */
  min-height: 44px;
  touch-action: manipulation;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber2);
  box-shadow: 0 8px 28px rgba(200,137,58,.38);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(240,236,228,.2);
}
.btn--ghost:hover { border-color: rgba(240,236,228,.35); background: rgba(240,236,228,.05); }
.btn--xl { padding: 16px 32px; font-size: .82rem; }
.btn--sm { padding: 9px 18px; font-size: .74rem; min-height: 36px; }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  /* 100svh yerine 100dvh — iOS Chrome/Safari address bar'ı hesaba katar */
  min-height: 100dvh;
  min-height: 100svh; /* fallback */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 90px;
  overflow: hidden;
  /* iOS safe area bottom */
  padding-bottom: max(90px, calc(70px + env(safe-area-inset-bottom)));
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.6s ease;
}
.hero-bg__slide.active { opacity: 1; }
.hero-bg__img-el {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-bg__slide.active .hero-bg__img-el {
  animation: heroKenBurns 14s ease-in-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,    rgba(14,13,11,.95) 0%, rgba(14,13,11,.5) 40%, rgba(14,13,11,.15) 100%),
    linear-gradient(to right,  rgba(14,13,11,.5)  0%, transparent 60%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.hero__eyebrow-line { width: 36px; height: 1px; background: var(--amber); flex-shrink: 0; }
.hero__eyebrow-text {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  margin-bottom: 22px;
  /* max-width kaldırıldı — mobilde sığmıyor */
}
.hero h1 em { font-style: italic; color: var(--amber2); }
.hero__lead {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--text-dim);
  max-width: 46ch;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__badges {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  row-gap: 12px;
}
.hero-badge { display: flex; align-items: center; gap: 9px; }
.hero-badge__icon { font-size: 1rem; flex-shrink: 0; }
.hero-badge__label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollCue 2.4s ease-in-out infinite;
  pointer-events: none;
}
.hero-scroll__line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--amber), transparent);
}
.hero-scroll__label {
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
@keyframes scrollCue {
  0%,100% { opacity: .45; transform: translateX(-50%) translateY(0); }
  50%      { opacity: 1;   transform: translateX(-50%) translateY(7px); }
}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.section { padding: 96px 0; }
.section--dark  { background: var(--ink2); }
.section--ink   { background: var(--ink); }
.section--warm  { background: var(--ink3); }

.section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section__label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section__title em { font-style: italic; color: var(--amber2); }
.section__subtitle {
  font-size: clamp(.88rem, 1.5vw, .98rem);
  color: var(--text-dim);
  max-width: 52ch;
  line-height: 1.75;
}

/* ══════════════════════════════
   FEATURES
══════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 52px;
}
.feature-item {
  background: var(--ink2);
  padding: 34px 24px 30px;
  transition: background .3s;
  position: relative;
  overflow: hidden;
}
.feature-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.feature-item:hover { background: var(--ink3); }
.feature-item:hover::after { transform: scaleX(1); }
.feature-item__icon {
  font-size: 1.8rem;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(200,137,58,.08);
  border: 1px solid var(--border2);
  border-radius: 12px;
}
.feature-item__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 9px;
}
.feature-item__desc { font-size: .84rem; color: var(--text-dim); line-height: 1.65; }



/* ══════════════════════════════
   UNITS
══════════════════════════════ */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.unit-card {
  background: linear-gradient(180deg, rgba(25,24,21,.98), rgba(16,15,13,.98));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.unit-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: zoom-in;
}
.unit-card__media img,
.unit-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.unit-card__media img {
  transition: transform .75s cubic-bezier(.22,1,.36,1);
}
.unit-card:hover .unit-card__media img {
  transform: scale(1.04);
}
.unit-card__body {
  padding: 24px;
}
.unit-card__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: .01em;
}
.unit-card__subtitle {
  margin: 0;
  color: var(--text-dim);
  font-size: .92rem;
  line-height: 1.7;
}
.unit-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.unit-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: rgba(240,236,228,.04);
  color: var(--text-soft);
  font-size: .76rem;
  letter-spacing: .02em;
}
.unit-card__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 20px;
}
.unit-card__thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
}
.unit-card__actions {
  margin-top: 22px;
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-mosaic__item {
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  /* aspect-ratio fallback: grid row tanımlıdır */
}
.gallery-mosaic__item:first-child { grid-row: 1 / 3; }
.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22,1,.36,1);
}
.gallery-mosaic__item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  /* iOS safe area */
  padding: max(20px, env(safe-area-inset-top))
           max(20px, env(safe-area-inset-right))
           max(20px, env(safe-area-inset-bottom))
           max(20px, env(safe-area-inset-left));
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  font-size: 1.8rem; color: var(--text-dim);
  line-height: 1;
  transition: color .2s;
  /* min tap target */
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(240,236,228,.08);
}
.lightbox__close:hover { color: var(--text); background: rgba(240,236,228,.14); }

/* ══════════════════════════════
   LOCATION
══════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.location-info {
  background: var(--ink3);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
}
.location-info__address {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 300;
  line-height: 1.45;
}
.location-info__note {
  font-size: .88rem;
  color: var(--text-dim);
  line-height: 1.7;
}
.location-map { min-height: 360px; }
.location-map iframe {
  width: 100%; height: 100%; min-height: 360px;
  border: none;
  filter: brightness(.82) contrast(1.08) saturate(.6);
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-top: 52px;
  -webkit-overflow-scrolling: touch;
  /* scroll snap */
  scroll-snap-type: x mandatory;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 14px;
  width: max-content;
  /* padding so edge cards aren't cut */
  padding: 2px 4px 8px;
}
.review-card {
  width: 340px; flex-shrink: 0;
  background: var(--ink3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  scroll-snap-align: start;
}
.review-card:hover {
  border-color: var(--border2);
  box-shadow: 0 14px 44px rgba(0,0,0,.38);
  transform: translateY(-3px);
}
.review-card__decoration {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--amber);
  opacity: .16;
  position: absolute;
  top: 10px; left: 20px;
  pointer-events: none;
  user-select: none;
}
.review-card__stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: .85rem;
  margin-bottom: 16px;
}
.review-card__text {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}
.review-card__who {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ══════════════════════════════
   BOOKING
══════════════════════════════ */
.booking-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 8px;
  margin-top: 52px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.booking-info { background: var(--ink3); padding: 56px 48px; }
.booking-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 14px;
}
.booking-info h2 em { font-style: italic; color: var(--amber2); }
.booking-info .lead {
  color: var(--text-dim);
  margin-bottom: 34px;
  max-width: 44ch;
  line-height: 1.75;
  font-size: clamp(.88rem, 1.5vw, 1rem);
}
.booking-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.booking-meta {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}
.booking-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.booking-meta-row__k {
  font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-dim); flex-shrink: 0;
}
.booking-meta-row__v { font-size: .88rem; font-weight: 500; }

.booking-template {
  background: var(--ink2);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--border);
}
.booking-template__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 300;
}
.booking-template__sub { font-size: .8rem; color: var(--text-dim); }
.copybox {
  flex: 1;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  white-space: pre-wrap;
  font-family: ui-monospace, 'SF Mono', monospace;
  font-size: .8rem;
  color: var(--text-dim);
  line-height: 1.75;
  min-height: 120px;
  overflow-x: auto;
  word-break: break-word;
}
#copyBtn {
  width: 100%;
  background: rgba(200,137,58,.14);
  border-color: var(--border2) !important;
  color: var(--amber2);
  border: 1px solid;
}
#copyBtn:hover { background: rgba(200,137,58,.24); }
.tiny { font-size: .74rem; color: var(--text-dim); text-align: center; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 52px 0 36px;
  /* iOS safe area */
  padding-bottom: max(36px, env(safe-area-inset-bottom));
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer__brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.footer__tagline { font-size: .82rem; color: var(--text-dim); line-height: 1.65; max-width: 28ch; }
.footer__col-title {
  font-size: .66rem; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .86rem; color: var(--text-dim);
  min-height: 32px; display: flex; align-items: center;
  transition: color .2s, padding-left .2s;
}
.footer__links a:hover { color: var(--text); padding-left: 5px; }
.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer__credit {
  font-size: .76rem; color: var(--text-dim);
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.footer__support { color: var(--amber); font-weight: 500; transition: color .2s; }
.footer__support:hover { color: var(--amber2); }

/* ══════════════════════════════
   FLOATING ACTIONS
══════════════════════════════ */
.floating-actions {
  position: fixed;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
}
.fab {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: transform .25s ease, box-shadow .25s ease;
  touch-action: manipulation;
}
.fab:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 10px 32px rgba(0,0,0,.5); }
.fab svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.fab--wa {
  background: rgba(37,211,102,.16); border-color: rgba(37,211,102,.38); color: #25d366;
  animation: waPulse 3s ease-in-out infinite;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.0),   0 4px 20px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 0 9px rgba(37,211,102,.11), 0 4px 20px rgba(0,0,0,.4); }
}
.fab--wa:hover { background: rgba(37,211,102,.26); }
.fab--ig { background: rgba(240,236,228,.07); border-color: rgba(240,236,228,.15); color: var(--text); }
.fab--ig:hover { background: rgba(240,236,228,.13); }
.fab--ph { background: rgba(200,137,58,.14); border-color: rgba(200,137,58,.35); color: var(--amber2); }
.fab--ph:hover { background: rgba(200,137,58,.24); }

.sr-only {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ══════════════════════════════
   RESPONSIVE — TABLET 1024px
══════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .unit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

/* ══════════════════════════════
   RESPONSIVE — TABLET 860px
══════════════════════════════ */
@media (max-width: 860px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .section { padding: 68px 0; }
  .container { width: calc(100% - 36px); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .unit-grid { grid-template-columns: 1fr; }

  /* Gallery: 2 col, tüm itemler eşit */
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-mosaic__item:first-child { grid-row: auto; }

  /* Location: tek col */
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .location-map iframe { min-height: 300px; }

  /* Booking: tek col */
  .booking-split { grid-template-columns: 1fr; }
  .booking-template {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 36px 40px;
  }
}

/* ══════════════════════════════
   RESPONSIVE — MOBİL 600px
══════════════════════════════ */
@media (max-width: 600px) {
  :root { --topbar-h: 64px; }
  .container { width: calc(100% - 28px); }
  .section { padding: 56px 0; }

  .topbar__inner {
    width: 100%;
    padding-inline: 0;
    gap: 12px;
  }

  /* Hero */
  .hero { padding-bottom: max(72px, calc(56px + env(safe-area-inset-bottom))); }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__lead { font-size: .88rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__badges { gap: 14px; row-gap: 10px; }
  .hero-scroll { display: none; } /* mobilde scroll cue kaldırıldı */

  /* Brand */
  .brand {
    top: 0;
    gap: 0;
    font-size: 1.1rem;
    letter-spacing: .06em;
    max-width: none;
  }
  .brand__logo {
    height: 58px !important;
    width: auto;
  }
  .brand__text {
    display: none;
    font-size: 1.05rem;
    line-height: .92;
    max-width: 100%;
  }
  .topbar__right { top: -2px; gap: 8px; }
  .topbar__right .btn--sm {
    padding: 8px 12px;
    font-size: .68rem;
    min-height: 34px;
  }
  .hamburger { width: 40px; height: 40px; }

  /* Features: tek col */
  .features-grid { grid-template-columns: 1fr; }
  .unit-card__body { padding: 22px; }
  .unit-card__title { font-size: 1.7rem; }
  .unit-card__thumbs { grid-template-columns: repeat(3, 1fr); }

  /* Gallery: tek col */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 240px);
  }

  /* Reviews card daha dar */
  .review-card { width: calc(100vw - 60px); }

  /* Booking */
  .booking-info { padding: 32px 24px; }
  .booking-template { padding: 28px 24px; }
  .booking-actions { flex-direction: column; }
  .booking-actions .btn { width: 100%; justify-content: center; }
  .booking-meta-row { flex-direction: column; gap: 4px; }
  .booking-meta-row__v { text-align: left; }

  /* Location */
  .location-info { padding: 32px 24px; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__grid > *:first-child { grid-column: auto; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__credit { justify-content: center; }

  /* FABs biraz küçük */
  .fab { width: 46px; height: 46px; }
  .floating-actions { gap: 8px; }
}

/* ══════════════════════════════
   RESPONSIVE — KÜÇÜK MOBİL 380px
══════════════════════════════ */
@media (max-width: 380px) {
  .hero h1 { font-size: 2rem; }
  .brand { gap: 4px; }
  .brand__logo { height: 54px !important; }
  .btn--xl { padding: 14px 22px; }
}

/* ══════════════════════════════
   LANDSCAPE MOBİL
══════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100svh;
    padding-bottom: 40px;
  }
  .hero__badges { display: none; }
  .hero-scroll { display: none; }
  .hero h1 { font-size: 2rem; margin-bottom: 12px; }
  .hero__lead { display: none; }
}

/* ══════════════════════════════
   FOCUS / A11Y
══════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.location-contact-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 16px;
}
.location-contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}
.location-contact-list a:hover { color: var(--accent); }
.page-shell { padding-top: 94px; }
.page-hero {
  padding: 36px 0 12px;
  background: linear-gradient(180deg, rgba(18,16,13,.96), rgba(18,16,13,.84));
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: end;
}
.page-title {
  margin: 10px 0 12px;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.page-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}
.page-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.page-section { padding-top: 28px; }
.page-stack {
  display: grid;
  gap: 18px;
}
.page-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: rgba(18,16,13,.72);
  box-shadow: 0 22px 46px rgba(0,0,0,.22);
}
.page-card h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}
.page-card p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.8;
}
.list-check {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list-check li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.list-check li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}
@media (max-width: 900px) {
  .page-shell { padding-top: 84px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__actions { justify-content: flex-start; }
}
