:root {
  --bg: #f1eadf;
  --ink: #141312;
  --muted: #5e5852;
  --line: rgba(20, 19, 18, 0.14);
  --panel: rgba(255, 251, 246, 0.82);
  --accent: #a53a23;
  --accent-dark: #7b2918;
  --shadow: 0 28px 48px -24px rgba(48, 23, 12, 0.28);
  --container: min(1320px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #efe2d1 0%, #ead9c3 36%, #f4ede4 100%);
}

body.rtl {
  font-family: "Noto Sans Arabic", "Outfit", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.chrome-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(20, 19, 18, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 19, 18, 0.045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 90%);
}

.page-frame {
  position: relative;
  min-height: 100dvh;
}

.site-header,
.hero,
.marquee-band,
.story,
.menu-block,
.plates,
.visit,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 0 18px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-tag,
.eyebrow,
.site-nav a,
.hero-meta span,
.note-label,
.visit-grid span,
.menu-intro,
.lang-button,
.site-cta,
.button {
  font-family: "IBM Plex Mono", monospace;
}

body.rtl .brand-tag,
body.rtl .eyebrow,
body.rtl .site-nav a,
body.rtl .hero-meta span,
body.rtl .note-label,
body.rtl .visit-grid span,
body.rtl .menu-intro,
body.rtl .lang-button,
body.rtl .site-cta,
body.rtl .button {
  font-family: "Noto Sans Arabic", sans-serif;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  gap: 28px;
}

.site-nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  display: inline-flex;
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.68);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0 14px;
  min-height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.lang-button.is-active {
  background: var(--ink);
  color: #fff7f0;
}

.site-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.site-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.site-cta {
  color: #fff7f0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
  padding: 28px 0 34px;
}

.hero-copy {
  padding: 18px 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.hero-meta strong,
.visit-grid strong {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(1.62rem, 3.6vw, 3.12rem);
  line-height: 0.92;
}

.hero-text,
.story-grid p,
.note-block p,
.visit-grid p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.button-primary {
  background: var(--accent);
  color: #fff7ef;
}

.button-secondary {
  border: 1px solid var(--line);
  background: transparent;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-meta div,
.story-grid article,
.menu-panel,
.note-block,
.visit-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.hero-meta div {
  padding: 16px;
}

.hero-meta span,
.note-label,
.visit-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-meta strong {
  font-size: 1rem;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  padding-right: 72px;
}

.hero-plate,
.story-photo,
.plate-wide {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-plate {
  width: min(100%, 940px);
  aspect-ratio: 16 / 10;
  margin-left: auto;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.hero-visual img,
.story-photo img,
.plate-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat {
  padding: 18px;
  color: #fff8f0;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow);
}

.hero-stat span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 248, 240, 0.72);
}

.hero-stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-stat-float {
  position: absolute;
  top: 18px;
  right: 0;
  width: 252px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 42px;
  padding: 16px 0;
  min-width: max-content;
  animation: marquee 24s linear infinite;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.rtl .marquee-track {
  font-family: "Noto Sans Arabic", sans-serif;
}

.story,
.menu-block,
.plates,
.visit {
  padding: 84px 0 0;
}

.section-kicker,
.menu-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.94;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 30px;
}

.story-photo {
  aspect-ratio: 5 / 4;
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.story-right h2 {
  margin-top: 44px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.story-grid article {
  padding: 22px;
}

.story-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}

body.rtl .story-grid span {
  font-family: "Noto Sans Arabic", sans-serif;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-panel {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

h3 {
  margin-bottom: 10px;
  font-size: 2rem;
  line-height: 0.96;
}

.menu-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.menu-panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.menu-panel li:first-child {
  border-top: 0;
  padding-top: 0;
}

.menu-split-row {
  align-items: start;
}

.menu-split-text,
.menu-split-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-split-price {
  align-items: flex-end;
}

.menu-panel strong {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  text-align: right;
  white-space: nowrap;
}

body.rtl .menu-panel strong {
  font-family: "Noto Sans Arabic", sans-serif;
  text-align: left;
}

body.rtl .menu-split-price {
  align-items: flex-start;
}

.plates-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 22px;
  align-items: start;
}

.plate-wide {
  min-height: 520px;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.plates-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 8px;
  text-align: left;
}

.plates-copy h2 {
  max-width: 9.5ch;
}

.note-block {
  padding: 24px;
}

.visit-header {
  margin-bottom: 24px;
}

.visit-header h2 {
  max-width: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.visit-grid article {
  padding: 20px;
}

.visit-grid strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
}

.site-footer {
  padding: 52px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 84px;
}

.site-footer p {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
}

body.rtl {
  direction: rtl;
}

body.rtl .site-header,
body.rtl .hero,
body.rtl .section-kicker,
body.rtl .menu-heading,
body.rtl .plates-grid,
body.rtl .hero-visual {
  direction: rtl;
}

body.rtl .brand,
body.rtl .hero-actions,
body.rtl .header-actions {
  flex-direction: row-reverse;
}

body.rtl .site-nav {
  justify-self: center;
}

body.rtl .hero-copy,
body.rtl .story-grid article,
body.rtl .menu-panel,
body.rtl .note-block,
body.rtl .visit-grid article,
body.rtl .site-footer p {
  text-align: right;
}

body.rtl .hero-stat-float {
  right: auto;
  left: 18px;
}

body.rtl .menu-panel li,
body.rtl .hero-meta,
body.rtl .visit-grid {
  direction: rtl;
}

body.rtl .plates-copy {
  align-items: flex-start;
}

body.rtl .visit-header {
  text-align: right;
}

body.rtl .visit-header h2 {
  margin-inline-start: auto;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .section-kicker,
  .menu-heading,
  .story-shell,
  .menu-grid,
  .plates-grid,
  .visit-grid,
  .hero-meta {
    grid-template-columns: 1fr;
  }

  .site-header {
    justify-items: start;
  }

  body.rtl .site-header {
    justify-items: stretch;
  }

  .site-nav {
    justify-self: start;
    flex-wrap: wrap;
    gap: 16px;
  }

  body.rtl .site-nav {
    justify-self: start;
  }

  .hero-visual {
    padding-right: 0;
    padding-top: 92px;
  }

  .hero-plate {
    width: 100%;
  }

  .hero-stat-float {
    top: 0;
    right: 0;
  }

  body.rtl .hero-stat-float {
    left: 0;
  }

  .visit-header h2,
  .plates-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 20px, 100%);
  }

  .site-header {
    gap: 14px;
    padding-top: 14px;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .lang-switcher,
  .site-cta {
    width: 100%;
  }

  .lang-button {
    flex: 1;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: space-between;
    gap: 14px;
  }

  .site-cta,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4.2rem);
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .plate-wide {
    min-height: 360px;
  }

  .hero-stat-float {
    width: min(252px, 78%);
  }

  .story,
  .menu-block,
  .plates,
  .visit {
    padding-top: 64px;
  }
}
