/* ═══ MR JOLLY ROLLY — CONTACTS / LIQUID GLASS ═══ */

html,
body {
  margin: 0;
  padding: 0;
}

.sg-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Inter', 'Barlow', sans-serif;
  background: #040404;
}

.sg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sg-stack {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 480px;
  padding: 1rem;
}

/* ── Floating header ── */
.sg-head {
  text-align: center;
  color: #fffb00;
}

.sg-logo {
  height: 52px;
  width: auto;
  margin: 0 auto 0.6rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.sg-title {
  margin: 0;
  font-family: 'Bebas Neue', 'Arial Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3rem);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.sg-title .sg-accent {
  color: #ffc700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.sg-sub {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* ── Shared glass pill (info pills & CTA) ── */
.sg-glass {
  background: rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.8),
    inset -1px -1px 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* ── Animated dock: dark macOS pill, solid white circles, black line icons ── */
.sg-dock-container {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.75rem 0;
}

.sg-dock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  height: 64px;
  padding: 0 1rem;
  border-radius: 1rem;
  background: rgba(20, 20, 20, 0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
}

.sg-dock:hover {
  background: rgba(28, 28, 28, 0.85);
}

.sg-dock-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  cursor: pointer;
  transition: width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.2s ease;
}

.sg-dock-item:hover {
  background: #f5f5f5;
}

.sg-dock-item svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  color: #000000;
  transform: scale(var(--dock-scale, 1));
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Floating contact info row ── */
.sg-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sg-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.7), 0 4px 12px rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  min-width: 0;
}

.sg-pill svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #ffc700;
}

.sg-pill span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Floating action button ── */
.sg-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.95rem 2.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 1px 1px 2px 0 rgba(255, 255, 255, 0.85),
    inset -1px -1px 1px 0 rgba(255, 255, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.sg-cta:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.sg-back {
  margin-top: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.sg-back:hover {
  color: #ffc700;
}

@media (max-width: 640px) {
  .sg-dock {
    gap: 0.55rem;
    height: 56px;
    padding: 0 0.75rem;
    border-radius: 0.9rem;
  }

  .sg-dock-item svg {
    width: 20px;
    height: 20px;
  }

  .sg-pill {
    font-size: 0.7rem;
    padding: 0.45rem 0.7rem;
  }

  .sg-cta {
    font-size: 0.88rem;
    padding: 0.85rem 1.6rem;
  }
}