:root {
  --night-0: #030814;
  --night-1: #061123;
  --night-2: #0a1d3d;
  --night-3: #0f2a55;
  --night-4: #163a73;
  --ivory: #f7efe1;
  --ivory-dim: rgba(247, 239, 225, 0.72);
  --ivory-faint: rgba(247, 239, 225, 0.42);
  --gold: #f5d76e;
  --gold-soft: #ecc858;
  --line: rgba(247, 239, 225, 0.12);
  --line-strong: rgba(247, 239, 225, 0.22);

  --font-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-script: 'Caveat', 'Brush Script MT', cursive;

  --ease-out: cubic-bezier(.22, .9, .32, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);

  --container: 1240px;
}

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

html, body {
  background: var(--night-0);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

html { scroll-behavior: smooth; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--night-1); }

body {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(22, 58, 115, 0.55), transparent 60%),
    radial-gradient(ellipse at 100% 30%, rgba(15, 42, 85, 0.55), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(10, 29, 61, 0.7), transparent 60%),
    linear-gradient(180deg, #030814 0%, #050f24 40%, #03091a 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

/* ============================================
   LOADER
============================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--night-0);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
}
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.loader-inner img {
  width: 180px; height: auto;
  opacity: 0; transform: scale(.92);
  animation: logoIn 1.1s var(--ease-out) forwards;
}
.loader-bar {
  width: 220px; height: 2px;
  background: rgba(247, 239, 225, 0.1);
  overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loadBar 1.4s var(--ease-out) forwards;
}
@keyframes logoIn { to { opacity: 1; transform: scale(1); } }
@keyframes loadBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ============================================
   ATMOSPHERE: sky (top) + city (bottom)
============================================ */
.scene-sky {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  opacity: 0.95;
}
.sky-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Konya silhouette: backdrop inside footer */
.footer-silhouette {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  width: 100%;
  height: 460px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  will-change: transform, opacity;
}
.footer-silhouette img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  /* SVG feColorMatrix: siyah silüet → koyu mavi (#163a73), açık gri zemin → şeffaf, kenar yumuşatması korunur */
  filter: url(#silhouette-colorize);
}

/* Twinkling specific stars only */
.stars-twinkle .t1 { animation: twinkleStar 3.2s ease-in-out infinite; }
.stars-twinkle .t2 { animation: twinkleStar 4.4s ease-in-out infinite 1.1s; }
.stars-twinkle .t3 { animation: twinkleStar 5.2s ease-in-out infinite 0.6s; }
@keyframes twinkleStar {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

@media (max-width: 900px) {
  .scene-sky { height: 100vh; }
  .footer { padding-top: 60px; padding-bottom: 30px; background: #020611; }
  .footer-silhouette { display: none; }
}

/* ============================================
   NAV — floating logo pill
============================================ */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 28px;
  background: rgba(5, 12, 26, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(247, 239, 225, 0.14);
  border-radius: 100px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: padding .4s var(--ease-soft), background .4s var(--ease-soft), top .4s var(--ease-soft);
}
.nav.scrolled {
  background: rgba(5, 12, 26, 0.78);
  padding: 8px 22px;
  top: 14px;
}
.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 38px; width: auto; transition: height .4s var(--ease-soft); }
.nav.scrolled .nav-logo img { height: 30px; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 180px 80px 100px 140px;
  z-index: 2;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 45%, rgba(22, 58, 115, 0.5), transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.hero-inner {
  max-width: 720px;
  text-align: left;
  position: relative;
  z-index: 2;
  margin-right: auto;
}

/* Eyebrow pinned at top-center, directly below the floating logo */
.hero-eyebrow-pinned {
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 0 !important;
  z-index: 3;
  white-space: nowrap;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  padding: 8px 16px;
}
.hero-eyebrow strong {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: .5; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.hero-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(52px, 7.6vw, 118px);
  line-height: 1.0;
  letter-spacing: 0;
  margin-bottom: 32px;
  word-spacing: 0.02em;
}
.hero-title .line {
  display: block;
  padding: 0.08em 0 0.18em;
}
.hero-title .line:nth-child(2) {
  padding-left: 0.3em;
}
.hero-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  color: var(--ivory-dim);
  max-width: 540px;
  margin: 0 auto 44px 0;
  line-height: 1.55;
  text-align: center;
}
.hero-sub strong { color: var(--ivory); font-weight: 600; }

.hero-cta {
  display: inline-flex; gap: 14px;
  flex-wrap: wrap; justify-content: flex-start;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .35s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--ivory);
  color: var(--night-1);
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245, 215, 110, 0.25);
}
.btn-primary svg { transition: transform .35s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ivory-dim);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.scroll-cue .line-anim {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--ivory-dim), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line-anim::after {
  content: '';
  position: absolute; top: -50%; left: 0; right: 0;
  height: 50%;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* ============================================
   Q&A sections
============================================ */
.qa {
  position: relative;
  padding: 100px 36px;
  z-index: 2;
}
.qa-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.qa-question {
  display: flex; flex-direction: column;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 14px;
}
.q-icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245, 215, 110, 0.08);
  border: 1px solid rgba(245, 215, 110, 0.22);
  color: var(--gold);
  margin-bottom: 4px;
}
.q-title {
  font-family: var(--font-script);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 108px);
  line-height: 1.0;
  letter-spacing: 0;
  max-width: 18ch;
}
.q-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.q-title .reveal-line {
  display: inline-block;
  vertical-align: top;
  padding: 0.08em 0 0.18em;
}
.q-hint {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 10px;
}
.q-hint strong { color: var(--gold); font-weight: 600; }

/* ABOUT */
.qa-about .qa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.qa-about .qa-question { margin-bottom: 0; }
.answer-text {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
  color: var(--ivory-dim);
  margin-bottom: 36px;
}
.answer-text strong { color: var(--ivory); font-weight: 600; }
.answer-bullets {
  list-style: none;
  border-top: 1px solid var(--line);
}
.answer-bullets li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ivory-dim);
}
.answer-bullets li strong { color: var(--gold); font-weight: 600; }
.bullet-num {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  width: 16px;
  font-weight: 700;
}

/* MENU / Horizontal rail */
.dish-rail-wrap {
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.dish-rail-wrap::before,
.dish-rail-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 2;
}
.dish-rail-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--night-0) 10%, transparent);
}
.dish-rail-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--night-0) 10%, transparent);
}
.dish-rail {
  display: flex;
  gap: 24px;
  padding: 6px max(36px, calc((100vw - var(--container)) / 2 + 36px)) 30px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.dish-rail::-webkit-scrollbar { display: none; }

.rail-btn {
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  z-index: 5;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(5, 12, 26, 0.78);
  border: 1px solid rgba(247, 239, 225, 0.18);
  color: var(--ivory);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.rail-btn-prev { left: 24px; }
.rail-btn-next { right: 24px; }
.rail-btn:hover {
  background: var(--gold);
  color: var(--night-1);
  border-color: var(--gold);
  box-shadow: 0 14px 40px rgba(245, 215, 110, 0.3);
}

.dish-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(15, 42, 85, 0.4), rgba(6, 17, 35, 0.2));
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
  position: relative;
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}
.dish-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.dish-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-meta {
  padding: 26px 28px 30px;
}
.dish-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 215, 110, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.dish-meta h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.dish-meta p {
  font-size: 14px;
  color: var(--ivory-dim);
  line-height: 1.55;
}

/* LOCATIONS */
.branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.branch {
  position: relative;
  background: linear-gradient(140deg, rgba(15, 42, 85, 0.6), rgba(6, 17, 35, 0.35));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px 40px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
  display: block;
}
.branch:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.branch-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(245, 215, 110, 0.3);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.branch-body h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.branch-city {
  font-size: 14px;
  color: var(--ivory-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.branch-hours {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--ivory-dim);
  background: rgba(245, 215, 110, 0.06);
  border: 1px solid rgba(245, 215, 110, 0.2);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.branch-hours svg { color: var(--gold); }
.branch-cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ivory);
  transition: gap .35s var(--ease-out), color .35s var(--ease-out);
}
.branch:hover .branch-cta { gap: 16px; color: var(--gold); }
.branch-shine {
  position: absolute;
  top: -50%; right: -30%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 215, 110, 0.13), transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .6s var(--ease-out);
}
.branch:hover .branch-shine { opacity: 1; }

/* SOCIAL */
.social-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.social-card {
  display: flex; align-items: center;
  gap: 24px;
  padding: 32px 36px;
  background: linear-gradient(140deg, rgba(15, 42, 85, 0.6), rgba(6, 17, 35, 0.35));
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(140deg, transparent, rgba(245, 215, 110, 0.08), transparent);
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
}
.social-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.social-card:hover::before { opacity: 1; }
.social-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(245, 215, 110, 0.08);
  color: var(--gold);
  flex-shrink: 0;
  transition: background .35s var(--ease-out);
}
.social-card:hover .social-icon {
  background: var(--gold);
  color: var(--night-1);
}
.social-meta {
  display: flex; flex-direction: column;
  flex: 1;
}
.social-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 4px;
}
.social-handle {
  font-size: 18px;
  font-weight: 500;
  color: var(--ivory);
}
.social-arrow {
  color: var(--ivory-dim);
  transition: transform .4s var(--ease-out), color .35s var(--ease-out);
}
.social-card:hover .social-arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}

.social-feed {
  margin: 56px auto 0;
  max-width: 880px;
  text-align: center;
}
.social-feed-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 18px;
}
.social-feed-frame {
  width: 100%;
  min-height: 200px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(15, 42, 85, 0.4), rgba(6, 17, 35, 0.25));
  border: 1px solid rgba(247, 239, 225, 0.08);
}
.social-feed-frame behold-widget {
  display: block;
  width: 100%;
}

/* ============================================
   CLOSING
============================================ */
.closing {
  position: relative;
  padding: 130px 36px 110px;
  text-align: center;
  z-index: 2;
}
.closing-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 28px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.closing-title {
  font-family: var(--font-script);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: 0;
  margin-bottom: 60px;
  padding: 0.1em 0 0.1em;
}
.closing-title span { display: block; padding: 0.04em 0; }
.closing-title em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}
.closing-hours {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--ivory);
  background: rgba(245, 215, 110, 0.08);
  border: 1px solid rgba(245, 215, 110, 0.28);
  padding: 10px 20px;
  border-radius: 100px;
  margin: 0 auto 50px;
  letter-spacing: 0.04em;
}
.closing-hours svg { color: var(--gold); }
.closing-hours strong { color: var(--gold); font-weight: 600; }

.closing-logo {
  max-width: 220px;
  margin: 0 auto;
  opacity: .9;
}

/* ============================================
   FOOTER
============================================ */
.footer {
  position: relative;
  padding: 460px 36px 40px;
  background: linear-gradient(180deg, transparent 0, transparent 460px, #020611 460px, #020611 100%);
  z-index: 3;
  overflow: hidden;
  isolation: isolate;
}
.footer-inner {
  position: relative;
  z-index: 2;
  padding-top: 30px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-brand img { height: 50px; opacity: .9; }
.footer-hours {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ivory-dim);
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.footer-hours svg { color: var(--gold); }
.footer-links {
  display: flex; gap: 28px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ivory-dim);
}
.footer-links a { transition: color .25s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 12px;
  color: var(--ivory-faint);
  letter-spacing: 0.05em;
}

/* CKYS imza — gömülü görünüm + hover neon */
.ckys-mark {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(247, 239, 225, 0.28);
  text-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 -1px 1px rgba(0, 0, 0, 0.55);
  -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(255,255,255,0.02));
  -webkit-background-clip: text;
          background-clip: text;
  padding: 2px 4px;
  border-radius: 4px;
  cursor: default;
  transition:
    color .35s var(--ease-out),
    text-shadow .45s var(--ease-out),
    letter-spacing .4s var(--ease-out);
}
.ckys-mark:hover {
  color: #f5d76e;
  -webkit-text-stroke: 0px transparent;
  letter-spacing: 0.22em;
  text-shadow:
    0 0 4px rgba(245, 215, 110, 0.7),
    0 0 12px rgba(245, 215, 110, 0.55),
    0 0 22px rgba(245, 215, 110, 0.35),
    0 0 36px rgba(245, 215, 110, 0.2);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .nav { padding: 8px 20px; top: 14px; }
  .nav.scrolled { padding: 6px 18px; top: 10px; }
  .nav-logo img { height: 32px; }
  .nav.scrolled .nav-logo img { height: 26px; }
  .hero { padding: 150px 20px 80px; justify-content: center; }
  .hero-inner { text-align: center; }
  .hero-eyebrow-pinned { top: 78px; font-size: 11px; padding: 6px 12px; }
  .hero-sub { margin: 0 auto 44px; }
  .hero-cta { justify-content: center; }
  .qa { padding: 70px 20px; }
  .qa-about .qa-inner { grid-template-columns: 1fr; gap: 50px; }
  .qa-question { margin-bottom: 50px; }
  .branches { grid-template-columns: 1fr; }
  .social-cards { grid-template-columns: 1fr; }
  .dish-card { flex: 0 0 280px; }
  .dish-rail { padding-left: 20px; padding-right: 20px; gap: 16px; }
  .dish-rail-wrap::before, .dish-rail-wrap::after { width: 40px; }
  .rail-btn { width: 46px; height: 46px; }
  .rail-btn-prev { left: 10px; }
  .rail-btn-next { right: 10px; }
  .q-icon { width: 48px; height: 48px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .closing { padding: 120px 20px 100px; }
}

@media (max-width: 600px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .social-card { padding: 22px 22px; gap: 16px; }
  .social-icon { width: 52px; height: 52px; }
  .social-handle { font-size: 15px; }
  .branch { padding: 30px 26px; }
  .dish-card { flex: 0 0 78vw; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
