:root {
  --bg: #0b0704;
  --bg-soft: #150e08;
  --panel: #1c130b;
  --card-bg: #fbf6ec;
  --ink: #241a0f;
  --white: #f7f1e4;
  --muted: #c9b797;
  --gold: #cda45e;
  --gold-light: #e6c98a;
  --gold-dark: #a07f3f;
  --green: #4caf6c;
  --red: #e0645a;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

.topbar {
  background: var(--panel);
  border-bottom: 1px solid rgba(205, 164, 94, 0.25);
  color: var(--gold-light);
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 12px 16px;
}

.hero {
  background: radial-gradient(circle at 80% 0%, rgba(205, 164, 94, 0.12), transparent 55%), var(--bg);
  padding: 0;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hero-body {
  padding: 32px 20px 48px;
  max-width: 620px;
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  background: rgba(205, 164, 94, 0.12);
  border: 1px solid rgba(205, 164, 94, 0.5);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.kicker-above {
  display: block;
  width: fit-content;
  margin: 20px auto 16px;
  white-space: nowrap;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.28;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .accent { color: var(--gold-light); }

.hero-sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.badge {
  display: inline-block;
  background: var(--panel);
  border: 1px solid rgba(205, 164, 94, 0.35);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
}

.badge strong { color: var(--gold-light); }

.photo-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(205, 164, 94, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo {
  width: 100%;
  aspect-ratio: 15 / 13;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.hero-photo img { object-position: center 46%; }

.card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

.card-label {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d8cbb0;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 500;
  outline: none;
}

.form-group input::placeholder { color: #8a7c62; }
.form-group input:focus { border-color: var(--gold-dark); }

.btn-cta {
  margin-top: 6px;
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #221a0f;
  border: none;
  border-radius: 999px;
  padding: 16px 20px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-cta:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-cta:disabled { opacity: 0.7; cursor: default; transform: none; }

.form-status {
  font-size: 13.5px;
  margin-top: 2px;
  display: none;
  text-align: center;
  font-weight: 600;
}

.form-status.success { color: var(--green); display: block; }
.form-status.error { color: var(--red); display: block; }

.mentor {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  padding: 64px 20px;
  border-top: 1px solid rgba(205, 164, 94, 0.15);
}

.mentor-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "heading" "photo" "copy";
  gap: 24px;
}

.mentor-heading {
  grid-area: heading;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--white);
  text-align: center;
}

.mentor-photo { grid-area: photo; }
.mentor-copy { grid-area: copy; }

.mentor-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 34px;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 30px;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(205, 164, 94, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.check-icon svg { display: block; }

.checklist strong { color: var(--white); font-size: 15.5px; }
.checklist span:not(.check-icon) { display: block; color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-top: 3px; }

.btn-cta-outline {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--sans);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-cta-outline:hover { background: var(--gold); color: #221a0f; }

.site-footer {
  text-align: center;
  padding: 40px 20px 44px;
  background: var(--bg);
}

.site-footer p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

@media (min-width: 901px) {
  .hero { padding: 56px 20px 64px; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
  .hero-body { order: 1; padding: 0; max-width: none; margin: 0; }
  .hero-photo {
    order: 2;
    aspect-ratio: auto;
    border-radius: 18px;
    border: 1px solid rgba(205, 164, 94, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  }
  .hero-photo img { height: auto; }

  .mentor-grid {
    grid-template-columns: 0.85fr 1.15fr;
    grid-template-areas: "photo heading" "photo copy";
    grid-template-rows: auto 1fr;
    align-items: center;
    column-gap: 48px;
    row-gap: 14px;
  }
}

@media (max-width: 600px) {
  .topbar { font-size: 9px; letter-spacing: 0.3px; padding: 10px 10px; white-space: nowrap; }
  .mentor-heading { font-size: 19px; white-space: nowrap; }
  .kicker-above { font-size: 10.5px; padding: 6px 12px; margin: 14px auto 14px; }
  .hero h1 { font-size: 23px; margin-bottom: 12px; }
  .hero-body { padding: 20px 16px 32px; }
  .kicker { margin-bottom: 12px; }
  .badges { margin-bottom: 16px; gap: 6px; flex-wrap: nowrap; }
  .badge { font-size: 11.5px; padding: 7px 10px; white-space: nowrap; }
  .badge svg, .badge span.emoji { flex-shrink: 0; }
  .card { padding: 20px 18px; }
  .card-label { margin-bottom: 12px; }
  .form { gap: 10px; }
  .form-group input { padding: 12px 14px; }
  .btn-cta { padding: 14px 20px; }
  .mentor { padding: 48px 16px; }
  .mentor-name { font-size: 28px; }
}
