:root {
  --black: #0f0f0f;
  --soft-black: #171717;
  --graphite: #2f2f31;
  --muted: #77716b;
  --cream: #f7f3ec;
  --white: #ffffff;
  --gold: #d5a11e;
  --gold-dark: #9a7115;
  --border: rgba(15, 15, 15, 0.11);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(213, 161, 30, 0.17), transparent 34rem),
    linear-gradient(135deg, #fbfaf7 0%, #f3eee5 44%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(15, 15, 15, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 15, 15, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 70%);
}

.page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  align-items: center;
  gap: 58px;
  padding: 58px 0 48px;
}

.hero__visual {
  position: relative;
}

.logo-card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -36% 18%;
  height: 180px;
  background: radial-gradient(circle, rgba(213, 161, 30, 0.34), transparent 62%);
}

.logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.gold-line {
  width: 72%;
  height: 8px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: var(--soft-black);
  font-weight: 800;
}

h1 span {
  display: inline-block;
  font-size: clamp(1.7rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  color: var(--graphite);
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--black);
  background: linear-gradient(135deg, #f7c648, var(--gold));
  box-shadow: 0 18px 40px rgba(213, 161, 30, 0.31);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.launch-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 0 0 7px rgba(15, 15, 15, 0.1);
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #4c4945;
  font-size: clamp(1.03rem, 1.8vw, 1.26rem);
  line-height: 1.75;
}

.address-pill {
  display: inline-flex;
  max-width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.address-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 161, 30, 0.7);
  box-shadow: 0 16px 40px rgba(15, 15, 15, 0.11);
}

.about {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  margin: 30px 0;
  padding: 74px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(15, 15, 15, 0.08);
  backdrop-filter: blur(14px);
}

.section-number {
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(15, 15, 15, 0.09);
}

.about h2,
.coming-soon h2 {
  max-width: 860px;
  margin-bottom: 24px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about p:not(.section-label),
.coming-soon p:not(.section-label) {
  max-width: 850px;
  color: #514d48;
  font-size: 1.06rem;
  line-height: 1.85;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 22px 0;
}

.card {
  min-height: 260px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(247,243,236,0.72));
  box-shadow: 0 20px 54px rgba(15, 15, 15, 0.075);
}

.card span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.16em;
}

.card h3 {
  margin-bottom: 14px;
  font-family: "Sora", "Manrope", Arial, sans-serif;
  font-size: 1.32rem;
  letter-spacing: -0.03em;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

.coming-soon {
  position: relative;
  overflow: hidden;
  margin: 22px 0 34px;
  padding: 76px;
  border-radius: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(34, 34, 34, 0.95)),
    radial-gradient(circle at top right, rgba(213, 161, 30, 0.55), transparent 30rem);
  box-shadow: var(--shadow);
}

.coming-soon::after {
  content: "SANTA";
  position: absolute;
  right: -22px;
  bottom: -32px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.coming-soon .section-label { color: var(--gold); }
.coming-soon p:not(.section-label) { color: rgba(255, 255, 255, 0.78); }

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 42px 0 54px;
  text-align: center;
  color: #4d4944;
}

.footer img {
  width: min(310px, 68vw);
  mix-blend-mode: multiply;
}

.footer p {
  margin: 6px 0 0;
  font-weight: 800;
}

.footer small { color: #7a746d; }

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 34px;
  }

  .logo-card { max-width: 600px; margin: 0 auto; }

  .about {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 46px 30px;
  }

  .section-number { font-size: 4rem; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .card span { margin-bottom: 28px; }
  .coming-soon { padding: 48px 30px; }
}

@media (max-width: 560px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .hero { min-height: auto; }
  .logo-card { padding: 18px; border-radius: 22px; }
  .launch-badge { align-items: flex-start; border-radius: 18px; line-height: 1.35; }
  .address-pill { border-radius: 16px; line-height: 1.45; }
  .about, .coming-soon, .card { border-radius: 22px; }
}
