:root {
  --gold-bg: #f6f0d8;        /* very pale gold */
  --gold-text: #ddc779;      /* lighter gold for headline */
  --gold-accent: #c9a23a;    /* stronger gold for buttons/lines */
  --ink: #5a4a1a;            /* muted brown for body copy */
  --edge-dark: rgba(105, 73, 14, 0.35);
  --edge-light: rgba(255, 255, 255, 0.65);
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--gold-bg);
  font-family: "Trajan Pro", "Times New Roman", serif;
  color: var(--ink);
}

.landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing-inner {
  max-width: 980px;
  padding: 86px 40px;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-text);

  /* Embossed / raised */
  text-shadow:
    0 -1px 0 var(--edge-light),
    0  1px 0 var(--edge-dark),
    0  2px 0 rgba(105, 73, 14, 0.20),
    0  10px 18px rgba(0, 0, 0, 0.08);
}

.subtitle {
  margin: 0 0 36px;
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-accent);

  /* Subtle emboss for smaller type */
  text-shadow:
    0 -1px 0 rgba(255, 255, 255, 0.55),
    0  1px 0 rgba(105, 73, 14, 0.18);
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.enter-link {
  display: inline-block;
  padding: 18px 42px;
  border: 2px solid var(--gold-accent);
  color: var(--gold-accent);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.enter-link:hover {
  background: var(--gold-accent);
  color: var(--gold-bg);
}

.coming-soon {
  display: inline-block;
  padding: 18px 34px;
  border: 2px solid rgba(201, 162, 58, 0.55);
  color: rgba(201, 162, 58, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.9;

  /* Slight pressed-in feel to distinguish from the primary CTA */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55),
    0 -1px 0 rgba(105, 73, 14, 0.14);
}

.coming-soon:hover {
  /* keep it visually stable on hover */
  background: transparent;
  color: rgba(201, 162, 58, 0.75);
}
