* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f4ede2;
  --warm-white: #fbf6ef;
  --coal: #14100d;
  --espresso: #2b1e18;
  --rust: #c56a3a;
  --gold: #f1c57a;
  --glass: rgba(20, 16, 13, 0.58);
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  color: var(--warm-white);
  background: #120e0b;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(20, 16, 13, 0.7), rgba(10, 8, 6, 0.3)),
    url("bg_1.png");
  background-size: cover;
  background-position: center;
  filter: saturate(0.95) contrast(1.05);
  z-index: 0;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(241, 197, 122, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(197, 106, 58, 0.25),
      transparent 60%
    );
  mix-blend-mode: screen;
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  width: min(880px, 92vw);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border-radius: 28px;
  padding: 48px 48px 40px;
  backdrop-filter: blur(10px);
  display: grid;
  gap: 20px;
  justify-items: center;
  text-align: center;
  animation: floatIn 900ms ease-out;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.logo-line {
  flex-basis: 100%;
  width: 180px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(241, 197, 122, 0.95),
    rgba(255, 255, 255, 0)
  );
}

.content {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 600;
  font-family: "Nothing You Could Do", cursive;
  text-align: left;
}

h1 {
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  letter-spacing: 0.04em;
  color: var(--cream);
}

.sub {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(251, 246, 239, 0.85);
  max-width: 520px;
}

.contact {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.contact-phone {
  font-size: 0.98rem;
  color: rgba(251, 246, 239, 0.9);
  letter-spacing: 0.04em;
  text-align: center;
}

.contact-phone a {
  color: var(--warm-white);
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(241, 197, 122, 0.12);
  border: 1px solid rgba(241, 197, 122, 0.35);
  transition:
    transform 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(241, 197, 122, 0.28);
  color: var(--cream);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(251, 246, 239, 0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  justify-content: center;
  text-align: center;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--rust);
  box-shadow: 0 0 12px rgba(197, 106, 58, 0.8);
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 36px 28px;
  }

  .brand {
    justify-content: center;
  }

  .meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 96px;
  }
  .sub {
    font-size: 0.98rem;
  }

  .contact-phone {
    font-size: 0.9rem;
  }
}

@media (min-width: 900px) {
  .hero {
    width: min(720px, 90vw);
    padding: 32px 32px 28px;
  }

  .page {
    padding: 18px 20px;
  }
}
