/* ============================================
   Vüsalın Dönəri — Production Styles
   Variant A "Ocaq" — premium dark cinematic
   Responsive: ≥768px desktop, <768px mobile
   ============================================ */

:root {
  --bg: #0a0807;
  --bg-2: #14100d;
  --bg-3: #1f1814;
  --ink: #f5ede0;
  --ink-dim: #a89888;
  --ink-faint: #5a4d40;
  --ember: #f37021;
  --ember-bright: #ff8a3d;
  --ember-deep: #c4471a;
  --gold: #f5c542;
  --line: rgba(245, 237, 224, 0.10);
  --line-strong: rgba(245, 237, 224, 0.22);
  --max: 1280px;
  --pad-x: 56px;
  --pad-x-m: 20px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body { overflow-x: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.display { font-family: "Unbounded", sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 0.92; }
.italic { font-family: "Fraunces", serif; font-style: italic; font-weight: 700; }
.mono { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.nav__mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  flex-shrink: 0;
  border: 1px solid rgba(243, 112, 33, 0.55);
  background: var(--bg-2);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.08);
}
.nav__name { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 17px; letter-spacing: -0.02em; line-height: 1; }
.nav__name em { font-family: "Fraunces", serif; font-style: italic; color: var(--ember); font-weight: 700; }
.nav__links { display: flex; gap: 32px; }
.nav__link {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
.nav__link:hover, .nav__link.active { color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ember); color: #1a0d05;
  padding: 10px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  border: none;
  transition: transform .2s, background .2s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--ember-bright); transform: translateY(-1px); }
.nav__hamburger {
  display: none;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink);
  align-items: center; justify-content: center;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 80px var(--pad-x) 0;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: end;
  min-height: 720px;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 400px at 75% 30%, rgba(243, 112, 33, 0.18), transparent 60%),
    radial-gradient(ellipse 400px 300px at 20% 80%, rgba(243, 112, 33, 0.08), transparent 60%);
}
.hero__left { position: relative; z-index: 2; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 32px;
}
.hero__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 12px var(--ember); }
.hero__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-size: clamp(56px, 10vw, 124px);
  margin: 0 0 28px;
}
.hero__title em {
  color: var(--ember);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 700;
}
.hero__sub {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0 0 40px;
}
.hero__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ember); color: #1a0d05;
  padding: 16px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  border: none;
  transition: background .25s;
}
.btn-primary:hover { background: var(--ember-bright); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink); padding: 16px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  border: 1px solid var(--line-strong); background: transparent;
  transition: border-color .25s;
}
.btn-ghost:hover { border-color: var(--ink-dim); }

.hero__right { position: relative; z-index: 2; padding-bottom: 56px; }
.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: -28px; left: -28px;
  width: 140px; height: 140px;
  background: var(--ember); color: #1a0d05;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  border: 6px solid var(--bg);
  font-family: "Unbounded", sans-serif;
  font-weight: 800; line-height: 1;
}
.hero__badge-num { font-size: 48px; }
.hero__badge-lbl { font-size: 9px; letter-spacing: 0.15em; margin-top: 4px; }

.hero__meta {
  position: absolute; bottom: 56px; right: 56px;
  display: flex; flex-direction: column; gap: 20px;
  text-align: right;
  z-index: 3;
}
.hero__meta .num { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 32px; line-height: 1; color: var(--ember); }
.hero__meta .lbl { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ============================================
   TICKER
   ============================================ */
.ticker {
  margin-top: 80px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex; gap: 48px; align-items: center;
  animation: scroll 40s linear infinite;
  will-change: transform;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 48px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700; font-size: 28px; letter-spacing: -0.01em;
}
.ticker__item em { color: var(--ember); font-family: "Fraunces", serif; font-style: italic; }
.ticker__sep { color: var(--ember); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ============================================
   SECTION
   ============================================ */
.section { padding: 120px var(--pad-x); max-width: var(--max); margin: 0 auto; }
.section--tight { padding-top: 0; }
.section__head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 64px; gap: 48px; }
.section__eyebrow { display: flex; align-items: center; gap: 12px; color: var(--ember); margin-bottom: 16px; font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.section__eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--ember); }
.section__title { font-family: "Unbounded", sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 0.92; font-size: clamp(40px, 6vw, 72px); max-width: 700px; margin: 0; }
.section__title em { color: var(--ember); font-family: "Fraunces", serif; font-style: italic; font-weight: 700; }

/* ============================================
   FEATURED MENU CARDS (home)
   ============================================ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-2);
  transition: border-color .3s, transform .3s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.menu-card:hover { border-color: var(--ember); transform: translateY(-4px); }
.menu-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-3); }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.menu-card:hover .menu-card__img img { transform: scale(1.05); }
.menu-card__body { padding: 24px; }
.menu-card__top { display: flex; justify-content: space-between; align-items: start; gap: 12px; margin-bottom: 8px; }
.menu-card__title { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; }
.menu-card__cat { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.menu-card__price { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 18px; color: var(--ember); white-space: nowrap; }
.menu-card__desc { color: var(--ink-dim); font-size: 13px; line-height: 1.5; margin-top: 12px; }
.menu-card__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--ember); color: #1a0d05;
  padding: 4px 10px; border-radius: 999px;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============================================
   STORY
   ============================================ */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story__media { position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden; background: var(--bg-2); border: 1px solid var(--line); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__quote {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px; border-radius: 14px; border: 1px solid var(--line);
  font-family: "Fraunces", serif; font-style: italic; font-size: 16px; line-height: 1.4;
}
.story__quote-attrib { display: inline-block; margin-top: 8px; font-family: "Manrope", sans-serif; font-style: normal; font-size: 12px; color: var(--ember); }
.story__copy h3 {
  font-family: "Unbounded", sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 56px); line-height: 0.95; letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.story__copy h3 em { color: var(--ember); font-family: "Fraunces", serif; font-style: italic; font-weight: 700; }
.story__copy p { font-size: 16px; line-height: 1.6; color: var(--ink-dim); margin: 0 0 16px; }
.story__copy p:first-of-type { color: var(--ink); font-size: 18px; }
.story__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.story__stat .num { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 40px; line-height: 1; color: var(--ember); letter-spacing: -0.02em; }
.story__stat .lbl { font-size: 12px; color: var(--ink-dim); margin-top: 6px; letter-spacing: 0.05em; }

/* ============================================
   PROCESS / 3 STEPS
   ============================================ */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process__step { padding: 32px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px; }
.process__num { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 64px; line-height: 1; color: var(--ember); margin-bottom: 24px; letter-spacing: -0.04em; }
.process__title { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 12px; }
.process__desc { font-size: 14px; color: var(--ink-dim); line-height: 1.5; margin: 0; }

/* ============================================
   MENU PAGE
   ============================================ */
.menu-page__cat { margin-bottom: 80px; }
.menu-page__cat:last-child { margin-bottom: 0; }
.menu-page__cat-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; margin-bottom: 32px;
  padding-bottom: 24px; border-bottom: 1px solid var(--line-strong);
}
.menu-page__cat-thumb {
  width: 120px; height: 120px;
  border-radius: 12px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--line-strong);
}
.menu-page__cat-thumb img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.1); }
.menu-page__cat-meta { flex: 1; }
.menu-page__cat-title {
  font-family: "Unbounded", sans-serif; font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.03em; line-height: 1; margin: 0;
}
.menu-page__cat-title em { color: var(--ember); font-family: "Fraunces", serif; font-style: italic; font-weight: 700; }
.menu-page__cat-sub { color: var(--ink-dim); font-size: 14px; text-align: right; max-width: 240px; }

.menu-page__items { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.menu-page__item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px; padding: 20px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.menu-page__item-name { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.menu-page__item-name.featured { color: var(--gold); }
.menu-page__item-desc { font-size: 12px; color: var(--ink-dim); margin-top: 4px; line-height: 1.4; }
.menu-page__item-price { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 22px; color: var(--ember); white-space: nowrap; letter-spacing: -0.02em; }

.menu-page__intro {
  max-width: 280px; color: var(--ink-dim);
  font-size: 14px; line-height: 1.5; margin: 0;
}
.menu-page__intro a { color: var(--ember); text-decoration: none; }
.menu-page__intro a:hover { text-decoration: underline; }

/* ============================================
   CONTACT
   ============================================ */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 20px; padding: 28px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 20px;
  text-decoration: none; color: inherit;
  transition: border-color .2s;
}
.contact-card:hover { border-color: var(--ember); }
.contact-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(243, 112, 33, 0.12); color: var(--ember);
  border-radius: 12px;
}
.contact-card__body { flex: 1; min-width: 0; }
.contact-card__lbl { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; font-family: "JetBrains Mono", ui-monospace, monospace; }
.contact-card__val { font-family: "Unbounded", sans-serif; font-weight: 700; font-size: 20px; letter-spacing: -0.01em; word-break: break-word; }
.contact-card__sub { font-size: 13px; color: var(--ink-dim); margin-top: 4px; }
.contact-card__hours { display: flex; justify-content: space-between; gap: 24px; margin-top: 6px; }
.contact-card__hours:first-of-type { margin-top: 4px; }
.contact-card__hours-day { font-size: 14px; }
.contact-card__hours-time { font-family: "Unbounded", sans-serif; font-weight: 700; color: var(--ember); font-size: 14px; }

.contact__map {
  position: relative;
  border-radius: 24px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line);
  min-height: 480px;
}
.contact__map-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(0.4) brightness(0.6); }
.contact__map-fade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 7, 0.95)); }
.contact__map-text { position: absolute; bottom: 32px; left: 32px; right: 32px; color: #fff; }
.contact__map-text .mono { color: var(--ember); margin-bottom: 8px; }
.contact__map-text-addr { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: clamp(22px, 3vw, 32px); line-height: 1; letter-spacing: -0.02em; margin-bottom: 8px; }
.contact__map-text-hint { font-size: 13px; color: var(--ink-dim); }
.contact__map-pin {
  position: absolute; top: 32px; right: 32px;
  width: 56px; height: 56px;
  background: var(--ember); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #1a0d05;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { padding: 64px var(--pad-x) 32px; max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); margin-top: 80px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid var(--line);
}
.footer__brand-name { font-family: "Unbounded", sans-serif; font-weight: 800; font-size: 28px; letter-spacing: -0.02em; margin-bottom: 12px; }
.footer__brand-name em { color: var(--ember); font-family: "Fraunces", serif; font-style: italic; font-weight: 700; }
.footer__brand-desc { color: var(--ink-dim); font-size: 14px; line-height: 1.5; max-width: 320px; margin: 0; }
.footer__col-title { font-size: 11px; color: var(--ink-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col a, .footer__col p { display: block; color: var(--ink); font-size: 14px; text-decoration: none; margin: 0 0 8px; line-height: 1.5; }
.footer__col a:hover { color: var(--ember); }
.footer__col p span { color: var(--ember); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 12px; color: var(--ink-faint); gap: 16px; flex-wrap: wrap; }

/* ============================================
   MEGA MARQUEE
   ============================================ */
.mega { text-align: center; padding: 80px var(--pad-x) 40px; max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); }
.mega__text {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(80px, 18vw, 240px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-faint);
  margin: 0;
}
.mega__text em {
  color: var(--ember);
  -webkit-text-stroke: 1px var(--ember);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 700;
}

/* ============================================
   MOBILE DRAWER & TAB BAR
   ============================================ */
.mobile-drawer {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100;
  padding: 24px var(--pad-x-m);
  display: flex; flex-direction: column;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.32, .72, 0, 1);
  visibility: hidden;
}
.mobile-drawer.open { transform: translateY(0); visibility: visible; }
.mobile-drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-drawer__close {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.mobile-drawer__links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Unbounded", sans-serif;
  font-weight: 700; font-size: 28px; letter-spacing: -0.02em;
  color: var(--ink); text-decoration: none;
}
.mobile-drawer__link.active { color: var(--ember); }
.mobile-drawer__cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--ember); color: #1a0d05;
  padding: 18px; border-radius: 16px;
  font-size: 14px; font-weight: 700; text-decoration: none;
}

.mobile-tabbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 8, 7, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
  padding: 8px 8px calc(env(safe-area-inset-bottom, 0px) + 4px);
}
.mobile-tab {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 4px;
  color: var(--ink-dim);
  text-decoration: none;
}
.mobile-tab.active { color: var(--ember); }
.mobile-tab__lbl { font-size: 10px; font-weight: 600; letter-spacing: 0.02em; }

/* ============================================
   MOBILE BREAKPOINT < 768
   ============================================ */
@media (max-width: 767px) {
  :root { --pad-x: 20px; }

  body { padding-bottom: 64px; }

  .nav__inner { padding: 14px 20px; }
  .nav__name { font-size: 13px; }
  .nav__mark { width: 36px; height: 36px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }

  .hero {
    padding: 32px 20px 40px;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
    align-items: stretch;
  }
  .hero__glow {
    background: radial-gradient(ellipse 300px 250px at 80% 30%, rgba(243, 112, 33, 0.18), transparent 60%);
  }
  .hero__title { font-size: 56px; margin-bottom: 20px; }
  .hero__sub { font-size: 14px; margin-bottom: 24px; }
  .hero__right { padding-bottom: 0; order: -1; }
  .hero__media { aspect-ratio: 4 / 5; border-radius: 20px; }
  .hero__badge {
    bottom: 16px; left: auto; right: 16px;
    width: 88px; height: 88px;
    border-width: 0;
  }
  .hero__badge-num { font-size: 28px; }
  .hero__badge-lbl { font-size: 8px; }
  .hero__meta {
    position: static;
    flex-direction: row;
    text-align: left;
    margin-top: 20px;
    gap: 32px;
  }
  .hero__meta .num { font-size: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; padding: 16px; border-radius: 14px; }

  .ticker { margin-top: 0; padding: 14px 0; }
  .ticker__track { gap: 24px; }
  .ticker__item { gap: 24px; font-size: 16px; }

  .section { padding: 56px 20px; }
  .section__head { flex-direction: column; align-items: stretch; gap: 0; margin-bottom: 32px; }

  .menu-grid { grid-template-columns: 1fr; gap: 16px; }
  .menu-card { border-radius: 16px; }
  .menu-card__img { aspect-ratio: 16 / 9; }
  .menu-card__body { padding: 18px; }
  .menu-card__title { font-size: 18px; }
  .menu-card__price { font-size: 16px; }
  .menu-card__desc { font-size: 12px; margin-top: 10px; }

  .story { grid-template-columns: 1fr; gap: 24px; }
  .story__media { aspect-ratio: 4 / 5; border-radius: 20px; }
  .story__copy h3 { font-size: 36px; margin-bottom: 16px; }
  .story__copy p { font-size: 14px; }
  .story__copy p:first-of-type { font-size: 16px; }
  .story__stats { gap: 12px; margin-top: 24px; padding-top: 20px; }
  .story__stat .num { font-size: 28px; }
  .story__stat .lbl { font-size: 10px; }

  .process { grid-template-columns: 1fr; gap: 12px; }
  .process__step { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 16px; }
  .process__num { font-size: 36px; margin-bottom: 0; flex-shrink: 0; }
  .process__title { font-size: 16px; }
  .process__desc { font-size: 12px; }

  .menu-page__cat { margin-bottom: 40px; }
  .menu-page__cat-head {
    flex-direction: column; align-items: stretch; gap: 16px;
    padding-bottom: 16px; margin-bottom: 16px;
  }
  .menu-page__cat-thumb { width: 100%; height: 160px; }
  .menu-page__cat-title { font-size: 36px; }
  .menu-page__cat-sub { text-align: left; max-width: none; font-size: 12px; }
  .menu-page__items { grid-template-columns: 1fr; gap: 0; }
  .menu-page__item { padding: 14px 0; }
  .menu-page__item-name { font-size: 14px; }
  .menu-page__item-desc { font-size: 11px; }
  .menu-page__item-price { font-size: 16px; }

  .contact { grid-template-columns: 1fr; gap: 12px; }
  .contact-card { padding: 20px; gap: 14px; border-radius: 16px; }
  .contact-card__icon { width: 40px; height: 40px; border-radius: 10px; }
  .contact-card__val { font-size: 15px; }
  .contact__map { min-height: 240px; border-radius: 16px; }
  .contact__map-text { bottom: 16px; left: 16px; right: 16px; }
  .contact__map-pin { top: 16px; right: 16px; width: 40px; height: 40px; }

  .footer { padding: 40px 20px 24px; margin-top: 40px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 24px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand-name { font-size: 22px; }
  .footer__brand-desc { font-size: 13px; }
  .footer__col a, .footer__col p { font-size: 12px; }
  .footer__bottom { padding-top: 20px; font-size: 10px; }

  .mega { padding: 40px 20px 16px; margin-top: 0; }
  .mega__text { font-size: 56px; }

  .mobile-tabbar { display: grid; }
}
