:root {
  --black: #10100f;
  --deep-black: #070706;
  --gold: #c7a35a;
  --soft-gold: #e4c884;
  --cream: #f6efe2;
  --muted: #cfc5b4;
  --card: rgba(18, 17, 15, 0.88);
}

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

body {
  min-height: 100vh;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at top, rgba(199, 163, 90, 0.22), transparent 34%),
    linear-gradient(rgba(7, 7, 6, 0.82), rgba(7, 7, 6, 0.92)),
    url("background.jpg");
  background-size: cover;
  background-position: center;
}

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

.card {
  width: min(760px, 100%);
  position: relative;
  padding: 58px 42px 46px;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(199, 163, 90, 0.58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.card::before,
.card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(228, 200, 132, 0.28);
  pointer-events: none;
}

.ornament {
  width: 86px;
  height: 3px;
  margin: 0 auto 26px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.logo {
  max-width: 170px;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--soft-gold);
  font-size: 0.83rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.95;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

h2 {
  font-family: "Cinzel", Georgia, serif;
  color: var(--gold);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 500;
  margin-bottom: 22px;
}

.intro {
  max-width: 590px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 34px auto;
  max-width: 330px;
}

.divider span:not(.diamond) {
  height: 1px;
  flex: 1;
  background: rgba(199, 163, 90, 0.5);
}

.diamond {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--gold);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 150px;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.button.primary {
  background: var(--gold);
  color: var(--deep-black);
}

.button.secondary {
  color: var(--soft-gold);
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.small-text {
  color: rgba(246, 239, 226, 0.67);
  font-size: 0.88rem;
}

@media (max-width: 560px) {
  .card {
    padding: 42px 22px 34px;
  }

  .card::before,
  .card::after {
    inset: 9px;
  }

  .eyebrow {
    letter-spacing: 0.18em;
  }

  .button {
    width: 100%;
  }
}
