:root {
  --bg-ivory: #fcf8ef;
  --bg-sand: #f1e5cf;
  --card: #fffaf2;
  --ink: #1e1a15;
  --muted: #5c5244;
  --gold: #c9993f;
  --gold-deep: #8a6421;
  --line: #ead9b9;
  --shadow: 0 26px 60px rgba(25, 18, 7, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(201, 153, 63, 0.22) 0%, transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(138, 100, 33, 0.18) 0%, transparent 34%),
    linear-gradient(150deg, var(--bg-ivory), var(--bg-sand));
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(2px);
}

.ambient-left {
  width: 320px;
  height: 320px;
  top: -120px;
  left: -80px;
  border: 2px solid rgba(201, 153, 63, 0.3);
  animation: drift 10s ease-in-out infinite;
}

.ambient-right {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -70px;
  border: 2px solid rgba(138, 100, 33, 0.28);
  animation: drift 12s ease-in-out infinite reverse;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.hero-card {
  width: min(860px, 100%);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(165deg, rgba(255, 252, 246, 0.96), rgba(255, 248, 234, 0.95));
  box-shadow: var(--shadow);
  padding: clamp(26px, 5vw, 54px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.5) 50%, transparent 85%);
  transform: translateX(-120%);
  animation: shine 5.5s ease-in-out infinite;
  pointer-events: none;
}

.brand-logo {
  width: min(280px, 72vw);
  margin-bottom: 10px;
}

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

.headline {
  margin: 8px 0 14px;
  display: grid;
  gap: 10px;
}

.brand-name {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  font-weight: 700;
  line-height: 1.05;
}

.headline-sub {
  font-family: "Cinzel", serif;
  font-size: clamp(1.1rem, 2.8vw, 1.65rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.description {
  margin: 0 auto;
  width: min(610px, 100%);
  color: var(--muted);
  font-size: clamp(0.98rem, 2vw, 1.08rem);
  line-height: 1.7;
}

.cta-row {
  margin-top: 30px;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.cta-button {
  text-decoration: none;
  color: #2a1d07;
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(110deg, #f2cf86, #d8a84b);
  box-shadow: 0 10px 20px rgba(138, 100, 33, 0.27);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(138, 100, 33, 0.34);
  filter: saturate(1.08);
}

.hint {
  font-size: 0.84rem;
  color: #746958;
}

.footer-note {
  margin-top: 28px;
  color: #7a6f5d;
  font-size: 0.83rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.78s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(16px);
  }
}

@keyframes shine {
  0%,
  52% {
    transform: translateX(-130%);
  }

  70% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@media (max-width: 680px) {
  .hero-shell {
    padding: 18px;
  }

  .hero-card {
    border-radius: 20px;
    padding: 24px 18px 28px;
  }

  .eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.68rem;
  }

  .description {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .cta-button {
    width: 100%;
    max-width: 290px;
  }
}
