:root {
  --bg: #08080a;
  --bg-soft: #0d0d10;
  --ink: #f5f5f2;
  --ink-dim: #9a9a9e;
  --gold: #d9b26a;
  --gold-soft: rgba(217, 178, 106, 0.35);
  --whatsapp: #25d366;
  --ig-1: #f9ce34;
  --ig-2: #ee2a7b;
  --ig-3: #6228d7;
  --fb: #3b82f6;
  --tt-1: #25f4ee;
  --tt-2: #fe2c55;
  --radius-lg: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}

body.is-loaded {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- background ---------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg__dots {
  position: absolute;
  width: min(38vw, 420px);
  height: min(38vw, 420px);
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at top, black, transparent 75%);
  mask-image: radial-gradient(circle at top, black, transparent 75%);
  opacity: 0.55;
}

.bg__dots--tl {
  top: -40px;
  left: -60px;
}

.bg__dots--tr {
  top: -40px;
  right: -60px;
  transform: scaleX(-1);
}

.bg__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 640px;
  max-height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 68%);
  filter: blur(10px);
  opacity: 0.35;
}

.bg__glow--right {
  left: auto;
  right: -10%;
  top: 30%;
  transform: none;
  opacity: 0.18;
}

.bg__floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40vh;
  background: linear-gradient(to top, rgba(20, 18, 14, 0.55), transparent);
}

/* ---------- layout ---------- */

.page {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4vh 6vw 12vh;
  text-align: center;
}

.brand {
  margin-bottom: clamp(0.75rem, 3vh, 2rem);
}

.brand__logo {
  width: clamp(150px, 17vw, 205px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

/* ---------- hero ---------- */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 5vh, 3rem);
}

.hero__title {
  position: relative;
  margin: 0;
  font-family: 'Bebas Neue', 'Space Mono', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 8.5vw, 6rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--ink);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 46px rgba(217, 178, 106, 0.35),
    0 0 90px rgba(217, 178, 106, 0.2);
}

.hero__title-text {
  position: relative;
  z-index: 1;
}

.hero__rays {
  position: absolute;
  inset: -30% -6%;
  z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16) 0,
    rgba(255, 255, 255, 0.16) 1px,
    transparent 1px,
    transparent calc(100% / 9)
  );
  -webkit-mask-image: radial-gradient(ellipse 60% 100% at center, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 100% at center, black 0%, transparent 75%);
  opacity: 0.7;
}

.hero__subtitle {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 0.6rem;
  gap: clamp(0.7rem, 2.4vw, 1.5rem);
  max-width: 92vw;
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero__line {
  width: clamp(36px, 6vw, 90px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

/* ---------- socials ---------- */

.socials {
  display: flex;
  gap: clamp(1.25rem, 4vw, 2.25rem);
  margin-top: clamp(1rem, 3vh, 2rem);
}

.socials__item {
  --ring: var(--gold);
  position: relative;
  width: clamp(52px, 6vw, 68px);
  height: clamp(52px, 6vw, 68px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f12;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.socials__item svg {
  width: 46%;
  height: 46%;
}

.socials__item::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 70%;
  height: 14px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--ring) 0%, transparent 70%);
  opacity: 0.28;
  filter: blur(4px);
  border-radius: 50%;
}

.socials__item:hover,
.socials__item:focus-visible {
  transform: translateY(-3px);
}

.socials__item--instagram {
  --ring: var(--ig-2);
}
.socials__item--instagram:hover,
.socials__item--instagram:focus-visible {
  color: #ff8fc0;
  border-color: var(--ig-2);
  box-shadow: 0 0 18px rgba(238, 42, 123, 0.45), 0 0 42px rgba(249, 206, 52, 0.25);
}

.socials__item--facebook {
  --ring: var(--fb);
}
.socials__item--facebook:hover,
.socials__item--facebook:focus-visible {
  color: #8fb8ff;
  border-color: var(--fb);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
}

.socials__item--tiktok {
  --ring: var(--tt-2);
}
.socials__item--tiktok:hover,
.socials__item--tiktok:focus-visible {
  color: #fff;
  border-color: var(--tt-1);
  box-shadow: 0 0 14px rgba(37, 244, 238, 0.45), 0 0 26px rgba(254, 44, 85, 0.35);
}

/* ---------- address ---------- */

.address {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-dim);
  transition: color 0.25s ease;
}

.address:hover,
.address:focus-visible {
  color: var(--ink);
}

.address__pin {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.address__text {
  display: flex;
  flex-direction: column;
  font-size: clamp(0.65rem, 1.4vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-align: left;
}

/* ---------- whatsapp ---------- */

.whatsapp {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(1.5rem, 4vh, 2.75rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.whatsapp__bubble {
  width: clamp(56px, 7vw, 74px);
  height: clamp(56px, 7vw, 74px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 35% 30%, #3ee878, var(--whatsapp) 70%);
  color: #06210f;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.55), 0 0 46px rgba(37, 211, 102, 0.3);
  animation: pulse 2.6s ease-in-out infinite;
  transition: transform 0.25s ease;
}

.whatsapp__bubble svg {
  width: 52%;
  height: 52%;
}

.whatsapp:hover .whatsapp__bubble,
.whatsapp:focus-visible .whatsapp__bubble {
  transform: scale(1.06);
}

.whatsapp__label {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, 0.55);
  background: rgba(37, 211, 102, 0.08);
  color: #b9f3cd;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.55), 0 0 46px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 26px rgba(37, 211, 102, 0.75), 0 0 60px rgba(37, 211, 102, 0.45);
  }
}

/* ---------- footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-soft);
  padding: 1.4rem 1rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}

/* ---------- click feedback ---------- */

[data-social].is-active {
  transform: scale(0.94);
}

/* ---------- responsive ---------- */

@media (max-width: 640px) {
  .page {
    padding-bottom: 22vh;
  }

  .address {
    position: static;
    margin-top: 3rem;
  }

  .address__text {
    text-align: center;
  }

  .whatsapp {
    right: 1rem;
    bottom: 1.25rem;
  }

  .hero__subtitle {
    letter-spacing: 0.3em;
  }
}

@media (max-width: 420px) {
  .address {
    align-items: flex-start;
  }
}
