/* ─── Custom Properties ─────────────────────────────────────────────────── */
:root {
  --bg:          #fdf7f9;
  --surface:     #ffffff;
  --ink:         #2a1430;
  --ink-light:   #5a4060;
  --gold:        #bc8f2a;
  --gold-hover:  #9e7620;
  --rose:        #c77d9b;
  --border:      #ede0e8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;

  --card-radius:  18px;
  --card-pad:     clamp(2rem, 6vw, 4rem);
  --card-max:     540px;

  --transition:   0.22s ease;
}

/* ─── Reset / Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, #f5e8ef 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 90%, #f0e6f4 0%, transparent 55%);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100dvh;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── Sunburst watermark ────────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  bottom: -8vw;
  right: -8vw;
  width: 38vw;
  height: 38vw;
  min-width: 220px;
  min-height: 220px;
  max-width: 480px;
  max-height: 480px;
  background: url('sunburst.svg') center / contain no-repeat;
  opacity: 0.06;
  /* radial fade: fully visible at centre, transparent toward edges */
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 60% 60%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 70% at 60% 60%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.stage { position: relative; z-index: 1; }

img { display: block; max-width: 100%; height: auto; }

a { color: var(--gold); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Stage (full-viewport centring) ───────────────────────────────────── */
.stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* ─── Card ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--card-radius);
  box-shadow:
    0 2px  6px rgba(42, 20, 48, 0.04),
    0 8px 32px rgba(42, 20, 48, 0.08),
    0 0   0 1px var(--border);
  max-width: var(--card-max);
  width: 100%;
  padding: var(--card-pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── Header ────────────────────────────────────────────────────────────── */
.card__header {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.logo-link { display: inline-block; }

.logo {
  width: clamp(160px, 70vw, 260px);
  height: auto;
}

/* ─── Body ──────────────────────────────────────────────────────────────── */
.card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

/* Eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.65rem, 1.5vw, 0.72rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

/* Heading */
.heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Gold Rule */
.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.5rem auto 0.25rem;
  flex-shrink: 0;
}

/* Body text */
.body-text {
  font-weight: 300;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: var(--ink-light);
  line-height: 1.7;
  max-width: 42ch;
}

.body-text strong {
  font-weight: 600;
  color: var(--ink);
}

.trust-line {
  margin-top: -0.25rem;
}

/* ─── Button ────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(188, 143, 42, 0.25);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(188, 143, 42, 0.32);
}

.btn-gold:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(188, 143, 42, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .btn-gold { transition: none; }
  .btn-gold:hover { transform: none; }
}

/* ─── Verify Block ──────────────────────────────────────────────────────── */
.verify-block {
  margin-top: 0.75rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: #fdf8fb;
}

.verify-block__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.85rem;
}

.verify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.verify-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.verify-list__icon {
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
}

.verify-list__link,
.verify-list__text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--ink-light);
}

.verify-list__link {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.verify-list__link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
  .verify-list__link { transition: none; }
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.card__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-copy {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--rose);
  opacity: 0.8;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .card {
    border-radius: 14px;
  }

  .verify-block {
    padding: 1rem 1.125rem;
  }
}
