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

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

body {
  font-family: Hind, Roboto, Arial, sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__logo {
  position: relative;
  z-index: 1;
  width: min(520px, 78vw);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.75));
  animation: zoom-in 0.9s ease both;
}

.fire-section {
  width: 100%;
  line-height: 0;
}

.fire-section img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.fire-section--tall img {
  height: min(48vh, 420px);
}

.cta {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 15px 48px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  max-width: 270px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 18px;
}

.gallery-item__image {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 24px;
  background: #c41230;
  color: #fff;
  font-family: Mogra, "Roboto Slab", sans-serif;
  font-size: 20px;
  letter-spacing: 0.02em;
  border-radius: 3px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #e31b3d;
}

.site-footer {
  position: relative;
  background: linear-gradient(90deg, #5a0812 0%, #c41230 50%, #5a0812 100%);
  padding: 28px 10px;
}

.site-footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.site-footer__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}

.site-footer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  transition: transform 0.2s ease;
}

a.site-footer__icon:hover {
  transform: scale(1.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

@keyframes zoom-in {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid #3a1016;
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Roboto Slab", "Abhaya Libre", serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar__logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.topbar__nav a:hover,
.topbar__nav a.is-active {
  color: #ff4d63;
}

.page-hero {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Roboto Slab", "Abhaya Libre", serif;
  font-size: clamp(28px, 5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 24px;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 64px;
}

.page p {
  color: #ddd;
  line-height: 1.7;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.menu-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
}

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

.menu-card__body {
  padding: 16px;
}

.menu-card h3 {
  margin: 0 0 8px;
  font-family: "Roboto Slab", "Abhaya Libre", serif;
  font-size: 20px;
}

.menu-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: #bbb;
}

.price {
  color: #ff4d63;
  font-weight: 700;
}

.protocol {
  display: grid;
  gap: 14px;
}

.protocol li {
  list-style: none;
  background: #141414;
  border-left: 4px solid #c41230;
  padding: 14px 16px;
}

.map-wrap {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  background: #111;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #c41230;
  margin-top: 24px;
}

.fire-band {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.checkout-form {
  display: grid;
  gap: 14px;
  max-width: 480px;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #333;
  background: #141414;
  color: #fff;
  font: inherit;
}

.checkout-form button {
  margin-top: 8px;
}

@media (max-width: 1024px) {
  .gallery-item {
    max-width: 48%;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 100vh;
  }

  .hero__logo {
    animation: zoom-in 0.8s ease both;
  }

  .fire-section img,
  .fire-section--tall img {
    height: 160px;
  }

  .gallery-item {
    max-width: 100%;
  }

  .btn {
    font-size: 18px;
    animation: fade-down 0.6s ease both;
  }

  .site-footer__icon {
    font-size: 26px;
  }
}

@keyframes fade-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
