:root {
  --cream: #fbf6ed;
  --paper: #fffaf2;
  --gold: #ad955b;
  --olive: #65773a;
  --ink: #2c251b;
  --muted: #766b5b;
  --line: #e7dcc8;
  --white: #ffffff;
  --menu-header-h: 52px;
  --category-nav-h: 48px;
  --menu-sticky-total: calc(var(--menu-header-h) + var(--category-nav-h));
  --menu-header-height: var(--menu-header-h);
  --menu-category-height: var(--category-nav-h);
  --menu-sticky-offset: var(--menu-sticky-total);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 246, 237, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand img {
  display: block;
  width: clamp(220px, 25vw, 300px);
  max-width: 62vw;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.menu-site-header {
  min-height: 72px;
  gap: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.menu-site-header .brand img {
  width: clamp(150px, 28vw, 220px);
  max-width: 46vw;
}

.menu-page-nav {
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.menu-page-nav a,
.language-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 252, 245, .86);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.language-pill {
  cursor: default;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(rgba(44, 37, 27, .28), rgba(44, 37, 27, .42)),
    url("/assets/photos/entrance-hero.webp") center/cover,
    url("/assets/meyhane-hero.png") center/cover;
}

.hero-content {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .95;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.65;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--olive);
}

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

.hero-card {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  color: var(--white);
  background: rgba(44, 37, 27, .62);
  backdrop-filter: blur(10px);
}

.hero-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-weight: 900;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 25px;
}

.hero-card p,
.muted {
  color: var(--muted);
  line-height: 1.65;
}

.hero-card p {
  color: #f3eadb;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.menu-body {
  background: linear-gradient(180deg, var(--cream) 0%, #f5efe3 100%);
}

.menu-body main {
  overflow-x: hidden;
}

/* Tek sticky kapsayıcı: topbar + kategori çipleri birlikte sabitlenir */
.menu-sticky-shell {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 246, 237, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.menu-body .menu-topbar.site-header.menu-site-header {
  position: relative;
  top: auto;
  z-index: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  gap: 10px;
  padding: 6px clamp(12px, 4vw, 24px);
  background: transparent;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.menu-body .menu-topbar.menu-site-header .brand img {
  width: clamp(132px, 34vw, 200px);
  max-width: 46vw;
  height: auto;
}

.menu-body .menu-page-nav {
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.menu-body .category-nav.menu-category-nav {
  position: static;
  top: auto;
  z-index: auto;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
}

.menu-tabs-wrap {
  margin: 0;
  padding: 8px clamp(12px, 4vw, 24px);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}

.menu-tabs-wrap::-webkit-scrollbar {
  display: none;
}

.menu-section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(40px, 6vw, 72px);
  scroll-margin-top: 170px;
}

.menu-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.menu-hero-text h1 {
  margin-bottom: 6px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(32px, 6vw, 48px);
  line-height: 1.05;
}

.menu-hero .eyebrow {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 1.8px;
}

.menu-table-info {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.menu-table-badge {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--olive);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px rgba(101, 119, 58, .25);
}

.menu-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.menu-action-btn {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 700;
  cursor: not-allowed;
  opacity: 0.72;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  width: max-content;
  min-width: 100%;
  padding-bottom: 4px;
}

.menu-tabs button {
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}

.menu-tabs button.active {
  color: var(--white);
  background: var(--olive);
  border-color: var(--olive);
}

.menu-category-title {
  margin: 0 0 16px;
  color: var(--olive);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 400;
  scroll-margin-top: 170px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(86, 70, 44, .06);
  transition: box-shadow .2s, transform .2s;
}

.menu-card:hover {
  box-shadow: 0 14px 32px rgba(86, 70, 44, .1);
}

.menu-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px 18px 18px;
}

.menu-card-image {
  display: block;
  width: 100%;
  height: 156px;
  margin: 0;
  overflow: hidden;
  background: rgba(101, 119, 58, .08);
}

.menu-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.menu-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 3.5vw, 22px);
  line-height: 1.2;
}

.menu-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.menu-price {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--olive);
  background: rgba(101, 119, 58, .08);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.2;
  white-space: nowrap;
}

.menu-card--variants {
  min-width: 0;
}

.menu-grid--rakilar {
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .menu-grid--rakilar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.variant-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 8px;
  margin: 0 16px 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(101, 119, 58, .06);
}

.variant-size {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.variant-price {
  color: var(--olive);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  text-align: right;
  margin-left: auto;
}

.alcohol-notice {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(173, 149, 91, .1);
  font-size: 13px;
  line-height: 1.5;
}

.menu-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.menu-page h1 {
  margin-bottom: 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}

.hero-card-link {
  margin-top: 16px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: 13px;
  line-height: 1.6;
}

.footer-platform a {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 36px;
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.split p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.contact p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

@media (max-width: 860px) {
  .site-header:not(.menu-site-header),
  .nav:not(.menu-page-nav),
  .contact,
  footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .menu-grid:not(.menu-grid--rakilar) {
    grid-template-columns: 1fr;
  }

  .menu-card {
    padding: 0;
  }

  .menu-card-body {
    padding: 14px 16px 16px;
  }

  .menu-card-image {
    height: 132px;
  }

  .menu-card p {
    margin-bottom: 10px;
  }

  .menu-price {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 2px;
    color: var(--white);
    background: var(--olive);
    font-size: 17px;
  }

  .menu-grid--rakilar .variant-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .variant-row {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 9px 10px;
  }

  .variant-price {
    font-size: 13px;
  }

  .menu-actions {
    gap: 8px;
  }

  .menu-action-btn {
    font-size: 12px;
    padding: 10px 8px;
  }
}

@media (max-width: 400px) {
  .menu-grid--rakilar .variant-list {
    grid-template-columns: 1fr;
  }

  .menu-price {
    font-size: 16px;
  }
}


.hero-tagline {
  margin: 0 0 16px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-style: italic;
  line-height: 1.25;
  color: #f3eadb;
}

.gallery-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.gallery-intro {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--line);
  box-shadow: 0 10px 28px rgba(86, 70, 44, .06);
  transition: transform .2s, box-shadow .2s;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(86, 70, 44, .12);
}

.gallery-item picture,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-cover {
  position: relative;
  width: 100%;
  max-height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.menu-cover picture,
.menu-cover img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .menu-cover,
  .menu-cover img {
    max-height: 132px;
    height: 132px;
  }

  .menu-body .menu-topbar.site-header.menu-site-header {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 7px 14px;
  }

  .menu-body .menu-topbar.menu-site-header .brand img {
    width: clamp(142px, 42vw, 190px);
    max-width: 48vw;
  }

  .menu-body .nav.menu-page-nav {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    margin-left: auto;
  }

  .menu-body .menu-page-nav a,
  .menu-body .language-pill {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .menu-body .section.menu-section {
    padding-top: 18px;
  }

  .menu-body .menu-hero {
    margin-bottom: 14px;
  }

  .menu-body .menu-hero-text h1 {
    font-size: 34px;
  }

  .menu-body .menu-actions {
    gap: 7px;
    margin-bottom: 14px;
  }

  .menu-body .menu-action-btn {
    min-height: 38px;
    padding: 8px 6px;
  }

  .menu-body .category-nav .menu-tabs-wrap {
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .menu-body .menu-tabs {
    padding-bottom: 0;
  }

  .menu-body .menu-tabs button {
    padding: 9px 14px;
    font-size: 13px;
  }

  .menu-body .menu-category-title {
    scroll-margin-top: 170px;
  }

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

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-body .menu-topbar.site-header.menu-site-header {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-body .menu-topbar.menu-site-header .brand img {
    width: clamp(132px, 41vw, 168px);
    max-width: 44vw;
  }

  .menu-body .menu-page-nav a,
  .menu-body .language-pill {
    padding-left: 8px;
    padding-right: 8px;
  }
}
