:root {
  color-scheme: dark;
  --bg: #100d23;
  --bg-deep: #090817;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-border: rgba(255, 255, 255, 0.13);
  --text: #fffaf5;
  --muted: #c6c0d4;
  --soft: #a9a3b9;
  --accent: #f2b84b;
  --accent-hover: #ffd06e;
  --accent-ink: #251704;
  --focus: #fff1b5;
  --plum: #642b63;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg-deep);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(112, 49, 105, 0.3), transparent 34rem),
    radial-gradient(circle at 88% 78%, rgba(41, 72, 111, 0.24), transparent 30rem),
    linear-gradient(145deg, var(--bg-deep), var(--bg) 48%, #151029);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 5px;
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  color: var(--accent-ink);
  background: var(--focus);
  font-weight: 750;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  display: grid;
  min-height: calc(100svh - 3.4rem);
  place-items: center;
  padding: 1rem;
}

.hero {
  display: grid;
  width: min(100%, 68rem);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(29, 23, 51, 0.93), rgba(20, 17, 40, 0.9));
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34);
  animation: reveal 600ms ease-out both;
}

.hero__visual {
  position: relative;
  height: clamp(13.5rem, 47svh, 20rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(242, 184, 75, 0.18), transparent 5rem),
    linear-gradient(140deg, #462041, #13172a);
}

.hero__visual.is-fallback::before {
  position: absolute;
  inset: 14% 20%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50% 50% 42% 42%;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 250, 245, 0.14) 0 17%, transparent 18%),
    radial-gradient(ellipse at 50% 82%, rgba(255, 250, 245, 0.1) 0 34%, transparent 35%);
  content: "";
}

.hero__visual::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(transparent, rgba(19, 15, 38, 0.96));
  content: "";
}

.hero__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 26%;
}

.age-mark {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 1;
  display: grid;
  width: 2.9rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: white;
  background: rgba(11, 9, 24, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.hero__content {
  padding: 0 1.25rem 1.3rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: -0.75rem 0 0.85rem;
  padding: 0.48rem 0.75rem;
  border: 1px solid rgba(242, 184, 75, 0.28);
  border-radius: 999px;
  color: #f8d999;
  background: rgba(41, 28, 36, 0.9);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  position: relative;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 9vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: wrap;
  text-wrap: balance;
}

.subheadline {
  max-width: 34rem;
  margin: 0.9rem auto 1.15rem;
  color: var(--muted);
  font-size: clamp(0.94rem, 3.8vw, 1.06rem);
  line-height: 1.48;
}

.cta {
  display: flex;
  width: 100%;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  color: var(--accent-ink);
  background: linear-gradient(180deg, #f6c75d, var(--accent));
  box-shadow: 0 0.7rem 2rem rgba(242, 184, 75, 0.16);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  background: linear-gradient(180deg, #ffdb81, var(--accent-hover));
  box-shadow: 0 0.8rem 2.2rem rgba(242, 184, 75, 0.24);
  transform: translateY(-2px);
}

.cta:focus-visible,
.site-footer a:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.cta__arrow {
  font-size: 1.25rem;
  line-height: 1;
}

.destination-note {
  max-width: 34rem;
  margin: 0.8rem auto 0;
  color: var(--soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.disclosure {
  display: flex;
  max-width: 34rem;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.9rem auto 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  color: #b9b3c8;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.disclosure__icon {
  display: grid;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid #888198;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.disclosure p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  min-height: 3.4rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem 1.1rem;
  color: #898397;
  font-size: 0.75rem;
}

.site-footer a {
  text-underline-offset: 0.2em;
}

.site-footer a:hover {
  color: var(--text);
}

.privacy-page {
  display: grid;
  min-height: calc(100svh - 3.4rem);
  place-items: center;
  padding: 1.25rem;
}

.privacy-card {
  width: min(100%, 44rem);
  padding: clamp(1.4rem, 5vw, 2.6rem);
  border: 1px solid var(--surface-border);
  border-radius: 1.25rem;
  background: rgba(25, 20, 46, 0.88);
  box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.3);
}

.privacy-card h1 {
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.05;
}

.privacy-card h2 {
  margin: 1.6rem 0 0.45rem;
  font-size: 1.05rem;
}

.privacy-card p {
  margin: 0.55rem 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #f8d999;
  font-weight: 700;
  text-underline-offset: 0.25em;
}

@media (min-width: 48rem) {
  .page-shell {
    padding: 2rem;
  }

  .hero {
    grid-template-columns: minmax(19rem, 0.86fr) minmax(24rem, 1.14fr);
    min-height: 38rem;
  }

  .hero__visual {
    height: 100%;
    min-height: 38rem;
  }

  .hero__visual::after {
    inset: 0 0 0 auto;
    width: 24%;
    height: auto;
    background: linear-gradient(90deg, transparent, rgba(21, 17, 41, 0.92));
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem clamp(2rem, 5vw, 4.5rem);
    text-align: left;
  }

  .badge {
    align-self: flex-start;
    margin: 0 0 1.2rem;
  }

  h1 {
    font-size: clamp(3.1rem, 5.2vw, 4.2rem);
  }

  .subheadline,
  .destination-note,
  .disclosure {
    margin-left: 0;
    margin-right: 0;
  }

  .subheadline {
    margin-top: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.08rem;
  }

  .cta {
    max-width: 25rem;
  }
}

@media (max-width: 23rem) and (max-height: 46rem) {
  .page-shell {
    padding: 0.65rem;
  }

  .hero__visual {
    height: 11.5rem;
  }

  .hero__content {
    padding: 0 0.9rem 0.9rem;
  }

  .badge {
    margin-bottom: 0.6rem;
  }

  h1 {
    font-size: 1.9rem;
  }

  .subheadline {
    margin: 0.65rem auto 0.8rem;
  }

  .disclosure {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(0.8rem);
  }

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