:root {
  --bg: #0c0b0a;
  --panel: #161311;
  --gold: #c9a15a;
  --gold-bright: #e3c07f;
  --text: #f2efe9;
  --muted: #a39d92;
  --hairline: rgba(201, 161, 90, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(ellipse 500px 300px at 50% -10%, rgba(201, 161, 90, 0.10), transparent 60%),
    var(--bg);
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.page {
  width: 100%;
  max-width: 460px;
  padding: 56px 20px 70px 20px;
}

/* ---------- HERO PHOTO CARD ---------- */
.hero-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  margin-bottom: 18px;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 11, 10, 0) 38%, rgba(12, 11, 10, 0.55) 68%, rgba(10, 9, 8, 0.96) 100%);
}

.hero-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 11, 10, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  padding: 7px 14px 7px 10px;
  border-radius: 30px;
}

.hero-badge img {
  height: 15px;
  width: auto;
  opacity: 0.95;
}

.hero-badge span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 0 24px 26px 24px;
}

.hero-content h1 {
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.22;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-content h1 .gold {
  color: var(--gold-bright);
}

.hero-content p {
  color: #d8d4cb;
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
}

/* ---------- PROFILE (legacy text block, kept for spacing) ---------- */
.profile {
  margin-bottom: 2px;
}

/* ---------- PRIMARY CTA ---------- */
.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--gold);
  color: #141210;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 18px 20px;
  border-radius: 14px;
  text-decoration: none;
  margin: 26px 0 8px 0;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 20px rgba(201, 161, 90, 0.18);
}

.cta-primary:active {
  transform: scale(0.98);
}

.cta-primary svg {
  width: 16px;
  height: 16px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 20px 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* ---------- LINK CARDS ---------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--hairline);
  aspect-ratio: 1000/650;
  background-size: cover;
  background-position: center;
  transition: transform .2s ease;
}

.link-card:active {
  transform: scale(0.98);
}

.link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.link-card .tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(12, 11, 10, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--hairline);
  color: var(--gold-bright);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

.link-card .cta-tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: #141210;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 15px;
  border-radius: 10px;
}

.link-card .cta-tag svg {
  width: 13px;
  height: 13px;
}

/* ---------- FAQ ---------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px 18px;
  background: var(--panel);
}

.faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary .plus {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 14px;
  transition: transform .25s ease;
}

.faq details[open] summary .plus {
  transform: rotate(45deg);
}

.faq p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}

/* ---------- SOCIAL ROW ---------- */
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  text-decoration: none;
  transition: background .2s ease;
}

.social-row a:active {
  background: var(--panel);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 11.5px;
  margin-top: 44px;
  letter-spacing: 0.03em;
}