:root {
  --bg: #ededed;
  --surface: #f5f5f5;
  --ink: #232323;
  --nav-blue: #2f2f8f;
  --brand-red: #c9151f;
  --line: #d8d8d8;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
}

.container {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(237, 237, 237, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.brand img {
  width: 112px;
  height: auto;
  display: block;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: "Bebas Neue", sans-serif;
}

.btn-order,
.btn-book {
  background: var(--brand-red);
  color: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.btn-order {
  padding: 0.8rem 1.7rem;
  font-size: 1.55rem;
}

.hero {
  position: relative;
  min-height: min(52vh, 560px);
  display: grid;
  place-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
  opacity: 1;
  transition: opacity 320ms ease;
}

.hero-image.is-fading {
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem 1rem;
}

.kicker {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.1em;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

h1 {
  margin: 0.4rem 0 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 6.6vw, 5rem);
  line-height: 0.95;
}

.hero-content p {
  margin: 1rem auto 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 1.8vw, 1.8rem);
  color: #f5f5f5;
}

.btn-book {
  display: inline-flex;
  margin-top: 1.2rem;
  padding: 0.8rem 2rem;
  font-size: 1.7rem;
}

.menu-section {
  padding: 2.2rem 0 2.7rem;
}

.menu-head {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
}

.menu-head h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.06em;
  color: var(--brand-red);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.menu-status {
  margin: 0.6rem 0 1rem;
  color: #5e5e5e;
  font-weight: 600;
}

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

.menu-item {
  background: #f8f8f8;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
}

.menu-item__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.2;
}

.menu-item .price {
  color: var(--brand-red);
  font-weight: 700;
  white-space: nowrap;
}

.menu-item p {
  margin: 0.32rem 0 0;
  color: #474747;
  font-size: 0.95rem;
}

.widget-shell {
  width: min(560px, 100%);
  margin-inline: auto;
  min-height: 320px;
  padding: 0.35rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: #f2f2f2;
  border-radius: 10px;
}

.widget-shell > * {
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 600;
}

body.modal-open {
  overflow: hidden;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.booking-modal.is-open {
  display: block;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.booking-modal__panel {
  position: relative;
  width: min(640px, calc(100% - 1.5rem));
  margin: min(8vh, 4rem) auto;
  background: #f2f2f2;
  border-radius: 16px;
  padding: 1rem 1rem 1.2rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.booking-modal__close {
  position: absolute;
  top: 0.35rem;
  right: 0.45rem;
  border: 0;
  background: transparent;
  color: #444;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 960px) {
  .nav-wrap {
    min-height: auto;
    padding: 0.75rem 0;
  }

  .footer-wrap {
    min-height: auto;
    padding: 0.8rem 0;
    flex-direction: column;
    text-align: center;
  }

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