:root {
  --bg: #120d0a;
  --surface: #1d130e;
  --surface-2: #281912;
  --gold: #f0d7a1;
  --orange: #e86e2f;
  --text: #f8efe1;
  --muted: #cfbda6;
  --line: #3f2a1f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  background: radial-gradient(circle at 20% 0, #342016, var(--bg) 60%);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  opacity: 0.2;
  z-index: -1;
}

body.nav-open {
  overflow: hidden;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5vw;
  background: rgba(18, 13, 10, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0 0.85rem;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 1;
}

.nav a:hover {
  background: var(--surface-2);
}

.nav a.active {
  background: var(--surface-2);
  color: var(--gold);
}

.nav-cta.active {
  color: #fff;
}

.nav .btn.nav-cta {
  height: 42px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

main {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.1rem;
  min-height: 48px;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(130deg, var(--orange), #ff8f4f);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.story {
  padding: 2rem 0;
}

.story-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(232, 110, 47, 0.1), rgba(240, 215, 161, 0.04));
}

.story-card h2,
.section-head h2,
.contact h2 {
  margin: 0.2rem 0 0.8rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

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

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

@keyframes homeHeroFade {
  0%,
  44% {
    opacity: 1;
  }

  56%,
  100% {
    opacity: 0;
  }
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
  font-size: 16px;
  line-height: 1.45;
  background: #140f0c;
  color: var(--text);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.food-strip__track,
.events-hero__visuals,
.events-offer-card__strip,
.news-gallery {
  scrollbar-width: none;
}

.food-strip__track::-webkit-scrollbar,
.events-hero__visuals::-webkit-scrollbar,
.events-offer-card__strip::-webkit-scrollbar,
.news-gallery::-webkit-scrollbar {
  display: none;
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 5vw 2rem;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  margin-top: 2rem;
  padding: 1.8rem 5vw 2rem;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(18, 13, 10, 0.2), rgba(13, 10, 8, 0.92)),
    radial-gradient(circle at 12% 0, rgba(240, 215, 161, 0.08), transparent 28%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.footer-col {
  display: grid;
  gap: 0.55rem;
}

.footer-brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-decoration: none;
}

.footer-tagline,
.footer-label,
.footer-address {
  margin: 0;
}

.footer-tagline {
  line-height: 1.6;
}

.footer-label {
  color: #e8cfab;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.5rem;
}

.footer-nav a,
.footer-admin-link {
  color: var(--text);
  text-decoration: none;
}

.footer-nav a:hover,
.footer-admin-link:hover {
  color: var(--gold);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.6rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.social-link:hover {
  color: var(--gold);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-shrink: 0;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  border-radius: 10px;
  flex-shrink: 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-instagram svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.nav-instagram:hover {
  color: var(--gold);
  background: var(--surface-2);
}

.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-hours li {
  line-height: 1.45;
}

.footer-hours span {
  color: var(--gold);
  font-weight: 800;
}

.footer-address {
  font-style: normal;
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 215, 161, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-admin-link {
  font-weight: 700;
}

.legal-page {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  display: grid;
  gap: 1.8rem;
}

.legal-hero h1 {
  margin: 0.25rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.legal-hero p {
  max-width: 58ch;
  color: var(--muted);
}

.legal-section {
  padding: 0 0 1.6rem 0;
  display: grid;
  gap: 0.65rem;
}

.legal-section h2 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
  color: var(--gold);
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text);
  display: grid;
  gap: 0.35rem;
}

.legal-list strong {
  color: var(--gold);
}

.cookie-banner {
  position: fixed;
  inset: auto 1.5rem 1.5rem 1.5rem;
  max-width: 620px;
  background: rgba(19, 15, 13, 0.95);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1rem 0.9rem;
  display: grid;
  gap: 0.75rem;
  z-index: 40;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner.is-hidden,
.cookie-manage.is-hidden {
  display: none !important;
}

.cookie-banner__text {
  font-size: 0.95rem;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: var(--gold);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-manage {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  border: 1px solid var(--line);
  background: #120d0a;
  color: var(--text);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  z-index: 30;
}

/* ── Responsive — global elements only ──────────────────────────────────────── */

@media (max-width: 860px) {
  .menu-btn {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 4vw;
    left: 4vw;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #130f0d;
    padding: 0.7rem;
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
  }

  .nav a {
    width: 100%;
    padding: 0.78rem 0.9rem;
    height: auto;
  }

  .nav .btn {
    justify-content: center;
    height: auto;
  }

  .admin-page .nav {
    background: #f1f7ff;
    border-color: #c7d6e8;
  }

  .nav.open {
    display: flex;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    padding-inline: 4vw;
  }

  .cookie-banner {
    inset: auto 1rem 1rem 1rem;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }

  .story-card {
    padding: 1.1rem;
  }
}

@media (max-width: 720px) {
  main {
    width: min(1120px, 94vw);
  }

  .topbar {
    gap: 0.65rem;
    padding: 0.85rem 4vw;
  }

  .brand-logo {
    height: 44px;
  }

  .story-card h2,
  .section-head h2,
  .contact h2 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 0.95;
  }
}

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

  .site-footer {
    padding-top: 1.5rem;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    height: 38px;
  }

  .story-card {
    padding: 1rem;
  }
}
