:root {
  /* Restored to the original warm visual treatment. */
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17201b;
  background: #f3ead9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 6vw, 96px);
  border-bottom: 1px solid rgba(23, 32, 27, 0.1);
  background: rgba(255, 250, 241, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 900;
}

nav {
  display: flex;
  gap: 22px;
  color: #4b5650;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: 56px;
  align-items: center;
  min-height: calc(86vh - 65px);
  padding: 64px clamp(20px, 6vw, 96px) 48px;
  background:
    linear-gradient(115deg, rgba(255, 247, 232, 0.76), rgba(255, 247, 232, 0.26)),
    url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a2b22;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 920px;
  font-size: clamp(2.45rem, 4.35vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  font-size: 1.17rem;
  line-height: 1.65;
  color: #39443e;
}

.audience-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: #17201b;
  font-weight: 800;
  line-height: 1.55;
}

.mentor-card {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  max-width: 560px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(23, 32, 27, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(23, 32, 27, 0.08);
  backdrop-filter: blur(8px);
}

.mentor-card img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.mentor-card h2 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.mentor-card p {
  margin-bottom: 0;
  color: #4d5852;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 850;
}

.primary-link {
  color: #fff;
  background: #17201b;
}

.secondary-link {
  border: 1px solid rgba(23, 32, 27, 0.22);
  background: rgba(255, 255, 255, 0.7);
}

.payment-panel {
  padding: 24px;
  border: 1px solid rgba(154, 43, 34, 0.2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 22px 56px rgba(82, 52, 38, 0.18);
  backdrop-filter: blur(10px);
}

.panel-heading h2 {
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.panel-heading p:last-child {
  color: #4d5852;
  line-height: 1.5;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 46px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid #c8cec8;
  border-radius: 6px;
  font: inherit;
}

.packages {
  display: grid;
  gap: 12px;
}

.package {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid #d6cec0;
  border-radius: 8px;
  background: #ffffff;
}

.package.featured {
  border-color: #b63a2f;
  background: #fff6ea;
  box-shadow: inset 5px 0 0 #b63a2f;
}

.package h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.package p {
  margin-bottom: 5px;
  color: #17201b;
  font-weight: 800;
  line-height: 1.35;
}

.package span,
.price small {
  color: #56615a;
  line-height: 1.45;
}

.price {
  display: grid;
  justify-items: end;
  gap: 2px;
  white-space: nowrap;
}

.price strong {
  font-size: 1.35rem;
}

button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #17201b;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

button:hover,
.primary-link:hover {
  background: #9a2b22;
}

#status {
  min-height: 24px;
  margin: 16px 0 0;
  color: #9a2b22;
  font-weight: 800;
}

.about-section,
.support-section,
.process-section,
.details {
  padding: 72px clamp(20px, 6vw, 96px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  background: #fffaf1;
}

.about-section h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.about-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  color: #39443e;
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-copy p {
  margin-bottom: 0;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  background: #fff2df;
}

.section-copy h2,
.process-section h2 {
  max-width: 620px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

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

.support-grid article {
  padding: 22px;
  border: 1px solid #ded3c2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(23, 32, 27, 0.05);
}

.support-grid h3,
.steps h3,
.details h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.support-grid p,
.steps p,
.details p {
  margin-bottom: 0;
  color: #4d5852;
  line-height: 1.6;
}

.process-section {
  color: #fffdf8;
  background: #17201b;
}

.process-section .eyebrow,
.process-section .steps span {
  color: #f2b39b;
}

.process-section .steps li {
  border-top-color: #f2b39b;
}

.process-section .steps p {
  color: #d9dfd9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding-top: 18px;
  border-top: 2px solid #b63a2f;
}

.steps span {
  display: block;
  margin-bottom: 14px;
  color: #9a2b22;
  font-weight: 900;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  background: #fffaf1;
}

.message-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  background: #f3ead9;
}

.message {
  width: min(100%, 640px);
}

.message h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.message a {
  color: #9a2b22;
  font-weight: 800;
}

.next-steps {
  margin: 24px 0;
  padding: 20px;
  border: 1px solid #ded3c2;
  border-radius: 8px;
  background: #fffdf8;
}

.next-steps p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.next-steps p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero,
  .about-section,
  .support-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .payment-panel {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 44px;
  }

  .support-grid,
  .steps,
  .details {
    grid-template-columns: 1fr;
  }

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

  .price {
    justify-items: start;
  }

  .mentor-card {
    grid-template-columns: 64px 1fr;
    padding: 14px;
  }

  .mentor-card img {
    width: 64px;
    height: 64px;
  }
}
