@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --ink: #f8f1e7;
  --muted: #cbbeb2;
  --wine: #741f32;
  --wine-dark: #40111d;
  --gold: #d5a858;
  --night: #120f10;
  --panel: #1c1718;
  --line: rgba(213, 168, 88, .28);
  --display: "Playfair Display", Georgia, serif;
  --body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--night);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
h1, h2, h3, h4 { margin: 0 0 18px; font-family: var(--display); line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); letter-spacing: -.04em; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.2rem); letter-spacing: -.025em; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0 0 20px; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 680px; }
.section { padding: 110px 0; }
.section-soft { background: #181314; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; margin-bottom: 60px; }
.section-head p { max-width: 600px; color: var(--muted); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s;
}
.scrolled .site-header { background: rgba(18,15,16,.94); border-color: var(--line); backdrop-filter: blur(14px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.3rem; font-weight: 700; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--gold); transform: rotate(45deg); color: var(--gold); }
.brand-mark span { transform: rotate(-45deg); font-family: var(--body); font-size: .68rem; font-weight: 700; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { color: #e5dbd0; font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.nav a:hover, .nav a.active { color: var(--gold); }
.nav .nav-cta { padding: 11px 18px; border: 1px solid var(--gold); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); font-size: 1.7rem; cursor: pointer; }

.hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  position: relative;
  isolation: isolate;
  padding: 160px 0 82px;
  background: linear-gradient(90deg, rgba(10,8,9,.94) 0%, rgba(10,8,9,.78) 40%, rgba(10,8,9,.12) 75%), url("../img/smak-fortuny-hero.webp") center/cover;
}
.hero::after { content: ""; position: absolute; inset: auto 0 0; height: 24%; z-index: -1; background: linear-gradient(transparent, var(--night)); }
.hero-copy { max-width: 760px; }
.hero h1 em { color: var(--gold); font-weight: 600; }
.hero .lead { margin: 26px 0 36px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1a1210;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); background: #e7bd72; }
.btn-ghost { background: transparent; color: var(--ink); }
.hero-facts { display: flex; gap: 42px; margin-top: 65px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.hero-facts strong { display: block; color: var(--gold); font-family: var(--display); font-size: 1.45rem; }
.hero-facts span { color: var(--muted); font-size: .78rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.image-frame { position: relative; }
.image-frame::before { content: ""; position: absolute; inset: -16px 16px 16px -16px; border: 1px solid var(--line); z-index: -1; }
.image-frame img { width: 100%; height: 600px; object-fit: cover; }
.copy-block p { color: var(--muted); }
.signature { margin-top: 30px; padding-left: 18px; border-left: 2px solid var(--gold); font-family: var(--display); font-size: 1.2rem; font-style: italic; color: var(--ink) !important; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 32px; background: var(--panel); border: 1px solid rgba(255,255,255,.07); }
.card-number { color: var(--gold); font-family: var(--display); font-size: 2.3rem; }
.card p { color: var(--muted); font-size: .93rem; }
.dish-card { min-height: 400px; display: flex; flex-direction: column; justify-content: end; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.dish-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 25%, rgba(10,8,9,.96)); }
.dish-card > * { position: relative; }
.dish-card small { color: var(--gold); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.evening { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 620px; }
.evening-image { background: url("../img/why.png") center/cover; }
.evening-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(40px, calc((100vw - 1160px)/2)); background: var(--wine-dark); }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 14px; margin-top: 20px; }
.step b { color: var(--gold); }
.step p { color: #d9c7c7; font-size: .92rem; }

.page-hero { padding: 180px 0 90px; background: radial-gradient(circle at 85% 0%, #542031 0, transparent 45%), #151112; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.4rem); }
.page-hero .lead { margin-top: 24px; }
.casino-hero { background: linear-gradient(90deg, rgba(15,10,12,.94), rgba(15,10,12,.26)), url("../img/cas-1.png") center/cover; }
.casino-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: start; }
.casino-panel { padding: 38px; border: 1px solid var(--line); background: var(--panel); position: sticky; top: 110px; }
.casino-panel ul { list-style: none; padding: 0; margin: 24px 0 0; }
.casino-panel li { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.casino-panel li span { color: var(--muted); }
.responsible { padding: 22px; border-left: 3px solid var(--gold); background: rgba(213,168,88,.08); color: var(--muted); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 90px; }
.menu-category { border-top: 1px solid var(--line); padding-top: 28px; }
.menu-category h2 { font-size: 2.4rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.menu-item h3 { margin: 0; font-size: 1.2rem; }
.menu-item p { margin: 0; color: var(--muted); font-size: .88rem; }
.price { color: var(--gold); font-weight: 700; grid-row: span 2; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-list { display: grid; gap: 28px; margin-top: 35px; }
.contact-list small { display: block; color: var(--gold); font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 42px; background: var(--panel); border: 1px solid rgba(255,255,255,.08); }
.field-full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .82rem; }
input, textarea, select { width: 100%; border: 1px solid rgba(255,255,255,.16); background: #100d0e; color: var(--ink); padding: 14px; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }

.legal { max-width: 820px; }
.legal h2 { margin-top: 50px; font-size: 2rem; }
.legal p, .legal li { color: var(--muted); }
.success-box { text-align: center; padding: 70px 24px; border: 1px solid var(--line); background: var(--panel); }

.site-footer { padding: 70px 0 25px; background: #0c090a; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 60px; }
.site-footer h3 { font-size: 1.25rem; }
.site-footer p, .site-footer a { color: var(--muted); font-size: .9rem; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: #8e8181; font-size: .78rem; }

.cookie-banner { position: fixed; z-index: 200; left: 20px; bottom: 20px; width: min(440px, calc(100% - 40px)); padding: 24px; background: #231b1d; border: 1px solid var(--line); box-shadow: 0 20px 70px #000; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { color: var(--muted); font-size: .85rem; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { cursor: pointer; border: 1px solid var(--gold); padding: 9px 14px; background: var(--gold); color: #181011; font-weight: 700; }
.cookie-actions .decline { background: transparent; color: var(--ink); }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head, .split, .casino-grid, .contact-grid, .evening { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 50px; }
  .image-frame img { height: 460px; }
  .evening-image { min-height: 430px; order: 2; }
  .casino-panel { position: static; }
  .nav { position: fixed; inset: 84px 0 0; display: none; align-content: start; justify-content: center; flex-direction: column; gap: 28px; padding: 60px 30px; background: #120f10; }
  .menu-open .nav { display: flex; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 135px; }
  .hero-facts { gap: 20px; flex-direction: column; }
  .section-head { gap: 20px; }
  .form { grid-template-columns: 1fr; padding: 24px; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
