/* ============================================================
   BUTCHER'S — Editorial V3
   Tokens: butchers.pen (v3-*)
   ============================================================ */
:root {
  --paper: #F4EDE3;
  --cream: #FBF7EF;
  --ink: #16130F;
  --line: #D8CCBA;
  --mustard: #E8A33D;
  --muted: #6F6456;          /* 4.97:1 paper üzerinde — AA */
  --red: #E22732;
  --white: #FFFFFF;
  /* Erişilebilirlik türevleri: küçük metin rollerinde ana tonların ölçülmüş koyulaştırılmışları */
  --red-text: #B71C26;       /* açık zeminde küçük kırmızı metin, 5.63:1 */
  --gold-text: #93610D;      /* açık zeminde hardal metin, 4.97:1 */
  --mustard-deep: #C77E1B;   /* açık zeminde büyük hardal display, 3.06:1 */
  --mustard-on-red: #FACC74; /* kırmızı zeminde büyük hardal display, 3.05:1 */
  --on-red: #FFFFFF;         /* kırmızı zeminde gövde metni, 4.6:1 */
  --paper-a80: rgba(244, 237, 227, .8);
  --paper-a60: rgba(244, 237, 227, .6);
  --paper-a35: rgba(244, 237, 227, .35);
  --paper-a20: rgba(244, 237, 227, .2);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Instrument Sans", "Helvetica Neue", sans-serif;
  --font-accent: "Instrument Serif", Georgia, serif;

  --pad-x: clamp(20px, 4.45vw, 64px);
  --pad-x-wide: clamp(20px, 5.55vw, 80px);
  --pad-x-menu: clamp(20px, 6.67vw, 96px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
a, button, summary { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* Sticky header anchor hedeflerini kapatmasın */
[id] { scroll-margin-top: 150px; }
hr { border: 0; }

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transform: translateY(-200%);
}
.skip-link:focus { transform: none; }

/* ---------- Ortak parçalar ---------- */

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .8px;
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.4), box-shadow .25s ease, background-color .2s ease, color .2s ease;
}
.btn-pill svg { transition: transform .2s ease; }
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22, 19, 15, .18); }
.btn-pill:hover svg { transform: translateX(4px); }
.btn-pill:active { transform: translateY(0) scale(.96); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: var(--red); }
.btn-ink:hover .ic-mustard { color: var(--paper); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); padding: 18px 34px; height: auto; font-size: 14px; letter-spacing: 2px; }
.btn-paper:hover { background: var(--mustard); }
.btn-block { width: 100%; height: 56px; }
.ic-mustard { color: var(--mustard); }
.ic-red { color: var(--red); }

.badge {
  display: inline-block;
  padding: 5px 10px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 2px;
  transform: rotate(var(--badge-tilt, 0deg));
  white-space: nowrap;
  transition: transform .25s cubic-bezier(.2, .9, .3, 1.6);
}
.badge-mustard { background: var(--mustard); color: var(--ink); }
.badge-pill { border-radius: 999px; padding: 6px 12px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
}
.eyebrow-red { color: var(--red-text); }
.eyebrow-rule { width: 40px; height: 2px; background: currentColor; }

.rule-ink { height: 2px; background: var(--ink); width: 100%; }

/* ---------- Reveal animasyonları ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease var(--reveal-delay, 0ms), transform .8s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(22, 19, 15, .1); }

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
  padding: 0 var(--pad-x);
  border-bottom: 1px solid var(--ink);
}
.logo img { width: 100px; height: auto; transition: transform .3s ease; }
.logo:hover img { transform: scale(1.05) rotate(-2deg); }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .8px;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--red);
  transition: right .3s cubic-bezier(.16, 1, .3, 1);
}
.main-nav a:hover::after { right: 0; }

.header-right { display: flex; align-items: center; gap: 18px; }
.header-hours { font-size: 13px; font-weight: 500; color: var(--muted); }
.header-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
}
.header-order svg { color: var(--red); transition: transform .25s ease; }
.header-order:hover svg { transform: translate(3px, -3px); }

.header-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad-x);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}
.meta-red { color: var(--red-text); }

.nav-toggle { display: none; color: var(--ink); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav { overscroll-behavior: contain; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 22px; text-align: center; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 44px);
  color: var(--paper);
  transition: color .25s ease, transform .25s ease;
}
.mobile-nav a:hover { color: var(--mustard); transform: translateX(6px); }
.mobile-nav .mobile-order { color: var(--red); display: inline-flex; align-items: center; gap: 10px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding: clamp(24px, 3.3vw, 48px) var(--pad-x) clamp(32px, 4.45vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.hero-collage {
  position: relative;
  height: clamp(300px, 38.9vw, 560px);
}

.hero-headline { font-weight: normal; }
.hero-line {
  display: block;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(56px, 10.97vw, 158px);
  letter-spacing: 1px;
  line-height: 1.09;
}
.hero-line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroRise .9s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-line-2 { color: var(--mustard); }
.hero-line-2 span { animation-delay: .12s; }

@keyframes heroRise {
  to { transform: translateY(0); }
}

.hero-burger {
  position: absolute;
  top: 4.6%;
  left: 48%;
  width: clamp(300px, 39.6vw, 570px);
  z-index: 2;
  opacity: 0;
  animation: burgerDrop 1s cubic-bezier(.2, .9, .3, 1.15) .35s forwards;
}
.hero-burger img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 40px rgba(22, 19, 15, .25));
  animation: burgerFloat 5.5s ease-in-out 1.5s infinite;
}
@keyframes burgerDrop {
  from { opacity: 0; transform: translateY(-60px) scale(.92) rotate(3deg); }
  to   { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
@keyframes burgerFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-14px) rotate(-1.2deg); }
}

.hero-script {
  position: absolute;
  left: 18%;
  top: 70%;
  z-index: 3;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(36px, 6.1vw, 88px);
  color: var(--red);
  transform: rotate(-3deg);
  opacity: 0;
  animation: scriptIn .8s ease .7s forwards;
  white-space: nowrap;
}
@keyframes scriptIn {
  from { opacity: 0; transform: rotate(-3deg) translateY(20px); }
  to   { opacity: 1; transform: rotate(-3deg) translateY(0); }
}

.hero-sticker {
  position: absolute;
  left: 40%;
  top: 1%;
  z-index: 3;
  width: clamp(84px, 8.6vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mustard);
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  transform: rotate(10deg) scale(0);
  animation: stickerPop .6s cubic-bezier(.2, .9, .3, 1.5) .9s forwards, stickerWobble 6s ease-in-out 2s infinite;
}
.hero-sticker span {
  font-size: clamp(9px, .85vw, 12px);
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.25;
}
@keyframes stickerPop {
  to { transform: rotate(10deg) scale(1); }
}
@keyframes stickerWobble {
  0%, 100% { transform: rotate(10deg) scale(1); }
  50%      { transform: rotate(4deg) scale(1.04); }
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-cta-ufo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red-text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
}
.hero-cta-ufo svg { transition: transform .2s ease; }
.hero-cta-ufo:hover svg { transform: translateX(5px); }
.hero-cta-ufo:active, .header-order:active, .footer-order-link:active { transform: scale(.96); }
.hero-note {
  width: min(360px, 100%);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  text-align: right;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  background: var(--ink);
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
/* Ekran dışındayken sürekli animasyonlar duraklatılır (JS .offscreen ekler) */
.offscreen .marquee-track,
.offscreen .hero-burger img,
.offscreen .hero-sticker { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
}
.mq-item {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 1px;
  color: var(--paper);
  white-space: nowrap;
}
.mq-star { color: var(--mustard); flex: none; }
@keyframes marqueeScroll {
  to { transform: translateX(calc(-100% / 3)); }
}

/* ============================================================
   UFO SERİSİ
   ============================================================ */

.ufo {
  background: var(--red);
  color: var(--paper);
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x) clamp(64px, 7.2vw, 104px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 72px);
  overflow: hidden;
}

.ufo-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--on-red);
}
.ufo-meta-rule { flex: 1; height: 1px; background: var(--paper-a35); }

.ufo-headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: clamp(24px, 3.3vw, 48px);
}
.ufo-title { display: flex; align-items: flex-end; gap: 28px; }
.ufo-title-main {
  font-family: var(--font-display);
  font-size: clamp(72px, 12.5vw, 180px);
  line-height: .85;
}
.ufo-title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(52px, 9vw, 130px);
  line-height: .82;
}
.ufo-intro {
  width: min(360px, 100%);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-red);
}

.ufo-products { display: flex; }
.ufo-product { flex: 1; display: flex; flex-direction: column; }
.ufo-product:first-child { padding-right: clamp(24px, 3.9vw, 56px); border-right: 1px solid var(--paper-a35); }
.ufo-product:last-child { padding-left: clamp(24px, 3.9vw, 56px); }

.ufo-rule { height: 1px; background: var(--paper-a35); width: 100%; }

.ufo-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 24px;
}
.ufo-product-no { font-family: var(--font-accent); font-style: italic; font-size: 22px; }
.ufo-product-tag { font-size: 12px; letter-spacing: 2.5px; color: var(--on-red); }

.ufo-product-img { height: clamp(220px, 27.8vw, 400px); display: flex; align-items: center; justify-content: center; }
.ufo-product-img img {
  max-height: 100%;
  width: auto;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .3));
  transition: transform .3s cubic-bezier(.16, 1, .3, 1);
}
.ufo-product:hover .ufo-product-img img { transform: scale(1.06) rotate(-2deg); }

.ufo-product-info { display: flex; flex-direction: column; gap: 14px; padding-top: 32px; }
.ufo-product-name { font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 46px); font-weight: normal; }
.ufo-product-desc { font-size: 15px; line-height: 1.6; color: var(--on-red); }
.ufo-product-fries {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--mustard-on-red);
}

/* Fries banner */
.fries-banner-row {
  position: relative;
  height: clamp(340px, 27.8vw, 400px);
  margin-top: clamp(24px, 3vw, 44px);
}
.fries-type { display: flex; flex-direction: column; gap: 10px; }
.fries-l1, .fries-l2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9.7vw, 140px);
  line-height: .9;
}
.fries-l1 { color: var(--mustard-on-red); }
.fries-note {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  color: var(--on-red);
  margin-top: 6px;
}
.fries-img {
  position: absolute;
  right: clamp(0px, 2vw, 30px);
  bottom: 0;
  width: clamp(320px, 49.4vw, 712px);
  z-index: 1;
}
.fries-img img { width: 100%; filter: drop-shadow(0 20px 26px rgba(0, 0, 0, .3)); }
.fries-sticker {
  position: absolute;
  right: 0;
  top: 6%;
  z-index: 2;
  width: clamp(110px, 12.2vw, 176px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  transform: rotate(8deg);
  transition: transform .3s cubic-bezier(.2, .9, .3, 1.5);
}
.fries-sticker:hover { transform: rotate(0deg) scale(1.08); }
.fries-sticker span {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.2vw, 17px);
  letter-spacing: 1px;
  line-height: 1.3;
  max-width: 132px;
}

/* ============================================================
   KÖFTE BURGERLER
   ============================================================ */

.menu-kofte {
  background: var(--paper);
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x-menu) clamp(64px, 7.8vw, 112px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.3vw, 48px);
}

.mk-header { display: flex; flex-direction: column; gap: 16px; }
.mk-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.mk-header-left { display: flex; flex-direction: column; gap: 16px; }
.mk-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 84px);
  font-weight: normal;
}
.mk-count, .mk-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--muted);
  font-weight: normal;
}
.mk-count { font-size: clamp(20px, 2.1vw, 30px); white-space: nowrap; }
.mk-subtitle { font-size: clamp(18px, 1.67vw, 24px); max-width: 64ch; }

.mk-list { display: flex; flex-direction: column; }
.mk-list hr, .mk-row + .mk-row { border-top: 1px solid var(--line); }
.mk-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.3vw, 48px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background-color .2s ease, transform .25s cubic-bezier(.16, 1, .3, 1);
}
.mk-list { border-bottom: 1px solid var(--line); }
.mk-row:hover { background: linear-gradient(90deg, rgba(226, 39, 50, .045), transparent 70%); transform: translateX(14px); }

.mk-num {
  flex: none;
  width: 88px;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}
.mk-num.is-hot { color: var(--red); }
.mk-row:hover .mk-num { color: var(--red); transform: translateX(6px); }

.mk-info { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.mk-name-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mk-name { font-family: var(--font-display); font-size: clamp(26px, 2.8vw, 40px); font-weight: normal; }
.mk-row:hover .badge { transform: rotate(0deg) scale(1.08); }
.mk-desc { font-size: 15px; line-height: 1.5; color: var(--muted); }
.mk-gram { font-size: 12px; font-weight: 600; letter-spacing: 1.2px; color: var(--muted); }

.mk-img {
  flex: none;
  width: clamp(88px, 8.3vw, 120px);
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-radius .3s cubic-bezier(.16, 1, .3, 1), transform .3s cubic-bezier(.2, .9, .3, 1.3);
}
.mk-img-red { background: var(--red); }
.blob-0 { border-radius: 62px 50px 58px 66px; }
.blob-1 { border-radius: 52px 64px 48px 60px; }
.blob-2 { border-radius: 66px 54px 62px 50px; }
.blob-3 { border-radius: 50px 60px 66px 54px; }
.mk-row:hover .mk-img { border-radius: 24px; transform: rotate(-4deg) scale(1.06); }
.mk-img img { width: 88%; height: 88%; object-fit: contain; }

/* ============================================================
   GOLDEN — ÇITIR TAVUK
   ============================================================ */

.menu-golden {
  background: var(--cream);
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x-wide) clamp(64px, 7.2vw, 104px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.45vw, 64px);
}

.mg-header { display: flex; flex-direction: column; gap: 28px; }
.mg-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.mg-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 3px; }
.mg-eyebrow-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-text);
}
.mg-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 92px);
  font-weight: normal;
}
.mg-subtitle {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 26px);
  color: var(--muted);
  max-width: 64ch;
}

.mg-list { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.mg-row {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: background-color .3s ease;
}
.mg-row:hover { background: linear-gradient(90deg, rgba(232, 163, 61, .07), transparent 70%); }

.mg-img { flex: none; width: clamp(110px, 10.4vw, 150px); }
.mg-img img {
  width: 100%;
  filter: drop-shadow(0 12px 16px rgba(22, 19, 15, .14));
  transition: transform .3s cubic-bezier(.2, .9, .3, 1.3);
}
.mg-row:hover .mg-img img { transform: scale(1.1) rotate(3deg); }

.mg-info { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.mg-name-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.mg-name { font-family: var(--font-display); font-size: clamp(22px, 2.1vw, 30px); font-weight: normal; letter-spacing: .5px; }
.mg-desc { font-size: 15px; line-height: 1.5; color: var(--muted); }
.mg-gram { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--muted); }

.mg-num {
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.75vw, 54px);
  color: var(--mustard-deep);
  transition: transform .2s ease, color .2s ease;
}
.mg-row:hover .mg-num { transform: scale(1.12); color: var(--red); }

/* ============================================================
   MUTFAK / KITCHEN
   ============================================================ */

.kitchen {
  background: var(--paper);
  padding: clamp(64px, 7.8vw, 112px) var(--pad-x-wide) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 4.45vw, 64px);
}

.kitchen-rule-block { display: flex; flex-direction: column; gap: 16px; }
.kitchen-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 2.6px;
}
.kitchen-eyebrow { font-weight: 600; }
.kitchen-meta-right { font-weight: 500; color: var(--muted); }

.kitchen-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-top: clamp(24px, 2.8vw, 40px);
}
.kitchen-title { font-weight: normal; display: flex; flex-direction: column; gap: 4px; }
.kitchen-line { display: flex; align-items: flex-end; gap: clamp(12px, 1.5vw, 22px); }
.kt-solid, .kt-red {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1;
}
.kt-red { color: var(--red); }
.kt-script {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(38px, 6.1vw, 88px);
  line-height: .95;
  color: var(--muted);
}
.kitchen-intro {
  width: min(360px, 100%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 10px;
}
.kitchen-intro p { font-size: 16px; line-height: 1.55; color: var(--muted); }
.kitchen-intro-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 19px !important;
  line-height: 1.35 !important;
  color: var(--ink) !important;
}

/* Kolaj */
.kitchen-collage {
  position: relative;
  display: grid;
  grid-template-columns: 43.75% 1fr 21.9%;
  gap: 20px;
  height: clamp(420px, 41.7vw, 600px);
}
.kc-col { display: flex; flex-direction: column; gap: 20px; min-height: 0; }

.kc-photo { position: relative; overflow: hidden; min-height: 0; outline: 1px solid rgba(0, 0, 0, .1); outline-offset: -1px; }
.kc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s cubic-bezier(.16, 1, .3, 1); }
.kc-photo:hover img { transform: scale(1.06); }
.kc-photo-tall { flex: 1; }
.kc-photo-fill { flex: 1; }
.kc-photo-short { flex: none; height: 31.7%; }
.kc-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--cream);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.kc-ink-card {
  flex: none;
  height: 35%;
  background: var(--ink);
  color: var(--cream);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kc-ink-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: normal;
  line-height: 1.05;
}
.kc-ink-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.kc-ink-foot p { font-size: 13px; line-height: 1.5; color: var(--line); max-width: 280px; }
.kc-ink-star {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  color: var(--mustard);
  white-space: nowrap;
}

.kc-mustard-card {
  flex: none;
  height: 35%;
  background: var(--mustard);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}
.kc-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.15;
}
.kc-quote-label { font-size: 12px; font-weight: 700; letter-spacing: 2.4px; }

.kc-polaroid {
  position: absolute;
  left: 31.4%;
  top: 66%;
  width: clamp(170px, 16.4vw, 236px);
  background: var(--white);
  padding: 12px 12px 14px;
  box-shadow: 0 10px 26px rgba(22, 19, 15, .2);
  transform: rotate(-4deg);
  z-index: 5;
  transition: transform .3s cubic-bezier(.2, .9, .3, 1.4);
}
.kc-polaroid:hover { transform: rotate(0deg) scale(1.05); }
.kc-polaroid img { width: 100%; height: clamp(120px, 11vw, 158px); object-fit: cover; outline: 1px solid rgba(0, 0, 0, .1); outline-offset: -1px; }
.kc-polaroid figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--muted);
}
.kc-tape {
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -46px;
  width: 92px;
  height: 26px;
  background: rgba(244, 237, 227, .72);
  transform: rotate(3deg);
  box-shadow: 0 2px 6px rgba(22, 19, 15, .08);
}

.kc-badge {
  position: absolute;
  right: -1%;
  top: -7.7%;
  z-index: 6;
  width: clamp(96px, 8.9vw, 128px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.05;
  transform: rotate(9deg);
  animation: badgeSpinIn 1s cubic-bezier(.2, .9, .3, 1.3) both;
  transition: transform .4s ease;
}
.kc-badge:hover { transform: rotate(0deg); }
.kc-badge-star { font-family: var(--font-body); font-size: 13px; }
@keyframes badgeSpinIn {
  from { transform: rotate(120deg) scale(0); }
  to   { transform: rotate(9deg) scale(1); }
}

/* İstatistikler */
.kitchen-stats { padding-bottom: clamp(64px, 7.2vw, 104px); }
.stats-row { display: flex; gap: clamp(20px, 2.8vw, 40px); }
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 36px 0 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.3vw, 76px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-num.is-red { color: var(--red); }
.stat-label { font-size: 13px; font-weight: 600; letter-spacing: 2.4px; color: var(--muted); }
.stat-divider { width: 1px; background: var(--line); margin-top: 36px; }

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

.branches {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x-wide);
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 3.9vw, 56px);
}

.br-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 3px;
}
.br-index { color: var(--mustard); }
.br-meta-rule { flex: 1; height: 1px; background: var(--paper-a20); }
.br-meta-right { color: var(--paper-a60); }

.br-title-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.br-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8.3vw, 120px);
  font-weight: normal;
  line-height: .95;
}
.br-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--mustard);
  padding-bottom: clamp(8px, 1.7vw, 24px);
}

.ticket-list { display: flex; flex-direction: column; gap: 14px; }

.ticket {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 128px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .9, .3, 1.3), box-shadow .3s ease;
}
.ticket:hover {
  transform: translateY(-4px) rotate(-.4deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.ticket-featured { background: var(--red); color: var(--cream); }

.ticket-stub {
  flex: none;
  width: clamp(100px, 11.8vw, 170px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ticket-num { font-family: var(--font-display); font-size: clamp(36px, 3.6vw, 52px); line-height: 1; }
.ticket:not(.ticket-featured) .ticket-num { color: var(--red); }
.ticket-stub-label { font-size: 10px; letter-spacing: 4px; opacity: .7; }

.ticket-perforation {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.ticket-perforation span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(22, 19, 15, .2);
}

.ticket-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 18px clamp(20px, 2.5vw, 36px);
}
.ticket-name-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ticket-name { font-family: var(--font-display); font-size: clamp(20px, 1.95vw, 28px); font-weight: normal; }
.ticket-addr { font-size: 15px; opacity: .75; }

.ticket-right {
  flex: none;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: clamp(20px, 2.8vw, 40px);
}
.ticket-city { font-family: var(--font-accent); font-style: italic; font-size: 17px; opacity: .75; }
.ticket-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #C9303A; }
.ticket-status.is-open .status-dot { background: #3F8A52; animation: pulseDot 2s ease-in-out infinite; }
.ticket-featured .ticket-status.is-open .status-dot { background: #9FE8A6; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 138, 82, .5); }
  50%      { box-shadow: 0 0 0 5px rgba(63, 138, 82, 0); }
}

.ticket-pin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  opacity: .65;
  transition: opacity .2s ease, transform .2s ease;
}
.ticket-pin-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; }
.ticket:hover .ticket-pin { opacity: 1; transform: translateY(-2px); }
a.ticket { cursor: pointer; }

.ticket-notch {
  position: absolute;
  left: clamp(92px, 11.25vw, 162px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ink);
}
.ticket-notch-top { top: -10px; }
.ticket-notch-bottom { bottom: -10px; }

.br-cta-row { display: flex; align-items: center; gap: 28px; }
.br-cta-line { flex: 1; height: 1px; background: rgba(244, 237, 227, .15); }

/* ============================================================
   SSS / FAQ
   ============================================================ */

.faq {
  background: var(--paper);
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x-wide) clamp(64px, 7.2vw, 104px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 44px);
}
.faq-header { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.8vw, 84px);
  font-weight: normal;
}
.faq-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 30px);
  color: var(--muted);
  padding-bottom: clamp(4px, .9vw, 13px);
}
.faq-list { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  flex: none;
  width: 52px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--muted);
  transition: color .2s ease;
}
.faq-item[open] .faq-num, .faq-item summary:hover .faq-num { color: var(--red); }
.faq-q {
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  letter-spacing: .3px;
}
.faq-plus {
  flex: none;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 400;
  color: var(--red-text);
  line-height: 1;
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
}
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 24px calc(52px + clamp(16px, 2.5vw, 36px));
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

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

.franchise { background: var(--cream); }
.fr-wrap {
  padding: clamp(56px, 6.67vw, 96px) var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.3vw, 48px);
}

.fr-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--ink);
}
.fr-head-left { display: flex; flex-direction: column; gap: 16px; }
.fr-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--muted); }
.fr-title-row { display: flex; align-items: flex-end; gap: 18px; flex-wrap: wrap; }
.fr-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: normal;
  line-height: 1;
}
.fr-title-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(26px, 3vw, 44px);
  color: var(--red);
  line-height: 1.05;
}
.fr-head-note {
  width: min(300px, 100%);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  text-align: right;
}

.fr-body {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: clamp(32px, 4.45vw, 64px);
}

.fr-left { display: flex; flex-direction: column; gap: 28px; }
.fr-intro { font-size: 16px; font-weight: 500; line-height: 1.65; }
.fr-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fr-bullets li { display: flex; gap: 12px; font-size: 15px; font-weight: 500; line-height: 1.45; }
.fr-bullets svg { flex: none; margin-top: 2px; }
.fr-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.fr-contact-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--muted); }
.fr-contact-value { font-size: 15px; font-weight: 700; }

.fr-form-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: clamp(24px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fr-form-title { font-family: var(--font-display); font-size: 22px; font-weight: normal; }
.fr-form-sub { font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--muted); }
.fr-form { display: flex; flex-direction: column; gap: 20px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; color: var(--muted); }
.field input, .field textarea {
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  border-radius: 0;
  transition: border-color .3s ease, box-shadow .3s ease;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
  box-shadow: 0 1px 0 0 var(--red);
}
.fr-kvkk { font-size: 11px; font-weight: 500; line-height: 1.4; color: var(--muted); }

.form-msg { padding: 12px 16px; border-radius: 2px; font-size: 14px; font-weight: 600; }
.form-msg-ok { background: rgba(63, 138, 82, .12); color: #2c6b3e; border: 1px solid rgba(63, 138, 82, .35); }
.form-msg-error { background: rgba(201, 48, 58, .1); color: #a02531; border: 1px solid rgba(201, 48, 58, .3); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--paper);
  padding: clamp(64px, 7.2vw, 104px) var(--pad-x-wide) 40px;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 3.3vw, 48px);
}

.footer-close {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-big { display: flex; align-items: flex-end; gap: 18px; font-weight: normal; }
.big-solid {
  font-family: var(--font-display);
  font-size: clamp(80px, 13.2vw, 190px);
  line-height: .85;
}
.big-accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(64px, 10.4vw, 150px);
  line-height: .85;
  color: var(--red);
}

.footer-order { display: flex; flex-direction: column; gap: 12px; padding-bottom: 16px; }
.footer-order-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
}
.footer-order-arrow { color: var(--red); transition: transform .25s cubic-bezier(.2, .9, .3, 1.4); }
.footer-order-link:hover .footer-order-arrow { transform: translateX(10px); }
.footer-order-line { width: 100%; max-width: 336px; height: 3px; background: var(--red); transform-origin: left; transition: transform .4s ease; }
.footer-order-link:hover ~ .footer-order-line { transform: scaleX(1.05); }
.footer-order-hint { font-size: 14px; color: var(--muted); }

.footer-divider { height: 1px; background: var(--line); }

.footer-mid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-col { gap: 18px; }
.footer-logo-col img { width: 147px; height: auto; }
.footer-tagline { font-family: var(--font-accent); font-style: italic; font-size: 17px; color: var(--muted); }
.footer-head { font-size: 11px; font-weight: 400; letter-spacing: 3px; color: var(--muted); }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-hours { font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.footer-nav a { position: relative; width: fit-content; transition: color .25s ease, transform .25s ease; }
.footer-nav a:hover { color: var(--red); transform: translateX(4px); }
.footer-hours { font-family: var(--font-accent); font-style: italic; font-size: 22px; font-weight: 400; letter-spacing: 0; }
.footer-handle { font-family: var(--font-display); font-size: 20px; color: var(--red); width: fit-content; }
.footer-handle:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: auto;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { transition: color .25s ease, transform .25s ease; }
.footer-social a:hover { color: var(--red); transform: translateY(-3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted);
  flex-wrap: wrap;
}
.footer-cities { letter-spacing: 3px; }

/* ---------- 404 ---------- */
.notfound {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  padding: 40px 20px;
}
.notfound h1 { display: flex; align-items: flex-end; gap: 14px; font-weight: normal; }
.notfound p { color: var(--muted); font-size: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-hours { display: none; }
  .hero-script { left: 6%; }
}

@media (max-width: 900px) {
  .header-meta span:nth-child(3) { display: none; }
  .hero-collage { height: auto; display: flex; flex-direction: column; }
  .hero-headline { position: relative; z-index: 2; }
  .hero-burger { position: relative; left: auto; top: auto; align-self: flex-end; margin-top: -18%; width: min(440px, 78vw); }
  .hero-script { position: relative; left: auto; top: auto; margin-top: -10%; white-space: normal; }
  .hero-sticker { left: auto; right: 4%; top: 30%; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-note { text-align: left; }

  .ufo-headline { flex-direction: column; align-items: flex-start; }
  .ufo-products { flex-direction: column; gap: 40px; }
  .ufo-product:first-child { padding-right: 0; border-right: 0; }
  .ufo-product:last-child { padding-left: 0; }
  .fries-banner-row { height: auto; display: flex; flex-direction: column; gap: 24px; }
  .fries-img { position: relative; right: auto; bottom: auto; width: 100%; }
  .fries-sticker { top: auto; bottom: 32%; right: 2%; }

  .mk-header-top { flex-direction: column; align-items: flex-start; }
  .mk-num { width: 52px; }

  .kitchen-title-row { flex-direction: column; align-items: flex-start; }
  .kitchen-collage { grid-template-columns: 1fr 1fr; height: auto; }
  .kc-col-a { grid-column: 1 / -1; }
  .kc-photo-tall { min-height: 280px; }
  .kc-photo-fill { min-height: 200px; }
  .kc-ink-card, .kc-mustard-card { height: auto; min-height: 190px; }
  .kc-polaroid { left: 4%; top: auto; bottom: -4%; }
  .kc-badge { top: -3%; }
  .stats-row { flex-wrap: wrap; gap: 0 24px; }
  .stat { flex: 1 1 40%; }
  .stat-divider { display: none; }

  .ticket { flex-wrap: wrap; padding: 16px 0; }
  .ticket-right { padding: 0 20px 0 clamp(120px, 15vw, 190px); gap: 16px; }
  .ticket-notch { display: none; }
  .ticket-perforation { display: none; }
  .ticket-stub { width: clamp(90px, 13vw, 120px); }
  .ticket-main { flex: 1 1 55%; padding: 0 16px; }

  .fr-head { flex-direction: column; align-items: flex-start; }
  .fr-head-note { text-align: left; }
  .fr-body { grid-template-columns: 1fr; }

  .footer-close { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 900px) {
  /* iOS Safari 16px altındaki inputlarda sayfayı zoom'lar */
  .field input, .field textarea { font-size: 16px; }
}

@media (max-width: 560px) {
  .header-meta { justify-content: center; }
  .header-meta span:nth-child(1) { display: none; }
  .header-order { display: none; }
  .hero-sticker { display: none; }
  .ticket-right { padding-left: 20px; }
  .mk-img { display: none; }
  .mg-num { display: none; }
  .footer-big { flex-wrap: wrap; }
}
