/* SLIQUE Cocktail Bar — Dark modern design system */
:root {
  --bg: #070708;
  --bg-elev: #101114;
  --bg-card: #14151a;
  --bg-soft: #1b1c22;
  --line: rgba(212, 175, 55, 0.18);
  --line-strong: rgba(212, 175, 55, 0.38);
  --gold: #d4af37;
  --gold-soft: #e8d48b;
  --gold-dim: #8a7220;
  --cream: #f4efe4;
  --muted: #9a9488;
  --muted-2: #6e6a62;
  --danger: #c45c4a;
  --ok: #7d9a6c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --nav-h: 78px;
  --max: 1180px;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@view-transition { navigation: auto; }
::view-transition-old(root),
::view-transition-new(root) { animation-duration: .45s; }
html, body { background: var(--bg); color: var(--cream); }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 1000;
  background: var(--gold); color: #111; padding: 8px 14px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; z-index: 50;
  background: linear-gradient(180deg, rgba(7,7,8,.92), rgba(7,7,8,.55) 70%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(7,7,8,.88);
  border-bottom-color: var(--line);
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--gold);
}
.logo span { color: var(--cream); letter-spacing: .18em; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 16px; border-radius: 999px;
  letter-spacing: .14em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: #111 !important; }
.menu-toggle {
  display: none; background: none; border: 0; width: 40px; height: 40px;
  cursor: pointer; position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  position: absolute; left: 8px; width: 24px; height: 1.5px; background: var(--gold);
  transition: .25s;
}
.menu-toggle span { top: 19px; }
.menu-toggle span::before { content: ""; top: -7px; }
.menu-toggle span::after { content: ""; top: 7px; }

/* HERO + PARALLAX */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -12%;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212,175,55,.18), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(140,40,40,.22), transparent 50%),
    linear-gradient(180deg, #0b0b0d 0%, #070708 100%);
  transform: translateY(var(--parallax, 0px));
  will-change: transform;
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0, transparent 38%, rgba(0,0,0,.45) 100%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80L80 0' stroke='%23d4af37' stroke-opacity='.05'/%3E%3C/svg%3E");
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(40px); opacity: .45;
  z-index: -1; animation: float 12s ease-in-out infinite;
}
.hero-orb.a { width: 340px; height: 340px; background: #d4af37; top: 12%; left: 8%; }
.hero-orb.b { width: 420px; height: 420px; background: #6b1d1d; bottom: 8%; right: 6%; animation-delay: -4s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.05); }
}
.hero-inner { text-align: center; padding: 120px 24px 80px; max-width: 920px; }
.eyebrow {
  color: var(--gold);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: 18px;
}
.hero h1, .page-hero h1, .section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.08;
}
.hero h1 { font-size: clamp(3rem, 8vw, 6.4rem); margin-bottom: 18px; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.lede { color: var(--muted); font-size: 1.08rem; max-width: 560px; margin: 0 auto 32px; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  letter-spacing: .12em; text-transform: uppercase; font-size: .75rem;
  border: 1px solid var(--gold); transition: .25s;
}
.btn-gold { background: var(--gold); color: #111; }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { color: var(--gold); }
.btn-ghost:hover { background: rgba(212,175,55,.1); }

/* PAGE HERO */
.page-hero {
  position: relative;
  padding: 150px 24px 70px;
  overflow: hidden;
  text-align: center;
}
.page-hero .hero-bg { inset: -20% 0 0; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); margin: 8px 0 12px; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* BREADCRUMB */
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .78rem; color: var(--muted-2); letter-spacing: .08em;
  text-transform: uppercase;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold); }
.crumbs .sep { opacity: .5; }
.page-hero .crumbs { justify-content: center; margin-bottom: 10px; }

/* LAYOUT */
.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 88px 0; position: relative; }
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-kicker { color: var(--gold); letter-spacing: .28em; text-transform: uppercase; font-size: .72rem; margin-bottom: 10px; }

/* CARDS / MENU GRID */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.cocktail-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column;
}
.cocktail-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.card-visual {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #101114;
}
.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.cocktail-card:hover .card-visual img { transform: scale(1.05); }
.card-visual .glow {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  filter: blur(30px); opacity: .55;
}
.glass {
  width: 72px; height: 110px; position: relative; z-index: 1;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: inset 0 0 20px rgba(255,255,255,.06);
}
.glass.coupe { width: 92px; height: 48px; border-radius: 0 0 80px 80px; margin-top: 30px; }
.glass.coupe::after {
  content: ""; position: absolute; left: 50%; bottom: -42px; width: 3px; height: 42px;
  background: rgba(255,255,255,.2); transform: translateX(-50%);
}
.glass.coupe::before {
  content: ""; position: absolute; left: 50%; bottom: -50px; width: 36px; height: 6px;
  border-radius: 4px; background: rgba(255,255,255,.18); transform: translateX(-50%);
}
.glass.highball { height: 128px; width: 54px; border-radius: 6px 6px 10px 10px; }
.glass.mug { width: 78px; height: 90px; border-radius: 8px; }
.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-meta { display: flex; justify-content: space-between; color: var(--muted-2); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.card-body h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; }
.card-body p { color: var(--muted); font-size: .9rem; flex: 1; }
.price { color: var(--gold); font-variant-numeric: tabular-nums; }

/* FILTERS */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.filter-btn {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
  letter-spacing: .1em; text-transform: uppercase; font-size: .7rem;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); }

/* PRODUCT */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
  padding: 40px 0 80px;
}
.product-visual {
  position: sticky; top: 100px;
  min-height: 520px; border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow: hidden;
}
.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.product-visual .glow { position: absolute; width: 280px; height: 280px; border-radius: 50%; filter: blur(50px); }
.product-glass { transform: scale(1.8); }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0 22px; }
.badge {
  border: 1px solid var(--line); padding: 5px 10px; border-radius: 999px;
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.spec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 28px; }
.spec { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; }
.spec dt { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.spec dd { font-family: var(--font-serif); font-size: 1.05rem; }
.ingredients { list-style: none; display: grid; gap: 8px; margin: 14px 0 22px; }
.ingredients li {
  display: flex; justify-content: space-between; gap: 12px;
  border-bottom: 1px dashed var(--line); padding: 8px 0;
}
.ingredients span { color: var(--muted); }
.method { color: var(--muted); }
.method p + p { margin-top: 10px; }
.related { margin-top: 20px; }

/* OFFERS */
.offer-card {
  background: linear-gradient(180deg, #17151a, #101014);
  border: 1px solid var(--line);
  border-radius: 22px; padding: 28px;
  position: relative; overflow: hidden;
}
.offer-card h3 { font-family: var(--font-serif); font-size: 1.8rem; margin: 8px 0 10px; }
.offer-card p { color: var(--muted); }
.offer-tag { color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; }

/* FORMS */
.form { display: grid; gap: 14px; max-width: 520px; }
.form input, .form textarea, .form select {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; outline: none;
}
.form input:focus, .form textarea:focus { border-color: var(--gold); }
label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
  background: #060607;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.foot-brand p { color: var(--muted); margin-top: 12px; max-width: 280px; }
footer h4 { letter-spacing: .16em; text-transform: uppercase; font-size: .72rem; color: var(--gold); margin-bottom: 14px; }
footer ul { list-style: none; display: grid; gap: 8px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--cream); }
.legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: .8rem; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 24px; }
.error-page h1 { font-family: var(--font-serif); font-size: clamp(5rem, 16vw, 10rem); color: var(--gold); line-height: .85; }
.error-page h2 { font-family: var(--font-serif); font-size: 2rem; margin: 10px 0 14px; }

/* SEARCH */
.search-bar {
  display: flex; gap: 10px; margin: 0 auto 28px; max-width: 480px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 999px; padding: 6px 8px 6px 18px;
}
.search-bar input { flex: 1; background: transparent; border: 0; outline: none; }
.search-bar button { border: 0; background: var(--gold); color: #111; border-radius: 999px; padding: 8px 16px; cursor: pointer; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); animation: rise .8s ease forwards; }
.reveal:nth-child(2) { animation-delay: .1s; }
.reveal:nth-child(3) { animation-delay: .2s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .grid-3, .grid-4, .product, .foot-grid { grid-template-columns: 1fr 1fr; }
  .product-visual { position: relative; top: 0; min-height: 360px; }
}
@media (max-width: 860px) {
  .section .wrap[style*="grid-template-columns:1.1fr"] {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: rgba(7,7,8,.96); flex-direction: column; padding: 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none; transition: .3s;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .menu-toggle { display: block; }
  .grid-3, .grid-4, .product, .foot-grid, .spec-list { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: 0; }
}

/* Print / reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
