@font-face {
  font-family: Nomad;
  src: url("style/fonts/Copperplate.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #101010;
  --muted: #5d6260;
  --paper: #f4f7f6;
  --panel: #ffffff;
  --line: #daded8;
  --accent: #e23b4b;
  --accent-2: #079e8f;
  --spark: #d7f85b;
  --shadow: 0 18px 45px rgba(16, 16, 16, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(244, 247, 246, 0.94), rgba(244, 247, 246, 0.98)),
    url("img/bg.jpg") center top / 720px auto repeat;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem max(1rem, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  font-family: Nomad, Georgia, serif;
  font-weight: 800;
  text-transform: uppercase;
}

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

.brand span {
  font-size: 0.82rem;
  line-height: 1.1;
}

.quick-nav {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
}

.quick-nav a,
.lang-btn,
.category-rail button,
.pdf-actions a {
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
}

.quick-nav a {
  padding: 0.75rem 0.9rem;
  white-space: nowrap;
}

.intro,
.feature-grid,
.menu-shell,
.download-band,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  align-items: stretch;
  gap: 1rem;
  min-height: 520px;
  padding: 1rem 0;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-copy .eyebrow {
  color: var(--spark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Nomad, Georgia, serif;
  text-transform: uppercase;
}

h1 {
  font-size: 5rem;
  line-height: 0.9;
}

.page-menu h1 {
  font-size: 2.5rem;
  line-height: 1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1;
}

h3 {
  font-size: 1.6rem;
}

.intro-text {
  max-width: 38rem;
  margin: 1.25rem 0 1.6rem;
  color: #e6e8e5;
  font-size: 1.1rem;
  line-height: 1.7;
}

.language-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.lang-btn img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

.lang-btn.is-active,
.category-rail button.is-active,
.pdf-actions a:hover,
.quick-nav a:hover {
  background: var(--accent);
  color: #fff;
}

.intro-media {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.feature-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 210px;
  padding: 1rem;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: var(--tile-image) center / cover;
  box-shadow: var(--shadow);
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.08), rgba(16, 16, 16, 0.82));
}

.feature-tile span {
  position: relative;
  font-family: Nomad, Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-shell {
  padding: 4rem 0 2.5rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.toolbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-label {
  font-weight: 900;
  text-transform: uppercase;
}

#menu-search {
  width: 100%;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf9;
  color: var(--ink);
}

.category-rail {
  position: sticky;
  top: 73px;
  z-index: 18;
  display: flex;
  gap: 0.55rem;
  margin: 1rem 0;
  padding: 0.7rem 0;
  overflow-x: auto;
  background: rgba(244, 247, 246, 0.92);
  backdrop-filter: blur(10px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.category-rail button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.8rem 0.9rem;
  cursor: pointer;
}

.menu-sections {
  display: grid;
  gap: 1rem;
}

.menu-section {
  scroll-margin-top: 155px;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-section-header {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.menu-section-header img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
}

.menu-section-header p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: start;
  min-height: 86px;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf9;
}

.item-name {
  margin: 0 0 0.35rem;
  font-family: Nomad, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 900;
}

.item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.price {
  justify-self: end;
  min-width: 70px;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.download-band {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
}

.shisha-cover {
  width: min(240px, 28vw);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}

.download-band p {
  margin: 0.55rem 0 0;
  color: #e6e8e5;
}

.download-band .eyebrow {
  margin-top: 0;
  color: var(--spark);
}

.pdf-actions {
  display: flex;
  gap: 0.6rem;
}

.pdf-actions a {
  display: grid;
  place-items: center;
  min-width: 54px;
  min-height: 48px;
}

.pdf-viewer {
  width: min(1120px, calc(100% - 2rem));
  margin: -1rem auto 2.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.shisha-prices {
  width: min(1120px, calc(100% - 2rem));
  margin: -1rem auto 2rem;
}

.shisha-prices img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.pdf-viewer iframe {
  display: block;
  width: 100%;
  height: min(78vh, 880px);
  min-height: 560px;
  border: 0;
  background: #f8faf9;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.is-hidden {
  display: none;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-nav {
    width: 100%;
  }

  .category-rail {
    top: 134px;
  }

  .menu-section {
    scroll-margin-top: 215px;
  }

  .intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .intro-copy {
    min-height: 360px;
  }

  .intro-media {
    min-height: 260px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .intro,
  .feature-grid,
  .menu-shell,
  .download-band,
  .shisha-prices,
  .pdf-viewer,
  .site-footer {
    width: min(100% - 1rem, 1120px);
  }

  .intro-copy {
    padding: 1.2rem;
  }

  h1 {
    font-size: 3.1rem;
  }

  .feature-grid,
  .items {
    grid-template-columns: 1fr;
  }

  .feature-tile {
    min-height: 150px;
  }

  .toolbar,
  .menu-section-header,
  .download-band,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .shisha-cover {
    width: 100%;
    max-height: 220px;
  }

  .category-rail {
    top: 132px;
    margin-inline: -0.5rem;
    padding: 0.65rem 0.5rem;
  }

  .pdf-viewer iframe {
    min-height: 470px;
  }

  .menu-section-header img {
    width: 100%;
    height: 150px;
  }

  .item {
    grid-template-columns: 1fr;
  }

  .price {
    justify-self: start;
  }
}
