/* ==========================================================================
   Free Bird Events — placeholder stylesheet
   Mobile-first. Replace wholesale when the real design lands; keep the
   token layer and section-comment structure.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colors */
  --bg: #faf6f0;
  --bg-alt: #f2ebe1;
  --ink: #2e2a26;
  --ink-muted: #6f665c;
  --accent: #b08d57;
  --accent-dark: #8c6d3f;
  --rule: rgba(46, 42, 38, 0.14);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-width: 640px;
  --section-padding: 48px 24px;

  /* Effects */
  --transition: 0.3s ease;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  background-image: radial-gradient(circle at 50% 0%, var(--bg-alt) 0%, var(--bg) 62%);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.coming-soon {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-padding);
  text-align: center;
}

/* ---------- Mark ---------- */
.mark {
  width: 84px;
  color: var(--accent);
  margin-bottom: 28px;
  animation: rise 1s ease-out both;
}

/* ---------- Type ---------- */
.wordmark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 11vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  animation: rise 1s ease-out 0.1s both;
}

.tagline {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  animation: rise 1s ease-out 0.2s both;
}

.rule {
  width: 56px;
  height: 1px;
  margin: 36px auto;
  border: 0;
  background: var(--accent);
  opacity: 0.7;
  animation: rise 1s ease-out 0.3s both;
}

.message {
  max-width: 42ch;
  margin: 0 auto;
  font-size: 1.02rem;
  color: var(--ink-muted);
  animation: rise 1s ease-out 0.4s both;
}

/* ---------- CTA ---------- */
.cta {
  display: inline-block;
  margin-top: 34px;
  padding: 13px 34px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  animation: rise 1s ease-out 0.5s both;
}

.cta:hover,
.cta:focus-visible {
  background: var(--accent);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 24px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  border-top: 1px solid var(--rule);
}

/* ---------- Animation ---------- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Breakpoints ---------- */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 32px;
  }

  .mark {
    width: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
