:root {
  --forest: #173d2b;
  --forest-deep: #0b2118;
  --moss: #6f8668;
  --paper: #f5f1e8;
  --ink: #f7f3ea;
  --muted: rgba(247, 243, 234, 0.64);
  --line: rgba(247, 243, 234, 0.20);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.09), transparent 28rem),
    radial-gradient(circle at 82% 78%, rgba(111, 134, 104, 0.22), transparent 30rem),
    linear-gradient(135deg, var(--forest), var(--forest-deep));
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 9rem 9rem;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), rgba(0,0,0,.12));
}

.shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.card {
  width: min(840px, 100%);
  min-height: 320px;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: clamp(1.75rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(247, 243, 234, 0.24);
  border-radius: 28px;
  background: rgba(8, 31, 22, 0.34);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.mark {
  color: var(--paper);
  width: clamp(112px, 15vw, 150px);
  justify-self: center;
  opacity: 0.95;
}

.mark svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .18));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 span { display: block; }

.tagline {
  margin: 1.25rem 0 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: clamp(0.98rem, 1.6vw, 1.18rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.coming {
  position: fixed;
  left: 50%;
  bottom: clamp(2rem, 5vw, 4rem);
  transform: translateX(-50%);
  color: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.82;
}

.coming p { margin: 0; }

@media (max-width: 720px) {
  body { overflow: auto; }
  .card {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }
  h1 { letter-spacing: 0.12em; }
  .coming { position: static; transform: none; margin-top: 2rem; text-align: center; }
}
