/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* === FONT SİSTEMİ (modern editorial) === */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Poppins', system-ui, sans-serif;

  /* Fluid type scale (viewport'a göre akıcı boyutlar) */
  --text-xs:   clamp(0.72rem, 0.68rem + 0.18vw, 0.82rem);
  --text-sm:   clamp(0.82rem, 0.78rem + 0.2vw, 0.92rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg:   clamp(1.1rem, 1rem + 0.4vw, 1.3rem);
  --text-xl:   clamp(1.4rem, 1.2rem + 0.8vw, 1.85rem);
  --text-2xl:  clamp(1.85rem, 1.4rem + 1.6vw, 2.6rem);
  --text-3xl:  clamp(2.4rem, 1.8rem + 2.5vw, 3.6rem);
  --text-hero: clamp(2.8rem, 1.8rem + 4.5vw, 5.4rem);

  /* === YENİ MODERN PALET (beyaz + turuncu + yeşil) === */
  --primary: #ff7b00;          /* turuncu - ana CTA */
  --primary-dark: #d84315;     /* koyu turuncu - hover */
  --accent: #2a7028;           /* yeşil - doğal/taze aksan */
  --accent-light: #3a8a36;     /* açık yeşil */

  /* Zeminler */
  --bg: #fafafa;               /* ana zemin */
  --bg-alt: #ffffff;           /* kart/kutu */
  --bg-warm: #fff9f0;          /* sıcak ton */
  --bg-soft: #f5f0e8;          /* yumuşak krem */

  /* Yazı */
  --text: #1a1a1a;             /* birincil yazı */
  --text-soft: #555555;        /* ikincil yazı */
  --text-mute: #8a8a8a;        /* solgun */

  /* Eski palet geriye dönük uyumluluk (artık az kullanılır) */
  --bordo: #6b0f1a;
  --bordo-dark: #4a0a12;
  --altin: #d4a24c;
  --altin-soft: #e8c585;
  --krem: #fafafa;             /* eski krem -> şimdi beyaza yakın */
  --kahve: #1a1a1a;
  --koyu: #0f0f0f;
  --metin: #1a1a1a;
  --gri: #555555;
  --beyaz: #ffffff;

  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: var(--text-base);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 123, 0, 0.2);
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Performans + erişilebilirlik: hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.loading { overflow: hidden; height: 100vh; }

/* ============ CINEMATIC INTRO (bu.mp4 hero) ============ */
.cinematic-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #000;
  will-change: transform, opacity;
}

.ci-bg {
  position: absolute;
  inset: 0;
  filter: brightness(.45);
  background:
    repeating-linear-gradient(90deg, #4a2a16 0px, #5a3520 8px, #3d2210 16px, #4a2a16 22px, #6b3f25 32px, #3d2210 44px),
    linear-gradient(180deg, #2a1408 0%, #4a2a16 50%, #2a1408 100%);
}

.ci-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.2));
  z-index: 2;
}

.ci-light {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,180,80,.45), transparent 70%);
  top: -150px;
  right: -150px;
  z-index: 3;
  animation: ciPulse 4s infinite alternate;
  pointer-events: none;
}

@keyframes ciPulse {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}

.ci-pide {
  position: absolute;
  top: -5vh;            /* üstten 5vh gizli */
  left: 0;
  width: 100vw;
  height: 125vh;        /* alttan 20vh gizli (watermark için) */
  transform-origin: center center;
  z-index: 5;
  object-fit: cover;
  background: #000;
}

/* ============ CINEMATIC FINALE (video sonuna doğru beliren karşılama) ============ */
.ci-finale {
  position: absolute;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.ci-finale.show { pointer-events: auto; }

.ci-finale-inner {
  padding: 0 24px;
  max-width: 900px;
}

.ci-finale-kicker {
  font-size: 0.85rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.ci-finale-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--krem);
  line-height: 1.05;
  margin-bottom: 38px;
  letter-spacing: -1px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.7);
}

.ci-finale-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
}

.ci-finale-title .line.gold {
  color: var(--altin);
  font-style: italic;
}

.ci-finale-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 42px;
  background: linear-gradient(135deg, #ff7b00, #d84315);
  color: white;
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 12px 36px rgba(255, 123, 0, 0.5), 0 0 0 1px rgba(255, 200, 100, 0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.92);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ci-finale-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.ci-finale-btn:hover {
  transform: translateY(0) scale(1.06);
  box-shadow: 0 18px 50px rgba(255, 123, 0, 0.7), 0 0 0 1px rgba(255, 200, 100, 0.5);
}

.ci-finale-btn:hover::before {
  transform: translateX(100%);
}

.ci-finale-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.ci-finale-btn:hover .ci-finale-arrow {
  transform: translateX(6px);
}

/* Pulsing glow ring around button */
.ci-finale-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(255, 200, 100, 0.5);
  opacity: 0;
  animation: ciBtnPulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ciBtnPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.06); }
}

.ci-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  color: white;
  max-width: 540px;
}

.ci-kicker {
  font-size: 0.85rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--altin);
  margin-bottom: 18px;
  font-weight: 500;
}

.ci-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 22px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  letter-spacing: -1px;
}

.ci-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.6;
}

.ci-btn {
  padding: 18px 42px;
  border: none;
  background: linear-gradient(135deg, #ff7b00, #d84315);
  color: white;
  font-size: 0.95rem;
  letter-spacing: 3px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
  font-family: inherit;
}

.ci-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 40px rgba(255, 123, 0, 0.6);
}

.ci-hint {
  margin-top: 22px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  animation: ciHintPulse 2s ease-in-out infinite;
}

@keyframes ciHintPulse {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(4px); }
}

.ci-smoke {
  position: absolute;
  width: 700px;
  height: 700px;
  opacity: .35;
  pointer-events: none;
  z-index: 10;
  filter: blur(12px);
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(200,200,200,0.3) 40%, transparent 70%);
  border-radius: 50%;
}
.ci-smoke1 { left: -100px; bottom: -100px; animation: ciSmoke1 12s infinite linear; }
.ci-smoke2 { right: -150px; top: 0;        animation: ciSmoke2 14s infinite linear; }
.ci-smoke3 { left: 30%; bottom: -200px;    animation: ciSmoke3 16s infinite linear; }

@keyframes ciSmoke1 {
  0%   { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
  20%  { opacity: .35; }
  100% { transform: translateY(-500px) scale(2) rotate(40deg); opacity: 0; }
}
@keyframes ciSmoke2 {
  0%   { transform: translateY(0) scale(1) rotate(0deg); opacity: 0; }
  20%  { opacity: .25; }
  100% { transform: translateY(-400px) scale(1.8) rotate(-30deg); opacity: 0; }
}
@keyframes ciSmoke3 {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  20%  { opacity: .3; }
  100% { transform: translateY(-600px) scale(2.5); opacity: 0; }
}

.ci-ingredient { position: absolute; z-index: 15; }

.ci-tomato {
  width: 180px;
  height: 180px;
  right: 100px;
  bottom: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff6b5b 0%, #d9281c 55%, #8b1410 100%);
  box-shadow: 0 10px 24px rgba(0,0,0,0.5), inset -8px -10px 20px rgba(0,0,0,0.25);
}
.ci-tomato::after {
  content: '';
  position: absolute;
  top: -10px; left: 50%;
  width: 40px; height: 18px;
  background: #3a7028;
  border-radius: 50% 50% 30% 30%;
  transform: translateX(-50%);
}

.ci-pepper {
  width: 140px;
  height: 140px;
  left: 120px;
  top: 180px;
  background: linear-gradient(135deg, #ff3022, #8b0a06);
  border-radius: 60% 30% 50% 40% / 55% 30% 70% 45%;
  transform: rotate(-25deg);
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}
.ci-pepper::before {
  content: '';
  position: absolute;
  top: -8px; left: 10px;
  width: 30px; height: 14px;
  background: #3a7028;
  border-radius: 50% 0 0 50%;
  transform: rotate(-30deg);
}

@media (max-width: 720px) {
  /* Mobil: video tam ekran, basit cover - özel offset yerine */
  .ci-pide {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
  }
  /* Finale yazısı mobilde daha sıkı */
  .ci-finale-inner { padding: 0 20px; }
  .ci-finale-title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .ci-finale-kicker { letter-spacing: 5px; font-size: 0.72rem; margin-bottom: 16px; }
  .ci-finale-btn { padding: 14px 28px; font-size: 0.82rem; letter-spacing: 2px; }
}

/* ============ THREE.JS FIRE CANVAS ============ */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

h1 { font-size: var(--text-3xl); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p { line-height: 1.7; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ SVG ICONS ============ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.icon-sm { width: 0.95em; height: 0.95em; }
.icon-lg { width: 1.4em; height: 1.4em; }
.icon-xl { width: 1.8em; height: 1.8em; }

.section-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--gri);
}

/* ============ BUTTONS (turuncu CTA + yeşil aksan) ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 32px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 123, 0, 0.25);
}

.btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 123, 0, 0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

.btn-full { width: 100%; justify-content: center; }

.btn-small {
  background: var(--primary);
  color: white !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.btn-small:hover {
  background: var(--primary-dark);
  color: white !important;
  transform: translateY(-1px);
}

/* ============ BUTTON RIPPLE ============ */
.btn, .btn-small, .ci-finale-btn, .menu-card-order {
  position: relative;
  overflow: hidden;
}

.btn .ripple,
.btn-small .ripple,
.ci-finale-btn .ripple,
.menu-card-order .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

/* ============ IMAGE TILT (subtle 3D) ============ */
.tilt {
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.tilt > * { transform: translateZ(20px); }

/* ============ SCROLL PROGRESS BAR ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, #ffb84d 50%, var(--accent) 100%);
  z-index: 10003;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 12px rgba(255, 123, 0, 0.6);
}

/* ============ MOBILE ACTIONS (alt sticky çubuk) ============ */
.mobile-actions {
  display: none;
}

@media (max-width: 720px) {
  .mobile-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(15, 10, 8, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 8px 4px env(safe-area-inset-bottom, 4px);
    border-top: 1px solid rgba(255, 123, 0, 0.3);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
  }
  .mobile-actions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    color: white;
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.2s;
  }
  .mobile-actions a:hover,
  .mobile-actions a:active {
    background: rgba(255, 123, 0, 0.15);
  }
  .mobile-actions a .icon {
    width: 1.3rem;
    height: 1.3rem;
    color: var(--primary);
    margin-bottom: 2px;
  }
  .mobile-actions a.ma-wa .icon {
    color: #25d366;
  }

  /* alt bar yüzünden footer içeriği gizlemesin */
  body { padding-bottom: 72px; }
}

/* ============ TOP BAR ============ */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--koyu);
  color: var(--krem);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.18);
  transition: transform 0.3s ease;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(248, 241, 228, 0.78);
}

.tb-icon { font-size: 0.9rem; }
.top-bar .icon { width: 0.95rem; height: 0.95rem; vertical-align: -0.2em; color: currentColor; }
.tb-phone .icon { color: var(--altin); }
.tb-wa .icon { color: #25d366; }
.tb-wa:hover .icon { color: white; }

.tb-sep {
  color: rgba(212, 162, 76, 0.4);
}

.tb-phone, .tb-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--altin);
  font-weight: 500;
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}

.tb-phone:hover, .tb-wa:hover {
  background: rgba(212, 162, 76, 0.15);
  color: var(--krem);
}

.tb-wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.tb-wa:hover {
  background: #25d366;
  color: white;
}

.top-bar.hidden { transform: translateY(-100%); }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 38px;  /* top-bar yüksekliği kadar aşağıda */
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 10, 8, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 123, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  top: 0;
  background: rgba(15, 10, 8, 0.98);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 1.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.logo-mark {
  font-size: 1.6rem;
  color: var(--altin);
  display: inline-flex;
  align-items: center;
}
.logo-mark .icon { width: 1.4rem; height: 1.4rem; vertical-align: middle; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.logo-text em {
  color: var(--altin);
  font-style: italic;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.nav-links a:not(.btn-small)::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

.nav-links a:not(.btn-small):hover { color: var(--primary); }
.nav-links a:not(.btn-small):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--krem);
  transition: 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('alev.webp') center/cover no-repeat,
    linear-gradient(135deg, #2a1408, #4a1a1a);
  color: var(--krem);
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.5) 75%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 24px 80px;
}

/* Yazılar için arkada hafif okunabilirlik katmanı (yumuşak vignette) */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 60px -10% 30px -10%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 45%, transparent 80%);
  z-index: -1;
  pointer-events: none;
  filter: blur(50px);
}

/* hero entrance GSAP-driven; başlangıçta gizli — GSAP açar */
.hero-badge,
.hero-kicker,
.hero-sub,
.hero-features,
.hero-cta,
.hero-quick { opacity: 0; }

/* Rating badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 123, 0, 0.18);
  border: 1px solid rgba(255, 123, 0, 0.5);
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stars {
  display: inline-flex;
  gap: 2px;
  color: #ffd54f;
  filter: drop-shadow(0 0 8px rgba(255, 213, 79, 0.6));
}
.hero-stars .icon { width: 0.95rem; height: 0.95rem; }

.hero-rating-text {
  font-size: 0.85rem;
  color: white;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-rating-text strong {
  color: var(--primary);
  font-size: 0.95rem;
  margin-right: 4px;
}

.hero-kicker {
  font-size: 1.05rem;
  letter-spacing: 5px;
  color: #ffa040;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow:
    0 2px 14px rgba(0,0,0,1),
    0 1px 4px rgba(0,0,0,1),
    0 0 30px rgba(0,0,0,0.9);
}

.hero-content h1,
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: #ffffff;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  text-shadow:
    0 4px 24px rgba(0,0,0,1),
    0 2px 10px rgba(0,0,0,1),
    0 0 80px rgba(0,0,0,0.9),
    0 0 4px rgba(0,0,0,0.6);
}

.hero-title .line {
  display: block;
  overflow: hidden;
  line-height: 1.1;
}

.hero-title .line.gold {
  color: #ffa040;
  font-style: italic;
  text-shadow:
    0 4px 24px rgba(0,0,0,1),
    0 2px 10px rgba(0,0,0,1),
    0 0 60px rgba(0,0,0,0.9),
    0 0 4px rgba(0,0,0,0.8);
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  will-change: transform;
}

.hero-sub {
  font-size: 1.2rem;
  max-width: 660px;
  margin: 0 auto 30px;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
  text-shadow:
    0 2px 16px rgba(0,0,0,1),
    0 1px 6px rgba(0,0,0,1),
    0 0 40px rgba(0,0,0,0.95),
    0 0 4px rgba(0,0,0,0.8);
}

/* Özellik pill'leri */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50px;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-feature:hover {
  background: rgba(255, 123, 0, 0.25);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.hf-icon { width: 1rem; height: 1rem; color: var(--primary); vertical-align: -0.18em; }
.hero-feature:hover .hf-icon { color: white; }

/* Hızlı bilgi şeridi */
.hero-quick {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  margin-top: 50px;
  padding: 22px 38px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 123, 0, 0.45);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hq-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
}

.hq-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.hq-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 123, 0, 0.4);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-down {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-down a {
  color: var(--krem);
  font-size: 1.5rem;
  opacity: 0.7;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============ STATS SECTION (animated counter) ============ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1408 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 123, 0, 0.15), transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(42, 112, 40, 0.15), transparent 60%);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 123, 0, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 123, 0, 0.35);
}

.stat-icon .icon { width: 1.5rem; height: 1.5rem; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span { color: var(--primary); }

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 2.2rem; }
}

/* ============ ABOUT ============ */
.about {
  padding: 120px 0;
  background: var(--bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  height: 500px;
  object-fit: cover;
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 24px 36px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(255, 123, 0, 0.35);
}

.about-badge strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: white;
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.about-text h2 span {
  color: var(--primary);
  font-style: italic;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--text-soft);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.about-features li {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-warm);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  transition: all 0.25s;
}

.about-features li:hover {
  transform: translateX(4px);
  border-left-color: var(--primary);
  background: white;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.about-features .icon {
  width: 1.3rem;
  height: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
}

.about-features li:hover .icon { color: var(--primary); }

/* ============ MENU (açık tema) ============ */
.menu-section {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  color: var(--text);
  position: relative;
}

.menu-section h2 { color: var(--text); }
.menu-section .section-desc { color: var(--text-soft); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.tab {
  background: white;
  color: var(--text-soft);
  border: 1.5px solid #e8e0d4;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(255, 123, 0, 0.35);
}

/* ============ MENU STATS SHERIT ============ */
.menu-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 18px 28px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.menu-stats span {
  font-size: 0.9rem;
  color: var(--text-soft);
  letter-spacing: 0.5px;
}

.menu-stats strong {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 6px;
}

.menu-stats .mc-divider {
  width: 1px;
  height: 28px;
  background: #e8e0d4;
  padding: 0;
}

/* ============ MENU CATEGORY INTRO ============ */
.menu-intro {
  text-align: center;
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease;
}

.menu-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text);
  margin-bottom: 8px;
  font-style: italic;
}

.menu-intro-sub {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.menu-intro-count {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 123, 0, 0.12);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============ MODERN MENU CARDS (image-heavy + hover slide) ============ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  position: relative;
  height: 420px;                /* SABİT yükseklik */
  min-height: 420px;            /* hiçbir koşulda küçülmesin */
  max-height: 420px;            /* hiçbir koşulda büyümesin */
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #1a0f0a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease;
  outline: none;
  transform-origin: center center;
}

.menu-card:hover,
.menu-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 0 2px var(--primary);
}

.menu-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.menu-card:hover .menu-card-img img,
.menu-card:focus-visible .menu-card-img img {
  transform: scale(1.15);
}

.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26,15,10,0.0) 0%,
    rgba(26,15,10,0.45) 45%,
    rgba(26,15,10,0.95) 100%);
  transition: background 0.4s ease;
}

.menu-card:hover .menu-card-overlay {
  background: linear-gradient(180deg,
    rgba(255,123,0,0.15) 0%,
    rgba(26,15,10,0.7) 40%,
    rgba(26,15,10,0.98) 100%);
}

.menu-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px 24px 22px;
  color: var(--krem);
  transform: translateY(60px);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-card:hover .menu-card-content,
.menu-card:focus-visible .menu-card-content {
  transform: translateY(0);
}

.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--krem);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.menu-card-desc {
  font-size: 0.88rem;
  color: rgba(248, 241, 228, 0.82);
  line-height: 1.55;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.4s ease 0.05s;
  /* clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-card:hover .menu-card-desc,
.menu-card:focus-visible .menu-card-desc {
  opacity: 1;
}

.menu-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.menu-card:hover .menu-card-actions,
.menu-card:focus-visible .menu-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.menu-card-cta {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 241, 228, 0.75);
  font-weight: 600;
}

.menu-card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.4);
  transition: all 0.25s;
}

.menu-card-order:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.menu-card-order .icon { width: 0.85em; height: 0.85em; }

/* ============ CARD BADGES (top-left) ============ */
.card-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.card-badge .icon { width: 0.85em; height: 0.85em; }

.b-popular { background: rgba(255, 213, 79, 0.95); color: #5a3a00; }
.b-new     { background: rgba(255, 123, 0, 0.95);  color: white; }
.b-spicy   { background: rgba(216, 67, 21, 0.95);  color: white; }
.b-veggie  { background: rgba(42, 112, 40, 0.95);  color: white; }
.b-chef    { background: rgba(15, 10, 8, 0.85);    color: var(--primary); border: 1px solid rgba(255, 123, 0, 0.5); }

/* ============ CARD PREP TIME (top-right) ============ */
.menu-card-time {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: rgba(15, 10, 8, 0.75);
  color: var(--primary);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-card-time .icon { width: 0.85em; height: 0.85em; }

/* Card name is always visible from bottom edge */
.menu-card-content::before {
  content: '';
  position: absolute;
  left: 24px;
  bottom: calc(100% - 50px);
  width: 36px;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-content::before,
.menu-card:focus-visible .menu-card-content::before {
  transform: scaleX(1);
}

/* ============ GALLERY LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10001;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  pointer-events: auto;
  opacity: 1;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lb-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  padding: 60px;
}

.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.92);
  opacity: 0;
  transition: all 0.3s ease;
}

.lightbox.open .lb-img {
  transform: scale(1);
  opacity: 1;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: serif;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lb-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lb-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg);
}

.lb-prev, .lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 1;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-prev:hover, .lb-next:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 3px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .lb-stage { padding: 30px 10px; }
  .lb-prev, .lb-next { width: 44px; height: 44px; font-size: 1.8rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ============ MODAL (menu detail) ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.open {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.85);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.94);
  width: min(900px, 92vw);
  max-height: 88vh;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1.05);
}

.modal.open .modal-card {
  transform: translate(-50%, -50%) scale(1);
}

.modal-img-wrap {
  position: relative;
  background: #1a0f0a;
  min-height: 320px;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-body {
  padding: 36px 36px 32px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-cat {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.modal-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.modal-desc {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-ings h4 {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.modal-ings ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
}

.modal-ings li {
  padding: 6px 14px;
  background: rgba(42, 112, 40, 0.10);
  border: 1px solid rgba(42, 112, 40, 0.25);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

.modal-cta {
  margin-top: auto;
}

.modal-cta .btn {
  width: 100%;
  text-align: center;
  display: block;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: white;
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 720px) {
  .modal-card {
    grid-template-columns: 1fr;
    max-height: 92vh;
  }
  .modal-img-wrap { min-height: 220px; max-height: 280px; }
  .modal-body { padding: 24px 22px; }
  .modal-name { font-size: 1.5rem; }
}

/* ============ GALLERY ============ */
.gallery {
  padding: 120px 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(107,15,26,0.4));
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover::after { opacity: 1; }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Placeholder kartlar (gerçek görseller eklenene kadar) */
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    repeating-linear-gradient(45deg, #faf3e8 0, #faf3e8 12px, #f5ecd8 12px, #f5ecd8 24px);
  border: 2px dashed rgba(255, 123, 0, 0.35);
  color: var(--text-soft);
  cursor: default;
}

.gallery-placeholder::after { display: none; }    /* hover overlay'ı iptal */

.gallery-placeholder .icon {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--primary);
  opacity: 0.7;
}

.gallery-placeholder span {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-soft);
}

/* ============ MAP SECTION ============ */
.map-section {
  position: relative;
  background: var(--bg);
}

.map-wrap {
  position: relative;
  height: 500px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
}

.map-card {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  background: white;
  padding: 28px 30px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  max-width: 360px;
  z-index: 2;
}

.map-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--primary);
}

.map-card-head .icon { width: 1.4rem; height: 1.4rem; }

.map-card h3 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text);
}

.map-card > p {
  color: var(--text-soft);
  margin-bottom: 8px;
}

.map-card-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent) !important;
  margin-bottom: 18px !important;
  font-weight: 500;
}

.map-card-hours .icon { width: 0.95em; height: 0.95em; }

.map-card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text);
  background: var(--bg);
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.2s;
}

.map-card-call:hover {
  background: var(--accent);
  color: white;
}

.map-card-call .icon { color: var(--primary); transition: color 0.2s; }
.map-card-call:hover .icon { color: white; }

@media (max-width: 720px) {
  .map-wrap { height: auto; display: flex; flex-direction: column; }
  .map-wrap iframe { height: 300px; }
  .map-card {
    position: static;
    transform: none;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
  }
}

/* ============ CONTACT (açık tema) ============ */
.contact {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  color: var(--text);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 36px;
  color: var(--text-soft);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: white;
  border-radius: 10px;
  border: 1px solid #f0e8dc;
  transition: all 0.3s ease;
}

.contact-list li:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(255, 123, 0, 0.1);
}

.ci-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.25);
}
.ci-icon .icon { width: 1.2rem; height: 1.2rem; }

.contact-list strong {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.contact-list a:hover { color: var(--primary); }

/* form */
.contact-form {
  background: white;
  color: var(--text);
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid #f0e8dc;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row:has(select) {
  grid-template-columns: 1fr;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e8e0d4;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: all 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 123, 0, 0.1);
}

.contact-form textarea {
  resize: vertical;
  margin-bottom: 16px;
}

.form-msg {
  margin-top: 12px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* ============ FOOTER (zengin, 4 kolonlu) ============ */
.footer {
  background: linear-gradient(180deg, var(--koyu) 0%, #0a0604 100%);
  color: var(--krem);
  padding: 80px 0 24px;
  position: relative;
  border-top: 1px solid rgba(212, 162, 76, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--altin), var(--bordo), var(--altin), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col h4.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--altin);
  margin-bottom: 22px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4.footer-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--altin);
}

/* Brand column */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-brand .logo-mark { font-size: 1.6rem; }

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--krem);
  font-weight: 700;
}

.footer-brand .logo-text em {
  color: var(--altin);
  font-style: italic;
}

.footer-tagline {
  color: rgba(248, 241, 228, 0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 162, 76, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--altin);
  text-decoration: none;
  transition: all 0.3s ease;
}
.socials .icon { width: 1.05rem; height: 1.05rem; }

.socials a:hover {
  background: var(--altin);
  color: var(--kahve);
  border-color: var(--altin);
  transform: translateY(-3px);
}

.socials .social-wa:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

/* Quick links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(248, 241, 228, 0.65);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s;
  position: relative;
  padding-left: 14px;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--altin);
  font-weight: 700;
  transition: transform 0.25s;
}

.footer-links a:hover {
  color: var(--altin);
  padding-left: 18px;
}

.footer-links a:hover::before {
  transform: translateX(2px);
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.fc-icon {
  width: 36px;
  height: 36px;
  background: rgba(212, 162, 76, 0.12);
  border: 1px solid rgba(212, 162, 76, 0.25);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--altin);
}
.fc-icon .icon { width: 1rem; height: 1rem; }

.footer-contact strong {
  display: block;
  color: var(--altin);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.footer-contact li div {
  color: rgba(248, 241, 228, 0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(248, 241, 228, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--altin); }

/* CTA column */
.footer-cta p {
  color: rgba(248, 241, 228, 0.65);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer-cta .btn {
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.btn-wa {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  background: #25d366;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(212, 162, 76, 0.18);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(248, 241, 228, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom strong {
  color: var(--altin);
  font-weight: 600;
}

.footer-credit {
  font-style: italic;
}
.footer-credit .icon { width: 1rem; height: 1rem; color: var(--altin); vertical-align: -0.2em; margin-left: 4px; }

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

@media (max-width: 720px) {
  .footer { padding: 60px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-badge { right: 20px; bottom: -20px; padding: 18px 24px; }
  .about-badge strong { font-size: 2rem; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .menu-card { height: 380px; min-height: 380px; max-height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  /* Hero mobil: hızlı bilgi şeridi yatay (sıkıştırılmış) */
  .hero-quick {
    flex-direction: row;
    gap: 14px;
    padding: 14px 16px;
    margin-top: 28px;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }
  .hq-divider { width: 1px; height: 32px; }
  .hq-num { font-size: 1rem; }
  .hq-label { font-size: 0.6rem; letter-spacing: 1px; }
  .hero-features { gap: 8px; }
  .hero-feature { padding: 7px 14px; font-size: 0.78rem; }

  /* Top-bar mobil: ortala, sadece telefon + WhatsApp */
  .top-bar-inner { justify-content: center; gap: 12px; height: 36px; }
  .top-bar-left { display: none; }
  .top-bar-right { gap: 8px; }
  .tb-phone, .tb-wa { padding: 3px 10px; font-size: 0.75rem; }
  .navbar { top: 36px; }

  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--koyu);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .about { padding: 60px 0; }
  .menu-section, .gallery { padding: 60px 0; }
  .contact { padding: 50px 0 40px; }
  .stats-section { padding: 50px 0; }
  .about-features { grid-template-columns: 1fr; gap: 4px; }
  .about-img img { height: 350px; }

  /* Mobil: contact-info içinde boşlukları sıkıştır */
  .contact-info > p { margin-bottom: 20px; }
  .contact-info h2 { margin-bottom: 14px; }
  .section-head { margin-bottom: 36px; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { height: 360px; min-height: 360px; max-height: 360px; }
  /* Mobil: dokunmatik için kart içeriği her zaman görünür */
  .menu-card-content { transform: translateY(0); }
  .menu-card-desc, .menu-card-actions { opacity: 1; transform: none; }
  .menu-card-content::before { transform: scaleX(1); }
  .menu-stats { gap: 14px; padding: 14px 18px; }
  .menu-stats .mc-divider { display: none; }

  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}
