:root {
  --navy: #071b33;
  --gold: #c8a45d;
  --offwhite: #f7f3ea;
  --graphite: #1f2933;
  --green: #173b35;
  --bg: #fffdf8;
  --text: #1f2933;
  --muted: #596676;
  --border: #d9cfbd;
  --shadow: 0 16px 40px rgba(7, 27, 51, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(200, 164, 93, 0.14), transparent 40%),
    radial-gradient(circle at 10% 20%, rgba(23, 59, 53, 0.08), transparent 45%),
    var(--bg);
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--navy);
}

h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(860px, 92vw);
}

.section {
  padding: clamp(3.5rem, 6vw, 6rem) 0;
}

.muted {
  background: linear-gradient(165deg, rgba(247, 243, 234, 0.8), rgba(255, 255, 255, 0.95));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 234, 0.88);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--offwhite);
  background: linear-gradient(145deg, var(--green), var(--navy));
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand-text {
  font-weight: 600;
  color: var(--navy);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--offwhite);
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(7, 27, 51, 0.38);
}

.btn-secondary {
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
}

.btn-wide {
  width: min(100%, 520px);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--green);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.4rem;
}

.note {
  margin-top: 0.9rem;
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-art {
  position: relative;
  min-height: 390px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 41, 51, 0.1);
  background:
    linear-gradient(145deg, rgba(7, 27, 51, 0.97), rgba(23, 59, 53, 0.97)),
    linear-gradient(30deg, rgba(200, 164, 93, 0.2), transparent 40%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.65;
  animation: drift 8s ease-in-out infinite;
}

.orb-a {
  width: 170px;
  height: 170px;
  top: -36px;
  left: -30px;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.85), transparent 70%);
}

.orb-b {
  width: 220px;
  height: 220px;
  bottom: -70px;
  right: -20px;
  background: radial-gradient(circle, rgba(247, 243, 234, 0.24), transparent 72%);
  animation-delay: 2s;
}

.orb-c {
  width: 130px;
  height: 130px;
  top: 46%;
  right: 28%;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.34), transparent 70%);
  animation-delay: 4s;
}

.hero-card {
  position: absolute;
  left: 10%;
  bottom: 12%;
  width: 78%;
  padding: 1.4rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(247, 243, 234, 0.18);
  background: rgba(7, 27, 51, 0.45);
}

.hero-card h2 {
  color: var(--offwhite);
  margin-bottom: 0.45rem;
}

.hero-card p {
  color: rgba(247, 243, 234, 0.88);
  margin: 0;
}

.section-intro,
.transition {
  color: var(--muted);
}

.checklist {
  margin: 1.3rem 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--gold), #d5bb87);
}

.checklist-x li::before {
  border-radius: 4px;
  background: linear-gradient(130deg, #9c3f3f, #c46868);
}

.stats-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.panel,
.timeline li,
.steps li,
.faq-list details,
.form-placeholder {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(7, 27, 51, 0.08);
}

.card {
  padding: 1.1rem 1rem;
}

.card h3,
.card p {
  margin: 0;
}

.pillars-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar {
  padding: 1.3rem;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  border: 1px solid rgba(200, 164, 93, 0.65);
  background: rgba(200, 164, 93, 0.17);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  padding: 1.3rem 1.25rem;
}

.panel-alt {
  background: #fffaf8;
}

.timeline {
  margin: 1.4rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.timeline li {
  padding: 1rem 1rem 1rem 1.3rem;
  border-left: 4px solid var(--gold);
}

.timeline h3,
.timeline p,
.steps h3,
.steps p {
  margin: 0;
}

.timeline p,
.steps p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.mentor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: start;
}

.mentor-photo-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(150deg, #0f2946, #173b35);
  min-height: 340px;
}

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

.ln-fallback {
  width: 100%;
  min-height: 340px;
  display: grid;
  place-items: center;
  color: var(--offwhite);
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  letter-spacing: 0.08em;
}

.steps {
  margin: 1.4rem 0 1.5rem;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.steps li {
  padding: 1rem 1rem 1rem 1.2rem;
}

.investment {
  padding: clamp(1rem, 2vw, 1.4rem);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 41, 51, 0.12);
  background:
    linear-gradient(145deg, #fff, #fcf7ee),
    linear-gradient(170deg, rgba(200, 164, 93, 0.15), transparent);
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.8rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.cta-end {
  background:
    linear-gradient(160deg, rgba(7, 27, 51, 0.95), rgba(23, 59, 53, 0.95)),
    radial-gradient(circle at 100% 0%, rgba(200, 164, 93, 0.35), transparent 40%);
  color: var(--offwhite);
}

.cta-end h2,
.cta-end p {
  color: var(--offwhite);
}

.form-placeholder {
  padding: 1.5rem;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(31, 41, 51, 0.1);
  background: #f8f5ee;
}

.footer-content {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-10px) translateX(6px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-grid,
  .mentor-grid,
  .split,
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-art {
    min-height: 320px;
  }

  .hero-card {
    width: 85%;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .nav .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    left: 7%;
    bottom: 8%;
    width: 86%;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;
  }
}
