/* =========================================================
   MAY PARK — Holding Page
   Brand: Slate Blue palette, Cormorant Garamond + DM Sans
   ========================================================= */

:root {
  --brand:        #5A6E86;
  --brand-dark:   #3D4F63;
  --brand-deeper: #2C3A4A;
  --brand-light:  #7A8FA5;

  --off-white:    #F5F6F8;
  --warm-white:   #F0E9DD;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

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

html, body {
  height: 100%;
  width: 100%;
}

body {
  background: var(--brand);
  color: var(--off-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.stage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 4vh, 44px);
  max-width: 720px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 11vw, 144px);
  letter-spacing: 0.18em;
  color: var(--off-white);
  line-height: 1;
  text-indent: 0.18em; /* visually re-center because of trailing letter-spacing */
  padding-left: 0.18em; /* offsets the indent so block stays centered */
  white-space: nowrap;
}

/* Cleaner approach: just account for trailing tracking by padding-right matching letter-spacing */
.wordmark {
  text-indent: 0;
  padding-left: 0;
  padding-right: 0;
}

.message {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw + 8px, 16px);
  letter-spacing: 0.04em;
  color: var(--off-white);
  opacity: 0.78;
  line-height: 1.6;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  min-width: 200px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid var(--off-white);
  background: transparent;
  color: var(--off-white);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--off-white);
  color: var(--brand);
  outline: none;
}

@media (max-width: 480px) {
  .wordmark {
    letter-spacing: 0.14em;
  }
}
