:root {
  --bg: #0a0a0a;
  --fg: #c4c4c4;
  --muted: #b0b0b0;
  --white: #ffffff;
  --accent: #ff5757;
  --accent-hover: #ff6e6e;
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-sans: "Montserrat", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.page {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px 28px;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #0a0a0a url("../coming-soon.jpg") center / cover no-repeat;
}

.page-dim {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.7);
}

.logo {
  display: block;
  margin-bottom: 36px;
}

.logo img {
  display: block;
  width: min(420px, 78vw);
  height: auto;
}

.wordmark {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
}

.wordmark:hover {
  color: var(--white);
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 0 64px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 10vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
}

.display span {
  display: block;
}

.display-long {
  font-size: clamp(40px, 8vw, 80px);
  letter-spacing: 0.08em;
}

.rule {
  width: 42px;
  height: 1px;
  background: var(--fg);
  margin: 36px 0 28px;
  border: 0;
}

.lede {
  max-width: 420px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 40px;
  width: min(720px, 100%);
  margin-top: 8px;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-align: left;
}

.cta-note {
  flex: 1;
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.cta-row .btn {
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: var(--accent-hover);
}

.btn-ghost {
  background: var(--white);
  color: #000;
}

.btn-ghost:hover {
  background: #f3f3f3;
}

.footer {
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  padding-top: 8px;
}

.footer a,
.footer span {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer a:hover {
  color: var(--white);
}

.project-note {
  max-width: 460px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .cta-row {
    flex-direction: column;
    flex-wrap: wrap;
    text-align: center;
    gap: 18px;
    padding: 22px 20px;
  }

  .cta-note {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 1.7;
  }

  .cta-row .btn {
    width: 100%;
    max-width: 280px;
  }
}

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

  .logo {
    margin-bottom: 28px;
  }

  .logo img {
    width: min(280px, 82vw);
  }

  .hero {
    padding: 36px 0 32px;
  }

  .eyebrow {
    letter-spacing: 0.28em;
    margin-bottom: 18px;
  }

  .display {
    letter-spacing: 0.06em;
  }

  .lede {
    max-width: 280px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
  }

  .footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer a,
  .footer span {
    letter-spacing: 0.1em;
    text-align: center;
  }
}
