:root {
  --charcoal: #212121;
  --sand: #f4f0e6;
  --indigo: #1e3f66;
  --copper: #b87333;
  --white-soft: rgba(255, 250, 242, 0.94);
  --white-faint: rgba(255, 250, 242, 0.7);
  --glass: rgba(18, 17, 15, 0.18);
  --line: rgba(255, 250, 242, 0.24);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--charcoal);
  background: var(--sand);
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(33, 33, 33, 0.08), rgba(33, 33, 33, 0.18)),
    url("Ahanta-Vibes-Banner.jpg") center center / cover no-repeat;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 18, 17, 0.04), rgba(19, 18, 17, 0.12)),
    radial-gradient(circle at 95% 30%, rgba(244, 240, 230, 0.1), transparent 10%);
}

.frame {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: 28px 24px 34px;
}

.coming-soon {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 6px;
  color: var(--white-soft);
}

.coming-soon p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.34rem;
}

.coming-soon span {
  width: 54px;
  height: 1.5px;
  background: var(--copper);
}

.center-spacer {
  width: 100%;
}

.social-row {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(18, 17, 15, 0.08);
  color: var(--white-soft);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible,
.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-1px);
}

.socials a:hover,
.socials a:focus-visible {
  border-color: rgba(184, 115, 51, 0.62);
  background: rgba(30, 63, 102, 0.16);
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials a[aria-label="Facebook"] svg,
.socials a[aria-label="X"] svg,
.socials a[aria-label="TikTok"] svg {
  fill: currentColor;
  stroke: none;
}

.socials a[aria-label="Website"] {
  min-width: 54px;
}

.socials a[aria-label="Website"] svg {
  width: 18px;
  height: 18px;
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(184, 115, 51, 0.72);
  border-radius: 999px;
  background: rgba(24, 22, 20, 0.16);
  color: var(--white-soft);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.whatsapp:hover,
.whatsapp:focus-visible {
  background: rgba(184, 115, 51, 0.24);
  border-color: rgba(184, 115, 51, 0.95);
}

@media (max-width: 900px) {
  .hero {
    background-position: 54% center;
  }
}

@media (max-width: 640px) {
  .frame {
    padding: 22px 16px 24px;
  }

  .coming-soon p {
    font-size: 0.84rem;
    letter-spacing: 0.24rem;
  }

  .social-row {
    gap: 14px;
  }

  .socials {
    gap: 10px;
  }

  .socials a {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
  }

  .socials svg {
    width: 14px;
    height: 14px;
  }

  .socials a[aria-label="Website"] {
    min-width: 44px;
  }

  .socials a[aria-label="Website"] svg {
    width: 16px;
    height: 16px;
  }

  .whatsapp {
    width: min(100%, 260px);
    font-size: 0.86rem;
  }
}
