/* ================================================================
   KING POINT — Premium CSS v3.0
   Awwwards-level design: grain texture, custom cursor, editorial
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,400&family=Lato:wght@300;400;700;900&display=swap');

/* Abuget — self-hosted (assets/fonts/Abuget.ttf dosyasını klasöre koyun) */
@font-face {
  font-family: 'Abuget';
  src: url('../fonts/Abuget.ttf') format('truetype'),
       url('../fonts/Abuget.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  /* Palette */
  --orange:      #d4521a;
  --orange-dark: #a83d10;
  --gold:        #c9a76b;
  --gold-lt:     #e8d4a8;
  --dark:        #f0e6d3;
  --dark2:       #d8ccbb;
  --mid:         #7a6d61;
  --gray:        #5a5060;
  --light-gray:  #13101a;
  --border:      rgba(201,167,107,0.14);
  --white:       #09070c;
  --cream:       #f5ede0;
  --cream2:      #ede3d6;
  --border-dk:   rgba(255,255,255,0.07);
  --ink:         #0D0C09;

  /* Typography */
  --font-title:   'Fraunces', serif;     /* Ana başlık fontu — keskin premium serif */
  --font-serif:   'Fraunces', serif;     /* İtalik/hafif varyant — açıklama metinleri */
  --font-display: 'Abuget', cursive;    /* Dekoratif marka — logo, özel vurgular */
  --font-body:    'Lato', sans-serif;   /* Gövde metni — okunabilirlik için sabit */

  /* Arch */
  --arch-w:  clamp(620px, 80vw, 1160px);
  --arch-h:  clamp(310px, 40vw, 580px);

  /* Transitions */
  --trans:      0.45s cubic-bezier(0.16,1,0.3,1);
  --ease:        cubic-bezier(0.16,1,0.3,1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  cursor: none;
}

/* ── GRAIN TEXTURE ─────────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: -150%;
  width: 400%; height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9000;
  animation: grainShift 8s steps(10) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,    0); }
  12%  { transform: translate(-3%, -8%); }
  25%  { transform: translate(6%,  -3%); }
  40%  { transform: translate(-4%, 10%); }
  55%  { transform: translate(8%,   5%); }
  70%  { transform: translate(-6%, -2%); }
  87%  { transform: translate(3%,   8%); }
  100% { transform: translate(0,    0); }
}

/* ── GLOBAL TYPOGRAPHY ─────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 0.5px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0;
}
.title-accent-line {
  width: 48px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

/* ── SCROLL PROGRESS ───────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  z-index: 9999;
  transition: width 0.08s linear;
}

/* ══════════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════════ */
#cursor-inner {
  position: fixed; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s;
  opacity: 0;
}
#cursor-outer {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,167,107,.4);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: all .1s ease-out;
  opacity: 0;
}
body.cursor-ready #cursor-inner,
body.cursor-ready #cursor-outer { opacity: 1; }
body.cursor-hover #cursor-outer { width: 56px; height: 56px; border-color: rgba(201,167,107,.7); }
body.cursor-click #cursor-inner { width: 12px; height: 12px; }
@media(max-width:768px){*{cursor:auto!important}#cursor-outer,#cursor-inner{display:none}}


/* ── NAVBAR / HEADER ──────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; width: 100%; z-index: 100;
  transition: background .5s ease, box-shadow .5s ease, transform .4s ease;
}
#site-header.nav-hidden { transform: translateY(-100%); }
#site-header.scrolled {
  background: rgba(9,7,12,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,167,107,.1);
}
.navbar { padding: 0; background: transparent !important; }
.logo-seal {
  background: var(--gold); color: #09070c;
  width: 124px; min-height: 150px;
  border-radius: 0 0 90px 90px;
  text-align: center; padding: 14px 10px 22px; margin-top: -6px;
  text-decoration: none;
  transition: background var(--trans), transform var(--trans);
  flex-shrink: 0; line-height: 1.1;
}
.logo-seal:hover { background: var(--orange); color: #fff; transform: translateY(4px); }
.logo-top, .logo-bottom { font-family: var(--font-body); font-size: 8px; letter-spacing: 1.5px; opacity: .75; }
.logo-main { font-family: var(--font-display); font-size: 2rem; line-height: .95; margin: 4px 0; letter-spacing: 2px; }
.custom-logo-wrap {
  width: 172px; min-height: 182px; border-radius: 0 0 80px 80px;
  margin-top: -6px; overflow: hidden;
  background: transparent; padding: 8px;
  transition: background var(--trans);
}
.custom-logo-wrap:hover { background: transparent; }
.site-custom-logo { max-width: 148px; max-height: 158px; object-fit: contain; }
.nav-menu-links .nav-link {
  font-family: var(--font-title); font-size: 1rem; letter-spacing: 0.5px; font-weight: 600;
  color: rgba(240,230,211,.7) !important;
  padding: .3rem .1rem; position: relative;
  transition: color var(--trans);
}
.nav-menu-links .nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--trans);
}
.nav-menu-links .nav-link:hover { color: var(--gold) !important; }
.nav-menu-links .nav-link:hover::after { width: 100%; }
.btn-online-order {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(212,82,26,.35), 0 0 0 1px rgba(255,255,255,.1) inset;
  transition: transform var(--trans), box-shadow var(--trans), filter var(--trans);
}
.btn-online-order:hover {
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(212,82,26,.45), 0 0 0 1px rgba(255,255,255,.18) inset;
  filter: brightness(1.05);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,167,107,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  background-color: var(--white);
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 80px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,7,12,.45) 0%,
    rgba(9,7,12,.05) 40%,
    rgba(9,7,12,.75) 100%
  );
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(500px, 70vw, 1000px);
  height: clamp(500px, 70vw, 1000px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.07) 0%, transparent 70%);
  animation: pulseRing 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.8; }
  50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 0.35; }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 170px;
}

/* ── FLOATING INGREDIENTS ──────────────────────────────────── */
.ingredient {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 3;
  will-change: transform;
  filter: saturate(.3) brightness(.5);
}
.ing-olive-tl  { top:12%; left:3%;   width:100px; height:140px; background-image:url('https://purepng.com/public/uploads/large/purepng.com-oliveoliveolcanolivesfruitcanned-olive-170152733973347zto.png'); opacity:0.18; animation: floatA 7s ease-in-out infinite; }
.ing-basil-tr  { top:18%; right:3%;  width:130px; height:140px; background-image:url('https://purepng.com/public/uploads/large/purepng.com-basil-leafsbasil-leafsbasil-leavesherb-17015273167120yoxb.png'); opacity:0.16; animation: floatB 9s ease-in-out infinite; }
.ing-tomato-bl { top:55%; left:1%;   width:110px; height:110px; background-image:url('https://purepng.com/public/uploads/large/purepng.com-tomato-slicevegetables-tomato-slice-tomato-red-sliced-941524673646y7owp.png'); opacity:0.14; animation: floatA 8s ease-in-out infinite 1s; }
.ing-pepper-br { top:50%; right:1%;  width:80px;  height:130px; background-image:url('https://purepng.com/public/uploads/large/purepng.com-basil-leafsbasil-leafsbasil-leavesherb-17015273167120yoxb.png'); opacity:0.14; transform:rotate(40deg); animation: floatB 10s ease-in-out infinite 0.5s; }
.ing-basil-ml  { top:38%; left:8%;   width:70px;  height:90px;  background-image:url('https://purepng.com/public/uploads/large/purepng.com-basil-leafsbasil-leafsbasil-leavesherb-17015273167120yoxb.png'); opacity:0.12; transform:rotate(-20deg); animation: floatA 6s ease-in-out infinite 2s; }
.ing-olive-mr  { top:35%; right:8%;  width:70px;  height:70px;  background-image:url('https://purepng.com/public/uploads/large/purepng.com-oliveoliveolcanolivesfruitcanned-olive-170152733973347zto.png'); opacity:0.12; animation: floatB 7.5s ease-in-out infinite 1.5s; }

@keyframes floatA {
  0%, 100% { transform: translateY(0px)   rotate(0deg);  }
  33%       { transform: translateY(-12px) rotate(4deg);  }
  66%       { transform: translateY(6px)   rotate(-3deg); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0px)  rotate(0deg);  }
  40%       { transform: translateY(10px) rotate(-5deg); }
  70%       { transform: translateY(-8px) rotate(3deg);  }
}

/* ── ARCH ──────────────────────────────────────────────────── */
.arch-wrapper {
  width: var(--arch-w);
  height: calc(var(--arch-h) + 360px);
  position: relative;
  margin-top: 0;
}
.arch-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: var(--arch-w);
  height: var(--arch-h);
  border: 1.5px solid rgba(201,167,107,.32);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
  box-shadow: 0 0 40px rgba(201,167,107,.06), inset 0 0 30px rgba(201,167,107,.04);
  animation: archLineGlow 3s ease-in-out infinite;
}
/* İkinci parlak halka */
.arch-line::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 1px solid rgba(201,167,107,.07);
  border-bottom: none;
}
/* Tepe noktası pulse glow */
.arch-line::after {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  width: 100px; height: 100px;
  margin-left: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,107,.45) 0%, transparent 65%);
  filter: blur(12px);
  animation: archApexPulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes archLineGlow {
  0%, 100% { border-color: rgba(201,167,107,.15); box-shadow: 0 0 40px rgba(201,167,107,.06); }
  50%       { border-color: rgba(201,167,107,.42); box-shadow: 0 0 80px rgba(201,167,107,.15); }
}
@keyframes archApexPulse {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50%       { opacity: .80; transform: scale(1.3); }
}
#archItemsContainer {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: var(--arch-w);
  height: var(--arch-h);
  pointer-events: none;
  z-index: 5;
}
.arch-item {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  padding: 8px 10px;
  border-radius: 12px;
}
.arch-item:hover { transform: translate(-50%, -54%) scale(1.08); filter: brightness(1.08); }
.arch-item:focus-visible {
  outline: 2px solid rgba(201,167,107,.75);
  outline-offset: 3px;
}
.arch-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
  position: relative;
}
.arch-dot {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: rgba(240,230,211,.45);
  box-shadow: 0 0 0 3px rgba(9,7,12,.9), 0 0 0 5px rgba(201,167,107,.2), 0 0 12px rgba(201,167,107,.1);
  transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.arch-dot::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,107,.18) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.arch-item.active .arch-dot::before,
.arch-item:hover  .arch-dot::before { opacity: 1; }
.arch-dot::after {
  content: '';
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s, transform 0.4s;
}
.arch-item.active .arch-dot::after {
  opacity: 0.7;
  transform: scale(1);
  animation: ripplePulse 1.8s ease-in-out infinite;
}
@keyframes ripplePulse {
  0%, 100% { transform: scale(1);   opacity: 0.70; }
  50%       { transform: scale(1.8); opacity: 0.10; }
}
.arch-pointer-line {
  width: 1.5px;
  height: 22px;
  background: rgba(201,167,107,.25);
  transition: background 0.35s, height 0.35s;
}
.arch-label {
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: rgba(240,230,211,.88);
  white-space: nowrap;
  transition: color 0.35s, font-size 0.35s, letter-spacing 0.35s, text-shadow 0.35s, background .35s, border-color .35s;
  text-shadow: 0 1px 10px rgba(0,0,0,.65);
  min-height: 2rem;
  pointer-events: none;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,167,107,.18);
  background: rgba(8,6,12,.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.arch-item.active .arch-dot,
.arch-item:hover  .arch-dot {
  background: var(--gold);
  transform: scale(1.9);
  box-shadow: 0 0 0 3px rgba(244,239,230,0.95), 0 0 20px rgba(201,167,107,.6), 0 0 40px rgba(201,167,107,.25);
}
.arch-item.active .arch-pointer-line { background: linear-gradient(to bottom, var(--gold), rgba(201,167,107,.2)); height: 30px; }
.arch-item.active .arch-label {
  color: #fff3dd;
  font-size: 1rem;
  letter-spacing: 0.9px;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(201,167,107,.45), 0 1px 8px rgba(0,0,0,.7);
  background: linear-gradient(90deg, rgba(212,82,26,.68), rgba(201,167,107,.62));
  border-color: rgba(255,255,255,.35);
}
.arch-item:hover  .arch-label { color: #fff6e8; text-shadow: 0 1px 10px rgba(0,0,0,.7); }

/* ── PIZZA MERKEZ ──────────────────────────────────────────── */
.pizza-center-wrap {
  position: absolute;
  top: calc(var(--arch-h) - clamp(220px, 30vw, 380px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.pizza-cat-label {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  letter-spacing: 3px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  text-shadow: 0 2px 20px rgba(201,167,107,.45);
  min-height: 2rem;
  pointer-events: none;
  background: rgba(8,6,12,.38);
  border: 1px solid rgba(201,167,107,.24);
  border-radius: 999px;
  padding: 8px 16px;
}
.pizza-cat-label.visible { opacity: 1; transform: translateY(0); }
.pizza-cat-label { display: none !important; }
.pizza-img-container {
  position: relative;
  display: inline-block;
  background: transparent;
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.pizza-img-container.fading { opacity: 0; transform: scale(0.97); }
.pizza-main-img {
  width: clamp(360px, 54vw, 780px);
  height: clamp(360px, 54vw, 780px);
  object-fit: contain;
  border-radius: 0;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.5)) drop-shadow(0 0 40px rgba(201,167,107,.08));
  background: transparent;
  animation: pizzaFloat 6s ease-in-out infinite;
  transition: filter 0.4s;
}
.pizza-main-img:hover {
  filter: drop-shadow(0 40px 90px rgba(0,0,0,.6)) drop-shadow(0 0 60px rgba(201,167,107,.18));
}
@keyframes pizzaFloat {
  0%, 100% { transform: translateY(0px)   rotate(0deg);    }
  35%       { transform: translateY(-14px) rotate(0.8deg);  }
  70%       { transform: translateY(6px)   rotate(-0.5deg); }
}

/* ── ÜRÜNLER ──────────────────────────────────────────────── */
.product-card {
  background: #181520;
  border: 1px solid rgba(201,167,107,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,.6);
  border-color: rgba(201,167,107,.3);
}
.product-card-img-wrap { position: relative; overflow: hidden; }
.product-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
  filter: saturate(.8) brightness(.85);
}
.product-card:hover .product-card-img { transform: scale(1.08); filter: saturate(1) brightness(1); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 9px; letter-spacing: 1px; padding: 3px 9px; border-radius: 20px; font-weight: 700; }
.product-badge.spicy { background: rgba(212,82,26,.9); color: #fff; }
.product-badge.veg   { background: rgba(46,125,50,.9);  color: #fff; }
.product-card-body { padding: 20px 18px 24px; text-align: center; background: #181520; }
.product-name { font-family: var(--font-title); font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 6px; color: var(--dark); }
.product-price { color: var(--gold); font-size: .88rem; font-weight: 700; margin-bottom: 16px; }
.btn-product-order {
  background: transparent; color: var(--gold); border: 1px solid rgba(201,167,107,.3);
  font-family: var(--font-title); font-size: .9rem; letter-spacing: 1.5px; padding: 9px 26px;
  transition: background .35s, color .35s, border-color .35s, transform .35s;
}
.btn-product-order:hover { background: var(--gold); color: #09070c; border-color: var(--gold); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════
   ŞUBELER
══════════════════════════════════════════════════════════ */
.locations-section {
  padding: 100px 0 120px;
  background: #100d16;
  position: relative;
}
.locations-section::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}
.location-timeline { max-width: 700px; }
.timeline-track {
  position: absolute;
  top: 5px; left: 0;
  width: 100%; height: 1px;
  background: rgba(201,167,107,.12);
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.tl-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(240,230,211,.15);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 2;
}
.tl-label {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: rgba(240,230,211,.35);
  margin-top: 8px;
  white-space: nowrap;
  transition: color .3s;
}
.tl-item.active .tl-dot  { background: var(--gold); transform: scale(1.5); box-shadow: 0 0 14px rgba(201,167,107,.4); }
.tl-item.active .tl-label { color: var(--gold); }
.tl-more { position: absolute; right: -30px; top: -2px; color: var(--dark); font-size: 0.85rem; }
.location-name {
  font-family: var(--font-title);
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.location-address {
  font-size: 0.88rem;
  color: rgba(240,230,211,.5);
  line-height: 1.8;
  font-weight: 400;
}
.location-hours-title {
  font-family: var(--font-title);
  letter-spacing: 2px;
  font-size: .95rem;
  margin-top: 22px;
  margin-bottom: 6px;
  color: var(--gold);
}
.location-hours {
  font-size: 0.85rem;
  color: rgba(240,230,211,.45);
  line-height: 1.9;
}
.location-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   MENÜ
══════════════════════════════════════════════════════════ */
.menu-section {
  padding: 110px 0 130px;
  background:
    radial-gradient(circle at 15% 10%, rgba(201,167,107,.12), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(212,82,26,.10), transparent 45%),
    #09070c;
  border-top: 1px solid rgba(201,167,107,.12);
  border-bottom: 1px solid rgba(201,167,107,.10);
}
.menu-tabs {
  border-bottom: 1px solid rgba(201,167,107,.12);
  padding-bottom: 20px;
}
.menu-tab {
  background: none;
  border: none;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(240,230,211,.35);
  cursor: none;
  padding: 6px 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  position: relative;
  transition: color 0.35s;
}
.menu-tab::after {
  content: '';
  position: absolute;
  bottom: -22px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s;
}
.menu-tab.active, .menu-tab:hover { color: var(--gold); }
.menu-tab.active::after { width: 100%; }

/* ── QR Menü Kategori Kartları ──────────────────────────── */
.qr-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 56px auto 0;
}
.qr-cat-card {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(201,167,107,.24);
  background: rgba(255,255,255,.02);
  box-shadow: 0 20px 45px rgba(0,0,0,.28);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}
.qr-cat-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 30px 56px rgba(0,0,0,.48);
  border-color: rgba(201,167,107,.46);
}
.qr-cat-card-img {
  width: 100%;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: #14111a;
  position: relative;
}
.qr-cat-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,7,12,.64), transparent 55%);
  pointer-events: none;
}
.qr-cat-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(.86) contrast(1.05);
}
.qr-cat-card:hover .qr-cat-card-img img { transform: scale(1.08); filter: saturate(1.05) contrast(1.1); }
.qr-cat-card-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(201,167,107,.3);
  font-size: 2rem;
}
.qr-cat-card-label {
  background: linear-gradient(90deg, rgba(201,167,107,.22), rgba(201,167,107,.12));
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid rgba(201,167,107,.18);
}
.qr-cat-card-name {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
}
.qr-cat-card-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(212,82,26,.92);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .qr-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }
}
@media (max-width: 576px) {
  .qr-cat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  .qr-cat-card-name { font-size: 0.92rem; }
}

/* ══════════════════════════════════════════════════════════
   KARANLIK STORY BÖLÜMÜ
══════════════════════════════════════════════════════════ */
.dark-story-section {
  background-color: #09070c;
  padding: 120px 0;
  position: relative;
  border-top: 1px solid rgba(201,167,107,.08);
  border-bottom: 1px solid rgba(201,167,107,.08);
  overflow: hidden;
}
.dark-story-chef-img {
  position: absolute;
  bottom: 0; right: -20px;
  height: 95%;
  max-width: none;
  width: auto;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(-15px 0 40px rgba(0,0,0,.85));
}
.polaroid-stage { position: relative; height: 520px; }
.polaroid {
  position: absolute;
  background: #1a1720;
  padding: 10px 10px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.04);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.polaroid:hover { box-shadow: 0 30px 80px rgba(0,0,0,.75); }
.polaroid img, .polaroid img {
  width: 280px;
  height: 230px;
  object-fit: cover;
  display: block;
  filter: saturate(.6) brightness(.75);
}
.polaroid-back  { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
.polaroid-front { top: 60px; left: 160px; transform: rotate(5deg); z-index: 2; }
.polaroid-back:hover  { transform: rotate(-4deg) scale(1.02); z-index: 3; }
.polaroid-front:hover { transform: rotate(3deg) scale(1.02); z-index: 3; }
.dark-logo-badge {
  position: absolute;
  bottom: 10px; left: -10px;
  background: var(--gold);
  color: #09070c;
  font-family: var(--font-title);
  letter-spacing: 2px;
  padding: 14px 20px;
  transform: rotate(-8deg);
  z-index: 10;
  line-height: 1.1;
  box-shadow: 0 8px 30px rgba(0,0,0,.5);
  border-left: 3px solid var(--gold);
}
.dark-story-content-box {
  background: rgba(10, 10, 10, 0.60);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 0;
  padding: 40px 44px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  margin-left: -60px;
  max-width: 92%;
}
.chef-logo-badge {
  position: absolute;
  top: -35px; left: -35px;
  width: 75px; height: 75px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
  z-index: 5;
  border: 3px solid var(--gold);
  overflow: hidden;
}
.chef-logo-badge span {
  color: var(--orange);
  font-family: var(--font-title);
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.dark-story-title {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.04;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.dark-story-title span { color: var(--gold); }
.dark-story-text {
  color: rgba(240,230,211,.5);
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 36px;
}
.title-accent-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(184,150,90,.5);
}

/* ══════════════════════════════════════════════════════════
   GALERİ
══════════════════════════════════════════════════════════ */
#galeri {
  background: var(--cream);
  padding: 100px 0 120px;
}
#galeri h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: 3px;
  color: var(--dark);
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,12,9,0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   BLOG (yeni yapı: .blog-section — eski #blog stilleri kaldırıldı)
══════════════════════════════════════════════════════════ */
.orange-link { color: var(--gold); text-decoration: none; font-weight: 700; }
.orange-link:hover { color: var(--dark); }

/* ══════════════════════════════════════════════════════════
   ALT BİLGİ KUTULARI
══════════════════════════════════════════════════════════ */
.info-boxes-section {
  padding: 90px 0 100px;
  background: #100d16;
  border-top: 1px solid rgba(201,167,107,.08);
}
.info-box-img {
  width: 84px; height: 84px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  border: 2px solid rgba(201,167,107,.3);
  border-radius: 50%;
}
.info-box-title {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--dark);
}
.info-box-text { font-size: 0.88rem; color: var(--mid); line-height: 1.8; }
.info-box {
  padding: 30px;
  border: 1px solid rgba(201,167,107,.14);
  background: rgba(255,255,255,.02);
  transition: border-color 0.4s ease, background 0.4s ease;
  border-radius: 10px;
}
.info-box:hover {
  border-color: rgba(201,167,107,.35);
  background: rgba(201,167,107,.06);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: #09070c;
  border-top: 1px solid rgba(201,167,107,.1);
  padding: 70px 0 44px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ing-foot-l {
  bottom: 0; left: -20px;
  width: 160px; height: 160px;
  background-image: url('https://purepng.com/public/uploads/large/purepng.com-basil-leafsbasil-leafsbasil-leavesherb-17015273167120yoxb.png');
  opacity: 0.12;
  transform: rotate(-30deg);
}
.ing-foot-r {
  bottom: 0; right: -10px;
  width: 120px; height: 160px;
  background-image: url('https://purepng.com/public/uploads/large/purepng.com-tomato-slicevegetables-tomato-slice-tomato-red-sliced-941524673646y7owp.png');
  opacity: 0.12;
  transform: rotate(20deg);
}
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; }
.footer-links a {
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(240,230,211,.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { font-size: 0.88rem; color: rgba(240,230,211,.35); }
.footer-contact .orange-link { color: var(--gold); }
.footer-social { display: flex; justify-content: flex-start; gap: 14px; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,167,107,.2);
  color: rgba(240,230,211,.35);
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: #09070c;
  background: var(--gold);
}
.footer-desc {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: rgba(240,230,211,.25);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}
.footer-copy {
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: rgba(240,230,211,.18);
  margin-top: 22px;
}
.footer-copy a {
  color: rgba(240,230,211,.4);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-copy a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════
   MODAL & FORMS
══════════════════════════════════════════════════════════ */
.select-budget { appearance: none; background-image: none; }

/* ══════════════════════════════════════════════════════════
   RESPONSİVE
══════════════════════════════════════════════════════════ */
/* ── 992px ─────────────────────────────────────────────── */
@media (max-width: 992px) {
  :root { --arch-w: 90vw; --arch-h: 45vw; }
  .pizza-main-img { width: 72vw; height: 72vw; }

  /* Navbar collapse panel */
  .navbar-collapse {
    background: rgba(9,7,12,.96);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.45), 0 0 0 1px rgba(201,167,107,.1);
  }
  .nav-menu-links { gap: 1rem !important; text-align: center; }
  .nav-menu-links .nav-link { font-size: 1.1rem; border-bottom: 1px solid rgba(201,167,107,.08); padding-bottom: 8px; }
  .navbar-toggler {
    border: none;
    background: rgba(9,7,12,.7);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0,0,0,.3), 0 0 0 1px rgba(201,167,107,.15);
    padding: 8px 12px;
    border-radius: 6px;
  }
  body { cursor: auto; }
  #cursor-outer, #cursor-inner { display: none !important; }

  /* Stats — 2-col */
  .stats-grid { gap: 0; flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .stat-item.stat-divider { display: none; }

  /* About */
  .about-badge { right: 10px; }
  .about-img-col { min-height: 400px; }

  /* Dark story */
  .dark-story-content-box { margin-left: 0 !important; max-width: 100% !important; }

  /* Marquee */
  .marquee-track { animation-duration: 18s; }
}

/* ── 768px ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --arch-w: 74vw !important;
    --arch-h: 36vw !important;
  }
  :root {
    --arch-w: 78vw !important;
    --arch-h: 39vw !important;
  }
  :root { --arch-w: 95vw; --arch-h: 47.5vw; }

  /* Typography */
  .section-label { font-size: 0.65rem; letter-spacing: 3px; }
  .section-title  { font-size: clamp(2rem, 8vw, 2.8rem); }
  .logo-main { font-size: 1.4rem; }

  /* Navbar */
  .navbar .logo-seal { width: 96px; min-height: 114px; padding: 10px; }
  .navbar .custom-logo-wrap { width: 154px; min-height: 182px; margin-top: -6px; }
  .navbar .site-custom-logo { max-width: 130px; }

  /* Hero */
  .hero-scroll-hint { display: none; }

  /* Arch pizza */
  .arch-label { font-size: 0.7rem; }
  .arch-item.active .arch-label { font-size: 0.82rem; }
  .pizza-main-img { width: 82vw; height: 82vw; }

  /* Stats */
  .stats-grid { flex-wrap: wrap; justify-content: center; gap: 0; }
  .stat-item { min-width: 50%; padding: 30px 20px; }
  .stat-item.stat-divider { display: none; }
  .stat-number { font-size: clamp(2.5rem, 10vw, 4rem); }

  /* About editorial stacked */
  .about-section .row { flex-direction: column; }
  .about-img-col { min-height: 320px; }
  .about-badge { right: 10px; bottom: 20px; }
  .about-feature-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Dark story */
  .dark-story-section .row { flex-direction: column; text-align: center; }
  .dark-story-content-box { padding: 30px 20px; margin-top: 50px; margin-left: 0 !important; max-width: 100% !important; }
  .chef-logo-badge { left: 50%; transform: translateX(-50%); top: -32px; }
  .title-accent-line { margin: 0 auto 20px; }
  .dark-story-chef-img { width: 78vw; height: 78vw; max-width: 360px; max-height: 360px; top: 0; bottom: auto; right: -50px; opacity: 0.9; z-index: 0; }

  /* Polaroids */
  .polaroid-stage { height: 380px; display: flex; justify-content: center; margin-bottom: 30px; }
  .polaroid img, .polaroid video { width: 140px; height: 210px; }
  .polaroid-front { position: relative; top: 10px; left: -15px; z-index: 2; }
  .polaroid-back  { position: relative; top: -20px; right: -15px; }

  /* Gallery */
  .gallery-editorial-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-cell:nth-child(1) { grid-column: span 6; grid-row: span 2; }
  .gallery-cell:nth-child(2) { grid-column: span 3; grid-row: span 1; }
  .gallery-cell:nth-child(3) { grid-column: span 3; grid-row: span 1; }
  .gallery-cell:nth-child(4) { grid-column: span 2; grid-row: span 1; }
  .gallery-cell:nth-child(5) { grid-column: span 4; grid-row: span 1; }
  .gallery-cell:nth-child(6) { grid-column: span 6; grid-row: span 1; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Rezervasyon */
  .rezervasyon-section .row { flex-direction: column; }
  .rezervasyon-info, .rezervasyon-form-col { padding: 50px 30px; }

  /* Footer */
  .footer-bottom-row { flex-direction: column; text-align: center; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── 576px ─────────────────────────────────────────────── */
@media (max-width: 576px) {
  :root { --arch-w: 84vw; --arch-h: 42vw; }

  /* Hero */
  .hero-section { min-height: auto; padding-bottom: 20px; }
  .hero-content { padding-top: 90px; }
  .hero-deco-line { display: none; }
  .hero-eyebrow-text { font-size: 0.88rem; letter-spacing: 3px; }

  /* Arch */
  .arch-wrapper { height: calc(var(--arch-h) + 52vw) !important; margin-top: 20px; }
  .pizza-center-wrap { top: calc(var(--arch-h) - 24vw); }
  .pizza-main-img { width: 72vw; height: 72vw; }
  .pizza-cat-label { font-size: 1.1rem; }
  .arch-label { font-size: 0.6rem; }
  .arch-item.active .arch-label { font-size: 0.7rem; }

  /* Navbar */
  .navbar-toggler { display: none !important; }

  /* Stats — full width items 2×2 */
  .stats-grid { flex-wrap: wrap; }
  .stat-item { min-width: 50%; padding: 24px 16px; }
  .stat-number { font-size: clamp(2.2rem, 9vw, 3rem); }

  /* About */
  .about-img-col { min-height: 260px; }
  .about-feature-grid { grid-template-columns: 1fr; }

  /* Dark story / polaroids */
  .polaroid-stage { height: 300px; }
  .polaroid img, .polaroid video { width: 110px; height: 170px; }

  /* Gallery — simple 2 col */
  .gallery-editorial-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-cell:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-cell:nth-child(1), .gallery-cell:nth-child(5) { grid-column: span 2; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-img { height: 180px; }

  /* Rezervasyon */
  .rezervasyon-info { padding: 40px 20px; }
  .rezervasyon-form-col { padding: 40px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-direction: column; gap: 10px; align-items: center; }

  /* General spacing */
  .info-box { flex-direction: column; align-items: center !important; text-align: center; padding: 20px; }
  .info-box-img { margin-bottom: 15px; }
  .btn-online-order { font-size: 0.9rem; padding: 8px 16px; }
  section { padding-top: 60px !important; padding-bottom: 60px !important; }
}

/* ══════════════════════════════════════════════════════════
   HERO — EK ELEMENTLER
══════════════════════════════════════════════════════════ */
.hero-deco-line {
  position: absolute;
  top: 0; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(184,150,90,0.14) 30%, rgba(184,150,90,0.14) 70%, transparent);
  pointer-events: none;
  z-index: 1;
}
.hero-eyebrow {
  margin-bottom: 16px;
  overflow: hidden;
}
.hero-eyebrow-text {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  letter-spacing: 5px;
  color: rgba(201,167,107,0.92);
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(14px);
  animation: heroEyebrowIn 0.7s var(--ease-out) 0.6s both;
}
@keyframes heroEyebrowIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroEyebrowIn 0.6s var(--ease-out) 0.8s both;
}
.hero-scroll-text {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 3.5s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--ink);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,90,0.12);
  border-bottom: 1px solid rgba(184,150,90,0.12);
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  padding: 0 24px;
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--gold); }
.marquee-sep {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 80px 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(184,150,90,0.12);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 10px;
}
.stat-item.stat-divider {
  flex: 0 0 1px;
  min-width: 1px;
  max-width: 1px;
  height: 60px;
  background: rgba(184,150,90,0.2);
  padding: 0;
}
.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 5vw, 4.5rem);
  letter-spacing: 0px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
}
.stat-sup {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 6px;
  margin-left: 4px;
  font-weight: 600;
}
.stat-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  font-style: italic;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ABOUT — EDITORIAL
══════════════════════════════════════════════════════════ */
.about-section { overflow: hidden; background: var(--cream); }
.about-img-col { position: relative; min-height: 600px; }
.about-img-wrap { position: relative; height: 100%; overflow: hidden; }
.about-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-img-col:hover .about-main-img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: 40px; right: -20px;
  background: var(--ink);
  color: var(--dark);
  padding: 20px 28px;
  border-left: 3px solid var(--gold);
  z-index: 5;
}
.about-badge-pct {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.about-badge-txt {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-top: 4px;
}
.about-content-col {
  background: var(--cream);
  display: flex;
  align-items: flex-start;
}
.about-inner {
  padding: clamp(40px, 6vw, 90px) clamp(30px, 5vw, 80px);
}
.about-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  letter-spacing: 2px;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 24px;
}
.about-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.75em;
  color: var(--gold);
  display: block;
}
.about-text {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--mid);
  font-style: italic;
  margin-bottom: 36px;
}
.about-features { margin-bottom: 40px; display: flex; flex-direction: column; gap: 24px; }
.about-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(184,150,90,0.15);
}
.about-feature:last-child { border-bottom: none; padding-bottom: 0; }
.feature-num {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}
.feature-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-desc { font-size: 0.88rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════════
   BUTTONS — PREMIUM
══════════════════════════════════════════════════════════ */
.btn-kp-primary {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-kp-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--orange-dark);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-kp-primary:hover::before { transform: translateX(0); }
.btn-kp-primary:hover { color: #fff; transform: translateY(-2px); }
.btn-kp-primary > * { position: relative; z-index: 1; }
.btn-kp-primary i   { position: relative; z-index: 1; }

.btn-kp-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 12px 28px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.btn-kp-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,150,90,0.12);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}
.btn-kp-outline:hover::before { transform: translateX(0); }
.btn-kp-outline:hover { color: var(--gold); border-color: var(--gold); }
.btn-kp-outline > * { position: relative; z-index: 1; }

.btn-kp-sm {
  display: inline-block;
  border: 1px solid rgba(184,150,90,0.4);
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}
.btn-kp-sm:hover { background: var(--gold); color: var(--ink); }

/* ══════════════════════════════════════════════════════════
   GALLERY — EDITORIAL GRID
══════════════════════════════════════════════════════════ */
.gallery-section {
  padding: 100px 0 0;
  background: var(--cream);
}
.gallery-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
}
.gallery-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
  margin-top: 40px;
}
.gallery-cell { position: relative; overflow: hidden; }
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,12,9,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  color: #fff;
  font-size: 1.5rem;
}
/* Gallery section üst başlıklar — cream bg'de okunabilir koyu metin */
.gallery-section .section-title { color: var(--ink); }
.gallery-section .section-label { color: var(--gold); opacity: 0.9; }
.gallery-section .section-title {
  color: #1a120c !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}
.gallery-section .section-label {
  color: #9a6a2a !important;
  opacity: 1 !important;
  font-weight: 800;
  letter-spacing: 4px;
}
.gallery-subtitle {
  color: #4b3424 !important;
  font-weight: 600;
}
.gallery-cell:hover .gallery-cell-overlay { opacity: 1; }
/* Editorial spans */
.gallery-cell:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-cell:nth-child(2) { grid-column: span 4; grid-row: span 1; }
.gallery-cell:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery-cell:nth-child(4) { grid-column: span 4; grid-row: span 1; }
.gallery-cell:nth-child(5) { grid-column: span 6; grid-row: span 1; }
.gallery-cell:nth-child(6) { grid-column: span 6; grid-row: span 1; }

/* ══════════════════════════════════════════════════════════
   BLOG — PREMIUM CARDS
══════════════════════════════════════════════════════════ */
.blog-section {
  padding: 100px 0 120px;
  background: var(--ink);
}
.blog-section .section-label { color: var(--gold); }
.blog-section .section-title { color: var(--dark); }
.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); border-color: rgba(184,150,90,0.3); }
.blog-card-img-wrap { position: relative; overflow: hidden; }
.blog-card-img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
}
.blog-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}
.blog-card-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  flex: 1;
  font-style: italic;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 18px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.blog-card-link:hover { color: var(--gold-lt); gap: 10px; }

/* ══════════════════════════════════════════════════════════
   REZERVASYON
══════════════════════════════════════════════════════════ */
.rezervasyon-section {
  padding: 30px 0 120px;
  background:
    radial-gradient(circle at 20% 10%, rgba(201,167,107,.10), transparent 38%),
    radial-gradient(circle at 80% 90%, rgba(212,82,26,.08), transparent 40%),
    var(--cream2);
}
.rezervasyon-info {
  background: linear-gradient(155deg, #0f0c14, #181320 60%, #120f19);
  padding: clamp(50px, 7vw, 100px) clamp(30px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  border: 1px solid rgba(201,167,107,.16);
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}
.rezervasyon-info .section-label { color: var(--gold); }
.rezervasyon-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  color: var(--dark);
  line-height: 1.0;
  margin-bottom: 20px;
}
.rezervasyon-title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.85em;
  display: block;
}
.rezervasyon-desc {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 36px;
}
.rezervasyon-contact { display: flex; flex-direction: column; gap: 14px; }
.rez-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.84);
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
}
.rez-contact-item i { color: var(--gold); width: 16px; }
.rezervasyon-form-col {
  background: linear-gradient(180deg, #fff9ee, #f5e8d7);
  padding: clamp(50px, 7vw, 100px) clamp(30px, 5vw, 70px);
  border-radius: 0 22px 22px 0;
  border: 1px solid rgba(201,167,107,.2);
  border-left: none;
  box-shadow: 0 26px 60px rgba(0,0,0,.15);
}
.rezervasyon-form { max-width: 600px; }
.rez-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 6px;
}
/* Rezervasyon formu açık renkli (krem) zemin üzerinde — etiket rengi buna göre koyu olmalı.
   Bu düzeltme daha önce sadece 1024px+ genişlikte yapılıyordu, mobilde etiketler görünmüyordu. */
.rezervasyon-form-col .rez-label { color: #4f3d2c; }
.rez-input {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(184,150,90,0.36);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #2b2520;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform .2s ease;
  appearance: none;
}
.rez-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,150,90,0.16);
  transform: translateY(-1px);
}
.rez-input::placeholder { color: var(--gray); }
textarea.rez-input { resize: vertical; min-height: 90px; }
select.rez-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='none' stroke='%235a5060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 13px;
  padding-right: 42px;
  cursor: pointer;
}

/* ── FRANCHISE MODAL ─────────────────────────────────────────── */
.franchise-modal-dialog { max-width: 560px; margin: 1.75rem auto; }
.franchise-modal-content {
  border-radius: 24px;
  background: var(--white);
  overflow-y: auto;
  max-height: 85vh;
  position: relative;
}
.franchise-modal-header { padding: 32px 32px 6px; border: none; }
.franchise-modal-body { padding: 6px 32px 32px; }
.franchise-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(240,230,211,.2);
  background: transparent;
  color: var(--dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 5;
}
.franchise-modal-close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #09070c;
  transform: rotate(90deg);
}
.franchise-modal-title {
  font-family: var(--font-title);
  font-size: 1.9rem;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 8px;
}
.franchise-modal-sub {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-style: italic;
}

@media (max-width: 576px) {
  .franchise-modal-dialog { margin: 10px auto; max-width: calc(100% - 20px); }
  .franchise-modal-content { max-height: 80vh; border-radius: 18px; }
  .franchise-modal-header { padding: 22px 20px 4px; }
  .franchise-modal-body { padding: 4px 20px 20px; }
  .franchise-modal-close { top: 14px; right: 14px; width: 32px; height: 32px; font-size: 0.85rem; }
  .franchise-modal-title { font-size: 1.4rem; margin-bottom: 5px; }
  .franchise-modal-sub { font-size: 0.78rem; }
  #franchiseForm.row { --bs-gutter-y: 0.65rem; --bs-gutter-x: 0.65rem; }
}

.rezervasyon-form .btn-kp-primary {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(212,82,26,.30);
  padding: 14px 22px;
}
.rezervasyon-form .btn-kp-primary:hover {
  box-shadow: 0 18px 34px rgba(212,82,26,.42);
}

@media (max-width: 992px) {
  .rezervasyon-info,
  .rezervasyon-form-col {
    border-radius: 18px;
    border-left: 1px solid rgba(201,167,107,.2);
  }
  .rezervasyon-form-col { margin-top: 12px; }
}

/* ══════════════════════════════════════════════════════════
   FOOTER — PREMIUM LAYOUT
══════════════════════════════════════════════════════════ */
.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-style: italic;
}
.footer-col-title {
  font-family: var(--font-title);
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer-accordion-toggle {
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 0;
  font: inherit;
}
.footer-accordion-toggle::after {
  content: '+';
  font-size: 1.1rem;
  margin-left: 10px;
}
.footer-accordion.open .footer-accordion-toggle::after { content: '\2212'; }
.footer-accordion .footer-col-links,
.footer-accordion .footer-contact-list {
  display: none;
  margin-top: 16px;
}
.footer-accordion.open .footer-col-links { display: flex; }
.footer-accordion.open .footer-contact-list { display: flex; }

@media (min-width: 992px) {
  .footer-accordion-toggle {
    cursor: default;
    pointer-events: none;
    margin-bottom: 20px;
  }
  .footer-accordion-toggle::after { display: none; }
  .footer-accordion .footer-col-links,
  .footer-accordion .footer-contact-list {
    display: flex !important;
    margin-top: 0;
  }
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col-links li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
}
.footer-contact-item a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
.footer-credit {
  font-family: var(--font-title);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: rgba(240,230,211,.3);
  text-align: center;
}
.footer-credit a {
  color: rgba(240,230,211,.5);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-credit a:hover { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-links a {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* Responsive rules consolidated above in the main responsive block */

/* ══════════════════════════════════════════════════════════
   MOBİL — Kapsamlı Düzeltmeler
══════════════════════════════════════════════════════════ */

/* Yatay taşmayı önle */
.hero-section,
.dark-story-section,
.locations-section,
.menu-section,
.stats-section { overflow-x: hidden; }
/* arch-wrapper overflow-x: visible — edge item'lar hero'nun overflow:hidden sınırı içinde kalır */
.arch-wrapper { overflow: visible; }

/* ── 992px ek kurallar ──────────────────────────────────── */
@media (max-width: 992px) {
  .btn-online-order {
    font-size: 0.82rem;
    padding: 7px 14px;
    letter-spacing: 1px;
    white-space: nowrap;
  }
  /* Navbar sarmalamayı engelle */
  #site-header .container-fluid { flex-wrap: nowrap; gap: 6px; }
  /* About badge overflow düzeltme */
  .about-badge { right: 10px !important; }
}

/* ── 768px ek kurallar ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Ingredient floatlar gizle — mobilde gereksiz bant genişliği ve görsel kirlilik */
  .ingredient { display: none !important; }

  /* Location timeline yatay kaydırma */
  .location-timeline {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
  }
  .location-timeline::-webkit-scrollbar { display: none; }
  .location-timeline .d-flex.justify-content-between {
    min-width: max-content;
    gap: 28px;
  }
  .tl-more { display: none; }

  .location-name { font-size: 1.5rem; }

  /* Polaroid sahne yeniden konumlandır — absolute layout */
  .polaroid-stage {
    height: 320px;
    display: block;
    overflow: visible;
    position: relative;
    max-width: 340px;
    margin: 0 auto 24px;
  }
  .polaroid-back  { position: absolute; top: 0;    left: 0;    right: auto; transform: rotate(-5deg); z-index: 1; }
  .polaroid-front { position: absolute; top: 40px; left: 100px; transform: rotate(4deg); z-index: 2; }
  .polaroid img, .polaroid video { width: 150px !important; height: 200px !important; }
  .dark-logo-badge { left: -5px; font-size: 0.62rem; padding: 10px 14px; }
}

/* ── 576px ek kurallar ──────────────────────────────────── */
@media (max-width: 576px) {
  /* Navbar logosu küçült */
  .navbar .logo-seal {
    width: 90px;
    min-height: 110px;
    border-radius: 0 0 62px 62px;
    padding: 8px 6px 16px;
  }
  .navbar .logo-seal .logo-main  { font-size: 1.2rem; }
  .navbar .logo-seal .logo-top,
  .navbar .logo-seal .logo-bottom { font-size: 7px; letter-spacing: 0.9px; }
  .navbar .custom-logo-wrap { width: 139px; min-height: 154px; }
  .navbar .site-custom-logo { max-width: 115px; max-height: 130px; }

  /* QR butonu — kompakt */
  .btn-online-order {
    font-size: 0.72rem;
    padding: 7px 10px;
    letter-spacing: 0.5px;
    gap: 4px !important;
  }

  /* Hero dekoratif çizgiler — performans */
  .hero-deco-line { display: none !important; }

  /* Hero pulse ring overflow engelle */
  .hero-overlay::after { width: min(70vw, 400px); height: min(70vw, 400px); }

  /* Hero eyebrow text küçük ekranda */
  .hero-eyebrow-text { letter-spacing: 2px; }

  /* Polaroid sahne küçük ekran */
  .polaroid-stage { height: 260px; max-width: 280px; }
  .polaroid-back  { position: absolute; top: 0;    left: 0;    transform: rotate(-5deg); }
  .polaroid-front { position: absolute; top: 30px; left: 80px; transform: rotate(4deg); }
  .polaroid img, .polaroid video { width: 120px !important; height: 160px !important; }
  .dark-logo-badge { left: -3px; padding: 8px 10px; font-size: 0.58rem; }

  /* Dark story section metin */
  .dark-story-section { padding: 70px 0; }
  .dark-story-content-box { padding: 28px 20px; }
  .dark-story-title { font-size: clamp(1.8rem, 8vw, 2.8rem); }

  /* Menü bölümü */
  .menu-section { padding: 60px 0 80px; }
  .section-title { letter-spacing: 1px; }

  /* Blog kartları */
  .blog-card-img { height: 170px; }

  /* Rezervasyon */
  .rezervasyon-info    { padding: 50px 20px; }
  .rezervasyon-form-col { padding: 40px 20px; }

  /* Footer */
  .site-footer { padding: 50px 0 30px; }
}

/* ── 480px ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Logo daha da küçük */
  .navbar .logo-seal {
    width: 84px;
    min-height: 100px;
    border-radius: 0 0 50px 50px;
    padding: 6px 4px 12px;
  }
  .navbar .logo-seal .logo-main { font-size: 1.1rem; }
  .navbar .custom-logo-wrap { width: 122px; min-height: 132px; }
  .navbar .site-custom-logo { max-width: 98px; max-height: 108px; }

  /* QR butonu — sadece ikon */
  .btn-online-order .qr-btn-label { display: none; }
  .btn-online-order { padding: 8px 12px; gap: 0 !important; }

  /* İstatistik */
  .stats-section  { padding: 48px 0; }
  .stat-item      { min-width: 50%; padding: 18px 8px; }
  .stat-number    { font-size: clamp(2rem, 8vw, 2.8rem); }

  /* Galeri 2 sütun düz */
  .gallery-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
  .gallery-cell:nth-child(n)  { grid-column: span 1; grid-row: span 1; }
  .gallery-cell:nth-child(1)  { grid-column: span 2; grid-row: span 2; }

  .locations-section { padding: 60px 0 70px; }

  /* Dark story küçük ekran */
  .polaroid-stage  { height: 230px; max-width: 240px; }
  .polaroid-back   { position: absolute; top: 0;    left: 0;    transform: rotate(-5deg); }
  .polaroid-front  { position: absolute; top: 28px; left: 65px; transform: rotate(4deg); }
  .polaroid img, .polaroid video { width: 100px !important; height: 140px !important; }

  /* Rezervasyon */
  .rezervasyon-info, .rezervasyon-form-col { padding: 38px 16px; }

  /* About görsel kolonu — 480px altında fazla yer kaplıyor */
  .about-img-col { min-height: 220px !important; }
}

/* ── Lightbox ─────────────────────────────────── */
#lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  cursor: zoom-out;
}
#lb-overlay.active { display: flex; }
#lb-img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  cursor: default;
}
#lb-close, #lb-prev, #lb-next {
  position: fixed; background: rgba(201,167,107,.15);
  border: 1px solid rgba(201,167,107,.3); color: var(--gold);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  transition: background .2s, transform .2s;
}
#lb-close:hover, #lb-prev:hover, #lb-next:hover {
  background: var(--gold); color: #09070c; transform: scale(1.1);
}
#lb-close { top: 18px; right: 18px; }
#lb-prev  { left: 18px; top: 50%; transform: translateY(-50%); }
#lb-next  { right: 18px; top: 50%; transform: translateY(-50%); }
#lb-prev:hover, #lb-next:hover { transform: translateY(-50%) scale(1.1); }
.gallery-cell { cursor: pointer; }

/* ══════════════════════════════════════════════════════════
   DESKTOP POLISH — MENU + REZERVASYON (FINAL OVERRIDES)
══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .menu-section {
    padding: 120px 0 140px !important;
    background:
      radial-gradient(circle at 10% 12%, rgba(201,167,107,.08), transparent 40%),
      radial-gradient(circle at 86% 85%, rgba(212,82,26,.07), transparent 42%),
      #0a0810 !important;
  }
  .menu-section .section-label {
    margin-bottom: 12px;
    letter-spacing: 4px;
    color: rgba(201,167,107,.92);
  }
  .menu-section .section-title {
    font-size: clamp(3rem, 4.5vw, 4.3rem);
    letter-spacing: .6px;
    color: #f2e9d8;
  }
  .qr-cat-grid {
    margin-top: 54px !important;
    max-width: 1320px !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
  .qr-cat-card {
    border-radius: 20px !important;
    border: 1px solid rgba(201,167,107,.2) !important;
    background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.30) !important;
  }
  .qr-cat-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(201,167,107,.42) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,.44) !important;
  }
  .qr-cat-card-img {
    aspect-ratio: 16/11 !important;
    background: #14111a !important;
  }
  .qr-cat-card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,6,12,.55), transparent 58%);
    z-index: 1;
    pointer-events: none;
  }
  .qr-cat-card-img img {
    position: relative;
    z-index: 0;
    transform-origin: center;
  }
  .qr-cat-card-label {
    background: linear-gradient(90deg, rgba(201,167,107,.16), rgba(201,167,107,.08)) !important;
    border-top: none;
    padding: 14px 16px !important;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 56px;
  }
  .qr-cat-card-name {
    font-size: .98rem !important;
    letter-spacing: .4px !important;
    color: #f5eee2 !important;
    line-height: 1.2;
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .qr-cat-card-count {
    font-size: .7rem !important;
    padding: 5px 10px !important;
    background: linear-gradient(120deg, #d4521a, #b64516) !important;
    color: #fff !important;
    margin-left: auto;
    border-radius: 999px;
    line-height: 1;
    flex: 0 0 auto;
  }

  .rezervasyon-section {
    padding: 80px 0 140px !important;
    background:
      radial-gradient(circle at 8% 12%, rgba(201,167,107,.09), transparent 36%),
      radial-gradient(circle at 90% 88%, rgba(212,82,26,.06), transparent 40%),
      #f0e5d7 !important;
  }
  .rezervasyon-section .container > .row {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 34px 68px rgba(19,14,11,.17);
  }
  .rezervasyon-info {
    border: none !important;
    border-radius: 0 !important;
    background: linear-gradient(160deg, #0f0c14 0%, #181321 58%, #120f19 100%) !important;
    padding: 72px 62px !important;
  }
  .rezervasyon-title {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem) !important;
    letter-spacing: 1px !important;
    margin-bottom: 18px !important;
  }
  .rezervasyon-desc {
    color: rgba(255,255,255,.78) !important;
    max-width: 430px;
    margin-bottom: 30px !important;
  }
  .rez-contact-item {
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.04) !important;
    padding: 12px 14px !important;
    color: rgba(255,255,255,.88) !important;
    max-width: 420px;
  }
  .rezervasyon-form-col {
    border: none !important;
    border-radius: 0 !important;
    background: linear-gradient(180deg, #fff9ef, #f7ebdc) !important;
    padding: 72px 62px !important;
  }
  .rezervasyon-form {
    max-width: 100% !important;
  }
  .rez-label {
    font-size: .78rem !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 7px !important;
    color: #4f3d2c !important;
  }
  .rez-input {
    border-radius: 12px !important;
    border: 1px solid rgba(184,150,90,.30) !important;
    padding: 13px 14px !important;
    font-size: .92rem !important;
    background: #fff !important;
  }
  .rez-input:focus {
    border-color: #c9a76b !important;
    box-shadow: 0 0 0 4px rgba(201,167,107,.18) !important;
    transform: none !important;
  }
  .rezervasyon-form .btn-kp-primary {
    width: 100%;
    justify-content: center;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    letter-spacing: 1.1px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO WHEEL — SHOWCASE REDESIGN
══════════════════════════════════════════════════════════ */
.pizza-img-container {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.pizza-main-img {
  transform: rotateX(var(--tilt-y)) rotateY(var(--tilt-x));
  transition: transform .28s ease, filter .4s ease;
}
.pizza-img-container::before {
  content: '';
  position: absolute;
  inset: 8% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,167,107,.22) 0%, rgba(201,167,107,.05) 46%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.arch-preview-card {
  margin-top: 16px;
  max-width: 430px;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8,6,12,.68), rgba(8,6,12,.42));
  border: 1px solid rgba(201,167,107,.24);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  opacity: .92;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}
.arch-preview-card.show {
  opacity: 1;
  transform: translateY(0);
}
.arch-preview-kicker {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,167,107,.92);
  margin-bottom: 6px;
}
.arch-preview-title {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: #f4ebdc;
  letter-spacing: .4px;
  margin-bottom: 4px;
}
.arch-preview-desc {
  margin: 0;
  color: rgba(240,230,211,.74);
  font-size: .86rem;
  line-height: 1.6;
}
.arch-item:not(.active) {
  opacity: .72;
}
.arch-item.active {
  opacity: 1;
}

@media (max-width: 768px) {
  #archItemsContainer {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    gap: 10px;
    overflow-x: auto;
    padding: 8px 10px 4px;
    margin-top: 14px;
    pointer-events: auto;
    scrollbar-width: none;
  }
  #archItemsContainer::-webkit-scrollbar { display: none; }
  .arch-item {
    position: static !important;
    transform: none !important;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 !important;
    border-radius: 999px;
  }
  .arch-dot-wrap { display: none !important; }
  .arch-label {
    min-height: unset !important;
    font-size: .76rem !important;
    padding: 9px 14px !important;
    border-radius: 999px;
    background: rgba(8,6,12,.5) !important;
    border: 1px solid rgba(201,167,107,.26) !important;
  }
  .arch-item.active .arch-label {
    font-size: .78rem !important;
    background: linear-gradient(90deg, rgba(212,82,26,.78), rgba(201,167,107,.64)) !important;
    color: #fff !important;
  }
  .pizza-center-wrap {
    position: relative;
    top: auto !important;
    margin-top: 14px;
  }
  .arch-preview-card {
    max-width: 92vw;
    margin-top: 12px;
    padding: 12px 14px;
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE STABILITY OVERRIDES (MAIN SITE ONLY)
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Header */
  #site-header .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
    align-items: center;
  }
  .navbar-toggler { display: none !important; }
  #navLinks { display: none !important; }
  .btn-online-order {
    padding: 8px 12px !important;
    font-size: 0.76rem !important;
    border-radius: 999px;
  }

  /* Hero */
  .hero-section {
    min-height: auto !important;
    padding-bottom: 34px !important;
  }
  .hero-content {
    padding-top: 110px !important;
  }
  .arch-wrapper {
    width: 100% !important;
    height: auto !important;
    margin-top: 0 !important;
  }
  .arch-line,
  .hero-deco-line,
  .hero-scroll-hint {
    display: none !important;
  }
  .pizza-center-wrap {
    width: 100%;
    margin-top: 10px !important;
  }
  .pizza-main-img {
    width: 72vw !important;
    height: 72vw !important;
    max-width: 300px;
    max-height: 300px;
  }
  .pizza-cat-label {
    font-size: 1rem !important;
    letter-spacing: 1.4px !important;
    padding: 7px 12px !important;
    margin-bottom: 10px;
  }

  /* Common spacing */
  .stats-section,
  .about-section,
  .locations-section,
  .menu-section,
  .dark-story-section,
  .gallery-section,
  .blog-section,
  .info-boxes-section,
  .rezervasyon-section,
  .site-footer {
    padding-top: 58px !important;
    padding-bottom: 62px !important;
  }

  /* Krem section'larda beyaz görünümü önle */
  .stats-section,
  .about-section,
  .about-content-col,
  .gallery-section {
    background: var(--cream) !important;
  }
  .rezervasyon-form-col {
    background: linear-gradient(180deg, #fff9ee, #f5e8d7) !important;
  }
  /* Koyu section'lar tutarlı kalsın */
  .locations-section,
  .menu-section,
  .dark-story-section,
  .blog-section,
  .info-boxes-section,
  .site-footer {
    background-color: #09070c !important;
  }
  .section-title {
    font-size: clamp(1.7rem, 7.4vw, 2.3rem) !important;
    line-height: 1.12 !important;
    letter-spacing: 0.4px !important;
  }
  .section-label {
    font-size: 0.62rem !important;
    letter-spacing: 2.6px !important;
    margin-bottom: 10px !important;
  }

  /* Locations */
  .location-timeline {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .location-name {
    font-size: 1.25rem !important;
  }
  .location-address,
  .location-hours {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }

  /* Menu cards */
  .qr-cat-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 26px !important;
    max-width: 94vw !important;
  }
  .qr-cat-card {
    border-radius: 14px !important;
  }
  .qr-cat-card-label {
    min-height: 50px !important;
    padding: 10px 12px !important;
  }
  .qr-cat-card-name {
    font-size: 0.84rem !important;
  }
  .qr-cat-card-count {
    font-size: 0.66rem !important;
    padding: 4px 8px !important;
  }

  /* Dark story */
  .dark-story-section {
    overflow: hidden;
  }
  .dark-story-content-box {
    margin-top: 18px !important;
    padding: 22px 16px !important;
  }
  .dark-story-title {
    font-size: clamp(1.7rem, 7.5vw, 2.4rem) !important;
    margin-top: 22px !important;
    margin-bottom: 16px !important;
  }
  .dark-story-text {
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin-bottom: 22px !important;
  }

  /* Gallery + blog */
  .gallery-editorial-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 130px !important;
    gap: 4px !important;
    margin-top: 20px !important;
  }
  .gallery-cell:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-cell:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
  .blog-card-img { height: 170px !important; }
  .blog-card-body { padding: 16px 14px 18px !important; }
  .blog-card-title { font-size: 1.05rem !important; }
  .blog-card-text { font-size: 0.86rem !important; line-height: 1.6 !important; }

  /* Reservation */
  .rezervasyon-section .container > .row {
    border-radius: 14px !important;
    overflow: hidden;
    box-shadow: none !important;
  }
  .rezervasyon-info,
  .rezervasyon-form-col {
    padding: 28px 16px !important;
    border-radius: 0 !important;
    border: none !important;
  }
  .rezervasyon-title {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem) !important;
    margin-bottom: 10px !important;
  }
  .rezervasyon-desc {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
  }
  .rez-contact-item {
    font-size: 0.82rem !important;
    padding: 10px 12px !important;
  }
  .rez-label {
    font-size: 0.72rem !important;
    margin-bottom: 5px !important;
  }
  .rez-input {
    font-size: 0.86rem !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
  }
  .rezervasyon-form .btn-kp-primary {
    padding: 12px 14px !important;
    font-size: 0.86rem !important;
    border-radius: 10px !important;
  }

  /* Footer */
  .site-footer {
    padding-top: 48px !important;
    padding-bottom: 26px !important;
  }
  .footer-col-title {
    font-size: 0.74rem !important;
    letter-spacing: 1.6px !important;
  }
  .footer-col-links li a,
  .footer-contact-item,
  .footer-contact-item a {
    font-size: 0.82rem !important;
  }

  /* ÇARK: mobilde de desktop ile aynı yapı */
  .hero-content { padding-top: 198px !important; }
  .arch-wrapper {
    width: var(--arch-w) !important;
    height: calc(var(--arch-h) + 360px) !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }
  .arch-line { display: block !important; }
  #archItemsContainer {
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: var(--arch-w) !important;
    height: var(--arch-h) !important;
    display: block !important;
    overflow: visible !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .arch-item {
    position: absolute !important;
    transform: translate(-50%, -50%) !important;
    padding: 8px 10px !important;
    border-radius: 12px !important;
  }
  .arch-dot-wrap { display: flex !important; }
  .arch-label {
    min-height: 2rem !important;
    font-size: 0.78rem !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
  }
  .arch-item.active .arch-label { font-size: 1rem !important; }
  .arch-label {
    font-size: 0.68rem !important;
    letter-spacing: 0.2px !important;
  }
  .arch-item.active .arch-label { font-size: 0.82rem !important; }
  .pizza-center-wrap {
    position: absolute !important;
    top: calc(var(--arch-h) - clamp(220px, 30vw, 380px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-top: 0 !important;
    width: auto !important;
  }
  .pizza-main-img {
    width: 60vw !important;
    height: 60vw !important;
    max-width: 230px !important;
    max-height: 230px !important;
  }
  .pizza-cat-label {
    font-size: 0.86rem !important;
    padding: 5px 10px !important;
    margin-bottom: 6px !important;
  }
}

/* FINAL MOBILE HERO WHEEL FIX */
@media (max-width: 768px) {
  :root {
    --arch-w: 72vw !important;
    --arch-h: 34vw !important;
  }

  .hero-section {
    min-height: 760px !important;
    padding-bottom: 16px !important;
  }
  .hero-content {
    padding-top: 160px !important;
  }
  .arch-wrapper {
    width: var(--arch-w) !important;
    height: 430px !important;
    margin-inline: auto !important;
  }
  #archItemsContainer {
    width: var(--arch-w) !important;
    height: var(--arch-h) !important;
  }
  .arch-item {
    max-width: 110px;
  }
  .arch-label {
    font-size: 0.62rem !important;
    padding: 4px 8px !important;
    line-height: 1.1 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .arch-item.active .arch-label {
    font-size: 0.74rem !important;
  }
  .pizza-center-wrap {
    top: calc(var(--arch-h) + 22px) !important;
  }
  .pizza-main-img {
    width: 56vw !important;
    height: 56vw !important;
    max-width: 210px !important;
    max-height: 210px !important;
  }
  .arch-preview-card {
    margin-top: 10px !important;
    max-width: 84vw !important;
  }
}

@media (max-width: 420px) {
  :root {
    --arch-w: 70vw !important;
    --arch-h: 33vw !important;
  }
  .hero-content {
    padding-top: 154px !important;
  }
  .arch-wrapper {
    height: 410px !important;
  }
  .pizza-main-img {
    width: 54vw !important;
    height: 54vw !important;
    max-width: 195px !important;
    max-height: 195px !important;
  }
}

/* MOBILE HERO WHEEL NORMALIZED (same look across devices) */
@media (max-width: 768px) {
  :root {
    --mobile-wheel-base: 390; /* iPhone 13 width reference */
  }

  .hero-section {
    overflow: hidden !important;
    min-height: 760px !important;
  }

  /* Tek bir sanal tuval: her mobilde aynı oran */
  .arch-wrapper {
    width: 390px !important;
    height: 430px !important;
    max-width: none !important;
    transform-origin: top center;
    transform: scale(clamp(0.78, 100vw / var(--mobile-wheel-base), 1));
    margin-inline: auto !important;
  }

  /* arch-line ve archItemsContainer 270px: uç itemlar 60px boşluk ile 390px wrapper içinde kalır */
  .arch-line {
    width: 270px !important;
    height: 132px !important;
  }

  #archItemsContainer {
    width: 270px !important;
    height: 132px !important;
    overflow: visible !important;
  }

  .arch-dot-wrap {
    display: flex !important;
    margin-bottom: 6px !important;
  }
  .arch-dot {
    display: block !important;
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
  }
  .arch-pointer-line {
    display: block !important;
  }

  .pizza-center-wrap {
    top: 154px !important;
  }

  .pizza-main-img {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
  }

  .arch-label {
    font-size: 0.66rem !important;
    padding: 4px 8px !important;
    letter-spacing: 0.1px !important;
  }
  .arch-item.active .arch-label {
    font-size: 0.78rem !important;
  }

  .arch-preview-card {
    max-width: 320px !important;
  }
}
