/* Hallmark · macrostructure: Night Menu Board · tone: Poprad lounge, not nightclub cliché · anchor hue: warm crimson */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0908;
  --black-2: #14110F;
  --panel: #1D1814;
  --cream: #F2E7D5;
  --muted: #9B8C7B;
  --crimson: #D84B3B;
  --amber: #D49A46;
  --line: rgba(242,231,213,.14);
  --display: 'Instrument Serif', Georgia, serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background: var(--black);
}
body {
  min-width: 0;
  overflow-x: clip;
  overscroll-behavior-y: none;
  background:
    radial-gradient(circle at 78% 12%, rgba(216,75,59,.18), transparent 30%),
    radial-gradient(circle at 8% 56%, rgba(212,154,70,.12), transparent 28%),
    var(--black);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(16px, 5vw, 78px);
  background: color-mix(in srgb, var(--black) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  letter-spacing: -.03em;
  line-height: .9;
}
.nav { display: flex; gap: clamp(14px, 3vw, 32px); color: var(--muted); font-size: 14px; font-weight: 700; }
.nav a { transition: color .18s var(--ease); }
.nav a:hover { color: var(--amber); }

.hero {
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vw, 112px) clamp(16px, 5vw, 88px) clamp(58px, 8vw, 120px);
}
.kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
h1,h2,h3 { font-family: var(--display); font-style: normal; font-weight: 400; letter-spacing: -.035em; line-height: .94; text-wrap: balance; overflow-wrap: anywhere; }
h1 { margin-top: 18px; max-width: 820px; font-size: clamp(52px, 8vw, 114px); }
.hero-copy > p:not(.kicker) { margin-top: 24px; max-width: 620px; color: var(--muted); font-size: clamp(16px, 1.45vw, 20px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--crimson); color: #fff; }
.secondary { border: 1px solid var(--line); color: var(--cream); background: rgba(242,231,213,.04); }
.secondary:hover { border-color: var(--amber); }

.hero-panel {
  position: relative;
  min-height: 610px;
}
.photo,
.rating-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }
.main-photo { inset: 0 9% 12% 0; border-radius: 34px; }
.side-photo { right: 0; bottom: 0; width: 42%; aspect-ratio: 4/5; border-radius: 22px; }
.rating-card {
  left: 5%; bottom: 7%; width: min(310px, 50%); padding: 22px;
  border-radius: 20px;
  background: rgba(10,9,8,.88);
  backdrop-filter: blur(14px);
}
.rating-card span { display: block; color: var(--muted); font-size: 13px; }
.rating-card strong { display: block; margin-top: 8px; font-family: var(--display); font-size: clamp(44px, 5vw, 70px); line-height: .9; font-weight: 400; color: var(--amber); }
.rating-card small { display: block; margin-top: 8px; color: color-mix(in srgb, var(--cream) 70%, transparent); }

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--black-2);
}
.facts div { padding: 30px clamp(16px, 4vw, 56px); border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts strong { display: block; color: var(--amber); font-family: var(--display); font-size: clamp(40px, 5vw, 72px); line-height: .9; font-weight: 400; }
.facts span { display: block; margin-top: 9px; color: var(--muted); font-size: 14px; }

.menu,
.space,
.proof,
.contact { padding: clamp(58px, 7vw, 112px) clamp(16px, 5vw, 88px); }
.section-head { display: grid; grid-template-columns: .32fr 1fr; gap: 32px; align-items: start; }
.section-head h2,
.space h2,
.contact h2 { max-width: 1000px; font-size: clamp(42px, 6vw, 88px); }
.menu-layout { margin-top: 52px; display: grid; border-top: 1px solid var(--line); }
.menu-layout article { display: grid; grid-template-columns: minmax(160px, 260px) minmax(0,1fr); gap: 28px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.menu-layout span { color: var(--amber); font-family: var(--display); font-size: clamp(32px, 4vw, 58px); line-height: .95; }
.menu-layout p { color: var(--muted); max-width: 760px; }

.space {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  background: var(--panel);
  border-block: 1px solid var(--line);
}
.space-copy p:not(.kicker) { margin-top: 24px; color: var(--muted); max-width: 650px; font-size: 17px; }
.space figure { aspect-ratio: 5 / 4; overflow: hidden; border-radius: 28px; border: 1px solid var(--line); background: var(--black-2); }
.space figure img { width: 100%; height: 100%; object-fit: cover; }

.proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
blockquote {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(242,231,213,.04);
}
blockquote p { font-family: var(--display); font-size: clamp(36px, 4vw, 62px); line-height: .98; }
blockquote cite { margin-top: 28px; color: var(--muted); font-size: 14px; font-style: normal; }

.contact {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr);
  gap: 24px;
  background: var(--black-2);
  border-top: 1px solid var(--line);
}
.contact-card,
.map-wrap { border: 1px solid var(--line); border-radius: 28px; background: var(--black); }
.contact-card { padding: clamp(24px, 4vw, 48px); }
dl { margin-top: 30px; display: grid; gap: 22px; }
dt { color: var(--cream); font-weight: 800; margin-bottom: 5px; }
dd { color: var(--muted); }
dd small { color: color-mix(in srgb, var(--muted) 72%, transparent); }
dd a { color: var(--amber); border-bottom: 1px solid rgba(212,154,70,.38); }
.map-wrap { overflow: hidden; min-height: 430px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: grayscale(.5) contrast(.92) brightness(.72); }

.footer { padding: 24px clamp(16px, 5vw, 88px); color: rgba(242,231,213,.72); background: #050504; font-size: 14px; }
.footer a { color: var(--cream); border-bottom: 1px solid rgba(242,231,213,.35); }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; transition-duration: 120ms !important; animation-duration: 120ms !important; }
}
@media (max-width: 980px) {
  .hero,.space,.contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-panel { min-height: 520px; }
  .facts,.proof { grid-template-columns: 1fr; }
  .facts div { border-right: 0; border-bottom: 1px solid var(--line); }
  .section-head { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 620px) {
  .topbar { position: static; align-items: flex-start; flex-direction: column; padding: 16px; }
  .nav { width: 100%; justify-content: space-between; font-size: 13px; }
  .hero,.menu,.space,.proof,.contact { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: clamp(48px, 14vw, 72px); }
  .actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero-panel { min-height: 390px; }
  .main-photo { inset: 0 0 16% 0; border-radius: 24px; }
  .side-photo { width: 45%; }
  .rating-card { width: 62%; left: 0; padding: 16px; }
  .rating-card strong { font-size: 40px; }
  .menu-layout article { grid-template-columns: 1fr; gap: 8px; }
  .space figure { aspect-ratio: 5 / 4; }
  blockquote { min-height: 200px; }
  .map-wrap,.map-wrap iframe { min-height: 340px; }
  .footer { font-size: 13px; }
}
