:root {
  --bg: #0f1115;
  --bg-alt: #161920;
  --text: #f5f5f5;
  --muted: #a3a9b3;
  --accent: #d4a94c;
  --border: #2a2e37;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.5;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2 {
  line-height: 1.2;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: #14161b;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 16px;
}

.site-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-weight: bold;
  letter-spacing: 2px;
}

.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.subhead {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.vsl {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
}

.video-placeholder {
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.play-icon {
  font-size: 48px;
  color: var(--accent);
}

.video-label {
  color: var(--muted);
}

.quiz {
  padding: 60px 0;
  text-align: center;
}

.quiz-form {
  max-width: 400px;
  margin: 32px auto 0;
  text-align: left;
}

.quiz-step label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.quiz-step select,
.quiz-step input {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 16px;
}

.booking {
  background: var(--bg-alt);
  padding: 60px 0;
  text-align: center;
}

.site-footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
