:root {
  --ink: #1a2433;
  --ink-soft: #3d4a5c;
  --cream: #f6f1e8;
  --cream-deep: #ebe3d4;
  --sage: #5f7a68;
  --sage-deep: #3f5648;
  --gold: #b08d57;
  --white: #fffcf7;
  --shadow: 0 24px 60px rgba(26, 36, 51, 0.08);
  --radius: 18px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(95, 122, 104, 0.14), transparent 55%),
    radial-gradient(900px 500px at 100% 20%, rgba(176, 141, 87, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  display: flex;
  flex-direction: column;
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.bg-orb--one {
  width: 280px;
  height: 280px;
  background: rgba(95, 122, 104, 0.25);
  top: 12%;
  right: -80px;
}

.bg-orb--two {
  width: 220px;
  height: 220px;
  background: rgba(176, 141, 87, 0.18);
  bottom: 8%;
  left: -60px;
}

.top,
.splash,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1.5rem 0;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  color: var(--sage-deep);
}

.mark {
  display: grid;
  place-items: center;
}

.mark img {
  display: block;
}

.top-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  font-weight: 500;
}

.splash {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.8rem, 9vw, 4.6rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.tagline {
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  color: var(--ink-soft);
}

.divider {
  width: 64px;
  height: 2px;
  margin: 1.75rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.soon {
  margin: 0;
  display: inline-block;
  align-self: center;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(95, 122, 104, 0.35);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.65);
  color: var(--sage-deep);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.lede {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.notice {
  margin: 2.25rem auto 0;
  width: 100%;
  max-width: 28rem;
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  padding: 1.5rem 1.35rem;
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid rgba(26, 36, 51, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  text-align: center;
}

.notice-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.btn {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.9rem 1.35rem;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%);
  color: var(--white);
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.foot {
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.foot p {
  margin: 0.35rem 0;
}

.foot a {
  color: var(--sage-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.foot a:hover,
.foot a:focus-visible {
  color: var(--ink);
}

.foot a:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
