:root {
  --bg-dark: #0b0b0c;
  --bg-dark-2: #111113;
  --bg-light: #f5f5f7;
  --text-dark: #1d1d1f;
  --text-light: #f5f5f7;
  --text-muted: #86868b;
  --accent: #d4a051;
  --accent-dark: #b8863a;
  --border-light: rgba(0,0,0,.08);
  --radius: 20px;
  --nav-h: 52px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ================= ACCESSIBILITY ================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: #fff;
  color: #1d1d1f;
  border: 2px solid #1d1d1f;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

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

/* ================= NAV ================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(11,11,12,.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease;
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  gap: 20px;
}
.nav__brand { display: flex; align-items: center; }
.nav__logo { height: 30px; width: auto; filter: brightness(0) invert(1); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: #fff; }
.nav__right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s;
}
.lang-toggle:hover { background: rgba(255,255,255,.22); }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span {
  display: block; width: 18px; height: 2px; background: #fff; margin: 4px 0; transition: .25s;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 22px 120px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: .28;
  transform: scale(1.05);
  filter: saturate(.85);
}
.hero__content { position: relative; z-index: 2; max-width: 900px; }
.hero__eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: .35em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-bottom: 22px;
  background: linear-gradient(180deg, #fff 40%, rgba(255,255,255,.55));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__subtitle {
  font-size: clamp(16px, 2.4vw, 21px);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__plate {
  position: relative; z-index: 2;
  margin-top: 64px;
  width: min(900px, 92vw);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
}
.hero__plate img { width: 100%; height: auto; }

/* ================= MARQUEE ================= */
.marquee {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: scroll 30s linear infinite;
  white-space: nowrap;
}
.marquee__track span { color: rgba(255,255,255,.4); font-size: 14px; font-weight: 600; letter-spacing: .22em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================= SECTIONS ================= */
.section { padding: 110px 22px; }
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--light { background: var(--bg-light); color: var(--text-dark); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.eyebrow {
  font-size: 14px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; margin-bottom: 16px; color: var(--accent);
}
.section--dark .eyebrow { color: var(--accent); }
.section--light .eyebrow { color: var(--accent-dark); }
.section__title {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section__lead { font-size: clamp(15px, 2vw, 19px); color: inherit; opacity: .68; max-width: 560px; margin: 0 auto; }

/* ================= SIGNATURE ================= */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.sig-card { border-radius: var(--radius); overflow: hidden; background: var(--bg-dark-2); transition: transform .35s ease; }
.sig-card:hover { transform: translateY(-6px); }
.sig-card__media { aspect-ratio: 1/1; overflow: hidden; }
.sig-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sig-card:hover .sig-card__media img { transform: scale(1.06); }
.sig-card__name { font-size: 20px; font-weight: 700; margin: 18px 20px 4px; }
.sig-card__desc { font-size: 14px; color: rgba(255,255,255,.6); margin: 0 20px 20px; }

/* ================= MENU ================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.menu-card__media { aspect-ratio: 4/3; overflow: hidden; }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.menu-card:hover .menu-card__media img { transform: scale(1.05); }
.menu-card__body { padding: 20px 22px 24px; position: relative; }
.menu-card__name { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.menu-card__desc { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.menu-card__tag {
  display: inline-block;
  background: #f6e9d5;
  color: var(--accent-dark);
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  border-radius: 20px; padding: 4px 12px; text-transform: uppercase;
}

/* ================= ORDER ================= */
.order__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.order__media { border-radius: var(--radius); overflow: hidden; }
.order__media img { width: 100%; height: 100%; object-fit: cover; }
.order__content { text-align: left; }
.order__content .section__title, .order__content .section__lead { margin-left: 0; }
.order__buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.order-btn {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text-light);
  transition: background .2s, border-color .2s, transform .2s;
}
.order-btn:hover { background: #1c1c1f; border-color: rgba(255,255,255,.25); transform: translateY(-2px); }
.order-btn__name { font-weight: 700; font-size: 16px; }
.order-btn__meta { font-size: 12px; color: rgba(255,255,255,.5); }
.order-btn--soon { opacity: .55; }
.order-btn--soon:hover { transform: none; }

/* ================= LOCATIONS ================= */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.loc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s ease;
}
.loc-card:hover { transform: translateY(-4px); }
.loc-card--hero { background: var(--bg-dark); color: #fff; }
.loc-card__name { font-size: 22px; font-weight: 800; }
.loc-card__sub { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: .04em; }
.loc-card__addr { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.loc-card--hero .loc-card__addr { color: rgba(255,255,255,.6); }
.loc-card__order { margin-top: auto; font-size: 13px; font-weight: 700; color: var(--accent-dark); }
.loc-card__order:hover { text-decoration: underline; }
.loc-card--hero .loc-card__order { color: var(--accent); }
.loc-card__order--soon { color: var(--text-muted); font-weight: 500; }

/* ================= ABOUT ================= */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.about__content { text-align: left; }
.about__content .section__title, .about__content .section__lead { margin-left: 0; }
.about__content .section__lead { margin-bottom: 30px; }
.about__media { border-radius: var(--radius); overflow: hidden; }
.about__media img { width: 100%; height: 100%; object-fit: cover; }

/* ================= FOOTER ================= */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 70px 22px 30px; }
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 60px; flex-wrap: wrap;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { flex: 1 1 260px; }
.footer__logo { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer__tag { font-size: 13px; color: rgba(255,255,255,.55); }
.footer__cols { flex: 2 1 500px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer__col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 10px; }
.footer__col a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { max-width: 1100px; margin: 0 auto; padding-top: 24px; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__links.nav__links--open {
    display: flex; flex-direction: column; gap: 18px;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(11,11,12,.96);
    padding: 28px 24px;
    align-items: flex-start;
  }
  .nav__links.nav__links--open a { font-size: 17px; }
  .nav__burger { display: block; }
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .order__inner, .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .order__content { text-align: center; }
  .order__content .section__title, .order__content .section__lead { margin-left: auto; }
  .order__buttons { max-width: 420px; margin: 30px auto 0; }
}

@media (max-width: 560px) {
  .sig-grid, .menu-grid, .loc-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 0; padding: calc(var(--nav-h) + 60px) 18px 90px; }
  .section { padding: 80px 18px; }
}
