:root {
  --ink: #f6efe7;
  --ink-soft: rgba(246, 239, 231, 0.8);
  --accent: #d9a15c;
  --accent-deep: #b87333;
  --surface: rgba(22, 17, 14, 0.72);
  --surface-border: rgba(246, 239, 231, 0.18);
  --halo: rgba(255, 255, 255, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(
      135deg,
      rgba(15, 12, 10, 0.86),
      rgba(27, 20, 16, 0.6)
    ),
    url("../images/bg.webp") center/cover no-repeat;
  backdrop-filter: saturate(0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
}

a {
  color: #fcc141;
}

.hero {
  width: min(860px, 100%);
}

.hero__frame {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem);
  border: 1px solid var(--surface-border);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  text-align: center;
  animation: rise 0.9s ease both;
}

.hero__accent {
  position: absolute;
  inset: -50% 0 auto 0;
  height: 260px;
  background: radial-gradient(
    circle at center,
    rgba(217, 161, 92, 0.22),
    transparent 65%
  );
  transform: translateY(-35%);
  animation: drift 7s ease-in-out infinite;
}

.hero__logo {
  width: clamp(160px, 28vw, 220px);
  height: auto;
  margin-bottom: 1.5rem;
}

.hero__kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--ink);
}

.hero__copy {
  margin: 0 auto 1.3rem;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero__copy + .hero__copy {
  margin-top: 0;
  margin-bottom: 2rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.35);
}

.hero__note {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

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

@keyframes drift {
  0%,
  100% {
    transform: translateY(-35%) scale(1);
  }
  50% {
    transform: translateY(-30%) scale(1.05);
  }
}

@media (max-width: 600px) {
  body {
    padding: 3rem 1.25rem;
  }

  .hero__frame {
    padding: 2.4rem 1.8rem;
  }

  .hero__cta {
    width: 100%;
  }
}
