:root {
  --ink: #211815;
  --muted: #6b5f58;
  --cream: #fff7ec;
  --paper: #fffdf8;
  --line: #eadbcc;
  --red: #cf3d2d;
  --red-dark: #9d2d22;
  --green: #2f6d4f;
  --gold: #f2ad32;
  --dark: #1d1412;
  --shadow: 0 20px 50px rgba(55, 32, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, 1160px);
  margin-inline: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  display: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 850;
}

.nav-links a:hover {
  color: var(--red);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-button span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.nav-links.open {
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-links.open a {
  padding: 12px;
}

.language {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language button {
  min-width: 38px;
  padding: 7px 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.language .active {
  color: #fff;
  background: var(--red);
}

.nav-call {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(207, 61, 45, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-light {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px 0 44px;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 14, 10, 0.88), rgba(24, 14, 10, 0.48), rgba(24, 14, 10, 0.2));
}

.hero-content {
  position: relative;
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.hero p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

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

.actions {
  margin-top: 26px;
}

.badges {
  margin-top: 28px;
}

.badges span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 850;
}

.section {
  padding: 74px 0;
}

.warm {
  background: var(--cream);
}

.dark {
  color: #fff;
  background: var(--dark);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title p {
  color: var(--muted);
}

.dark .section-title p {
  color: rgba(255, 255, 255, 0.76);
}

.split,
.contact-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.split p,
.feature p,
.contact-card p,
.form p {
  color: var(--muted);
}

.info-card,
.feature,
.menu-card,
.contact-card,
.form,
.reviews blockquote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
}

.info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 2rem;
  line-height: 1.1;
}

.features,
.menu-grid,
.reviews,
.footer-grid {
  display: grid;
  gap: 18px;
}

.feature {
  padding: 24px;
}

.feature span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.menu-card {
  overflow: hidden;
}

.menu-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card div {
  padding: 22px;
}

.menu-card small {
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

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

.menu-card strong {
  color: var(--red);
  font-size: 1.22rem;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.reviews blockquote {
  margin: 0;
  padding: 24px;
  color: var(--ink);
}

.reviews cite {
  color: var(--red);
  font-weight: 950;
  font-style: normal;
}

.contact-card {
  margin-top: 24px;
  padding: 24px;
}

.form {
  padding: 24px;
}

.form label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  font-weight: 850;
}

.form input,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form textarea {
  resize: vertical;
}

.form .btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.form-row {
  display: grid;
  gap: 12px;
}

.footer {
  padding: 50px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #19110f;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
}

.footer a {
  display: block;
}

.copyright {
  width: min(100% - 32px, 1160px);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .menu-grid,
  .gallery,
  .reviews {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .menu-button {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
  }

  .nav-call {
    display: inline-flex;
  }

  .hero {
    min-height: 760px;
    align-items: center;
    padding: 110px 0 70px;
  }

  .section {
    padding: 96px 0;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr 0.9fr;
  }

  .features,
  .menu-grid,
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .language button {
    min-width: 34px;
    padding-inline: 8px;
  }

  .actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
