/* =============================================
   ALİ BABA VIP LOUNGE
   Bootstrap 4.6 | Light / Minimal Theme
   ============================================= */

/* Maginia font — fonts/Maginia.woff2 dosyasını klasöre ekleyin */
@font-face {
  font-family: 'Maginia';
  src: url('../fonts/Maginia.woff2') format('woff2'),
       url('../fonts/Maginia.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold:        #b5a191;
  --gold-light:  #cdbfb4;
  --bg:          #f9f7f4;
  --bg-2:        #f2efe9;
  --bg-dark:     #111009;
  --text:        #1a1814;
  --muted:       #5a5248;
  --border:      rgba(0,0,0,.08);
  --border-gold: rgba(181,161,145,.3);
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Montserrat', sans-serif;
  --ff-hero:     'Maginia', 'Cormorant Garamond', Georgia, serif;

  /* Tutarlı yan boşluk — tüm site buradan yönetilir */
  --side: clamp(2rem, 6vw, 7rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: .02em;
}

/* overflow-x body'ye YAZILMAZ — sticky'i kırar.
   Sadece içerik section'larına clip uygula.       */
section:not(#video-scroll-section):not(#panels):not(#gallery-wall),
#navbar, footer { overflow-x: clip; }
#gallery-wall { overflow: hidden; }

#panels, #panels * { box-sizing: border-box; }

/* Custom cursor — masaüstü only */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}

#site-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 8px;
  height: 8px;
  background: var(--text);
  border: 1px solid transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity .2s,
              width  .4s cubic-bezier(0.34, 1.56, 0.64, 1),
              height .4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background .3s ease,
              border-color .3s ease;
  will-change: transform;
}
#site-cursor.is-link {
  width: 22px;
  height: 22px;
  background: var(--text);
  opacity: .35;
}

::selection { background: var(--gold); color: #fff; }
a { color: inherit; text-decoration: none; transition: color .3s; }
a:hover { color: var(--gold); text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Evrensel içerik sarmalayıcı ── */
.w {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--side);
  padding-right: var(--side);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text);
  margin: 0;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .9rem;
}

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .05em;
}

.rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 1.2rem 0;
  opacity: .55;
}
.rule.center { margin: 1.2rem auto; }

/* ── Button ── */
.btn-outline {
  display: inline-block;
  padding: .65rem 2rem;
  border: 1px solid var(--text);
  color: var(--text);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  background: transparent;
  transition: background .3s, color .3s, border-color .3s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline.gold  { border-color: var(--gold); color: var(--gold); }
.btn-outline.gold:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* =============================================
   NAVBAR — Kempinski: her zaman beyaz, kompakt
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  padding: 0 var(--side);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

/* Sol grup */
.nav-group-left {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Sağ grup */
.nav-group-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

/* Logo */
.nav-logo { justify-self: center; }
.nav-logo img { height: 44px; display: block; }
.logo-light { display: none; }
.logo-dark  { display: block; }

/* Hamburger → X */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--text);
  transition: transform .38s ease, opacity .28s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Dil seçici */
.nav-lang-wrap {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--muted);
}
.nav-lang { cursor: pointer; transition: color .25s; }
.nav-lang.active { color: var(--text); font-weight: 500; }
.nav-lang:hover  { color: var(--text); }
.nav-lang-sep    { opacity: .22; }

/* Rezervasyon butonu */
.nav-res-btn {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 1.8rem;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--ff-sans);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .25s;
}
.nav-res-btn:hover { background: #9c7238; }

.nav-franchise-link {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.nav-franchise-link:hover { color: var(--gold); }

/* Mobil Instagram ikonu — varsayılan gizli */
.nav-mob-instagram {
  display: none;
  color: var(--text);
  font-size: 1.15rem;
  transition: color .2s;
}
.nav-mob-instagram:hover { color: var(--gold); }

/* =============================================
   SITE MENU — Kempinski full-screen overlay
   ============================================= */
/* ── Site menu: beyaz, yukarıdan iner — her ekran boyutunda ── */
#site-menu {
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 850;
  display: flex;
  flex-direction: column;
  padding: 4rem var(--side) 2.5rem;
  transform: translateY(-105%);
  transition: transform .55s cubic-bezier(.76,0,.24,1);
  overflow-y: auto;
}
#site-menu.open { transform: translateY(0); }

/* Dil seçici — masaüstünde gizli (navbar'da zaten var), mobilde görünür */
.smenu-lang-top { display: none; }

/* Dil seçici — menü en üstü */
.smenu-lang-top {
  align-items: stretch;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}
.smenu-lang-item {
  flex: 1;
  text-align: center;
  padding: .6rem .5rem;
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.smenu-lang-item:last-child { border-right: none; }
.smenu-lang-item.active {
  color: var(--text);
  font-weight: 600;
  background: rgba(0,0,0,.03);
}
.smenu-lang-item:hover { color: var(--text); background: rgba(0,0,0,.02); }

.smenu-body {
  flex: 1;
  display: grid;
  grid-template-columns: auto minmax(720px, 920px) minmax(240px, 320px);
  justify-content: space-between;
  gap: 4.25rem;
  align-items: start;
}

/* Ana linkler — masaüstü: büyük tek kolon serif */
.smenu-main {
  padding-right: 4rem;
}
.smenu-main a {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .45rem;
  transition: color .22s;
  letter-spacing: .01em;
  line-height: 1.1;
}
.smenu-main a:hover { color: var(--gold); }
/* Masaüstünde ikonlar gizli */
.smenu-main a i { display: none; }

/* İkincil linkler */
.smenu-secondary {
  padding-top: 0;
  padding-left: 4rem;
  border-left: 1px solid var(--border);
  min-width: 0;
}
.smenu-secondary .smenu-label {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 300;
  color: var(--text);
  display: block;
  line-height: 1.1;
  margin-bottom: 1.35rem;
  letter-spacing: .01em;
  text-transform: none;
}
.smenu-secondary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .15rem;
}
.smenu-corporate-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, .85fr);
  gap: 5rem;
  align-items: start;
}
.smenu-menu-section {
  min-width: 0;
}
.smenu-secondary a {
  font-size: 1.1rem;
  color: var(--muted);
  display: block;
  line-height: 1.35;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: color .2s;
  font-weight: 100 !important;
}
.smenu-secondary a:last-child,
.smenu-secondary a:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.smenu-secondary a:hover { color: var(--text); }

/* Sosyal kolon */
.smenu-social {
  padding-top: 0;
  padding-left: 4rem;
  min-width: 240px;
}
.smenu-social-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1.45rem;
}
.smenu-social a {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.05rem;
  color: var(--muted);
  padding: .48rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: color .2s;
}
.smenu-social a:last-child { border-bottom: none; }
.smenu-social a i { font-size: .85rem; flex-shrink: 0; }
.smenu-social a:hover { color: var(--text); }
.smenu-social .text-muted {
  display: block;
  color: var(--muted) !important;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 260px;
}

/* Footer */
.smenu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.smenu-footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.smenu-footer-links a {
  font-size: .8rem;
  color: var(--muted);
  transition: color .22s;
}
.smenu-footer-links a:hover { color: var(--text); }
.smenu-footer-icons { display: flex; gap: 1rem; }
.smenu-footer-icons a {
  color: var(--muted);
  font-size: 1em;
  transition: color .22s;
}
.smenu-footer-icons a:hover { color: var(--text); }

/* ── Menü mobil layout ≤1100px ── */
@media (max-width: 1100px) {
  /* Navbar: dil ve franchise gizle, Instagram ikonu göster */
  .nav-lang-wrap      { display: none; }
  .nav-franchise-link { display: none; }
  .nav-mob-instagram  { display: flex; align-items: center; }

  /* Menü: beyaz, yukarıdan iner, padding küçülür */
  #site-menu { padding: 1.8rem 1.4rem 2rem; }

  /* Dil barı mobilde görünür */
  .smenu-lang-top { display: flex; }

  /* 3 kolon → tek kolon */
  .smenu-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Ana linkler: mobilde 2 sütun, ikonlu, kompakt */
  .smenu-main {
    padding-right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .smenu-main a {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    margin-bottom: 0;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    gap: .5rem;
  }
  .smenu-main a i { display: inline-block; font-size: .8rem; color: var(--muted); }

  /* İkincil: sol border yerine üst border */
  .smenu-secondary {
    border-left: none;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 1.2rem;
    margin-top: 1.2rem;
  }
  .smenu-corporate-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Sosyal */
  .smenu-social {
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
    margin-top: 1.2rem;
  }

  /* Footer dikey dizilir */
  .smenu-footer { flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
}

/* =============================================
   HERO — Full-bleed Kempinski stili
   ============================================= */
#hero {
  position: relative;
  height: min(47.06vw, calc(100svh - 72px));
  margin-top: 72px;
  min-height: 520px;
  overflow: hidden;
  background: #111;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 20px solid #fff;
  z-index: 10;
  pointer-events: none;
}

/* Slider: tüm alanı kaplar */
/* Swiper hero */
.hero-swiper {
  position: absolute;
  inset: 0;
}
.hero-swiper .swiper-slide { height: 100%; }
.hero-slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-slide-img img {
  display: none;
}

/* Koyu gradient - slider görseli metnin arkasında görünür kalır */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.62) 0%, rgba(0,0,0,.16) 48%, rgba(0,0,0,.08) 100%),
    linear-gradient(to right, rgba(0,0,0,.34) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

/* Marka metni — tam orta */
.hero-brand {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--side);
  pointer-events: none;
}
.hero-brand a, .hero-brand button { pointer-events: all; }

.hero-location {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  display: block;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--ff-hero);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
  margin-bottom: 2.4rem;
}

/* Hero CTA */
.hero-cta {
  border-color: rgba(255,255,255,.78) !important;
  color: #fff !important;
  letter-spacing: .14em;
}
.hero-cta:hover {
  background: #fff !important;
  color: var(--text) !important;
  border-color: #fff !important;
}

/* Swiper pagination */
.hero-pagination {
  bottom: 2rem !important;
  z-index: 12;
}

/* Hero ok butonları */
.hero-prev, .hero-next {
  z-index: 12 !important;
  width: 48px !important;
  height: 48px !important;
  background-color: #ffffff !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  border: none !important;
  border-radius: 50% !important;
  color: #000000 !important;
  transition: background .25s, box-shadow .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.hero-prev:hover, .hero-next:hover {
  background-color: #f0f0f0 !important;
  background: #f0f0f0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.hero-prev::after, .hero-next::after {
  font-size: .85rem !important;
  color: #000000 !important;
  font-weight: 700;
}
.hero-prev { left: 2rem !important; }
.hero-next { right: 2rem !important; }
@media (max-width: 560px) {
  .hero-prev, .hero-next { display: none !important; }
}
.hero-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,.45);
  opacity: 1;
  transition: background .3s, transform .3s;
}
.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.5);
}

/* Scroll hint — orta alt */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(0,0,0,.55);
  font-size: 1em;
  letter-spacing: .18em;
  text-transform: uppercase;
  z-index: 11;
  cursor: pointer;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: lineBreath 2s ease-in-out infinite;
}
@keyframes lineBreath {
  0%,100% { opacity: .25; }
  50%      { opacity: .9; }
}

/* =============================================
   HERO — CSS keyframe (JS'siz, her zaman çalışır)
   ============================================= */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-location             { animation: heroIn .8s ease .1s  both; }
.hero-title                { animation: heroIn .9s ease .3s  both; }
.hero-tagline              { animation: heroIn .8s ease .55s both; }
.hero-brand .btn-outline   { animation: heroIn .8s ease .75s both; }
.slide-nav                 { animation: heroIn .8s ease .95s both; }
.hero-scroll               { animation: heroIn .8s ease 1.1s both; }

/* =============================================
   HAKKIMIZDA
   ============================================= */
#about { padding: 9rem 0; background: var(--bg); }

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.about-body p {
  color: var(--muted);
  line-height: 2;
  font-size: 1em;
  margin-bottom: 1rem;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 55%; height: 55%;
  border: 1px solid var(--border-gold);
  pointer-events: none;
}

/* =============================================
   SCROLL VIDEO — inset / windowed
   ============================================= */
#video-scroll-section {
  height: 400vh;
  position: relative;
  background: var(--bg);
}
.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.video-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.55) 24%, rgba(0,0,0,.18) 52%, rgba(0,0,0,0) 76%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 38%, rgba(0,0,0,.34) 100%);
  pointer-events: none;
  z-index: 1;
}
#scroll-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,7,.15) 0%,
    rgba(8,8,7,.0)  35%,
    rgba(8,8,7,.0)  55%,
    rgba(8,8,7,.55) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 5rem var(--side);
  z-index: 2;
}

/* Overlay metin */
.video-text {
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}
.video-text.show {
  opacity: 1;
  transform: translateY(0);
}
.video-text .vt-eyebrow {
  font-family: var(--ff-sans);
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: #d4b483;
  display: block;
  margin-bottom: .8rem;
}
.video-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.vt-sub {
  font-size: 1em;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  font-weight: 400;
  margin-bottom: .8rem;
}
.vt-body {
  font-size: 1em;
  color: rgba(255,255,255,.5);
  line-height: 1.85;
  font-weight: 400;
  max-width: 480px;
}

/* Mouse follower */
.video-cursor {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              opacity .3s;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.video-cursor span {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.video-sticky:hover .video-cursor {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.video-caption {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  color: #fff;
  opacity: 0;
  transition: opacity .6s;
  white-space: nowrap;
}
.video-caption.show { opacity: 1; }
.video-caption h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: .14em;
  color: #fff;
}
.video-caption p {
  font-size: 1em;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .6rem;
}
.video-bar {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--gold);
  width: 0;
  transition: width .08s linear;
}

/* =============================================
   MENÜ
   ============================================= */
#menu { padding: 9rem 0; background: #fff; }

.menu-head { text-align: center; margin-bottom: 5rem; }

.menu-cols {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.menu-col {
  padding: 2.8rem 2.2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.menu-col-label {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dish {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
  gap: .8rem;
}
.dish:last-child { border-bottom: none; }
.dish-name {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
}
.dish-line {
  flex: 1;
  border-bottom: 1px dotted var(--border);
  min-width: 12px;
}
.dish-price {
  font-size: 1em;
  color: var(--muted);
  white-space: nowrap;
}
.menu-cta { text-align: center; margin-top: 3.5rem; }

/* =============================================
   DENEYİM
   ============================================= */
#features { padding: 9rem 0; background: var(--bg-2); }
.features-head { text-align: center; margin-bottom: 5rem; }

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.feature {
  background: var(--bg-2);
  padding: 3.8rem 3.2rem;
  transition: background .3s;
}
.feature:hover { background: #fff; }
.feature-n {
  font-family: var(--ff-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(0,0,0,.05);
  line-height: 1;
  margin-bottom: .8rem;
  transition: color .3s;
}
.feature:hover .feature-n { color: rgba(184,147,90,.18); }
.feature h3 { font-size: 1.3rem; margin-bottom: .9rem; letter-spacing: .06em; }
.feature p { font-size: 1em; color: var(--muted); line-height: 1.95; }

/* =============================================
   ŞUBELER
   ============================================= */
#locations {
  padding: 5rem 0;
  background: var(--bg-dark);
  text-align: center;
}
.loc-label {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.loc-list {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 300;
  letter-spacing: .14em;
  color: rgba(255,255,255,.4);
  line-height: 2;
}
.loc-list span { color: rgba(255,255,255,.12); margin: 0 .45rem; }

/* =============================================
   İLETİŞİM
   ============================================= */
#contact { padding: 9rem 0; background: var(--bg); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2.5rem;
}
.ci-row { margin-bottom: 1.8rem; }
.ci-label {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .4rem;
}
.ci-row p, .ci-row a {
  font-size: 1em;
  color: var(--muted);
  line-height: 1.85;
}
.ci-row a:hover { color: var(--text); }
.socials { display: flex; gap: .7rem; margin-top: 2rem; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  color: var(--muted);
  transition: all .3s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* Form */
.cf .form-group { margin-bottom: 1.7rem; }
.cf label {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}
.cf input,
.cf textarea,
.cf select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.2);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 1em;
  font-weight: 400;
  padding: .65rem 0;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color .3s;
}
.cf select option { background: var(--bg); }
.cf input:focus,
.cf textarea:focus,
.cf select:focus { border-bottom-color: var(--gold); }
.cf textarea { resize: none; height: 78px; }

/* =============================================
   FOOTER
   ============================================= */
/* ── KVKK / Kurumsal Alan ── */
#kvkk-section {
  background: var(--bg);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.8rem var(--side);
}
.kvkk-wrap { max-width: 1200px; margin: 0 auto; }
.kvkk-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .4rem 2.4rem;
}
.kvkk-links a {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.kvkk-links a:hover { color: var(--gold); }
@media (max-width: 560px) {
  .kvkk-links { flex-direction: column; align-items: flex-start; gap: .8rem; }
}

/* ── Footer — Kempinski style, light ── */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border-gold);
  padding: 0;
  font-family: var(--ff-sans);
}

/* Top: logo + slogan + rule */
.ft-top {
  text-align: center;
  padding: 4rem var(--side) 2.5rem;
  border-bottom: 1px solid var(--border-gold);
}
.ft-logo { height: 48px; display: block; margin: 0 auto 1rem; }
.ft-slogan {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .06em;
  margin: 0 0 1.8rem;
}
.ft-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: .5;
}

/* Columns grid */
.ft-cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem var(--side) 3rem;
}
.ft-col { padding: 0 2rem 0 0; }
.ft-col:last-child { padding-right: 0; }
.ft-col + .ft-col { border-left: 1px solid var(--border-gold); padding-left: 2rem; }

.ft-col-title {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--border-gold);
}

.ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ft-col ul li {
  margin-bottom: .65rem;
}
.ft-col ul a {
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.ft-col ul a:hover { color: var(--gold); }

/* Şubeler — 2 kolon */
.ft-locs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}

/* İletişim */
.ft-contact { display: flex; flex-direction: column; gap: 1rem; }
.ft-contact li {
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--muted);
  line-height: 1.75;
  list-style: none;
}
.ft-contact a { color: var(--muted); text-decoration: none; transition: color .2s; }
.ft-contact a:hover { color: var(--gold); }
.ft-contact-label {
  display: block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}

/* Sosyal medya */
.ft-social {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ft-social a {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color .2s;
}
.ft-social a:hover { color: var(--gold); }
.ft-social svg { flex-shrink: 0; opacity: .7; }
.ft-social a:hover svg { opacity: 1; }

/* Bülten */
.ft-newsletter-desc {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
  margin-bottom: .8rem;
}
.ft-nl-form {
  display: flex;
  border-bottom: 1px solid var(--border-gold);
}
.ft-nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-sans);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--text);
  padding: .5rem 0;
}
.ft-nl-form input::placeholder { color: var(--gold); opacity: .6; }
.ft-nl-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.1rem;
  padding: .4rem .2rem;
  transition: color .2s;
}
.ft-nl-form button:hover { color: var(--text); }

/* Bottom bar */
.ft-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.4rem var(--side);
  border-top: 1px solid var(--border-gold);
  max-width: 100%;
}
.ft-copy {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.38);
}
.ft-credit {
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
}
.ft-credit a {
  color: rgba(0,0,0,.45);
  text-decoration: none;
  transition: color .2s;
}
.ft-credit a:hover { color: var(--gold); }

/* Footer responsive */
@media (max-width: 900px) {
  .ft-cols {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 0;
  }
  .ft-col + .ft-col { border-left: none; padding-left: 0; }
  .ft-col:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--border-gold); }
  .ft-col:nth-child(even) { padding-left: 1.5rem; }
}
@media (max-width: 560px) {
  .ft-cols { grid-template-columns: 1fr; gap: 2rem 0; }
  .ft-col:nth-child(odd) { border-right: none; padding-right: 0; }
  .ft-col:nth-child(even) { padding-left: 0; }
  .ft-col + .ft-col { border-left: none; border-top: 1px solid var(--border-gold); padding-top: 1.5rem; }
  .ft-bottom { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   HERO — CSS keyframe (JS'siz, her zaman çalışır)
   ============================================= */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-location               { animation: heroIn .8s ease .1s  both; }
.hero-title                  { animation: heroIn .9s ease .3s  both; }
.hero-tagline                { animation: heroIn .8s ease .55s both; }
.hero-content .btn-outline   { animation: heroIn .8s ease .75s both; }
.hero-scroll                 { animation: heroIn .8s ease 1s   both; }

/* =============================================
   SCROLL ANIMATIONS — diğer bölümler
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .75s ease, transform .75s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .12s; }
.d2 { transition-delay: .24s; }
.d3 { transition-delay: .36s; }

/* =============================================
   REZERVASYON — Fixed button + slide-up drawer
   ============================================= */
/* ── Rezervasyon paneli — altta yapışık, handle görünür ── */
#res-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.32);
  z-index: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
#res-backdrop.open { opacity: 1; pointer-events: all; }

#res-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 801;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Handle — kapalıyken küçük tab görünür */
.res-handle {
  pointer-events: all;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 28px rgba(0,0,0,.13);
  cursor: pointer;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 2rem 10px;
  min-width: 220px;
  transition: min-width .4s, border-radius .3s, box-shadow .3s;
}
.res-handle-pill {
  width: 36px;
  height: 3px;
  background: rgba(0,0,0,.12);
  border-radius: 99px;
  margin-bottom: 6px;
}
.res-handle-inner {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--ff-sans);
  font-size: .73rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.res-handle-inner i { font-size: 1rem; opacity: .6; }
.res-arrow { margin-left: .5rem; transition: transform .4s cubic-bezier(.4,0,.2,1); opacity: .45; }

/* Açık hâl */
#res-panel.open {
  pointer-events: all;
}
#res-panel.open .res-handle {
  min-width: 100%;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -6px 50px rgba(0,0,0,.13);
  border-bottom: 1px solid var(--border-gold);
  padding: 10px 2rem 12px;
}
#res-panel.open .res-arrow { transform: rotate(180deg); }

/* Body */
.res-body {
  width: 100%;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
#res-panel.open .res-body { max-height: 70vh; overflow-y: auto; }
.res-body form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 3rem 3rem;
}

/* Form alanları — okunabilir boyutlar */
.res-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 2.5rem;
  margin-bottom: 2rem;
}
.res-body label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.res-body input,
.res-body select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.18);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  padding: .75rem 0;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color .3s;
}
.res-body input:focus,
.res-body select:focus { border-bottom-color: var(--gold); }
.res-body select option { background: #fff; }
.res-kvkk-note {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.res-kvkk-note a { color: var(--gold); }

.res-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 2rem;
  margin-bottom: 1.4rem;
}
.res-body label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .35rem;
}
.res-body input,
.res-body select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.15);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: .9rem;
  padding: .55rem 0;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color .3s;
}
.res-body input:focus,
.res-body select:focus { border-bottom-color: var(--gold); }
.res-body select option { background: #fff; }
.res-kvkk-note {
  font-size: .7rem;
  color: var(--muted);
  margin: 1.2rem 0;
  letter-spacing: .03em;
}
.res-kvkk-note a { color: var(--gold); }

/* =============================================
   BRAND INTRO (hero altı)
   ============================================= */
#brand-intro {
  background: #fff;
  padding: 7rem var(--side);
}
.brand-intro-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.brand-intro-left .eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  letter-spacing: .25em;
  font-size: 1em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1.4rem;
}
.brand-intro-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 2rem;
}
.brand-intro-title em {
  font-style: italic;
  color: var(--gold);
}
.brand-intro-body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.05em;
  line-height: 1.85;
  color: var(--muted);
  max-width: 480px;
}
.brand-intro-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-left: 1px solid var(--border-gold);
  padding-left: 6rem;
}
.brand-intro-logo {
  width: 160px;
  opacity: .85;
}
.brand-intro-tagline {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* =============================================
   HOVER PANELS
   ============================================= */
#panels {
  display: block;
  padding: 0 var(--side);
  margin: 0;
  line-height: 0;
  background: var(--bg);
}
.panels-wrap {
  display: flex;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  height: 480px;
  gap: 0;
  overflow: hidden;
  border-radius: 4px;
}
.panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: flex 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

/* dim overlay — always dark for readability */
.panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

/* expand/shrink */
.panels-wrap:hover .panel       { flex: 0.6; }
.panels-wrap:hover .panel:hover { flex: 1.8; }

/* thin white divider between panels */
.panel + .panel::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: rgba(255,255,255,.2);
  z-index: 3;
}

.panel-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2.5rem;
}
.panel-num {
  font-family: 'Jost', sans-serif;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--gold-light);
  margin-bottom: .8rem;
  display: block;
  white-space: nowrap;
}
.panel-label {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  margin: 0 0 1rem;
  letter-spacing: .02em;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  white-space: nowrap;
}
.panel-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.65;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,.7);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.panel:hover .panel-desc { opacity: 1; }

/* =============================================
   HİKAYELER
   ============================================= */
#stories {
  background: #fff;
  padding: 7rem var(--side) 5rem;
}
.stories-wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.stories-heading {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--text);
  margin: 0 0 4rem;
  line-height: 1;
}

/* 3 kolon grid: geniş sol | orta | dar sağ */
.stories-grid {
  display: grid;
  grid-template-columns: 5fr 4fr 3.5fr;
  gap: 0;
  align-items: stretch;
}
.story-card--main {
  padding-right: 2.5rem;
}
.story-item {
  padding: 0 2.5rem;
  border-left: 1px solid var(--border-gold);
}
.story-item:last-child {
  padding-right: 0;
}

/* ── Sol ana kart ── */
.story-card--main {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.story-card-img {
  overflow: hidden;
  margin-bottom: 2rem;
}
.story-card-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.story-card--main:hover .story-card-img img { transform: scale(1.04); }

.story-tag {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}
.story-card--main .story-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 1rem;
}
.story-desc {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1em;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.story-link {
  font-family: 'Jost', sans-serif;
  font-size: 1em;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.25);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  display: inline-block;
}
.story-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Orta & sağ kartlar (overlay) ── */
.story-card--overlay {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.story-card--overlay img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.story-card--overlay:hover img { transform: scale(1.04); }
.story-card--overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 50%, transparent 75%);
  pointer-events: none;
}
.story-overlay-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2rem 1.8rem;
}
.story-card--overlay .story-tag {
  color: var(--gold-light);
  margin-bottom: .6rem;
}
.story-card--overlay .story-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}

/* ── Orta & sağ kart wrapper ── */
.story-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.story-item-body {
  padding: 2rem 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.story-item-body .story-desc {
  flex: 1;
}
.story-item-title {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: 1.8rem;
  color: var(--text);
  line-height: 1.2;
  margin: 0 0 .8rem;
}

/* ── "Tüm Hikayeleri Gör" ── */
.stories-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stories-more a {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: color .3s;
}
.stories-more a:hover { color: var(--gold); }
.stories-more span {
  font-style: normal;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  #stories { padding: 4rem var(--side) 3rem; }
  .stories-heading { margin-bottom: 2rem; }
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .story-card--main { padding-right: 0; }
  .story-item {
    padding: 0;
    border-left: none;
    border-top: 1px solid var(--border-gold);
    padding-top: 2.5rem;
  }
  .story-card-img img { height: 260px; }
}

/* =============================================
   LOCATIONS GRID
   ============================================= */
#locations {
  background: var(--bg);
  padding: 6rem var(--side);
}
/* — Şubeler: masonry grid — */
#locations {
  background: var(--bg);
  padding: 7rem var(--side);
}
.loc-hd {
  max-width: 1240px;
  margin: 0 auto 3.5rem;
}
.loc-hd .eyebrow {
  color: var(--gold);
  display: block;
  margin-bottom: .8rem;
}
.loc-hd h2 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}
.loc-hd h2 em { font-style: italic; color: var(--gold); }

/* Grid */
.loc-masonry {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}
.lc--wide { grid-column: span 2; }
.lc--tall { grid-row: span 2; }

/* Kart */
.lc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

/* Fotoğraf */
.lc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94),
              filter .8s ease;
  filter: brightness(.72);
  will-change: transform;
}
.lc:hover .lc-img {
  transform: scale(1.08);
  filter: brightness(.5);
}

/* Metin */
.lc-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.8rem 2rem;
  z-index: 2;
}
.lc-num {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  font-weight: 300;
  letter-spacing: .18em;
  color: rgba(255,255,255,.4);
  margin-bottom: .5rem;
  display: block;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .45s ease, transform .45s ease;
  transition-delay: .05s;
}
.lc-city {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  color: #fff;
  line-height: 1;
  margin: 0;
  transform: translateY(10px);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94),
              color .3s ease;
  transition-delay: .02s;
}
.lc-tag {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: .45rem;
  display: block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
  transition-delay: .1s;
}
.lc-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: .9rem;
  transition: width .5s cubic-bezier(.25,.46,.45,.94);
  transition-delay: .06s;
}

/* Hover state */
.lc:hover .lc-num   { opacity: 1; transform: translateY(0); }
.lc:hover .lc-city  { transform: translateY(0); color: #fff; }
.lc:hover .lc-tag   { opacity: 1; transform: translateY(0); }
.lc:hover .lc-line  { width: 2.5rem; }

/* Scroll reveal */
@keyframes lcReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loc-reveal { opacity: 0; }
.loc-reveal.is-visible {
  animation: lcReveal .75s cubic-bezier(.25,.46,.45,.94) both;
  animation-delay: var(--d, 0s);
}

/* Responsive */
@media (max-width: 900px) {
  .loc-masonry { grid-template-columns: repeat(2,1fr); grid-auto-rows: 220px; }
  .lc--wide { grid-column: span 2; }
  .lc--tall { grid-row: span 1; }
}
@media (max-width: 560px) {
  .loc-masonry { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .lc--wide, .lc--tall { grid-column: span 1; grid-row: span 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-brand { bottom: 6rem; }
  .slide-nav  { bottom: 6rem; }
  .about-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { max-width: 400px; }
  .menu-cols { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 767px) {
  :root { --side: 1.4rem; }
  #about, #menu, #features, #contact { padding: 5.5rem 0; }
  .feature { padding: 2.5rem 2rem; }
  #video-scroll-section {
    height: 190vh;
    background: #111;
  }
  .video-sticky {
    position: sticky;
    top: 96px;
    height: auto;
    overflow: visible;
  }
  .video-sticky::before {
    display: none;
  }
  #scroll-video {
    aspect-ratio: 16 / 9;
    background: #111;
    height: auto;
    object-fit: contain;
    position: relative;
    transform: none !important;
  }
  .video-overlay {
    background: #111;
    padding: 2.25rem var(--side) 2.75rem;
    position: relative;
  }
  .video-text {
    opacity: 1;
    transform: none;
  }
  .video-cursor,
  .video-caption,
  .video-bar {
    display: none;
  }
  #hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: #fff;
  }
  #hero::after {
    display: none;
  }
  .hero-swiper {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .hero-swiper .swiper-slide {
    height: auto;
  }
  .hero-slide-img {
    background-image: none !important;
    height: auto;
  }
  .hero-slide-img img {
    display: block;
    height: auto;
    width: 100%;
  }
  .hero-overlay {
    display: none;
  }
  .hero-location {
    color: rgba(0,0,0,.58);
    font-size: .68rem;
    letter-spacing: .22em;
    margin-bottom: .75rem;
  }
  .hero-title {
    color: #111;
    font-size: clamp(2.4rem, 12vw, 3.9rem);
    margin-bottom: .65rem;
  }
  .hero-tagline {
    color: rgba(0,0,0,.72);
    font-size: .96rem;
    margin-bottom: 1.35rem;
  }
  .hero-cta {
    border-color: rgba(0,0,0,.76) !important;
    color: #111 !important;
    font-size: .72rem;
    letter-spacing: .16em;
    padding: .58rem 1.35rem;
  }
  .hero-cta:hover {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
  }
  .hero-brand {
    inset: auto;
    padding: 2.1rem 2rem 2.8rem;
    pointer-events: auto;
    position: relative;
  }
  .hero-pagination { bottom: .75rem !important; }
  .hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.55);
  }
  .hero-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }
  .hero-scroll { display: none; }
  .slide-nav  { display: none; }
  .res-grid { grid-template-columns: 1fr; }
  .res-body form { padding: 1.4rem 1.2rem 2rem; }

  /* Brand intro */
  .brand-intro-wrap { grid-template-columns: 1fr; gap: 3rem; }
  #brand-intro { padding: 5rem var(--side); }
  .brand-intro-right { border-left: none; border-top: 1px solid var(--border-gold); padding-left: 0; padding-top: 3rem; }

  /* Panels — stack vertically on mobile */
  .panels-wrap { flex-direction: column; height: auto; }
  .panel { flex: none !important; height: 50vw; min-height: 220px; }
  .panels-wrap:hover .panel,
  .panels-wrap:hover .panel:hover { flex: none; }
  .panel-num, .panel-desc { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .brand-intro-wrap { gap: 3.5rem; }
  .brand-intro-right { padding-left: 3.5rem; }
}


/* ══════════════════════════════════════
   TABAKLAR SECTION — scroll-driven
   ══════════════════════════════════════ */
#plates-section {
  height: 300vh;
  background: #fff;
}

.plates-sticky {
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 2rem;
  background: #fff;
}

.plates-hd {
  text-align: center;
  z-index: 2;
}
.plates-hd .eyebrow {
  color: var(--gold);
  margin-bottom: .6rem;
  display: block;
}
.plates-hd h2 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  color: var(--text);
  margin: 0;
  line-height: 1.15;
}
.plates-hd h2 em { font-style: italic; color: var(--gold); }

/* Satır yapısı — 5 + 4 */
.plates-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}
.plates-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Her tabak */
.plate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  width: clamp(150px, 17vw, 240px);
  will-change: transform, opacity;
  cursor: pointer;
}

.plate-main-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.plate-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.18));
  transition: transform .45s cubic-bezier(.25,.46,.45,.94),
              filter .45s ease;
  display: block;
}
.plate-item:hover img {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 20px 44px rgba(0,0,0,.26))
          drop-shadow(0 0 18px rgba(196,160,100,.22));
}

.plate-city {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(.9rem, 1.2vw, 1.15rem);
  letter-spacing: .03em;
  color: #1a1209;
  opacity: 0;
  transform: translateY(6px);
  transition: color .3s ease, opacity .4s ease, transform .4s ease;
}
.plate-item:hover .plate-city { color: var(--gold); }

.plate-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(.58rem, .7vw, .68rem);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(6px);
  transition: border-color .3s ease, opacity .4s ease .08s, transform .4s ease .08s;
}
.plate-item:hover .plate-cta { border-bottom-color: var(--gold); }

/* Tabaklar yerine otururca metinler belirir */
.plates-settled .plate-city {
  opacity: 1;
  transform: translateY(0);
}
.plates-settled .plate-cta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  #plates-section { height: 220vh; }
  .plates-sticky {
    position: sticky;
    top: 96px;
    height: auto;
    min-height: 0;
    max-height: calc(100svh - 96px);
    overflow: hidden;
    padding: 2.4rem 0 2rem;
    gap: 1.25rem;
  }
  .plates-stage {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .95rem .75rem;
    padding: 0 1rem;
    max-width: 430px;
  }
  .plates-row {
    display: contents;
  }
  .plate-item {
    gap: .45rem;
    width: 100%;
    opacity: 0;
    will-change: transform, opacity;
  }
  .plate-main-link {
    gap: .45rem;
  }
  .plate-item img {
    max-width: 100%;
  }
  .plate-city,
  .plate-cta {
    opacity: 0;
    transform: translateY(5px);
  }
  .plate-city {
    font-size: .9rem;
    line-height: 1.05;
  }
  .plate-cta {
    display: none;
  }
}


/* ══════════════════════════════════════
   GALERİ DUVARI
   ══════════════════════════════════════ */
#gallery-wall {
  background: #e8e0d5;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,0,0,.06) 0%, transparent 50%);
  padding: 6rem var(--side) 7rem;
  overflow: hidden;
}

.gwall-hd {
  text-align: center;
  margin-bottom: 4rem;
}
.gwall-hd .eyebrow { color: var(--gold); display: block; margin-bottom: .7rem; }
.gwall-hd h2 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3.2rem);
  color: #2a1f10;
  margin: 0;
}
.gwall-hd h2 em { font-style: italic; color: var(--gold); }

/* Duvar alanı */
.gwall {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  height: 820px;
}

/* ── Çerçeve ── */
.gwf {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  transition: transform .4s ease, box-shadow .4s ease;
  cursor: pointer;
}
.gwf:hover { z-index: 10; }

/* Gold çerçeve */
.gwf--gold .gwf-mat {
  padding: 18px;
  background:
    linear-gradient(145deg,
      #e8c96a 0%, #b8901e 18%,
      #7a5c10 35%, #c8a030 52%,
      #7a5c10 68%, #b8901e 82%,
      #e8c96a 100%);
  box-shadow:
    /* dış gölge */
    8px 14px 50px rgba(0,0,0,.45),
    3px 5px 14px rgba(0,0,0,.25),
    /* çerçeve içi bevel */
    inset 0 0 0 2px rgba(255,255,255,.22),
    inset 0 0 0 3px rgba(0,0,0,.18);
  position: relative;
}
.gwf--gold .gwf-mat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,.18) 0%,transparent 55%,rgba(0,0,0,.08) 100%);
  pointer-events: none;
}

/* Dark wood çerçeve */
.gwf--dark .gwf-mat {
  padding: 18px;
  background:
    linear-gradient(145deg,
      #6b4c28 0%, #3d2810 20%,
      #7a5a30 40%, #3d2810 60%,
      #6b4c28 80%, #8a6840 100%);
  box-shadow:
    8px 14px 50px rgba(0,0,0,.5),
    3px 5px 14px rgba(0,0,0,.3),
    inset 0 0 0 2px rgba(255,255,255,.12),
    inset 0 0 0 3px rgba(0,0,0,.25);
  position: relative;
}
.gwf--dark .gwf-mat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(255,255,255,.12) 0%,transparent 55%,rgba(0,0,0,.12) 100%);
  pointer-events: none;
}

/* Mat paspartu */
.gwf-mat > img {
  display: block;
  width: 100%;
  object-fit: cover;
  outline: 12px solid #f4f0e8;
  outline-offset: -12px;
  box-shadow: inset 0 0 18px rgba(0,0,0,.1);
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

/* Yatay görsel (default) */
.gwf-mat > img { height: 200px; }
/* Dikey */
.gwf-mat--portrait > img { height: 280px; }
/* Kare */
.gwf-mat--sq > img { height: 170px; }

.gwf:hover .gwf-mat > img { transform: scale(1.04); }

/* Şehir etiketi */
.gwf-label {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4a3820;
  text-align: center;
}

/* Scroll reveal — sadece opacity+blur, inline transform'u bozmaz */
.gwf {
  opacity: 0;
  filter: blur(3px);
  transition: opacity .75s ease, filter .75s ease;
}
.gwf.gw-visible {
  opacity: 1;
  filter: blur(0);
}

@media (max-width: 900px) {
  .gwall { height: auto; }
  .gwf   { position: static !important; transform: none !important; width: auto !important; }
  #gallery-wall .gwall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
  .gwf { width: 200px !important; }
}

/* ═══════════════════════════════════════
   ALT SAYFA ŞABLONU
═══════════════════════════════════════ */
.sub-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--side) 3.5rem;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  margin-top: 72px;
}
.sub-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}
.sub-hero-content { position: relative; z-index: 1; }
.sub-hero-tag {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .75rem;
}
.sub-hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin: 0;
}
.sub-body {
  padding: 5rem var(--side);
  max-width: 860px;
}
.sub-body h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.2rem;
  margin-top: 3rem;
}
.sub-body h2:first-child { margin-top: 0; }
.sub-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.sub-body .sub-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}

/* =============================================
   FRANCHISE SAYFASI
   ============================================= */

.fr-section {
  padding: 6rem var(--side) 5rem;
  background: var(--bg);
}

/* İki kolon layout */
.fr-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-bottom: 5rem;
}
.fr-left {
  position: sticky;
  top: 100px;
}

.fr-heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--text);
  margin: .8rem 0 2.2rem;
}

/* ── Accordion ── */
.fr-accordion {
  border-top: 1px solid var(--border);
}
.fr-item {
  border-bottom: 1px solid var(--border);
}
.fr-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
  transition: color .2s;
}
.fr-q:hover { color: var(--gold); }
.fr-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.fr-item.open .fr-icon { transform: rotate(45deg); }

.fr-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease, padding .38s ease;
}
.fr-item.open .fr-a {
  max-height: 400px;
  padding-bottom: 1.2rem;
}
.fr-a p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
}

/* ── Form ── */
.fr-form {
  background: #fff;
  padding: 2.8rem;
  border: 1px solid var(--border);
}
.fr-field {
  margin-bottom: 1.3rem;
}
.fr-field label {
  display: block;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.fr-field input,
.fr-field select,
.fr-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .75rem 1rem;
  font-family: var(--ff-sans);
  font-size: .88rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.fr-field input:focus,
.fr-field select:focus,
.fr-field textarea:focus { border-color: var(--gold); }
.fr-field textarea { resize: vertical; min-height: 100px; }
.fr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fr-kvkk {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.fr-kvkk a { color: var(--gold); text-decoration: none; }
.fr-contracts {
  padding-top: .2rem;
}
.fr-check {
  display: flex !important;
  align-items: flex-start;
  gap: .65rem;
  margin: .65rem 0 0;
  font-size: .78rem !important;
  letter-spacing: .03em !important;
  text-transform: none !important;
  color: var(--muted) !important;
}
.fr-check input {
  width: auto;
  margin-top: .18rem;
  flex-shrink: 0;
  appearance: auto;
}
.fr-success {
  display: none;
  margin-top: 1rem;
  font-size: .82rem;
  color: #5a8a5a;
  font-family: var(--ff-sans);
  letter-spacing: .04em;
  text-align: center;
}
.fr-success.show { display: block; }

/* ── Kurumsal iletişim ── */
.fr-contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  background: var(--text);
  padding: 2.4rem 3rem;
}
.fr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 200px;
  padding: .5rem 1.5rem;
}
.fr-contact-item:first-child { padding-left: 0; }
.fr-contact-item:last-child  { padding-right: 0; }
.fr-contact-item i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: .1rem;
  flex-shrink: 0;
}
.fr-contact-label {
  display: block;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .3rem;
}
.fr-contact-item a,
.fr-contact-item span:last-child {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.fr-contact-item a:hover { color: #fff; }
.fr-contact-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .fr-wrap  { grid-template-columns: 1fr; gap: 4rem; }
  .fr-contact { gap: 1.5rem; }
  .fr-contact-divider { display: none; }
  .fr-contact-item { padding: 0; }
}
@media (max-width: 540px) {
  .fr-form { padding: 1.8rem; }
  .fr-row  { grid-template-columns: 1fr; }
}

/* =============================================
   ŞUBELER SAYFASI
   ============================================= */

.sb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px var(--side) 0;
}

.sb-card {
  position: relative;
  height: 62vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: background-position .6s ease;
}
.sb-card:hover { background-position: center 45%; }

.sb-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,4,0)    20%,
    rgba(5,5,4,.55)  60%,
    rgba(5,5,4,.88) 100%
  );
  transition: background .4s;
}
.sb-card:hover .sb-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(5,5,4,.1)  20%,
    rgba(5,5,4,.6)  60%,
    rgba(5,5,4,.92) 100%
  );
}

.sb-card-body {
  position: relative;
  z-index: 1;
  padding: 2.4rem 2.6rem;
  width: 100%;
}

.sb-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(181,161,145,.45);
  padding: .3rem .75rem;
  margin-bottom: .9rem;
}

.sb-city {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .06em;
  line-height: 1;
  margin: 0 0 1.2rem;
}

.sb-info {
  margin-bottom: 1.6rem;
}
.sb-adres,
.sb-tel {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .03em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin: 0 0 .4rem;
}
.sb-adres i,
.sb-tel i {
  color: var(--gold);
  font-size: .9rem;
  margin-top: .1rem;
  flex-shrink: 0;
}
.sb-tel a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.sb-tel a:hover { color: #fff; }

.sb-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  padding: .65rem 1.4rem;
  text-decoration: none;
  transition: background .25s, border-color .25s, color .25s;
}
.sb-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--text);
  text-decoration: none;
}
.sb-btn span {
  transition: transform .25s;
}
.sb-btn:hover span { transform: translateX(4px); }

/* Responsive */
@media (max-width: 768px) {
  .sb-grid { grid-template-columns: 1fr; }
  .sb-card { height: 70vw; min-height: 320px; }
}

/* =============================================
   GALERİ SAYFASI
   ============================================= */

/* Filtre butonları */
.gl-section {
  padding: 5rem var(--side) 7rem;
  background: var(--bg);
}
.gl-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.gl-filter {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--muted);
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .55rem 1.4rem;
  cursor: pointer;
  transition: background .22s, color .22s, border-color .22s;
}
.gl-filter:hover,
.gl-filter.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

/* Masonry grid */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}
.gl-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-2);
  transition: opacity .4s ease, transform .4s ease;
}
.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.gl-item:hover img { transform: scale(1.06); }

/* Boyut varyantları */
.gl-tall  { grid-row: span 2; }
.gl-wide  { grid-column: span 2; }

/* Hover overlay */
.gl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gl-item:hover .gl-overlay { opacity: 1; }
.gl-icon {
  font-size: 2rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.5);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.7);
  transition: transform .3s;
}
.gl-item:hover .gl-icon { transform: scale(1); }

/* Lightbox */
#gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#gl-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
#gl-lb-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,4,.93);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
#gl-lb-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.gl-lb-img-wrap {
  position: relative;
  z-index: 2001;
  max-width: 88vw;
  max-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#glLbImg {
  max-width: 88vw;
  max-height: 84vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}
.gl-lb-close,
.gl-lb-prev,
.gl-lb-next {
  position: fixed;
  z-index: 2002;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  font-size: 1.1rem;
}
.gl-lb-close:hover,
.gl-lb-prev:hover,
.gl-lb-next:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
}
.gl-lb-close {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1rem;
}
.gl-lb-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; }
.gl-lb-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; }
.gl-lb-counter {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2002;
  font-family: var(--ff-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}

/* Responsive */
@media (max-width: 900px) {
  .gl-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gl-wide { grid-column: span 1; }
}
@media (max-width: 540px) {
  .gl-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gl-tall { grid-row: span 1; }
}

/* =============================================
   HAKKIMIZDA SAYFASI
   ============================================= */

/* ── Breadcrumb Banner ── */
.pg-banner {
  position: relative;
  height: 62vh;
  min-height: 380px;
  margin-top: 72px;
  margin-left: var(--side);
  margin-right: var(--side);
  overflow: hidden;
  background: #0a0a09;
}
.pg-banner-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.pg-banner:hover .pg-banner-img { transform: scale(1); }

/* Beyaz iç çerçeve — slider efekti */
.pg-banner-frame {
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(255,255,255,.28);
  pointer-events: none;
  z-index: 2;
}
.pg-banner-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.8rem calc(var(--side) + 1.4rem);
}
.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.1rem;
}
.pg-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.pg-breadcrumb a:hover { color: #fff; }
.pg-bc-sep { opacity: .4; }
.pg-bc-current { color: var(--gold); }
.pg-banner-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0 0 .5rem;
}
.pg-banner-content h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: .08em;
  line-height: 1;
  margin: 0 0 .5rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.pg-banner-sub {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.pg-banner-content p {
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.8;
  margin: 0;
  max-width: 680px;
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}
.pg-banner-content .pg-breadcrumb,
.pg-banner-content .pg-breadcrumb a,
.pg-banner-content .pg-breadcrumb span {
  color: rgba(255,255,255,.74);
}
.pg-banner-content .pg-breadcrumb a:hover {
  color: #fff;
}

/* ── Intro ── */
.ab-intro {
  padding: 6rem var(--side);
  background: var(--bg);
  text-align: center;
}
.ab-intro-inner { max-width: 720px; margin: 0 auto; }
.ab-intro-lead {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  margin: 1.2rem 0 0;
}

/* ── Kurucu bölümü ── */
.ab-founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 6rem var(--side);
  background: #fff;
  align-items: start;
}
.ab-founder-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.ab-founder-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ab-founder-img-border {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(181,161,145,.4);
  pointer-events: none;
}
.ab-founder-caption {
  margin-top: 1.8rem;
}
.ab-founder-caption p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
  margin: .6rem 0 0;
}
/* Sağ metin sticky */
.ab-founder-text {
  position: sticky;
  top: 100px;
  align-self: start;
}
.ab-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.ab-founder-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.ab-founder-text p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.ab-founder-text strong { color: var(--text); font-weight: 500; }

/* ── Vizyon ── */
.ab-vision {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ab-vision-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .6;
}
.ab-vision-frame {
  position: absolute;
  inset: 1.4rem;
  border: 1px solid rgba(255,255,255,.18);
  pointer-events: none;
  z-index: 1;
}
.ab-vision-content {
  position: relative;
  z-index: 2;
  padding: 5rem calc(var(--side) + 1.4rem);
  max-width: 860px;
}
.ab-vision-quote {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.5;
  border: none;
  padding: 0;
  margin: 1rem 0 0;
}

/* ── İki kolonlu feature bölümleri (kokteyller / nargile) ── */
.ab-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: 7rem var(--side);
  align-items: center;
}
.ab-feature--alt { background: var(--bg-2); }
.ab-feature--rev { direction: rtl; }
.ab-feature--rev > * { direction: ltr; }

.ab-feature-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.ab-feature-text p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.1rem;
}
.ab-feature-img {
  position: relative;
}
.ab-feature-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.ab-feature-img::after {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(181,161,145,.35);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ab-founder  { grid-template-columns: 1fr; gap: 3rem; }
  .ab-founder-text { position: static; }
  .ab-feature  { grid-template-columns: 1fr; gap: 3rem; }
  .ab-feature--rev { direction: ltr; }
  .pg-banner   { height: 48vh; }
}
