/* ─── RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #F5C518;
  --gold-dk: #c9a010;
  --black:   #000000;
  --bg-2:    #080808;
  --bg-3:    #0d0d0d;
  --white:   #ffffff;
  --muted:   rgba(255,255,255,.45);
  --border:  rgba(255,255,255,.07);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius:  16px;
  --trans:   .3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── UTILITIES ──────────────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

em { font-style: italic; }

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

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold) 0%, #fff9e0 45%, var(--gold) 70%, var(--gold-dk) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3.5s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-primary, .btn-outline, .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  white-space: nowrap;
}
.btn-primary:active, .btn-outline:active { transform: scale(.96); }

.btn-primary {
  background: var(--gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--gold-dk);
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(245,197,24,.25);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(245,197,24,.4);
}
.btn-outline:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: scale(1.04);
}

.btn-large { padding: 15px 34px; font-size: 15px; }
.btn-icon { font-size: 16px; }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), padding var(--trans), border-color var(--trans);
  padding: 20px 0;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.logo em { color: var(--gold); font-style: normal; }

.logo-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #000;
  border: 1.5px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex-shrink: 0;
  transition: transform var(--trans);
  padding: 4px;
}
.logo:hover .logo-circle { transform: rotate(-5deg) scale(1.08); }
.logo-circle .lc-word {
  font-family: 'DM Sans', Arial Black, sans-serif;
  font-weight: 900;
  font-size: 11px;
  color: #F5C518;
  line-height: 1;
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: 0.4px;
}
.logo-circle .lc-fly {
  /* letter-spacing adds space AFTER each char, so the text shifts right.
     text-indent compensates by pushing the block back left by half the total added space.
     Total added space = letter-spacing × number of chars (3) = 3.5×3 ≈ 10.5px → indent ≈ -5.25px */
  letter-spacing: 3.5px;
  text-indent: -3.5px;
}
.logo-circle .lc-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F5C518;
  flex-shrink: 0;
}
/* footer logo — slightly smaller */
.footer-logo .logo-circle {
  width: 38px;
  height: 38px;
}
.footer-logo .logo-circle .lc-word { font-size: 9.5px; }
.footer-logo .logo-circle .lc-dot  { width: 3.5px; height: 3.5px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  margin-left: 8px;
  padding: 9px 20px;
  font-size: 13px;
  background: var(--gold);
  color: #000;
}
.btn-nav:hover {
  background: var(--gold-dk);
  transform: scale(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 24px 16px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.97);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  text-decoration: none;
  color: rgba(255,255,255,.65);
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover, .mobile-link.gold { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(400px, 54.6vw, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  /* no overflow: video is position:absolute inset:0, body handles horizontal */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000; /* shown before/if video fails to load */
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.35) 40%,
    rgba(0,0,0,.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  overflow: visible;
  padding-bottom: 0.3em; /* generous room for the "y" descender in Playfair Display */
}
.title-line {
  display: block;
  font-size: clamp(5rem, 18vw, 12rem);
  overflow: visible;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,.6);
  font-weight: 300;
  letter-spacing: .03em;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.stat { display: flex; align-items: center; gap: 6px; }
.stat-icon { font-size: 14px; }
.stat-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,.3);
  font-size: 22px;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: color var(--trans);
}
.scroll-hint:hover { color: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTIONS ───────────────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); }

.section-sub {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 48px;
}

/* ─── CONCEPT CARDS ──────────────────────────────────────────────────────── */
.concept { background: var(--bg-2); }
.concept .container { text-align: center; }
.concept .section-sub { margin-left: auto; margin-right: auto; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.card {
  position: relative;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.card:hover {
  border-color: rgba(245,197,24,.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(245,197,24,.08);
}
.card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.card-icon { font-size: 28px; margin-bottom: 16px; display: block; }
.card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ─── MENU ───────────────────────────────────────────────────────────────── */
.menu-section .container { text-align: center; }

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
}
.tab:hover { border-color: rgba(245,197,24,.35); color: var(--white); }
.tab.active { background: var(--gold); color: #000; border-color: var(--gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 18px;
  text-align: left;
}

.menu-item {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  animation: fadeUp .5s ease both;
}
.menu-item:hover {
  border-color: rgba(245,197,24,.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(245,197,24,.08);
}

.menu-item-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.menu-item:hover .menu-item-img { transform: scale(1.06); }
.menu-item-img-wrap {
  overflow: hidden;
  position: relative;
}
.menu-item-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.menu-item-body { padding: 16px 18px 18px; }
.menu-item-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.menu-item-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ─── STEPS ──────────────────────────────────────────────────────────────── */
.steps-section { background: var(--bg-2); }
.steps-section .container { text-align: center; }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.step { max-width: 220px; text-align: center; }
.step-circle {
  position: relative;
  width: 88px; height: 88px;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,.2);
  background: rgba(245,197,24,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  transition: border-color var(--trans), background var(--trans);
}
.step:hover .step-circle {
  border-color: rgba(245,197,24,.5);
  background: rgba(245,197,24,.1);
}
.step-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  background: var(--gold);
  color: #000;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.step-arrow {
  font-size: 20px;
  color: rgba(245,197,24,.3);
  margin-top: 44px;
  flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid rgba(245,197,24,.1);
  border-bottom: 1px solid rgba(245,197,24,.1);
  background: rgba(245,197,24,.02);
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,197,24,.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section .section-sub { margin: 0 auto 36px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: #040404;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all var(--trans);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-links a, .footer-links span {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  color: rgba(255,255,255,.2);
  font-size: 12px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }

  .step-arrow { display: none; }
  .steps { gap: 28px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: unset; }

  .section { padding: 72px 0; }
  .cta-section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    text-align: center;
    justify-content: center;
    min-height: 48px; /* touch-target standard */
  }
  .menu-grid { grid-template-columns: 1fr; }
}
