:root {
  --ink: #130f0c;
  --paper: #f5efe4;
  --cream: #fffaf0;
  --wine: #6f1828;
  --wine-dark: #3f0d18;
  --gold: #b98a3d;
  --green: #173f35;
  --muted: #756b62;
  --line: rgba(77, 49, 29, .18);
  --shadow: 0 24px 70px rgba(36, 18, 7, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font: 700 .72rem/1.2 Arial, sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(3.1rem, 8vw, 7.3rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.4rem); letter-spacing: -.035em; }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
.lead { color: #514941; font-size: 1.18rem; line-height: 1.75; }
.section { padding: 110px 0; }
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head p:last-child { margin-top: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(19, 15, 12, .96);
  color: #fff8e8;
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.nav-wrap > * { min-width: 0; }
.brand { text-decoration: none; display: inline-grid; line-height: 1; }
.brand strong { font-size: 1.35rem; font-weight: 500; letter-spacing: .04em; }
.brand span { margin-top: 7px; color: #d7b677; font: 700 .58rem Arial, sans-serif; letter-spacing: .2em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 7px; }
.nav a {
  padding: 10px 14px;
  border-radius: 99px;
  text-decoration: none;
  font: 700 .75rem Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav a:hover, .nav a.active { color: #1d130b; background: #ddb968; }
.menu-toggle {
  display: none;
  padding: 9px 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 7px;
  background: transparent;
}

.hero {
  min-height: 790px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: #fff;
  background: #1e1510 url("../img/bg.jpeg") center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(14,8,5,.9) 0%, rgba(14,8,5,.62) 48%, rgba(14,8,5,.18) 100%);
}
.hero-content { max-width: 820px; padding: 140px 0 85px; }
.hero .eyebrow { color: #e6c378; }
.hero h1 { max-width: 780px; }
.hero .lead { max-width: 680px; margin: 28px 0 34px; color: #f5ead9; }
.hero-actions, .actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--wine);
  border-radius: 4px;
  background: var(--wine);
  color: #fff;
  text-decoration: none;
  font: 700 .78rem Arial, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover { background: var(--wine-dark); }
.btn-light { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.btn-light:hover { background: #fff; color: var(--ink); }

.intro-grid, .split, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}
.portrait-frame { position: relative; }
.portrait-frame::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -18px;
  width: 42%;
  height: 42%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.portrait-frame img { min-height: 580px; object-fit: cover; box-shadow: var(--shadow); }
.signature { margin-top: 30px; color: var(--wine); font-size: 1.8rem; font-style: italic; }

.highlights { background: var(--green); color: #f7f1e5; }
.highlights .eyebrow { color: #e3bd73; }
.highlights .section-head p:last-child { color: #d6ded9; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 280px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
}
.feature-card .number { color: #ddb968; font: 700 .75rem Arial, sans-serif; letter-spacing: .18em; }
.feature-card p { margin: 16px 0 0; color: #cfdbd6; }

.menu-preview { background: #f9f3e8; }
.menu-list { border-top: 1px solid var(--line); }
.dish {
  padding: 22px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.dish h3 { margin-bottom: 7px; }
.dish p { margin: 0; color: var(--muted); }
.price { color: var(--wine); font-size: 1.15rem; white-space: nowrap; }
.wide-image { height: min(58vw, 590px); object-fit: cover; }

.quote-band { padding: 90px 0; background: var(--wine); color: #fff8ea; text-align: center; }
.quote-band blockquote { max-width: 900px; margin: 0 auto; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1.25; }
.quote-band cite { display: block; margin-top: 22px; color: #e6c889; font: 700 .75rem Arial, sans-serif; letter-spacing: .14em; text-transform: uppercase; }

.page-hero { padding: 115px 0 75px; background: var(--green); color: #fffaf0; }
.page-hero .eyebrow { color: #e2bd73; }
.page-hero p:last-child { max-width: 720px; margin-top: 24px; color: #dae4df; font-size: 1.15rem; }
.page-hero.casino {
  min-height: 590px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  background: #10100e url("../img/cas-2.jpg") center/cover no-repeat;
}
.page-hero.casino::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(9,8,7,.92), rgba(9,8,7,.45)); }
.page-hero.casino p:last-child { color: #f7eee0; }

.menu-category { margin-top: 55px; }
.menu-category:first-child { margin-top: 0; }
.menu-category h2 { margin-bottom: 24px; font-size: clamp(2rem, 4vw, 3.2rem); }
.notice { padding: 24px; border-left: 4px solid var(--gold); background: #fff8e9; color: #4c423a; }

.casino-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; }
.casino-card { padding: 34px; border: 1px solid var(--line); background: #fffaf1; }
.casino-card.dark { background: var(--wine-dark); color: #fff; border: 0; }
.casino-card p { margin-top: 14px; color: var(--muted); }
.casino-card.dark p { color: #eadbe0; }
.casino-card ul { margin: 22px 0 0; padding-left: 20px; }
.responsible { padding: 34px; border: 1px solid var(--line); background: #e9e0d2; }

.contact-grid { align-items: start; }
.info-stack { display: grid; gap: 18px; }
.info-box { padding: 26px; border-top: 2px solid var(--gold); background: #fffaf1; box-shadow: 0 12px 35px rgba(44,25,11,.08); }
.info-box h3 { margin-bottom: 8px; }
.form {
  padding: 38px;
  background: var(--green);
  color: #fff;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font: 700 .72rem Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
input, textarea, select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 2px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
select option { color: #111; }
textarea { min-height: 130px; resize: vertical; }
.check { display: flex; gap: 10px; align-items: flex-start; }
.check input { width: auto; margin-top: 6px; }

.legal { padding: 80px 0 110px; }
.legal article { max-width: 860px; margin: 0 auto; padding: clamp(25px, 6vw, 60px); background: #fffaf1; box-shadow: var(--shadow); }
.legal h1 { margin-bottom: 34px; font-size: clamp(2.5rem, 6vw, 4.6rem); }
.legal h2 { margin: 36px 0 12px; font-size: 1.65rem; }
.legal li { margin-bottom: 8px; }

.thanks { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 70px 0; text-align: center; background: var(--green); color: #fff; }
.thanks-card { max-width: 680px; }
.thanks-mark { width: 84px; height: 84px; margin: 0 auto 24px; display: grid; place-items: center; border: 1px solid #dcb86b; border-radius: 50%; font-size: 2rem; }
.thanks p { margin: 25px auto 30px; color: #d7e1dc; }

.site-footer { padding: 58px 0 28px; background: #130f0c; color: #e9dfd0; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 40px; }
.site-footer h3 { margin-bottom: 16px; color: #fff8ea; }
.site-footer p, .site-footer a { color: #baaFA1; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #deb96c; }
.footer-bottom { margin-top: 42px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #9f9588; font-size: .88rem; }
.age { color: #deb96c; font-weight: 700; }

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: min(430px, calc(100% - 36px));
  padding: 22px;
  display: none;
  border: 1px solid #d8b56d;
  background: #17120e;
  color: #eee5d8;
  box-shadow: var(--shadow);
}
.cookie-banner.visible { display: block; }
.cookie-banner p { font-size: .92rem; }
.cookie-banner a { color: #e3bf77; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button { padding: 9px 14px; border: 1px solid #d8b56d; background: #d8b56d; color: #1b130b; cursor: pointer; }
.cookie-actions .secondary { background: transparent; color: #fff; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 16px 20px 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: #130f0c;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav.open { display: flex; }
  .nav a { text-align: center; }
  .hero { min-height: 690px; }
  .intro-grid, .split, .contact-grid, .casino-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .portrait-frame img { min-height: 430px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .nav-wrap { gap: 10px; }
  .brand strong { font-size: 1.08rem; }
  .brand span { font-size: .5rem; letter-spacing: .14em; }
  .menu-toggle { flex: 0 0 auto; }
  .section { padding: 78px 0; }
  .hero-content { padding: 100px 0 62px; }
  .hero .lead { font-size: 1.03rem; }
  .card-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 230px; }
  .field.full { grid-column: auto; }
  .form { padding: 26px 20px; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 85px 0 58px; }
  .page-hero p, .hero p { max-width: 100%; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
