/* 
  Easy style controls:
  Change these colors and measurements first when you want a new look.
*/
:root {
  --color-ink: #183530;
  --color-muted: #60756e;
  --color-paper: #f6f7f4;
  --color-soft: #eef3ef;
  --color-mint: #8fd8b5;
  --color-teal: #0e1f1a;
  --color-coral: #ff7566;
  --color-sky: #91d6de;
  --color-white: #ffffff;
  --color-panel: #ffffff;
  --color-panel-strong: #17382f;
  --color-warm: #fff3ef;
  --color-border: rgba(14, 31, 26, 0.14);
  --shadow-soft: 0 22px 55px rgba(14, 31, 26, 0.14);
  --radius-card: 8px;
  --max-width: 1120px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
}

body,
button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--color-white);
  gap: 18px;
}

.site-header.compact {
  position: sticky;
  color: var(--color-ink);
  background: rgba(246, 247, 244, 0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(18px);
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-with-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(14, 31, 26, 0.16);
}

.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  align-items: center;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.hero {
  --hero-image: url("../assets/hero-mentoring.png");
  min-height: 90vh;
  min-height: 90svh;
  background:
    linear-gradient(115deg, rgba(8, 22, 17, 0.96), rgba(14, 31, 26, 0.72) 46%, rgba(246, 247, 244, 0.28)),
    var(--hero-image) center / cover;
}

.hero-overlay {
  display: flex;
  align-items: center;
  min-height: 90vh;
  min-height: 90svh;
  padding: calc(var(--header-height) + 48px) clamp(20px, 5vw, 64px) 72px;
}

.hero-content {
  width: min(860px, 100%);
  color: var(--color-white);
}

.hero-title-with-mark {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 24px);
}

.hero-mark {
  width: clamp(64px, 10vw, 104px);
  height: clamp(64px, 10vw, 104px);
  flex: 0 0 auto;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--color-coral);
  font-size: 0.98rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-heading h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.phrase-stack {
  display: grid;
  gap: 8px;
  margin: 26px 0 34px;
  max-width: 820px;
}

.phrase-stack p {
  margin: 0;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
  line-height: 1.35;
}

.phrase-stack p:first-child {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 14px 20px;
  border: 0;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid var(--color-sky);
  outline-offset: 4px;
}

.primary-button {
  color: #0e1f1a;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.secondary-button {
  align-self: flex-start;
  color: var(--color-white);
  background: var(--color-teal);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--color-panel-strong);
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px);
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.intro-section {
  background: linear-gradient(135deg, rgba(14, 31, 26, 0.1), var(--color-soft) 44%, var(--color-white));
}

.intro-section h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.mission-section {
  background: var(--color-white);
}

.mission-copy {
  max-width: 880px;
  text-align: center;
}

.mission-copy h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.mission-copy p:last-child {
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 1.14rem;
  line-height: 1.8;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--color-coral);
  font-weight: 900;
}

.steps h3,
.mentor-card h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.steps p,
.page-heading p,
.mentor-bio,
.mentor-highlights {
  color: var(--color-muted);
  line-height: 1.65;
}

.page-heading {
  color: var(--color-white);
  padding: clamp(58px, 10vw, 112px) clamp(20px, 5vw, 64px) clamp(34px, 6vw, 62px);
  background:
    linear-gradient(135deg, rgba(14, 31, 26, 0.96), rgba(23, 56, 47, 0.84) 42%, rgba(238, 243, 239, 0.62) 100%),
    linear-gradient(90deg, var(--color-sky), var(--color-coral));
}

.page-heading h1 {
  font-size: clamp(2.7rem, 8vw, 5.8rem);
}

.page-heading p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.mentors-section {
  background: linear-gradient(180deg, var(--color-paper), var(--color-white));
}

.about-section {
  background: linear-gradient(135deg, rgba(14, 31, 26, 0.1), var(--color-soft) 48%, var(--color-white));
}

.about-section h2,
.faq-layout h2,
.contact-panel h2,
.become-layout h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1;
  letter-spacing: 0;
}

.centered-copy {
  max-width: 900px;
  text-align: center;
}

.centered-copy p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--color-muted);
  font-size: 1.16rem;
  line-height: 1.75;
}

.faq-section {
  background: var(--color-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--color-panel), var(--color-soft));
  box-shadow: 0 14px 36px rgba(14, 31, 26, 0.08);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--color-ink);
  font-weight: 850;
  line-height: 1.25;
}

.faq-list details[open] summary {
  color: var(--color-teal);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
  line-height: 1.65;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(14, 31, 26, 0.96), rgba(23, 56, 47, 0.82) 46%, rgba(238, 243, 239, 0.88)),
    linear-gradient(90deg, var(--color-sky), var(--color-coral));
}

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

.contact-grid.single-panel {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.contact-panel p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.contact-panel .section-kicker,
.page-heading .section-kicker {
  color: var(--color-coral);
}

.mentor-grid {
  display: grid;
  gap: 22px;
}

.more-mentors-note {
  margin-top: 26px;
  text-align: center;
}

.more-mentors-note p {
  display: inline-flex;
  margin: 0;
  padding: 12px 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-teal);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(14, 31, 26, 0.08);
}

.mentor-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 40px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--color-panel), var(--color-soft));
  box-shadow: var(--shadow-soft);
}

.mentor-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-card);
  background: var(--color-mint);
}

.mentor-details {
  display: grid;
  gap: 14px;
}

.mentor-role {
  margin: 0;
  color: var(--color-coral);
  font-size: 1.06rem;
  font-weight: 800;
}

.become-section {
  background: linear-gradient(135deg, var(--color-white), var(--color-soft) 64%, rgba(14, 31, 26, 0.1));
}

.become-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list article {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, var(--color-panel), var(--color-soft));
  box-shadow: 0 14px 36px rgba(14, 31, 26, 0.08);
}

.info-list h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.1;
}

.info-list p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.mentor-bio {
  margin: 0;
}

.mentor-profile-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

.mentor-highlights {
  display: grid;
  gap: 7px;
  padding-left: 20px;
  margin: 0;
}

.mentor-highlights li::marker {
  color: var(--color-coral);
}

.mentor-statement {
  position: relative;
  margin: 0;
  padding: 18px 20px 18px 22px;
  border-left: 4px solid var(--color-coral);
  border-radius: var(--radius-card);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
}

.mentor-statement::before {
  content: open-quote;
}

.mentor-statement::after {
  content: close-quote;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 4px 0 6px;
  list-style: none;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  color: #0e1f1a;
  background: var(--color-mint);
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.contact-list svg {
  display: block;
  width: 21px;
  height: 21px;
}

.contact-list .fill-icon {
  fill: currentColor;
}

.contact-list .stroke-icon {
  fill: none;
  stroke: currentColor;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: var(--color-white);
  transform: translateY(-1px);
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 64px);
  color: var(--color-white);
  background: var(--color-teal);
}

.footer-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.site-footer p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-weight: 800;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    min-height: auto;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 22, 17, 0.96), rgba(14, 31, 26, 0.76) 54%, rgba(246, 247, 244, 0.26)),
      var(--hero-image) 62% center / cover;
  }

  .phrase-stack p:first-child {
    white-space: normal;
  }

  .two-column,
  .mentor-card,
  .mentor-profile-columns,
  .faq-layout,
  .contact-grid,
  .become-layout {
    grid-template-columns: 1fr;
  }

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

  .steps article {
    min-height: 0;
  }

  .steps span {
    margin-bottom: 18px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    max-width: 142px;
    line-height: 1.1;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 12px;
    font-size: 0.88rem;
  }

  .hero-overlay {
    padding: 128px 20px 56px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }
}
