/* ============================================================
   GetABar — Coming Soon
   Dark-luxe teaser · gold on espresso · vanilla CSS
   ============================================================ */

:root {
  --ink: #0c0a07;
  --ink-2: #14100c;
  --gold: #b19051;
  --gold-light: #d9be8c;
  --cream: #fbf1db;
  --cream-dim: rgba(251, 241, 219, 0.55);

  --font-display: "Italiana", serif;
  --font-script: "Italianno", cursive;
  --font-mono: "DM Mono", monospace;
  --font-body: "Bricolage Grotesque", sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html, body { min-height: 100%; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

::selection { background: rgba(177, 144, 81, 0.4); color: var(--cream); }

/* ---------- Ambient layers ---------- */

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-a {
  width: 60vmax; height: 60vmax;
  top: -25vmax; left: -20vmax;
  background: radial-gradient(circle, rgba(177, 144, 81, 0.14), transparent 65%);
}
.glow-b {
  width: 55vmax; height: 55vmax;
  bottom: -25vmax; right: -18vmax;
  background: radial-gradient(circle, rgba(184, 115, 69, 0.10), transparent 65%);
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1.5%); }
  50% { transform: translate(1.5%, -1%); }
  75% { transform: translate(-1%, -2%); }
  100% { transform: translate(0, 0); }
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.dust {
  position: absolute;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(217, 190, 140, 0.8);
  opacity: 0;
  animation: floatDust var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes floatDust {
  0%   { transform: translateY(0) translateX(0);        opacity: 0; }
  15%  { opacity: 0.7; }
  50%  { transform: translateY(-34px) translateX(8px);  opacity: 0.35; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-70px) translateX(-6px); opacity: 0; }
}

.frame {
  position: fixed;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(177, 144, 81, 0.22);
  border-radius: 4px;
}

/* ---------- Entrance reveals ---------- */

.reveal {
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.reveal-hidden { opacity: 0; visibility: hidden; }

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

/* ---------- Brand ---------- */

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 44px;
}
.brand-mark {
  width: 9px; height: 9px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(177, 144, 81, 0.7);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.brand-name em {
  font-style: normal;
  color: var(--gold-light);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 3;
  flex: 1;
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(28px, 5vh, 56px) 24px 40px;
}

.overline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.55em;
  text-indent: 0.55em; /* visually re-center tracked text */
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
}
.overline::before,
.overline::after {
  content: "";
  width: 42px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.overline::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.title {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.title .script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.1;
  margin-top: 6px;
  background: linear-gradient(100deg, #e8c98f 10%, var(--gold-light) 45%, var(--gold) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(177, 144, 81, 0.35));
}

/* ---------- Glass centerpiece ---------- */

.glass-stage {
  position: relative;
  width: clamp(270px, 38vw, 360px);
  aspect-ratio: 440 / 400;
  margin-top: 6px;
}
.glass-halo {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle at 50% 58%, rgba(177, 144, 81, 0.26), transparent 62%);
  filter: blur(8px);
  pointer-events: none;
}
.glass-svg { position: relative; width: 100%; height: 100%; overflow: visible; }

/* pour stream */
.stream       { animation: pourPulse 0.9s ease-in-out infinite; }
.stream-core  { animation: pourPulse 0.9s ease-in-out infinite reverse; }
@keyframes pourPulse {
  0%, 100% { opacity: 0.85; stroke-width: 6; }
  50%      { opacity: 1;    stroke-width: 7; }
}

/* splash */
.splash { transform-origin: center; transform-box: fill-box; animation: splashPop 0.9s ease-out infinite; }
.splash-b { animation-delay: 0.15s; }
@keyframes splashPop {
  0%   { transform: scale(0.2); opacity: 0; }
  35%  { opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* rising liquid level */
.fill-level { animation: fillRise 8s var(--ease-out) infinite; }
@keyframes fillRise {
  0%   { transform: translateY(86px); }
  55%  { transform: translateY(0); }
  92%  { transform: translateY(0); }
  100% { transform: translateY(86px); }
}

.bubble { animation: bubbleRise 3.4s linear infinite; }
@keyframes bubbleRise {
  0%   { transform: translateY(0);      opacity: 0; }
  12%  { opacity: 0.85; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(-78px);  opacity: 0; }
}

.garnish { transform-origin: 308px 182px; animation: garnishSway 4.5s ease-in-out infinite; }
@keyframes garnishSway {
  0%, 100% { transform: rotate(-3deg); }
  50%      { transform: rotate(3deg); }
}

.twinkle { transform-origin: center; transform-box: fill-box; animation: twinkle 2.6s ease-in-out infinite; }
.tw-b { animation-delay: 1.3s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.75); }
  50%      { opacity: 1;    transform: scale(1.1); }
}

/* ---------- Tagline ---------- */

.tagline {
  max-width: 520px;
  margin-top: 10px;
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 26px 24px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.copyright {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(251, 241, 219, 0.35);
}

/* ---------- Responsive & motion ---------- */

@media (max-width: 560px) {
  .frame { inset: 8px; }
  .overline { letter-spacing: 0.4em; text-indent: 0.4em; }
  .tagline { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; }
}
