:root {
  --bg: #0d0c0a;
  --bg-2: #161410;
  --bg-3: #1e1b17;
  --fg: #f0ebe3;
  --fg-dim: #9a9188;
  --accent: #e8a838;
  --accent-dim: #c4891e;
  --border: rgba(240, 235, 227, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(13,12,10,0.9) 0%, transparent 100%);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}
.nav-menu-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-menu-link:hover { color: var(--accent); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,168,56,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,168,56,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: #e8a838;
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: #c4521a;
  bottom: -50px; right: -50px;
}
.hero-glow-3 {
  width: 400px; height: 400px;
  background: #e8a838;
  top: 30%; left: 50%;
  transform: translateX(-50%);
  opacity: 0.07;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 10vw;
  width: 100%;
}
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 16vw, 220px);
  line-height: 0.85;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title br { display: block; }
.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--fg-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3); }
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

/* ── CONCEPT ── */
.concept {
  padding: 120px 10vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.concept-inner {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.concept-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: rgba(232,168,56,0.15);
  line-height: 1;
  padding-top: 8px;
}
.concept-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}
.concept-text {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 16px;
}
.concept-visual {
  position: relative;
  height: 300px;
  align-self: center;
}
.cv-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,168,56,0.2);
}
.cv-circle-1 {
  width: 200px; height: 200px;
  top: 0; left: 0;
  background: radial-gradient(circle at 30% 30%, rgba(232,168,56,0.08), transparent);
  animation: rotate-slow 12s linear infinite;
}
.cv-circle-2 {
  width: 140px; height: 140px;
  top: 40px; left: 40px;
  border-color: rgba(232,168,56,0.3);
  animation: rotate-slow 8s linear infinite reverse;
}
.cv-circle-3 {
  width: 80px; height: 80px;
  top: 70px; left: 70px;
  background: rgba(232,168,56,0.06);
  border-color: rgba(232,168,56,0.4);
  animation: rotate-slow 5s linear infinite;
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── DRINKS ── */
.drinks {
  padding: 120px 10vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.drinks-header {
  margin-bottom: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.drinks-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--fg);
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.drink-card {
  padding: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  transition: background 0.3s ease;
}
.drink-card:hover { background: var(--bg-3); }
.drink-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}
.drink-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.drink-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ── NIGHTS ── */
.nights {
  padding: 120px 10vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.nights-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.nights-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  color: var(--fg);
  margin-bottom: 24px;
}
.nights-body {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.8;
}
.night-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.night-row:last-child { border-bottom: none; }
.night-day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.night-name {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.night-desc {
  display: block;
  font-size: 13px;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 160px 10vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}
.deco-line {
  width: 80px;
  height: 1px;
  background: rgba(232,168,56,0.3);
}
.deco-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.closing-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.95;
  color: var(--fg);
  margin-bottom: 36px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.closing-location {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 10vw;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.footer-copy {
  font-size: 12px;
  color: rgba(154, 145, 136, 0.5);
  margin-top: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-title { font-size: clamp(72px, 22vw, 120px); }
  .hero-scroll { display: none; }
  .concept-inner { grid-template-columns: 1fr; gap: 32px; }
  .concept-number { font-size: 48px; }
  .concept-visual { display: none; }
  .drinks-grid { grid-template-columns: 1fr; }
  .nights-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 100px 24px; }
  .concept, .drinks, .nights { padding: 80px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 80px; }
  .drinks-title, .nights-title { font-size: 48px; }
}
