:root {
  --bg-1: #f8f2e8;
  --bg-2: #efe0c6;
  --text: #3a2a1c;
  --muted: #735f4c;
  --gold: #b98a44;
  --gold-light: #d8b77a;
  --white: rgba(255, 255, 255, 0.76);
  --line: rgba(185, 138, 68, 0.28);
  --shadow: 0 28px 80px rgba(65, 45, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.98), transparent 28rem),
    radial-gradient(circle at 12% 18%, rgba(216, 183, 122, 0.34), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(185, 138, 68, 0.22), transparent 24rem),
    linear-gradient(135deg, var(--bg-1), var(--bg-2));
}

body::before,
body::after {
  position: fixed;
  inset: auto;
  z-index: -1;
  width: 42vw;
  height: 42vw;
  min-width: 260px;
  min-height: 260px;
  content: "";
  border: 1px solid rgba(185, 138, 68, 0.16);
  border-radius: 999px;
}

body::before {
  top: -12vw;
  left: -14vw;
}

body::after {
  right: -18vw;
  bottom: -16vw;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 32px 18px;
  place-items: center;
}

.card {
  width: min(100%, 720px);
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid;
  justify-items: center;
}

.brand-mark {
  display: grid;
  width: 104px;
  height: 104px;
  margin-bottom: 18px;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 232, 207, 0.82));
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(185, 138, 68, 0.16);
}

.brand-mark svg {
  width: 74px;
  height: auto;
  fill: var(--gold);
}

.brand-mark .line {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-width: 4;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.35rem, 9vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 520px;
  margin: 24px auto 0;
  font-size: clamp(1.06rem, 2.5vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
}

.text {
  max-width: 600px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(58, 42, 28, 0.78);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 52px;
  padding: 14px 22px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button .icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex: 0 0 18px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fffaf1;
  background: linear-gradient(135deg, #9c6f30, var(--gold-light));
  box-shadow: 0 14px 28px rgba(185, 138, 68, 0.28);
}

.primary:hover {
  box-shadow: 0 18px 34px rgba(185, 138, 68, 0.34);
}

.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.82);
}

footer {
  margin-top: 34px;
  padding-top: 24px;
  font-size: 0.9rem;
  color: rgba(58, 42, 28, 0.56);
  border-top: 1px solid rgba(185, 138, 68, 0.18);
}

@media (max-width: 520px) {
  .page {
    padding: 18px 12px;
  }

  .card {
    border-radius: 24px;
  }

  .brand-mark {
    width: 88px;
    height: 88px;
  }

  .brand-mark svg {
    width: 62px;
  }

  .actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
