:root {
  --bg: #0c090b;
  --bg-elev: #161014;
  --ink: #f4ece6;
  --muted: #b9a8a0;
  --rose: #e8b4b8;
  --gold: #c9a07a;
  --line: rgba(233, 196, 180, 0.16);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

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

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
}

body {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px calc(28px + env(safe-area-inset-bottom));
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 160, 122, 0.14), transparent 48%),
    radial-gradient(ellipse at 80% 100%, rgba(232, 180, 184, 0.08), transparent 42%);
}

.page {
  width: min(420px, 100%);
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  margin-bottom: 28px;
}

.avatar {
  display: block;
  width: 220px;
  height: 290px;
  margin: 0 auto 20px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(201, 160, 122, 0.55);
  box-shadow: 0 0 0 6px rgba(201, 160, 122, 0.1), 0 22px 50px rgba(0, 0, 0, 0.4);
}

.tagline {
  display: none;
}

.mark {
  margin: 0 0 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.85rem, 7.2vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.bio {
  margin: 12px auto 0;
  max-width: 22em;
  color: var(--muted);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.45;
  font-style: italic;
  letter-spacing: 0.01em;
}

.tagline,
.dest-hint,
.mark {
  display: none;
}

.destinations {
  display: grid;
  gap: 12px;
}

.dest-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dest-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  object-fit: contain;
}

.dest-logo-round {
  border-radius: 6px;
  object-fit: cover;
}

.dest {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.dest:hover,
.dest:focus-visible {
  border-color: rgba(232, 180, 184, 0.45);
  background: linear-gradient(180deg, rgba(232,180,184,0.08), rgba(255,255,255,0.02));
  transform: translateY(-1px);
  outline: none;
}

.dest-label {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.dest-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.foot {
  margin-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 6, 7, 0.92);
  backdrop-filter: blur(10px);
}

.age-gate[hidden] {
  display: none;
}

.age-card {
  width: min(420px, 100%);
  padding: 36px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg-elev);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-kicker {
  margin: 0 0 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.age-card h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--rose);
}

.age-copy {
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 300;
}

.age-actions {
  display: grid;
  gap: 10px;
}

.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, #edd3c2, #c9a07a);
  color: #2a1b16;
  font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}

.page[hidden] {
  display: none;
}

@media (min-width: 720px) {
  body {
    padding: 48px 24px;
  }
}
