@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Unbounded:wght@400;600;700&display=swap');

:root {
  --bg: #110c08;
  --bg-soft: #1b130d;
  --card: rgba(30, 21, 15, 0.86);
  --card-strong: rgba(40, 28, 19, 0.95);
  --text: #f9f3ea;
  --muted: #d2c3af;
  --accent: #ff7a2f;
  --accent-2: #ffb547;
  --accent-3: #bb4025;
  --line: rgba(255, 230, 196, 0.14);
  --ok: #8ccf7b;
  --radius: 22px;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 122, 47, 0.34), transparent 38%),
    radial-gradient(circle at 82% 9%, rgba(187, 64, 37, 0.3), transparent 36%),
    linear-gradient(145deg, #0d0906, #1a120d 43%, #110c08);
  min-height: 100vh;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  background: rgba(15, 11, 8, 0.78);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #1b120c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(255,122,47,.4);
  font-weight: 800;
}

.nav { display: flex; flex-wrap: wrap; gap: 8px; }
.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 600;
  transition: .25s ease;
}

.nav a:hover, .nav a.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.05);
}

main { padding: 32px 0 70px; }

.hero {
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255,122,47,.18), rgba(255,181,71,.05) 38%, rgba(0,0,0,.12));
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(22px, 5vw, 54px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transform: translateY(var(--hero-offset, 0));
  transition: transform .25s ease-out;
}

.hero::after {
  content: "";
  width: 270px;
  height: 270px;
  position: absolute;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,191,88,.3), rgba(255,191,88,0));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  color: #ffe2bb;
  background: rgba(0,0,0,.22);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 6px 12px;
}

h1, h2, h3 { font-family: "Unbounded", sans-serif; line-height: 1.15; margin: 0; }
h1 { margin-top: 14px; font-size: clamp(1.9rem, 5vw, 3.2rem); }

p.lead {
  color: #f3dfc7;
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(1rem, 2.1vw, 1.24rem);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.btn {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  transition: .22s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  border: 0;
  color: #21140c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: relative;
  overflow: hidden;
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: transform .5s ease;
}

.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(255,122,47,.33); }
.btn.primary:hover::after { transform: translateX(120%); }
.btn.ghost:hover { background: rgba(255,255,255,.07); }

.grid { display: grid; gap: 16px; }
.grid.cards-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid.cards-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.section { margin-top: 28px; }

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); }

.badge {
  display: inline-block;
  margin-top: 12px;
  color: #ffe5bf;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: .82rem;
  font-weight: 700;
}

.menu-group {
  border: 1px solid var(--line);
  background: var(--card-strong);
  border-radius: var(--radius);
  padding: 20px;
}

.menu-group h2 { font-size: 1.12rem; margin-bottom: 14px; }

.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255,236,212,.1);
}

.menu-item:last-child { border-bottom: 0; }
.menu-item strong { font-size: 1rem; }
.menu-item span { color: #ffd6a3; white-space: nowrap; font-weight: 800; }

.photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.meta b {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffddab;
  font-size: .86rem;
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table th { color: #ffddab; }

.notice {
  border-radius: 16px;
  border: 1px solid rgba(140,207,123,.35);
  background: rgba(140,207,123,.08);
  color: #d2efca;
  padding: 14px 16px;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 34%);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.gallery-strip::-webkit-scrollbar { height: 10px; }
.gallery-strip::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 999px; }
.gallery-card { scroll-snap-align: start; }
.gallery-controls { display: flex; gap: 10px; margin-top: 14px; }

.footer {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 18px;
  color: #c8b29a;
  font-size: .93rem;
}

.fade-up { opacity: 0; transform: translateY(12px); transition: .55s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .grid.cards-3, .grid.cards-2 { grid-template-columns: 1fr; }
  .topbar .wrap { align-items: flex-start; padding: 10px 0; flex-direction: column; }
  .nav { gap: 6px; }
  .nav a { padding: 8px 10px; font-size: .94rem; }
  .gallery-strip { grid-auto-columns: minmax(240px, 76%); }
}
