/* ============================================================
   YILDIZ KIZILCAN — DİJİTAL MENÜ
   iPad yatay dokunmatik katalog · beyaz, sakin, lüks
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #16130e;
  --ink-soft: #757067;
  --ink-faint: #a39d92;
  --hairline: #e9e4dc;
  --hairline-soft: #f1ede6;
  --champagne: #b3986a;
  --champagne-deep: #9a8154;
  --champagne-wash: #faf7f1;
  --card-hover: #fcfaf6;

  /* Louis Vuitton tipografisi: Futura tabanlı geometrik sans.
     Apple cihazlarda gerçek Futura, diğerlerinde Jost (Futura karşılığı). */
  --serif-display: "Futura", "Jost", "Avenir Next", "Century Gothic", sans-serif;
  --serif: "Cormorant", Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

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

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
  overscroll-behavior: none;
  min-height: 100vh;
  min-height: 100dvh;
}

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

/* Tam ekran katman açıkken arka plan kaymasın (iPad'de zeminin sürüklenmesi) */
body.is-locked { overflow: hidden; touch-action: none; }

/* ------------------------------------------------------------
   HOŞ GELDİNİZ EKRANI (resepsiyon karşılama)
   ------------------------------------------------------------ */
.welcome {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(20px, 3.2vh, 32px) clamp(20px, 3vw, 44px) clamp(14px, 2.2vh, 24px);
  touch-action: none;
  transition: transform 0.9s cubic-bezier(0.72, 0, 0.18, 1);
}
.welcome.is-hidden {
  transform: translateY(-102%);
  visibility: hidden;
  transition: transform 0.9s cubic-bezier(0.72, 0, 0.18, 1), visibility 0s linear 0.9s;
}
/* Geçiş bitince katman kompozitörden düşsün — menüde bedava kalmasın */
.welcome.is-hidden .welcome__video { animation: none; opacity: 1; will-change: auto; }

.welcome__head { text-align: center; }
.welcome__logo { height: 46px; width: auto; margin: 0 auto; }

.welcome__title {
  margin-top: clamp(10px, 1.8vh, 16px);
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(22px, 3.4vh, 30px);
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  text-transform: uppercase;
}

.welcome__sub {
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.welcome__reel {
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 1100px;
  margin: clamp(14px, 2.4vh, 24px) 0;
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 18px);
}

.welcome__video {
  flex: 1 1 0;
  min-width: 0;
  max-width: 252px;
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  background: var(--champagne-wash);
  opacity: 0;
  animation: rise 0.9s var(--ease) forwards;
  will-change: opacity, transform;
}
.welcome__video:nth-child(1) { animation-delay: 0.05s; }
.welcome__video:nth-child(2) { animation-delay: 0.15s; }
.welcome__video:nth-child(3) { animation-delay: 0.25s; }
.welcome__video:nth-child(4) { animation-delay: 0.35s; }

.welcome__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.welcome__ig {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  touch-action: manipulation;
  transition: color 0.3s var(--ease);
}
.welcome__ig svg { width: 15px; height: 15px; color: var(--champagne-deep); }
.welcome__ig:active { color: var(--champagne-deep); }

.welcome__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 5px 30px 2px;
  touch-action: manipulation;
}
.welcome__cta-label {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
}
.welcome__cta-circle {
  width: 67px;
  height: 67px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--champagne-deep);
  animation: floaty 2.6s ease-in-out infinite;
}
.welcome__cta-circle svg { width: 29px; height: 29px; }
.welcome__cta:active .welcome__cta-circle { background: var(--champagne-wash); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@media (max-width: 900px) {
  .welcome__reel {
    justify-content: flex-start;
    overflow-x: auto;
    touch-action: pan-x;
    scrollbar-width: none;
  }
  .welcome__reel::-webkit-scrollbar { display: none; }
  .welcome__video { flex: none; aspect-ratio: 9 / 16; max-width: none; width: auto; }
  .welcome__sub { padding: 0 16px; }
}

/* ------------------------------------------------------------
   SOL MENÜ (iPad kenar navigasyonu)
   ------------------------------------------------------------ */
.shell {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  min-height: 100vh;
  min-height: 100dvh;
}

.side {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4.4vh, 44px) 22px 22px;
  border-right: 1px solid var(--hairline);
  background: var(--bg);
  overflow: hidden;
}

.side__logo {
  flex: none;
  padding: 0 10px;
  text-align: left;
}
.side__logo img { height: 41px; width: auto; max-width: 100%; }

.side__nav {
  margin-top: clamp(18px, 3vh, 32px);
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.side__nav::-webkit-scrollbar { display: none; }

.side__link {
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  padding: 10px 12px;
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid transparent;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
  touch-action: manipulation;
}
.side__link svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--ink-faint);
  transition: color 0.35s var(--ease);
}
.side__link:active { background: var(--champagne-wash); }
.side__link.is-active {
  color: var(--ink);
  border-left-color: var(--champagne);
  background: var(--champagne-wash);
}
.side__link.is-active svg { color: var(--champagne-deep); }

/* Kategori bloklarını ayıran nefes payı (başlık yok, sadece boşluk + ince çizgi) */
.side__link--group {
  margin-top: 7px;
  padding-top: 13px;
  border-top: 1px solid var(--hairline-soft);
}

.side__link--review {
  margin-top: 8px;
  padding-top: 13px;
  border-top: 1px solid var(--hairline-soft);
  color: var(--champagne-deep);
}
.side__link--review svg { color: var(--champagne-deep); }
.side__link--review.is-active { border-top-color: var(--hairline-soft); }

.side__foot {
  margin-top: auto;
  padding: 16px 12px 0;
  border-top: 1px solid var(--hairline-soft);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: var(--ink-faint);
}
.side__foot .side__hours { margin-top: 6px; color: var(--champagne-deep); }

.side__ig {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 2px 0 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid var(--hairline-soft);
  touch-action: manipulation;
  transition: color 0.3s var(--ease);
}
.side__ig svg {
  flex: none;
  width: 17px;
  height: 17px;
  color: var(--champagne-deep);
}
.side__ig span {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--ink-soft);
}
.side__ig span b {
  font-weight: 500;
  color: var(--ink);
}
.side__ig:active span { color: var(--champagne-deep); }

/* ------------------------------------------------------------
   KATEGORİ BAŞLIĞI
   ------------------------------------------------------------ */
.stage {
  min-width: 0;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(34px, 4.6vh, 56px) clamp(22px, 3.4vw, 48px) 44px;
}

.cat-head { margin-bottom: clamp(30px, 4.2vh, 52px); }

.cat-head__title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.14;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.cat-head__sub {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.cat-head.is-anim .cat-head__title,
.cat-head.is-anim .cat-head__sub {
  animation: rise 0.62s var(--ease) both;
}
.cat-head.is-anim .cat-head__sub { animation-delay: 0.07s; }

/* ------------------------------------------------------------
   BAKIM KARTLARI
   ------------------------------------------------------------ */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

.card {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: clamp(24px, 2.6vw, 32px) clamp(26px, 2.8vw, 36px);
  border: 1px solid var(--hairline);
  background: var(--bg);
  border-radius: 2px;
  min-height: 168px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.22s var(--ease);
  touch-action: manipulation;
}
.card:active { transform: scale(0.992); background: var(--card-hover); border-color: var(--champagne); }
@media (hover: hover) {
  .card:hover { background: var(--card-hover); border-color: #d9cdb8; }
  .card:hover .card__arrow { transform: translateX(4px); color: var(--champagne-deep); }
}

.grid.is-anim .card { animation: rise 0.6s var(--ease) both; }

.card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.card__name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(16px, 1.55vw, 19px);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  line-height: 1.4;
}

.card__arrow {
  flex: none;
  font-size: 17px;
  color: var(--ink-faint);
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.card__tr {
  margin-top: 7px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.card__meta {
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  line-height: 1.7;
}
.card__meta b {
  font-weight: 500;
  color: var(--ink-soft);
}
.card__meta .dot { margin: 0 7px; color: var(--champagne); }

.card__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.card__price {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.12em;
}
.card__price--ask {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.card__hint {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* ------------------------------------------------------------
   BAKIM DETAY EKRANI
   ------------------------------------------------------------ */
.detail {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  background: var(--bg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.detail.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s var(--ease);
}

.detail__text {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.detail__back {
  position: absolute;
  top: 26px;
  left: clamp(28px, 4.5vw, 72px);
  z-index: 5;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 12px 0;
  transition: color 0.3s var(--ease);
  touch-action: manipulation;
}
.detail__back:active { color: var(--champagne-deep); }

.detail__scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(84px, 12vh, 120px) clamp(28px, 4.5vw, 72px) clamp(28px, 4.5vh, 48px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.detail.open .detail__scroll > * { animation: rise 0.65s var(--ease) both; }
.detail.open .detail__scroll > *:nth-child(2) { animation-delay: 0.05s; }
.detail.open .detail__scroll > *:nth-child(3) { animation-delay: 0.09s; }
.detail.open .detail__scroll > *:nth-child(4) { animation-delay: 0.13s; }
.detail.open .detail__scroll > *:nth-child(5) { animation-delay: 0.17s; }
.detail.open .detail__scroll > *:nth-child(6) { animation-delay: 0.21s; }

.detail__kicker {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--champagne-deep);
  margin-bottom: 18px;
}

.detail__name {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.22;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.detail__tr {
  margin-top: 12px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

.detail__desc {
  margin-top: 26px;
  max-width: 560px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.85;
  color: #3d3a33;
  padding-left: 20px;
  border-left: 1px solid var(--champagne);
}

.detail__rows { margin-top: 34px; max-width: 560px; }

.detail__row {
  display: grid;
  grid-template-columns: 162px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--hairline-soft);
}
.detail__row:last-child { border-bottom: 1px solid var(--hairline-soft); }

.detail__row dt {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.detail__row dd {
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
  color: #43403a;
}

.detail__bottom {
  margin-top: auto;
  padding-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 560px;
}

.detail__price {
  font-family: var(--serif-display);
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: 0.12em;
}
.detail__price--ask {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cta {
  flex: none;
  background: var(--ink);
  color: #fff;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 19px 34px;
  transition: transform 0.2s var(--ease), background 0.3s var(--ease);
  touch-action: manipulation;
}
.cta:active { transform: scale(0.97); background: #2c2820; }

.detail__media {
  position: relative;
  overflow: hidden;
  background: var(--champagne-wash);
}
.detail__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.1s var(--ease);
}
.detail.open .detail__media img { transform: scale(1); }

/* ------------------------------------------------------------
   RANDEVU KATMANI
   ------------------------------------------------------------ */
.veil {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(22, 19, 14, 0.34);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.42s var(--ease), visibility 0s linear 0.42s;
}
.veil.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.42s var(--ease);
}

.veil__card {
  position: relative;
  width: min(480px, 94vw);
  background: var(--bg);
  padding: clamp(36px, 4.5vw, 52px);
  text-align: center;
  transform: translateY(14px);
  transition: transform 0.45s var(--ease);
}
.veil.open .veil__card { transform: translateY(0); }

.veil__close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 26px;
  font-weight: 300;
  color: var(--ink-faint);
  padding: 8px;
  touch-action: manipulation;
}

.veil__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne-deep);
}

.veil__title {
  margin-top: 14px;
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.veil__note {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

.veil__icons {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.veil__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 10px 19px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
  touch-action: manipulation;
}
.veil__tile:active {
  background: var(--champagne-wash);
  border-color: var(--champagne);
  transform: scale(0.98);
}
@media (hover: hover) {
  .veil__tile:hover { background: var(--champagne-wash); border-color: #d9cdb8; }
}

.veil__tile svg {
  width: 30px;
  height: 30px;
  color: var(--ink);
}

.veil__tile span {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.veil__qr {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.veil__qr[hidden] { display: none; }

.veil__qr-code {
  width: 212px;
  height: 212px;
  padding: 14px;
  border: 1px solid var(--hairline);
  border-radius: 2px;
  background: #fff;
}
.veil__qr-code svg {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.veil__qr-note {
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 300px;
}

.veil__qr-back {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding: 8px 12px;
  transition: color 0.3s var(--ease);
  touch-action: manipulation;
}
.veil__qr-back:active { color: var(--champagne-deep); }

.veil__addr {
  margin-top: 22px;
  font-size: 11.5px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}
.veil__hours {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
}

/* ------------------------------------------------------------
   HAREKET
   ------------------------------------------------------------ */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}

/* ------------------------------------------------------------
   DAR EKRANLAR (dikey iPad · telefon)
   ------------------------------------------------------------ */
@media (max-width: 900px) {
  .shell { display: block; }

  .side {
    position: sticky;
    top: 0;
    height: auto;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
    background: rgba(255, 255, 255, 0.94);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
  }
  .side__logo { padding: 0; }
  .side__logo img { height: 30px; }
  .side__nav {
    margin: 0 0 0 auto;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 4px;
  }
  .side__link {
    flex: none;
    border-left: 0;
    border-bottom: 1px solid transparent;
    padding: 10px 9px;
    gap: 8px;
  }
  .side__link svg { width: 17px; height: 17px; }
  .side__link.is-active { border-bottom-color: var(--champagne); background: none; }
  .side__foot { display: none; }

  .grid { grid-template-columns: 1fr; }

  .detail { grid-template-columns: 1fr; grid-template-rows: 34vh 1fr; }
  .detail__media { order: -1; }
  .detail__media img { position: absolute; }
  .detail__back {
    top: 16px;
    left: 16px;
    color: #fff;
    background: rgba(22, 19, 14, 0.4);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 11px 18px;
  }
  .detail__text { min-height: 0; }
  .detail__scroll { padding: 30px 24px 32px; }
  .detail__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .cta { width: 100%; text-align: center; }
}

@media (max-width: 520px) {
  .side__logo img { height: 24px; }
  .side__link span { display: none; }
  .side__link { padding: 10px 11px; }
  .side__link svg { width: 19px; height: 19px; }
}
