:root {
  --bg: #111111;
  --bg-soft: #191919;
  --text: #f7f3e8;
  --muted: #d5c8a8;
  --primary: #f2b705;
  --primary-2: #d9480f;
  --accent: #7abf1b;
  --card: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);
  --shadow: 0 20px 50px rgba(0,0,0,.25);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: linear-gradient(90deg, var(--primary), #ffde59);
  color: #1a1a1a;
  font-weight: 700;
  font-size: .92rem;
}
.topbar-inner {
  display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; flex-wrap: wrap;
}
.hero {
  min-height: 100vh;
  background:
    linear-gradient(120deg, rgba(17,17,17,.92), rgba(17,17,17,.78)),
    url('assets/5.jpg') center/cover no-repeat;
}
.nav {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 72px; height: 72px; object-fit: cover; border-radius: 50%; border: 3px solid rgba(255,255,255,.18); background: #fff;
}
.brand strong { display: block; font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: 2rem; color: var(--primary); }
.brand small { color: var(--muted); }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a { font-weight: 600; color: #fff; }
.hero-content {
  display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 42px; padding: 52px 0 88px;
}
.tag, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: rgba(242,183,5,.14); color: #ffd75a; border: 1px solid rgba(242,183,5,.3);
  font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .04em;
}
.hero-copy h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(3.2rem, 8vw, 6rem); line-height: .95; margin: 18px 0 16px; letter-spacing: 1px;
}
.hero-copy p { font-size: 1.05rem; color: #f5ead2; max-width: 620px; }
.hero-actions, .contact-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 16px; font-weight: 800; transition: .3s ease; box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ffdb47); color: #1b1b1b; }
.btn-outline { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.06); color: #fff; }
.hero-points {
  margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 10px;
}
.hero-points li::before { content: '•'; color: var(--primary); margin-right: 10px; }
.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  border: 1px solid var(--border); border-radius: 28px; padding: 18px; box-shadow: var(--shadow);
}
.hero-card img { border-radius: 20px; width: 100%; object-fit: cover; }
.section { padding: 92px 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 38px; }
.section-head h2, .content h2, .info-box h2, .contact-card h2 {
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; font-size: clamp(2.2rem, 5vw, 4rem); margin: 14px 0 12px;
}
.section-head p, .content p, .info-box p, .contact-card p { color: #d8d0bb; line-height: 1.7; }
.promos { background: linear-gradient(180deg, #18120b, #111111); }
.promo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.promo-card, .info-box, .contact-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); backdrop-filter: blur(10px);
}
.promo-card img { aspect-ratio: 1/1; width: 100%; object-fit: cover; }
.promo-card div { padding: 18px; }
.promo-card h3, .contact-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.promo-card p { margin: 0; color: #d8d0bb; }
.dark-section { background: #0d0d0d; }
.two-col, .split-inner, .contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list > div {
  padding: 18px 20px; border-radius: 20px; background: rgba(255,255,255,.04); border: 1px solid var(--border);
}
.feature-list h3 { margin: 0 0 8px; color: var(--primary); }
.menu-stack { display: grid; gap: 18px; }
.menu-stack img { border-radius: 22px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.split-band { background: linear-gradient(180deg, #111111, #1f1407); }
.info-box { padding: 28px; }
.video-wrap {
  position: relative; overflow: hidden; border-radius: 20px; padding-top: 177.78%; margin-top: 16px; border: 1px solid var(--border);
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-section { background: #121212; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.gallery-item {
  padding: 0; border: 0; background: none; cursor: pointer; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.contact-section { background: linear-gradient(180deg, #1b1205, #0f0f0f); }
.contact-card { padding: 30px; }
form { display: grid; gap: 14px; }
input, textarea {
  width: 100%; background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; padding: 16px 18px;
}
input::placeholder, textarea::placeholder { color: #cfc2a2; }
.full { width: 100%; }
.footer {
  padding: 26px 0 34px; background: #090909; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #dbcfae;
}
.footer a { color: var(--primary); }
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; width: 62px; height: 62px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 60;
}
.floating-wa svg { width: 30px; fill: white; }
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 100;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: rgba(255,255,255,.12); color: #fff; font-size: 2rem; cursor: pointer;
}
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 980px) {
  .hero-content, .two-col, .split-inner, .contact-grid, .promo-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .nav { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .hero-content, .two-col, .split-inner, .contact-grid, .promo-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-content { padding-top: 24px; }
  .nav-links { gap: 14px; }
  .brand strong { font-size: 1.7rem; }
  .section { padding: 74px 0; }
  .topbar-inner, .footer-inner { flex-direction: column; }
}
