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

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #0a0a0a;
}

body {
  color: #efe9e6;
  font-family: 'Inter', sans-serif;
}

.page {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

/* HERO */
.hero {
  padding: 56px 24px 40px;
  position: relative;
  background: radial-gradient(120% 80% at 50% 0%, #1a1414 0%, #0a0a0a 70%);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 30, 43, 0.14);
  border: 1px solid rgba(139, 30, 43, 0.5);
  color: #e8a7ad;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  animation: fadeUp 0.6s ease both;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8B1E2B;
  display: inline-block;
}

.hero__title {
  font-family: 'Bodoni Moda', serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 22px 0 0;
  color: #f5efec;
  animation: fadeUp 0.6s ease 0.1s both;
}

.hero__subtitle {
  font-family: 'Bodoni Moda', serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.25;
  margin: 8px 0 0;
  color: #c94a52;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  animation: fadeUp 0.6s ease 0.15s both;
}

.hero__tagline {
  font-size: 15.5px;
  line-height: 1.55;
  color: #a9a29e;
  margin: 18px 0 0;
  max-width: 38ch;
  animation: fadeUp 0.6s ease 0.2s both;
}

.cover {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  animation: fadeUp 0.6s ease 0.25s both;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.cover__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  width: 100%;
  background: #8B1E2B;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 17px 20px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(139, 30, 43, 0.6);
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible {
  background: #9e2530;
}

.btn:active {
  background: #9e2530;
}

.hero__cta {
  margin-top: 26px;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* CONTENT / TRUST */
.trust {
  padding: 44px 24px;
  background: #0e0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust__heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: #f5efec;
}

.trust__text {
  font-size: 15px;
  line-height: 1.65;
  color: #a9a29e;
  margin: 0;
}

.teasers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.teaser {
  background: #151212;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.teaser__number {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #241616, #0d0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: #8B1E2B;
  font-size: 15px;
}

.teaser__title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
  color: #efe9e6;
  margin-bottom: 4px;
}

.teaser__desc {
  font-size: 13.5px;
  color: #938c88;
  line-height: 1.5;
}

.trust__cta {
  margin-top: 30px;
  padding: 16px 20px;
  font-size: 15.5px;
  box-shadow: 0 12px 30px -10px rgba(139, 30, 43, 0.5);
}

/* CLOSING */
.closing {
  padding: 48px 24px 32px;
  background: radial-gradient(120% 60% at 50% 100%, #1a1414 0%, #0a0a0a 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.closing__heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: #f5efec;
  margin-bottom: 8px;
}

.closing__text {
  font-size: 14px;
  color: #a9a29e;
  margin: 0 0 22px;
}

.footer-links {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 12.5px;
}

.footer-links a {
  color: #6b6462;
  text-decoration: none;
}

.footer-links a:hover {
  color: #a9a29e;
}

.copyright {
  margin-top: 10px;
  font-size: 11px;
  color: #4a4544;
}

/* COOKIE BANNER */
.cookie-banner {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #141010;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #938c88;
  margin: 0;
}

.cookie-banner__text a {
  color: #c94a52;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__btn {
  flex: 1;
  background: #8B1E2B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-banner__btn:hover {
  background: #9e2530;
}

.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #d8d3d0;
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #efe9e6;
}
