* {
  box-sizing: border-box;
}

:root {
  --background: #ffffff;
  --text: #171717;
  --muted: #77736b;
  --gold: #bd9033;
  --gold-dark: #98701f;
  --line: rgba(189, 144, 51, 0.38);
}

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

body {
  background:
    radial-gradient(circle at 50% 18%, rgba(196, 151, 56, 0.055), transparent 25rem),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 56px 28px 76px;
  overflow: hidden;
}

.content {
  width: min(760px, 100%);
  text-align: center;
  animation: appear 0.9s ease-out both;
}

.logo {
  display: block;
  width: min(360px, 58vw);
  height: auto;
  margin: 0 auto;
}

.divider {
  width: 54px;
  height: 1px;
  margin: 34px auto 28px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.label {
  margin: 0 0 16px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.intro {
  max-width: 520px;
  margin: 24px auto 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.7;
}

.email {
  display: inline-block;
  position: relative;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  padding: 8px 2px 9px;
}

.email::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.42);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.email:hover::after,
.email:focus-visible::after {
  transform: scaleX(1);
}

footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  text-align: center;
  color: #aaa69f;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .page {
    padding: 42px 22px 72px;
  }

  .logo {
    width: min(285px, 72vw);
  }

  .divider {
    margin-top: 28px;
  }

  h1 {
    max-width: 360px;
  }

  .intro {
    max-width: 330px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .content {
    animation: none;
  }

  .email::after {
    transition: none;
  }
}
