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

:root {
  --bg: #0a0b0b;
  --surface: #111414;
  --surface-2: #171b1b;
  --line: rgba(255, 255, 255, .12);
  --text: #f6f2ea;
  --muted: #c8c0b4;
  --gold: #c9a449;
  --gold-2: #f0cf7a;
  --sea: #2f8f91;
  --ink: #070707;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 72px;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #050606;
  border-bottom: 1px solid var(--line);
  z-index: 1200;
}

.top-strip__track {
  display: inline-block;
  min-width: 100%;
  padding-left: 100%;
  white-space: nowrap;
  color: var(--muted);
  font-size: 12px;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.navbar {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(16px, 5vw, 56px);
  background: rgba(10, 11, 11, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  z-index: 1100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.1;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 17px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--gold-2);
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.reservation-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.page-offset {
  padding-top: 106px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 34px));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  filter: brightness(1.08) saturate(1.04);
  transform: scale(1.02);
  transition: opacity .9s ease, transform 4s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, .34), rgba(3, 3, 3, .14) 52%, rgba(3, 3, 3, .04)),
    linear-gradient(180deg, rgba(3, 3, 3, .03), rgba(3, 3, 3, .24));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0 64px;
  transform: translateY(30%);
  text-shadow: 0 2px 14px rgba(0, 0, 0, .42);
}

.eyebrow {
  display: inline-block;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  font-size: clamp(32px, 5.6vw, 58px);
  font-weight: 600;
}

.hero-content p {
  max-width: 660px;
  margin-top: 18px;
  color: #eee5d5;
  font-size: clamp(16px, 2vw, 20px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 207, 122, .55);
}

.btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.btn-sea {
  background: var(--sea);
  border-color: var(--sea);
  color: #fff;
}

.section,
.band {
  padding: 70px clamp(16px, 5vw, 56px);
}

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2,
.content-page h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 600;
}

.section-header p,
.content-page p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.info-panel,
.contact-card,
.faq-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.feature-card h3,
.contact-card h3,
.faq-card h3 {
  color: var(--gold-2);
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card p,
.info-panel p,
.contact-card p,
.faq-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 30px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease;
}

.gallery-grid img:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.menu-preview {
  width: min(820px, 100%);
  margin: 26px auto 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a {
  color: var(--gold-2);
  text-decoration: none;
}

.map-wrap {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.content-page {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 156px 0 74px;
}

.content-page h2 {
  margin-top: 34px;
  color: var(--gold-2);
  font-size: 24px;
}

.content-page ul {
  margin-top: 14px;
  padding-left: 22px;
  color: var(--muted);
}

.content-page li + li {
  margin-top: 8px;
}

.content-page a {
  color: var(--gold-2);
}

.footer {
  padding: 42px 16px 96px;
  background: #050606;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  margin: 0 auto 12px;
}

.footer p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.footer a {
  color: var(--gold-2);
  text-decoration: none;
}

.mobile-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 64px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(5, 6, 6, .96);
  border-top: 1px solid var(--line);
  z-index: 1300;
}

.mobile-bar a {
  width: 48px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--gold-2);
  text-decoration: none;
}

.mobile-bar svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.reservation-overlay,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .78);
  z-index: 2500;
}

.reservation-overlay.show,
.lightbox-overlay.show {
  display: flex;
}

.reservation-modal {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.reservation-modal h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.form-field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.form-field label {
  color: var(--muted);
  font-size: 13px;
}

.form-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d0f0f;
  color: var(--text);
  font: inherit;
}

.form-field input:focus {
  outline: 2px solid rgba(201, 164, 73, .36);
  border-color: var(--gold);
}

.modal-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.lightbox-overlay img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 920px) {
  .menu {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu.show {
    display: flex;
  }

  .menu a {
    padding: 12px;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .reservation-nav {
    position: fixed;
    right: 14px;
    bottom: 76px;
    z-index: 1350;
    display: inline-flex;
    min-height: 44px;
    padding: 10px 14px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, .34);
  }

  .feature-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .navbar {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand span {
    font-size: 15px;
  }

  .menu {
    top: 66px;
  }

  .hero {
    min-height: 650px;
  }

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

  .section,
  .band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .gallery-grid {
    gap: 8px;
  }

  .content-page {
    padding-top: 136px;
  }
}
