:root {
  --bg: #080706;
  --bg-soft: #11100e;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.09);
  --text: #f8f2e8;
  --muted: #b9aa96;
  --gold: #d5a756;
  --gold-dark: #9d7135;
  --wine: #301521;
  --border: rgba(213, 167, 86, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 20% 0%, rgba(213, 167, 86, 0.12), transparent 32rem),
    radial-gradient(circle at 100% 20%, rgba(90, 28, 61, 0.26), transparent 28rem),
    var(--bg);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 7, 6, 0.62);
  backdrop-filter: blur(16px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(8, 7, 6, 0.92);
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.site-nav {
  position: fixed;
  inset: 68px 16px auto 16px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(13, 12, 10, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 10px 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(213, 167, 86, 0.08);
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.2s ease;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.language-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(213, 167, 86, 0.08);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(8, 7, 6, 0.12), rgba(8, 7, 6, 0.72) 78%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.54), rgba(8, 7, 6, 0.84)),
    linear-gradient(180deg, rgba(8, 7, 6, 0.15), var(--bg));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(112px, 14vh, 160px) 0 clamp(48px, 8vh, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 12vw, 6.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 7vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-text,
.section-copy > p,
.section-heading p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #16100a;
  background: linear-gradient(135deg, var(--gold), #f0d08a);
}

.btn-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span,
.stats div,
.hours-box {
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.hero-meta span {
  border-radius: 999px;
  padding: 7px 12px;
  color: #ead8bc;
  font-size: 0.86rem;
}

.section {
  padding: 76px 0;
}

.split,
.reservation-layout {
  display: grid;
  gap: 28px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.about {
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.about-card,
.service-card,
.reservation-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel-strong), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.about-card {
  padding: 24px;
}

.about-card p {
  color: var(--gold);
  font-weight: 700;
}

.about-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.about-card li + li {
  margin-top: 12px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.stats div {
  border-radius: 8px;
  padding: 18px;
}

.stats strong {
  display: block;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.services,
.reservation-section {
  background:
    linear-gradient(120deg, rgba(48, 21, 33, 0.5), transparent 50%),
    var(--bg);
}

.service-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  padding: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(213, 167, 86, 0.55);
  background: linear-gradient(145deg, rgba(213, 167, 86, 0.1), rgba(255, 255, 255, 0.035));
}

.service-icon {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  background: var(--bg-soft);
}

.gallery-slider {
  position: relative;
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #17110d;
  box-shadow: var(--shadow);
}

.gallery-track {
  display: flex;
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
  min-height: 260px;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-slide-main img {
  object-position: center 58%;
}

.gallery-slide-drink img {
  object-position: center center;
}

.gallery-slide-logo img {
  object-position: center 42%;
}

.gallery-slide-guests img {
  object-position: center 48%;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.74));
}

.gallery-slider:hover img {
  transform: scale(1.03);
  filter: saturate(1.1);
}

.gallery-slide figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
}

.gallery-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.55);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-control:hover {
  background: rgba(8, 7, 6, 0.82);
  border-color: var(--gold);
  color: var(--gold);
}

.gallery-control-prev {
  left: 14px;
}

.gallery-control-next {
  right: 14px;
}

.gallery-control span {
  font-size: 1.9rem;
  line-height: 1;
}

.gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.gallery-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.hours-box {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: var(--muted);
}

.hours-box div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-box strong {
  color: var(--text);
}

.reservation-form {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  color: #ead8bc;
  font-size: 0.9rem;
  font-weight: 700;
}

.subfield {
  display: grid;
  gap: 7px;
}

.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  width: 100%;
  border: 1px solid rgba(213, 167, 86, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  padding: 12px 13px;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 4px rgba(213, 167, 86, 0.1);
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: #7f725f;
}

.reservation-form select {
  appearance: none;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
  font-weight: 700;
}

.footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--border);
  background: #060504;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.footer h3 {
  color: var(--gold);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold);
}

.copyright {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #7f725f;
  font-size: 0.9rem;
}

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

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

@media (min-width: 720px) {
  .site-header {
    padding-inline: 32px;
  }

  .site-nav {
    margin-right: auto;
  }

  .header-actions {
    margin-left: 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 8px 10px;
  }

  .split,
  .reservation-layout,
  .footer-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-slide,
  .gallery-slide img {
    min-height: 420px;
  }

  .reservation-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .reservation-form label:has(textarea),
  .reservation-form button,
  .form-message {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .section {
    padding: 108px 0;
  }

  .hero-content {
    padding-top: 160px;
  }

  .hero-media {
    padding-inline: 32px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
}
