/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --card: #17171b;
  --gold: #c9a15a;
  --gold-light: #e8c98a;
  --text: #f2ede4;
  --text-dim: #a7a29b;
  --border: rgba(201, 161, 90, 0.18);
  --ff-title: 'Playfair Display', serif;
  --ff-body: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

h1, h2, h3 { font-family: var(--ff-title); font-weight: 700; line-height: 1.15; }

.accent { color: var(--gold); font-style: italic; }

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #17130a;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(201, 161, 90, 0.35);
}
.btn--outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(201, 161, 90, 0.08);
}
.btn--small { padding: 11px 22px; font-size: 13px; }
.btn--full { width: 100%; padding: 16px; }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}
.header.scrolled {
  padding: 12px 0;
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--ff-title);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--gold-light);
}
.nav {
  display: flex;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(201,161,90,0.12), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(201,161,90,0.08), transparent 50%),
    linear-gradient(180deg, #0b0b0d 0%, #131316 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px, transparent 1px, transparent 3px);
  opacity: 0.4;
}
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  from { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  to { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}
.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding-top: 60px;
}
.hero__eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(42px, 7vw, 84px);
  margin-bottom: 26px;
  color: var(--text);
}
.hero__desc {
  max-width: 560px;
  margin: 0 auto 44px;
  color: var(--text-dim);
  font-size: 18px;
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 12px;
  letter-spacing: 1px;
}
.hero__scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== Section shared ===== */
section { padding: 130px 0; position: relative; }
.section-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.section-tag--center { text-align: center; }
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  text-align: center;
  margin-bottom: 60px;
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__media { position: relative; }
.about__frame {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background:
    linear-gradient(145deg, #1c1a16, #0f0e0c),
    radial-gradient(circle at 30% 20%, rgba(201,161,90,0.25), transparent 60%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about__frame::before {
  content: '🍸';
  position: absolute;
  font-size: 120px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  filter: drop-shadow(0 0 40px rgba(201,161,90,0.4));
}
.about__p {
  color: var(--text-dim);
  max-width: 520px;
  margin: 22px 0 44px;
}
.about__stats {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--ff-title);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-light);
}
.stat__label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ===== Menu ===== */
.menu { background: var(--bg-alt); }
.tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--ff-body);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab:hover { border-color: var(--gold); color: var(--text); }
.tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #17130a;
  font-weight: 600;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card.hidden { display: none; }
.card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #232019, #14120e);
  position: relative;
}
.card__img::after {
  content: '🍹';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  opacity: 0.7;
}
.card__img--2::after { content: '🥃'; }
.card__img--3::after { content: '🍸'; }
.card__img--4::after { content: '🍃'; }
.card__img--5::after { content: '🌹'; }
.card__img--6::after { content: '🍓'; }
.card__body { padding: 22px; }
.card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 10px;
}
.card__top h3 { font-size: 20px; }
.price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.card p { color: var(--text-dim); font-size: 14px; }

/* ===== Gallery ===== */
.gallery__row {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery__row::-webkit-scrollbar { display: none; }
.gallery__item {
  min-width: 300px;
  height: 380px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #201c15, #0d0c0a);
  position: relative;
  overflow: hidden;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(201,161,90,0.18), transparent 70%);
}
.gallery__item--1 { background: linear-gradient(160deg,#241d13,#0d0c0a); }
.gallery__item--2 { background: linear-gradient(160deg,#1a1d24,#0c0d0e); }
.gallery__item--3 { background: linear-gradient(160deg,#22181a,#0d0a0a); }
.gallery__item--4 { background: linear-gradient(160deg,#1b2018,#0b0d0a); }
.gallery__item--5 { background: linear-gradient(160deg,#201a24,#0c0a0e); }

/* ===== Booking ===== */
.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.booking__info {
  list-style: none;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking__info li {
  padding-left: 24px;
  position: relative;
}
.booking__info li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.booking__form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { width: 100%; }
.form-row--split { display: flex; gap: 14px; }
.form-row--split input { flex: 1; }
input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 14px;
  transition: border-color 0.3s ease;
}
input:focus {
  outline: none;
  border-color: var(--gold);
}
input::placeholder { color: var(--text-dim); }
input[type="date"], input[type="time"] { color-scheme: dark; }
.form-success {
  display: none;
  text-align: center;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===== Footer ===== */
.footer {
  background: #08080a;
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand p {
  color: var(--text-dim);
  margin-top: 14px;
  font-size: 14px;
  max-width: 260px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__col a, .footer__col span {
  color: var(--text-dim);
  font-size: 14px;
  transition: color 0.3s;
}
.footer__col a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.socials a:hover { border-color: var(--gold); background: rgba(201,161,90,0.08); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(19,19,22,0.8);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  font-size: 20px;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover { border-color: var(--gold); }

/* ===== Cursor glow ===== */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,161,90,0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about__grid, .booking__grid { grid-template-columns: 1fr; gap: 50px; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(11,11,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
  }
  .nav.open { right: 0; }
  .burger { display: flex; }
  .header__cta { display: none; }
  .menu__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .form-row--split { flex-direction: column; }
}
