/* =========================================================
   KOALA PIZZA
   Palet logodan: mürekkep siyahı + krem. Aksan: domates.
   ========================================================= */
:root {
  --ink: #0e0d0b;
  --ink-2: #151311;
  --ink-3: #1d1a17;
  --cream: #ede3d9;
  --cream-2: #e3d6c8;
  --paper: #f3ece4;
  --paper-core: #f9f5ef;
  --tomato: #c9442c;
  --tomato-2: #d9573d;
  --basil: #56703a;

  --muted-on-dark: rgba(237, 227, 217, 0.6);
  --muted-on-light: rgba(14, 13, 11, 0.58);
  --hair-dark: rgba(237, 227, 217, 0.1);
  --hair-light: rgba(14, 13, 11, 0.08);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --r-xl: 2rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section: clamp(6rem, 12vw, 10rem);
}

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

/* Android (Chrome otomatik koyu tema, Samsung Internet) renkleri ters çevirmesin:
   sitenin renkleri kendisinin, tarayıcı karartma uygulamasın */
html { color-scheme: light dark; background: #0e0d0b; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--tomato-2); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1240px, 100%); margin-inline: auto; padding-inline: var(--gutter); }

/* Film grain — sabit katman */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Ortak parçalar ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(237, 227, 217, 0.06);
  box-shadow: inset 0 0 0 1px var(--hair-dark);
}
.eyebrow--dark { color: var(--ink); background: rgba(14, 13, 11, 0.05); box-shadow: inset 0 0 0 1px var(--hair-light); }

.dot {
  width: 7px; height: 7px; border-radius: 50%; background: #8a8178; flex: none;
  box-shadow: 0 0 0 3px rgba(138, 129, 120, 0.18);
}
.dot.is-open, .is-open .dot { background: #7fb069; box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.2); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { opacity: 0.4; } }

.section-title {
  font-family: var(--serif);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 1.25rem;
}
.section-title em, .hero__title em {
  font-style: italic; font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--tomato);
}
.section-title--light { color: var(--cream); }
.section-title--light em { color: var(--tomato-2); }

.muted { color: var(--muted-on-dark); }

/* Button — island + button-in-button */
.btn {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 0.45rem 0.45rem 0.45rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem; font-weight: 600; letter-spacing: -0.005em;
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease), color 0.5s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn__icon {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  transition: transform 0.6s var(--ease);
}
.btn__icon svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover .btn__icon { transform: translate(3px, -2px) scale(1.06); }

.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream .btn__icon { background: var(--ink); color: var(--cream); }
.btn--cream:hover { background: #fff; }

.btn--tomato { background: var(--tomato); color: #fff6ef; }
.btn--tomato .btn__icon { background: rgba(255, 246, 239, 0.16); }
.btn--tomato:hover { background: var(--tomato-2); }

.btn--ghost { color: var(--cream); box-shadow: inset 0 0 0 1px rgba(237, 227, 217, 0.18); }
.btn--ghost .btn__icon { background: rgba(237, 227, 217, 0.08); }
.btn--ghost:hover { background: rgba(237, 227, 217, 0.06); }

.link-quiet {
  font-size: 0.95rem; color: var(--muted-on-dark);
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: color 0.4s var(--ease), background-size 0.6s var(--ease);
}
.link-quiet:hover { color: var(--cream); background-size: 100% 1px; }

/* Double-bezel */
.bezel {
  padding: 0.4rem;
  border-radius: var(--r-xl);
  background: rgba(14, 13, 11, 0.035);
  box-shadow: inset 0 0 0 1px var(--hair-light);
  height: 100%;
}
.bezel__core {
  height: 100%;
  border-radius: calc(var(--r-xl) - 0.4rem);
  background: var(--paper-core);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 20px 50px -30px rgba(60, 35, 15, 0.25);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.bezel--dark { background: rgba(237, 227, 217, 0.03); box-shadow: inset 0 0 0 1px var(--hair-dark); }
.bezel--dark .bezel__core {
  background: linear-gradient(180deg, #1c1916, #141210);
  box-shadow: inset 0 1px 0 rgba(237, 227, 217, 0.08), 0 30px 60px -40px rgba(0, 0, 0, 0.8);
}

/* ---------- NAV ---------- */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; justify-content: center;
  padding: 1.1rem var(--gutter) 0;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.4rem 0.4rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: rgba(21, 19, 17, 0.55);
  box-shadow: inset 0 0 0 1px var(--hair-dark), 0 10px 40px -20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background-color 0.6s var(--ease);
}
.scrolled .nav { background: rgba(14, 13, 11, 0.82); }

/* Amblem ve yazı aynı renkte: --word-color (hamur altını) */
.nav__brand {
  --word-color: #e7c79a;
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0 0.35rem 0 0.55rem;
}
.nav__mark {
  display: block;
  height: 2.3rem; aspect-ratio: 518 / 404;
  background: var(--word-color);
  -webkit-mask: url("../assets/logo/koala-emblem.png") center / contain no-repeat;
          mask: url("../assets/logo/koala-emblem.png") center / contain no-repeat;
}
/* Yazı logosu maske olarak kullanılıyor: rengi --word-color ile değişir */
.nav__word {
  display: block;
  height: 1.55rem; aspect-ratio: 834 / 229;
  background: var(--word-color);
  -webkit-mask: url("../assets/logo/koala-wordmark.png") center / contain no-repeat;
          mask: url("../assets/logo/koala-wordmark.png") center / contain no-repeat;
}
.nav__call {
  display: none; place-items: center;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  background: var(--tomato); color: #fff6ef;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}
.nav__call:active { transform: scale(0.94); }
.nav__call svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linejoin: round; }
.nav__links { display: flex; gap: 0.25rem; }
.nav__links a {
  display: block; padding: 0.55rem 0.95rem; border-radius: 999px;
  font-size: 0.88rem; color: var(--muted-on-dark);
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.nav__links a:hover { color: var(--cream); background: rgba(237, 227, 217, 0.06); }
.nav__cta { padding-block: 0.3rem; padding-right: 0.3rem; font-size: 0.85rem; }
.nav__cta .btn__icon { width: 2rem; height: 2rem; }
.nav__cta .btn__icon svg { fill: none; }

.burger { display: none; position: relative; width: 2.8rem; height: 2.8rem; border-radius: 50%; background: rgba(237, 227, 217, 0.08); }
.burger span {
  position: absolute; left: 50%; top: 50%; width: 1.05rem; height: 1.5px; background: var(--cream); border-radius: 2px;
  transition: transform 0.6s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -4px); }
.burger span:nth-child(2) { transform: translate(-50%, 3px); }
.menu-open .burger span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.menu-open .burger span:nth-child(2) { transform: translate(-50%, 0) rotate(-45deg); }

.overlay {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  background: rgba(14, 13, 11, 0.86);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
.menu-open .overlay { opacity: 1; visibility: visible; transition: opacity 0.6s var(--ease); }
.menu-open { overflow: hidden; }
.overlay__links li { overflow: hidden; }
.overlay__links a {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.35rem 0;
  font-family: var(--serif); font-weight: 350; font-size: clamp(2.6rem, 12vw, 4.5rem); line-height: 1.05; letter-spacing: -0.03em;
  transform: translateY(110%); opacity: 0;
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}
.overlay__links small { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; color: var(--tomato-2); }
.menu-open .overlay__links a { transform: none; opacity: 1; }
.menu-open .overlay__links li:nth-child(1) a { transition-delay: 0.1s; }
.menu-open .overlay__links li:nth-child(2) a { transition-delay: 0.16s; }
.menu-open .overlay__links li:nth-child(3) a { transition-delay: 0.22s; }
.menu-open .overlay__links li:nth-child(4) a { transition-delay: 0.28s; color: var(--tomato-2); }
.overlay__foot { margin-top: 2.5rem; color: var(--muted-on-dark); font-size: 0.9rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100dvh;
  display: flex; align-items: center;
  padding: 8rem 0 5rem;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 78% 50%, rgba(201, 68, 44, 0.22), transparent 70%),
    radial-gradient(30% 40% at 10% 90%, rgba(237, 227, 217, 0.05), transparent 70%);
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 5rem);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(3.4rem, 8.4vw, 7.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 1.6rem 0 1.8rem;
}
.hero__title em { color: var(--tomato-2); }
.hero__lead { max-width: 34rem; font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--muted-on-dark); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 2.4rem; }
.hero__note {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-variation-settings: "opsz" 36, "SOFT" 100;
  font-size: 1.05rem; letter-spacing: -0.005em;
  color: var(--muted-on-dark);
}

.hero__facts {
  display: flex; gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.5rem; padding-top: 1.8rem;
  border-top: 1px solid var(--hair-dark);
  max-width: 34rem;
}
.hero__facts dt { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-on-dark); }
.hero__facts dd { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 350; letter-spacing: -0.02em; margin-top: 0.3rem; }
.hero__facts dd span { font-size: 0.55em; color: var(--muted-on-dark); margin-left: 0.1em; }
.hero__facts dd span.num { font-size: inherit; color: inherit; margin: 0; }

.hero__art { justify-self: center; width: min(100%, 560px); }
.pizza-stage { position: relative; aspect-ratio: 1; }
.pizza-stage::before {
  content: ""; position: absolute; inset: 6%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 0, 0, 0.6), transparent);
  transform: translateY(9%) scale(1.08);
}
.pizza {
  position: relative;
  width: 100%; height: 100%;
  animation: spin 90s linear infinite;
  will-change: transform;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pizza-badge {
  position: absolute; left: 50%; top: 50%;
  width: 34%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  box-shadow:
    0 0 0 0.45rem rgba(237, 227, 217, 0.28),
    0 18px 36px -14px rgba(0, 0, 0, 0.55);
}
.pizza-badge::after {
  content: ""; position: absolute; inset: 6%;
  border-radius: 50%;
  border: 1px solid rgba(14, 13, 11, 0.16);
}
.pizza-badge img { width: 68%; height: auto; transform: translateY(3%); }
.slice {
  position: absolute; width: 26%; left: -6%; bottom: 6%;
  animation: float 7s var(--ease) infinite alternate;
  will-change: transform;
}
@keyframes float { from { transform: rotate(-14deg) translateY(0); } to { transform: rotate(-6deg) translateY(-14px); } }
/* Rozet pizzanın sağ üst çaprazında (45°), dışarıda ama kenara değiyor.
   --t: rozet çapı, --o: pizzaya binme payı. Pizza yarıçapı sahnenin %47.5i */
.pizza-tag {
  --t: 6.4rem; --o: 0.9rem;
  --d: calc((47.5% + var(--t) / 2 - var(--o)) * 0.7071);
  position: absolute;
  left: calc(50% + var(--d) - var(--t) / 2);
  top: calc(50% - var(--d) - var(--t) / 2);
  display: grid; place-items: center; text-align: center;
  width: var(--t); height: var(--t); border-radius: 50%;
  background: var(--cream); color: var(--ink);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  line-height: 1;
  animation: float2 6s var(--ease) infinite alternate;
  will-change: transform;
}
.pizza-tag span { font-family: var(--serif); font-size: 1.35rem; font-weight: 450; letter-spacing: -0.02em; margin-top: 0.9rem; }
.pizza-tag small { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: -1.2rem; }
@keyframes float2 { from { transform: rotate(-4deg); } to { transform: translate(-3px, 3px) rotate(4deg); } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; background: var(--tomato); color: #fff6ef; padding: 1.1rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2.2rem; width: max-content; animation: marquee 38s linear infinite; will-change: transform; }
.marquee span { font-family: var(--serif); font-style: italic; font-weight: 350; font-size: clamp(1.3rem, 2.4vw, 1.9rem); white-space: nowrap; letter-spacing: -0.01em; }
.marquee i { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: currentColor; opacity: 0.55; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- MENU ---------- */
.menu { background: var(--paper); color: var(--ink); padding: var(--section) 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 3rem; flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head__side { max-width: 22rem; display: grid; gap: 1.4rem; justify-items: start; }
.section-head__side p { color: var(--muted-on-light); font-size: 0.95rem; }
.section-head__side strong { color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink .btn__icon { background: rgba(237, 227, 217, 0.12); }
.btn--ink:hover { background: #26221e; }

.menu__pizzas { grid-template-columns: 1fr 1fr; gap: 1rem; }
.menu__pizzas .mi { transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease); }
.menu__pizzas .mi:hover { transform: translateY(-3px); }

.menu__drinks { margin-top: clamp(4rem, 8vw, 6rem); }
.menu__sub {
  font-family: var(--serif); font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.6rem, 6vw, 4.5rem); line-height: 1; letter-spacing: -0.035em;
  margin: 0 0 1.75rem;
}
.menu__sub em { font-style: italic; font-weight: 300; color: var(--tomato); font-variation-settings: "opsz" 144, "SOFT" 100; }
.menu__drink-list { column-count: 2; column-gap: 3rem; padding: 0.6rem 1.75rem; }
.menu__drink-list .di { break-inside: avoid; }
.menu__drink-list .di:nth-child(5) { border-bottom: 0; }

.menu__note { margin-top: 2.5rem; font-size: 0.85rem; color: var(--muted-on-light); text-align: center; }

/* ---------- NOTES ---------- */
.notes { background: var(--ink-2); padding: clamp(4rem, 8vw, 6rem) 0; border-top: 1px solid var(--hair-dark); border-bottom: 1px solid var(--hair-dark); }
.notes__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.note { padding-top: 1.2rem; border-top: 1px solid rgba(237, 227, 217, 0.16); }
.note__num { font-size: 0.7rem; letter-spacing: 0.2em; color: var(--tomato-2); font-weight: 600; }
.note h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; letter-spacing: -0.015em; margin: 0.8rem 0 0.5rem; }
.note p { font-size: 0.9rem; color: var(--muted-on-dark); }

/* ---------- VISIT ---------- */
.visit { padding: var(--section) 0; background: var(--ink); }
.visit__grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 1.25rem; }
.visit__card .bezel__core { display: flex; flex-direction: column; gap: 1.2rem; min-height: 22rem; align-items: flex-start; }
.visit__card .btn { margin-top: auto; }
.card-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-on-dark); font-weight: 600; }
.visit__phone { white-space: nowrap; font-family: var(--serif); font-weight: 350; font-size: clamp(1.6rem, 2.3vw, 2.2rem); letter-spacing: -0.03em; line-height: 1.05; }
.visit__phone:hover { color: #fff; }
.visit__card--call .bezel__core { background: radial-gradient(120% 90% at 0% 0%, rgba(201, 68, 44, 0.28), transparent 60%), linear-gradient(180deg, #1c1916, #141210); }
.visit__address { font-style: normal; font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.65rem); font-weight: 350; line-height: 1.3; letter-spacing: -0.015em; }
.visit__address span { display: block; }
.visit__address span + span { color: var(--muted-on-dark); }

.hours-head { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.status {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 999px; background: rgba(237, 227, 217, 0.06);
}
.hours { width: 100%; }
.hours li { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.9rem; color: var(--muted-on-dark); border-bottom: 1px solid var(--hair-dark); font-variant-numeric: tabular-nums; }
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { color: var(--cream); font-weight: 600; }
.hours li.is-today span:first-child::after { content: "Bugün"; margin-left: 0.6rem; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tomato-2); }

/* ---------- FOOTER ---------- */
.footer { background: var(--cream); color: var(--ink); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer__inner { display: grid; justify-items: center; }
.footer__logo { width: min(460px, 86%); height: auto; aspect-ratio: 1254 / 760; object-fit: cover; object-position: 50% 50%; }
.footer__row {
  width: 100%; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 13, 11, 0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--muted-on-light);
}
.footer__row a:hover { color: var(--ink); }

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .visit__grid { grid-template-columns: 1fr 1fr; }
  .visit__card--call { grid-column: span 2; }
  .visit__card--call .bezel__core { min-height: 0; }
  .notes__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grain { display: none; }
  .nav, .scrolled .nav { background: rgba(14, 13, 11, 0.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .overlay { background: rgba(14, 13, 11, 0.97); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .nav { gap: 0.5rem; width: 100%; justify-content: flex-start; }
  .nav__call { display: grid; margin-left: auto; }

  /* Mobil hero: tek ekran, odak "Menüyü incele" butonunda */
  .hero { padding: 5.5rem 0 2.5rem; text-align: center; }
  .hero__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__art { order: -1; width: min(50vw, 250px); }
  .slice { width: 28%; }
  .pizza-badge { width: 31%; box-shadow: 0 0 0 0.2rem rgba(237, 227, 217, 0.28), 0 10px 20px -10px rgba(0, 0, 0, 0.55); }
  .pizza-tag { --t: 4.2rem; --o: 0.55rem; }
  .pizza-tag span { font-size: 0.95rem; margin-top: 0.7rem; }
  .pizza-tag small { font-size: 0.55rem; margin-top: -0.9rem; }
  .hero__title { font-size: clamp(2.9rem, 13vw, 4.4rem); margin: 1rem 0 1.4rem; }
  .hero__lead, .hero__facts { display: none; }
  .hero__actions { flex-direction: column; gap: 1.1rem; margin-top: 0; width: 100%; }
  .hero__cta {
    width: 100%; max-width: 22rem; justify-content: space-between;
    padding: 0.55rem 0.55rem 0.55rem 1.75rem;
    font-size: 1.08rem;
    position: relative;
    box-shadow: 0 0 0 6px rgba(237, 227, 217, 0.08), 0 18px 40px -12px rgba(201, 68, 44, 0.55);
  }
  .hero__cta::after {
    content: ""; position: absolute; inset: -6px; border-radius: inherit; pointer-events: none;
    box-shadow: 0 0 0 2px rgba(237, 227, 217, 0.35);
    opacity: 0;
    animation: cta-ring 2.8s var(--ease-out) infinite;
  }
  .hero__cta .btn__icon { width: 2.9rem; height: 2.9rem; }
  .hero__cta .btn__icon svg { width: 1.2rem; height: 1.2rem; }

  .menu__pizzas { grid-template-columns: 1fr; }
  .menu__drink-list { column-count: 1; padding-inline: 1.35rem; }
  .menu__drink-list .di:nth-child(5) { border-bottom: 1px solid rgba(14, 13, 11, 0.07); }
}

@keyframes cta-ring { 0% { opacity: 0.9; transform: scale(1); } 70%, 100% { opacity: 0; transform: scale(1.06, 1.3); } }
/* Kısa ekranlı telefonlar (iPhone SE vb.) */
@media (max-width: 860px) and (max-height: 700px) {
  .hero { padding-top: 5rem; }
  .hero__art { width: min(40vw, 190px); }
  .hero__title { font-size: 2.7rem; margin: 0.8rem 0 1.1rem; }
}

@media (max-width: 600px) {
  .visit__grid, .notes__grid { grid-template-columns: 1fr; }
  .visit__card--call { grid-column: auto; }
  .visit__card .bezel__core { min-height: 0; }
  .hero__facts { gap: 1.25rem; }
  .section-head { gap: 2rem; }
  .footer__row { justify-content: center; text-align: center; }
}

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

/* Tüm günler aynı saatteyse tek büyük satır */
.hours--single li { flex-direction: column-reverse; gap: 0.4rem; border: 0; padding: 0.6rem 0 0; }
.hours--single li span:first-child { font-size: 0.8rem; color: var(--muted-on-dark); }
.hours--single li span:last-child { font-family: var(--serif); font-weight: 350; font-size: clamp(2rem, 3vw, 2.6rem); letter-spacing: -0.03em; line-height: 1.05; color: var(--cream); }
.nowrap { white-space: nowrap; }
