:root {
  --black: #070707;
  --dark: #111111;
  --gold: #d6b46a;
  --soft-gold: #f0dfb2;
  --cream: #f8f2e4;
  --muted: #cfc7b7;
  --line: rgba(214, 180, 106, 0.35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(214,180,106,0.20), transparent 36%),
    linear-gradient(135deg, #020202 0%, #0b0b0b 55%, #18120a 100%);
  color: var(--cream);
  min-height: 100vh;
}

.page {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.card {
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
}

.hero {
  text-align: center;
  padding: 38px 26px;
}

.brand {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 7vw, 68px);
  line-height: 0.96;
  color: var(--soft-gold);
  margin-bottom: 20px;
}

h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--soft-gold);
  font-size: 30px;
  margin-bottom: 10px;
}

h3 {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.intro, .section-text {
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.methods {
  display: grid;
  gap: 18px;
}

.payment-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #d6b46a, #f3df9c, #b8913f);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
  cursor: pointer;
}

.paypal-button { margin-top: 8px; }

.bank-details p {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214,180,106,0.18);
}

.bank-details p:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.bank-details span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.bank-details strong {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.iban {
  font-size: 15px !important;
  letter-spacing: 0.4px;
}

form {
  display: grid;
  gap: 15px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft-gold);
  font-weight: 700;
  font-size: 14px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(214,180,106,0.38);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  padding: 15px 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

select option { color: #111; }

input::placeholder, textarea::placeholder {
  color: rgba(248,242,228,0.48);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,180,106,0.12);
}

.submit-button {
  margin-top: 8px;
  font-size: 15px;
}

footer {
  color: rgba(248,242,228,0.62);
  text-align: center;
  font-size: 13px;
  padding: 12px 0 0;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.thank-you {
  text-align: center;
  max-width: 680px;
}

.thank-you p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 22px;
}

@media (min-width: 780px) {
  .methods {
    grid-template-columns: 1fr 1fr;
  }

  .methods h2,
  .methods .section-text {
    grid-column: 1 / -1;
  }

  .form-card {
    padding: 34px;
  }
}

@media (max-width: 520px) {
  .page { width: min(100% - 18px, 980px); padding-top: 12px; }
  .card { border-radius: 22px; padding: 20px; }
  .hero { padding: 30px 20px; }
  .brand { font-size: 13px; letter-spacing: 3px; }
  h1 { font-size: 40px; }
  h2 { font-size: 26px; }
}
