:root {
  --cream: #fbf6ed;
  --paper: #fffaf2;
  --gold: #ad955b;
  --olive: #65773a;
  --ink: #2c251b;
  --muted: #766b5b;
  --line: #e7dcc8;
  --white: #ffffff;
}

* {
  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: 210px;
  max-width: 48vw;
  height: auto;
}

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

.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/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-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.menu-tabs button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

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

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

.menu-card {
  min-height: 160px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(86, 70, 44, .08);
}

.menu-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.55;
}

.menu-card strong {
  color: var(--olive);
}

.menu-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.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,
  .nav,
  .contact,
  footer,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: auto;
  }

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