/* ============================================================
   YÖREM MANTI - Modern Anadolu
   Saf CSS, framework yok.

   TASARIM TOKEN'LARI
   - Zemin: yoğurt beyazı | Marka: logo kırmızısı (tek vurgu)
   - Koyu bloklar marka kırmızısının derin bordosu.
   - ŞEKİL SİSTEMİ (tek kural, her yerde):
     * Medya & kartlar: "bohça" radius -> 28px 28px 28px 4px
     * Etkileşimli öğeler (buton, pill): tam pill
     * Form inputları: 10px
   ============================================================ */

:root {
  /* Renk tokenları (açık tema) */
  --bg: #faf5ec;
  /* yoğurt beyazı */
  --bg-soft: #f4e9dd;
  /* bir ton koyu zemin */
  --surface: #fffcf7;
  /* kart yüzeyi */
  --ink: #241518;
  /* kömür, sıcak alt tonlu */
  --ink-soft: #614a4b;
  /* ikincil metin */
  --bordo: #4a0e13;
  /* koyu bordo blok zemini */
  --bordo-ink: #f9ebe3;
  /* bordo blok üzerindeki metin */
  --red: #c8242a;
  /* marka kırmızısı: tüm CTA'lar */
  --red-deep: #9f181d;
  /* hover ve vurgu metni */
  --line: #e9d8ca;
  /* hairline */

  /* Şekil sistemi */
  --r-bohca: 28px 28px 28px 4px;
  --r-pill: 999px;
  --r-input: 10px;

  /* Tipografi */
  --font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", "Segoe UI", sans-serif;

  /* Ritim */
  --section: clamp(4rem, 9vw, 7rem);
  --container: 1200px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* yaylanmalı (jiggle) */
  /* Marka kimliği gereği site açık temaya kilitli:
     kırmızı + yoğurt beyazı her cihazda aynı görünür. */
  color-scheme: only light;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  /* Kenardan hafif taşan hero tabakları yatay kaydırma çubuğu açmasın */
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
  padding: 0;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--red);
  color: #fff;
}

/* ---------- Tipografi ---------- */
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  max-width: 62ch;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-soft);
}

/* ---------- Yerleşim yardımcıları ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section-head {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head p {
  margin-top: 0.75rem;
}

/* İmza şekil: bohça kıvrımı */
.bohca {
  border-radius: var(--r-bohca);
  overflow: hidden;
}

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--red);
  color: #fff7f3;
}

.btn-primary:hover {
  background: var(--red-deep);
  color: #fff;
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Koyu bordo blok içindeki ghost buton */
.on-dark .btn-ghost {
  border-color: var(--bordo-ink);
  color: var(--bordo-ink);
}

.on-dark .btn-ghost:hover {
  background: var(--bordo-ink);
  color: var(--bordo);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* z katmanları: 50 header, 55 alt bar, 65 menü sheet, 70 lightbox */
  border-bottom: 1px solid var(--line);
}

/* Cam efekti ::before'da: header'ın kendisinde backdrop-filter olursa
   içindeki position:fixed menü viewport yerine header'a sabitlenir. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 70px;
}

/* Çalışma durumu badge'i */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.28rem 0.65rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  margin-right: auto;
  margin-left: -0.75rem;
}

.open-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex: none;
  background: currentColor;
}

.open-status[data-state="open"] {
  color: #1a7f3c;
  background: #d4f5e2;
}

.open-status[data-state="closing"] {
  color: #9a5400;
  background: #fef3c7;
}

.open-status[data-state="opening"] {
  color: #0a5da6;
  background: #dbeafe;
}

.open-status[data-state="closed"] {
  color: #6b7280;
  background: #f3f4f6;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

/* Kare marka ikonu (yorem_icon.webp, 512x512) */
.brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
}

.nav-links a:not(.btn) {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding-block: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-links a:not(.btn):hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--red);
  font-weight: 600;
}

.nav-links .btn {
  padding: 0.6rem 1.3rem;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

/* Sheet başlığı yalnızca mobil menüde görünür */
.sheet-head {
  display: none;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
  }

  /* Alttan açılan sayfa (bottom sheet) menü */
  .nav-links {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    z-index: 65;
    /* alt barın (55) üstü, lightbox'ın (70) altı */
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 0.85rem 1.4rem calc(1.15rem + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 40px rgba(20, 8, 10, 0.25);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  /* Tutamaç çizgisi */
  .nav-links::before {
    content: "";
    width: 44px;
    height: 4px;
    border-radius: var(--r-pill);
    background: var(--line);
    margin: 0 auto 0.7rem;
  }

  .sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.5rem;
  }

  .sheet-head span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
  }

  .sheet-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: var(--r-pill);
    background: var(--bg-soft);
    color: var(--ink);
    display: grid;
    place-items: center;
  }

  .sheet-close svg {
    width: 18px;
    height: 18px;
  }

  .nav-links li {
    border-top: 1px solid var(--line);
  }

  .nav-links li.sheet-head,
  .nav-links li:nth-child(2) {
    border-top: 0;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 0;
    font-size: 1.05rem;
  }

  .nav-links a[aria-current="page"] {
    border-bottom: 0;
    color: var(--red-deep);
  }

  .nav-links .btn {
    margin-top: 1rem;
    justify-content: center;
    display: flex;
  }

  /* Üç çizgi X'e dönüşür: ortadaki söner, alt ve üst çaprazlanır */
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Menü açıkken sayfa kaymaz; alt bar aşağı süzülerek gizlenir,
     sheet barın animasyonu bitince JS gecikmesiyle açılır */
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .mobile-bar {
    opacity: 0;
    transform: translate(-50%, 18px);
    pointer-events: none;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: no-preference) {
  .nav-links.is-open {
    animation: sheet-up 0.55s var(--ease) both;
  }

  /* Yaylanma: hedefi aşar, hafif geri teper, oturur */
  @keyframes sheet-up {
    0% {
      transform: translateY(44px);
      opacity: 0;
    }

    55% {
      transform: translateY(-9px);
      opacity: 1;
    }

    78% {
      transform: translateY(3px);
    }

    100% {
      transform: none;
      opacity: 1;
    }
  }
}

/* ---------- Hero: dönen tabak karuseli ----------
   Ortada büyük tabak, solda/sağda küçük önizleme tabakları.
   Slot sınıfları (is-prev / is-main / is-next) JS tarafından atanır;
   geçiş animasyonu tamamen bu sınıflar arası transition'dır. */
/* Mobilde hero 65vh: tam ekran değil ama ferah; tabaklar dikeyde ortalanır */
.hero {
  padding-block: clamp(1rem, 2vw, 2rem);
  min-height: 65vh;
  min-height: 65svh;
  display: flex;
  align-items: center;
}

.plate-carousel {
  position: relative;
  flex: 1;
}

/* Yalnız masaüstünde hero tam ekran: yapışkan header düşülünce kalan
   yüksekliği doldurur, sonraki bölüm (otopark) ilk bakışta görünmez.
   Karusel genişliği, track yüksekliği (genişlik / 1.9 + ok satırı)
   ekrana sığacak şekilde viewport yüksekliğinden türetilerek sınırlanır.
   Mobilde hero normal akışta kalır. */
@media (min-width: 901px) {
  .hero {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
  }

  .plate-carousel {
    flex: 1;
    max-width: calc((100vh - 260px) * 1.9);
    max-width: calc((100svh - 260px) * 1.9);
    margin-inline: auto;
  }
}

/* Köşe süslemeleri: tabakların arkasında, tıklamayı engellemez.
   Dönüş açısı `rotate`, süzülme animasyonu `translate` özelliğiyle
   verilir ki birbirlerini ezmesinler. */
/* Katman, container'ı aşıp tam ekran genişliğine yayılır;
   süslemeler böylece gerçek ekran köşelerine yaslanır. */
.hero-deco {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: 0;
  pointer-events: none;
}

.deco {
  position: absolute;
  opacity: 0.55;
}

.deco-merdane {
  top: 2%;
  left: 2vw;
  width: clamp(110px, 13vw, 190px);
  rotate: -24deg;
}

.deco-hamur {
  bottom: 6%;
  right: 2.5vw;
  width: clamp(85px, 9.5vw, 140px);
}

/* Sağ köşeler: ürün temalı gruplar; aktif olan yumuşakça belirir */
.deco-theme {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.deco-theme.is-active {
  opacity: 1;
}

.deco-tr {
  top: 4%;
  right: 2.5vw;
  width: clamp(60px, 7vw, 100px);
  rotate: 14deg;
}

.deco-bl {
  bottom: 8%;
  left: 3vw;
  width: clamp(65px, 7.5vw, 110px);
  rotate: 10deg;
}

@media (prefers-reduced-motion: no-preference) {
  .deco {
    animation: deco-float 7s ease-in-out infinite alternate;
  }

  .deco-tr {
    animation-duration: 5.5s;
    animation-delay: 0.8s;
  }

  .deco-hamur {
    animation-duration: 8s;
    animation-delay: 1.6s;
  }

  .deco-bl {
    animation-duration: 6.2s;
    animation-delay: 2.4s;
  }
}

@keyframes deco-float {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -12px;
  }
}

@media (max-width: 900px) {
  .deco {
    opacity: 0.4;
  }

  .deco-merdane {
    width: 90px;
  }

  .deco-tr {
    width: 52px;
  }

  .deco-hamur {
    width: 70px;
  }

  .deco-bl {
    width: 56px;
  }
}

.plate-track {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  aspect-ratio: 1.9 / 1;
}

/* Slot dışı tabaklar ortada, küçülmüş ve görünmez bekler.
   Yanlardan ortaya geliş: çapraz yükseliş + dönerek gelme;
   transform yaylanmalı ease ile hafif taşıp oturur. */
.plate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(50%, 560px);
  transform: translate(-50%, -50%) scale(0.25) rotate(-120deg);
  opacity: 0;
  z-index: 1;
  transition:
    left 0.8s var(--ease),
    top 0.8s var(--ease),
    transform 0.8s var(--ease-spring),
    opacity 0.5s ease;
}

.plate img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(36, 21, 24, 0.22));
  -webkit-user-drag: none;
  user-select: none;
}

.plate.is-main {
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  opacity: 1;
  z-index: 3;
}

.plate.is-prev,
.plate.is-next {
  top: 68%;
  opacity: 0.9;
  z-index: 2;
  cursor: pointer;
}

.plate.is-prev {
  left: 14%;
  transform: translate(-50%, -50%) scale(0.6) rotate(-100deg);
}

.plate.is-next {
  left: 86%;
  transform: translate(-50%, -50%) scale(0.6) rotate(100deg);
}

/* Oklar: tabakların altında ortalanmış ikili buton (pill sistemi) */
.plate-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: clamp(0.75rem, 2vw, 1.25rem);
}

.plate-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(36, 21, 24, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s var(--ease-spring);
}

.plate-arrow svg {
  width: 22px;
  height: 22px;
}

.plate-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.plate-arrow:active {
  transform: scale(0.92);
}

@media (max-width: 900px) {
  .plate-track {
    aspect-ratio: 1.25 / 1;
  }

  .plate {
    width: 68%;
  }

  .plate.is-prev {
    left: 8%;
  }

  .plate.is-next {
    left: 92%;
  }

  .plate.is-prev,
  .plate.is-next {
    opacity: 0.7;
  }

  .plate-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .plate {
    transition: none;
  }
}

/* ---------- Ücretsiz otopark şeridi ---------- */
.perk-strip {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.perk-card {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.6rem);
  background: linear-gradient(115deg, var(--bg-soft), #f8ecdb 55%, #f5e5d2);
  border: 1px solid var(--line);
  border-radius: var(--r-bohca);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: 0 14px 30px -22px color-mix(in srgb, var(--bordo) 40%, transparent);
}

.perk-icon {
  flex: 0 0 56px;
  height: 56px;
  border-radius: var(--r-bohca);
  background: var(--surface);
  color: var(--red);
  display: grid;
  place-items: center;
}

.perk-icon svg {
  width: 28px;
  height: 28px;
}

.perk-card h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.perk-card p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.perk-text {
  flex: none;
}

/* Mesafe rozeti: yürüyen kişi + "Sadece 25 m" */
.perk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  color: var(--red-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  white-space: nowrap;
}

.perk-badge svg {
  width: 14px;
  height: 14px;
}

/* Rota butonu sağa yaslanır; dar ekranda alt satıra tam genişlik iner */
.perk-card .perk-cta {
  margin-left: auto;
  flex: none;
  white-space: nowrap;
}

.perk-cta svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 600px) {
  .perk-card {
    flex-wrap: wrap;
  }

  .perk-text {
    flex: 1 1 60%;
  }

  .perk-card .perk-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }
}

/* ---------- QR bölümü (sayfadaki tek koyu renk bloğu) ---------- */
.qr-band {
  background: var(--bordo);
  color: var(--bordo-ink);
}

.qr-copy h2 {
  color: var(--bordo-ink);
}

.qr-copy p {
  color: color-mix(in srgb, var(--bordo-ink) 78%, transparent);
  margin: 1rem 0 2rem;
}

/* Tek kolon: görsel yok, blok ortalanır — sağda boşluk kalmasın */
.menu-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  justify-items: center;
  max-width: 640px;
  text-align: center;
}

.menu-band-media {
  position: relative;
}

/* görselin arkasındaki açık ton blok: hero ile aynı imza kompozisyon */
.menu-band-media::before {
  content: "";
  position: absolute;
  inset: 10% -4% -7% 10%;
  border-radius: var(--r-bohca);
  background: color-mix(in srgb, var(--bordo-ink) 12%, transparent);
}

.menu-band-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-bohca);
}

@media (max-width: 820px) {
  .menu-band-grid {
    grid-template-columns: 1fr;
  }

  .menu-band-media img {
    aspect-ratio: 16 / 10;
  }
}

/* ---------- Kategoriler: 6 hücreli bento ---------- */
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: minmax(190px, auto);
  gap: 1.1rem;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border-radius: var(--r-bohca);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px color-mix(in srgb, var(--bordo) 45%, transparent);
}

/* görselli kartlar: sabit en-boy oranı, görselin doğal boyu
   kartı (dolayısıyla tüm grid satırlarını) şişiremez */
.bento-card .bento-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  /* Satırdaki en boylu karta uyarken artan yer görselde erisin,
     üstte boşluk kalmasın */
  flex: 1 1 auto;
  min-height: 0;
}

.bento-body {
  padding: 1.25rem 1.4rem 1.4rem;
}

.bento-body h3 {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bento-body h3 svg {
  width: 18px;
  height: 18px;
  flex: none;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.bento-card:hover .bento-body h3 svg {
  opacity: 1;
  transform: none;
}

.bento-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

@media (max-width: 980px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobil: tüm kartlar kompakt satıra dönüşür */
@media (max-width: 600px) {
  .bento {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.8rem;
  }

  .bento-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    border-radius: 18px 18px 18px 4px;
  }

  .bento-card .bento-thumb {
    width: 92px;
    height: 100%;
    min-height: 92px;
    aspect-ratio: auto;
  }

  .bento-card .bento-body {
    padding: 0.85rem 1rem;
  }

  .bento-card .bento-body p {
    font-size: 0.88rem;
  }

  /* Dokunmatikte hover yok: ok her zaman görünür */
  .bento-body h3 svg {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Neden Biz: asimetrik iki kolon ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.why-grid>.section-head {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.why-list {
  display: grid;
  gap: 0;
}

.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.4rem;
  padding-block: 1.8rem;
  border-top: 1px solid var(--line);
}

.why-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-bohca);
  background: var(--bg-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  margin-bottom: 0.35rem;
}

.why-item p {
  color: var(--ink-soft);
  font-size: 1rem;
}

@media (max-width: 820px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-grid>.section-head {
    position: static;
    margin-bottom: 0.5rem;
  }
}

/* ---------- Yorumlar: kademeli üçlü ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-bohca);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.quote-card blockquote {
  flex: 1;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

/* Google yorum havası */
.g-summary {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.g-logo {
  width: 22px;
  height: 22px;
  flex: none;
}

.g-summary strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.g-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbc04;
}

.g-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.quote-card>.g-stars {
  margin-bottom: 0.6rem;
}

.g-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.g-avatar {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: var(--r-pill);
  background: var(--av, var(--bordo));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.g-head strong {
  display: block;
  line-height: 1.25;
  font-weight: 600;
}

.g-date {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.g-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.g-all-link {
  color: var(--ink-soft);
  font-weight: 600;
}

.g-all-link:hover {
  color: var(--ink);
}

@media (max-width: 820px) {
  .quotes {
    grid-template-columns: 1fr;
  }

}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  margin-top: var(--section);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-grid a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer-grid address {
  font-style: normal;
  color: var(--ink-soft);
}

.footer-brand .brand {
  margin-bottom: 0.9rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 30ch;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease);
}

.footer-social a:hover {
  background: var(--bordo);
  color: var(--bordo-ink);
  border-color: var(--bordo);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-hours {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.footer-hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.footer-agency {
  display: flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.footer-agency:hover {
  opacity: 1;
}

.footer-agency img {
  display: block;
  height: 20px;
  width: auto;
  filter: brightness(0);
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hakkımızda ---------- */
.page-intro {
  padding-block: clamp(3.5rem, 8vw, 6rem) 0;
}

.page-intro h1 {
  max-width: 16ch;
  margin-bottom: 1rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-bohca);
}

.story-grid .prose h2 {
  margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
}

.story-grid .prose p+p {
  margin-top: 1rem;
}

.story-grid .prose p {
  color: var(--ink-soft);
}

.story-grid .prose p:first-of-type {
  color: var(--ink);
}

@media (max-width: 820px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-grid img {
    aspect-ratio: unset;
    max-height: 220px;
    object-fit: cover;
  }
}

/* ---------- Galeri ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  border-radius: var(--r-bohca);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease);
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(30, 7, 9, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  max-width: min(960px, 100%);
}

.lightbox img {
  max-height: 78dvh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  border-radius: var(--r-bohca);
}

.lightbox figcaption {
  color: #f6ead9;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.lightbox-btn {
  position: absolute;
  background: rgba(246, 234, 217, 0.12);
  border: 1px solid rgba(246, 234, 217, 0.3);
  color: #f6ead9;
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  transition: background-color 0.2s var(--ease);
}

.lightbox-btn:hover {
  background: rgba(246, 234, 217, 0.25);
}

.lightbox-btn svg {
  width: 22px;
  height: 22px;
}

.lightbox-close {
  top: 1.25rem;
  right: 1.25rem;
}

.lightbox-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 560px) {
  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }
}

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: stretch;
}

.contact-cards {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: clamp(1rem, 2.5vw, 1.4rem);
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-bohca);
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-bohca);
  background: var(--bg-soft);
  color: var(--red);
  display: grid;
  place-items: center;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  margin-bottom: 0.4rem;
}

.contact-card a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .big-link {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
}

.contact-card .big-link:hover {
  text-decoration: none;
  color: var(--red-deep);
}

.contact-card address {
  font-style: normal;
  color: var(--ink-soft);
}

.contact-note {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.contact-actions .btn:hover {
  text-decoration: none;
}

/* .contact-card a kuralı buton rengini ezmesin */
.contact-card .btn-primary {
  color: #fff7f3;
}

.contact-card .btn-primary:hover {
  color: #fff;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.9rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 380px;
}

.hours-table td {
  padding-block: 0.45rem;
  color: var(--ink-soft);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--ink);
  font-weight: 600;
}

.hours-table tr+tr td {
  border-top: 1px solid var(--line);
}

.hours-table td.is-closed {
  color: var(--red-deep);
}

.hours-table tr.is-today td {
  color: var(--ink);
}

.hours-table tr.is-today td:first-child::after {
  content: "Bugün";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.05rem 0.55rem;
  border-radius: var(--r-pill);
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  vertical-align: 1px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  border-radius: var(--r-bohca);
}

/* Rezervasyon şeridi */
.reserve-band {
  margin-top: var(--section);
  background: var(--bordo);
  color: var(--bordo-ink);
  border-radius: var(--r-bohca);
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Anasayfada bir önceki bölümün alt boşluğu yeterli */
.reserve-section .reserve-band {
  margin-top: 0;
}

.reserve-band h2 {
  color: var(--bordo-ink);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.reserve-band p {
  color: color-mix(in srgb, var(--bordo-ink) 78%, transparent);
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap iframe {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 600px) {
  .contact-card {
    grid-template-columns: 44px 1fr;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }
}

/* ---------- Tanıtım videosu popup'ı ---------- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  /* her şeyin üstünde */
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(20, 8, 10, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.video-modal.is-open {
  display: flex;
}

.video-card {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 9 / 16;
  max-height: 86dvh;
  border-radius: 28px;
  overflow: hidden;
  background: #1c0f11;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-btn {
  width: 42px;
  height: 42px;
  flex: none;
  border: 0;
  border-radius: var(--r-pill);
  background: rgba(250, 245, 236, 0.92);
  color: #241518;
  display: grid;
  place-items: center;
}

.video-btn:active {
  transform: scale(0.94);
}

.video-btn svg {
  width: 20px;
  height: 20px;
}

.video-progress {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(20, 8, 10, 0.4);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.video-track {
  flex: 1;
  height: 4px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.video-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .video-modal.is-open .video-card {
    animation: video-pop 0.5s var(--ease) both;
  }

  @keyframes video-pop {
    0% {
      transform: translateY(44px) scale(0.94);
      opacity: 0;
    }

    60% {
      transform: translateY(-7px) scale(1.01);
      opacity: 1;
    }

    100% {
      transform: none;
      opacity: 1;
    }
  }
}

/* ---------- WhatsApp hızlı yanıt butonu ---------- */
.wa-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 55;
  /* header 50 üstü, mobil menü 60 ve lightbox 70 altı */
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  /* WhatsApp marka yeşili */
  color: #11331f;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.8rem 1.25rem;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 28px -10px rgba(17, 51, 31, 0.55);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(17, 51, 31, 0.6);
}

.wa-float:active {
  transform: scale(0.98);
}

.wa-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: none;
}

/* ---------- Mobil alt bar: yüzen "liquid glass" hap ----------
   Apple Liquid Glass'in web yaklaşımı (resmi bir CSS API'si yok):
   backdrop-filter + iç ışık kenarı + katmanlı gölge. */
.mobile-bar {
  display: none;
}

@media (max-width: 820px) {
  .mobile-bar {
    position: fixed;
    left: 50%;
    bottom: calc(0.9rem + env(safe-area-inset-bottom));
    transform: translateX(-50%);
    z-index: 55;
    /* içerik üstü, mobil menü (60) ve lightbox (70) altı */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    width: min(400px, calc(100% - 2rem));
    padding: 0.35rem;
    border-radius: 26px;
    background: color-mix(in srgb, var(--bg) 78%, transparent);
    -webkit-backdrop-filter: blur(14px) saturate(115%);
    backdrop-filter: blur(14px) saturate(115%);
    border: 1px solid color-mix(in srgb, #ffffff 38%, transparent);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.4),
      0 10px 26px -12px rgba(36, 21, 24, 0.3);
    transition: opacity 0.22s var(--ease), transform 0.32s var(--ease-spring);
  }

  .mobile-bar a,
  .mobile-bar button {
    display: grid;
    justify-items: center;
    gap: 0.15rem;
    padding: 0.45rem 0 0.4rem;
    border: 0;
    border-radius: 22px;
    background: none;
    font-family: inherit;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 600;
    transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
  }

  .mobile-bar a:active,
  .mobile-bar button:active {
    transform: scale(0.92);
    background: color-mix(in srgb, #ffffff 55%, transparent);
  }

  .mobile-bar svg {
    width: 22px;
    height: 22px;
  }

  /* Ana eylem diğerleriyle birebir aynı düzende; yalnızca renkle ayrışır */
  .mobile-bar .is-primary {
    color: var(--red);
  }

  /* Video: dolu kırmızı zemin, beyaz ikon ve yazı — barda öne çıksın */
  .mobile-bar button[data-video-open] {
    background: var(--red);
    color: #fff;
    box-shadow: 0 4px 12px -4px color-mix(in srgb, var(--red) 55%, transparent);
  }

  .mobile-bar button[data-video-open]:active {
    background: color-mix(in srgb, var(--red) 88%, #000);
  }

  /* Bar yüzdüğü için içeriğe daha geniş alt nefes */
  body {
    padding-bottom: 96px;
  }

  body.footer-visible .mobile-bar {
    display: none !important;
  }

  body.footer-visible {
    padding-bottom: 0;
  }

  /* WhatsApp mobilde barda; yüzen buton yalnızca masaüstünde */
  .wa-float {
    display: none;
  }
}

/* Açılışta süzülerek gelme (yalnızca motion isteyenlere).
   "backwards" şart: "both" olursa animasyonun bitiş değeri kalıcı uygulanır
   ve menü açıkken barı gizleyen opacity:0 kuralını ezer. */
@media (max-width: 820px) and (prefers-reduced-motion: no-preference) {
  .mobile-bar {
    animation: bar-in 0.7s var(--ease) 0.15s backwards;
  }

  @keyframes bar-in {
    0% {
      opacity: 0;
      transform: translate(-50%, 26px);
    }

    60% {
      opacity: 1;
      transform: translate(-50%, -7px);
    }

    82% {
      transform: translate(-50%, 3px);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
}

/* Şeffaflık azaltma tercihinde katı zemin */
@media (max-width: 820px) and (prefers-reduced-transparency: reduce) {
  .mobile-bar {
    background: var(--bg);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* ---------- Scroll reveal (yalnızca motion isteyenlere) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    transition-delay: var(--d, 0s);
  }

  .reveal.in {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Baskı ufak dokunuş ---------- */
@media print {

  .site-header,
  .site-footer,
  .lightbox {
    display: none;
  }
}