:root {
  --ink: #1f2926;
  --ink-2: #2f3c36;
  --ivory: #fbfaf7;
  --sage: #7a9278;
  --sage-soft: #dfe7dc;
  --stone: #d8d1c5;
  --clay: #b98f73;
  --mist: #eef0ec;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(31, 41, 38, 0.16);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  padding-top: var(--header-height);
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--ivory);
  padding: 0;
  border-radius: 4px;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  padding: 10px 14px;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(31, 41, 38, 0.1);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 250, 247, 0.78);
  border-color: rgba(31, 41, 38, 0.08);
  box-shadow: 0 16px 48px rgba(31, 41, 38, 0.08);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 80ms linear;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 148px;
}

.brand img {
  width: 176px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.site-nav .nav-cta {
  padding: 0 18px;
  color: var(--ivory);
  background: var(--clay);
  border: 1px solid var(--clay);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(31, 41, 38, 0.18);
  background: transparent;
  border-radius: 4px;
  color: var(--ink);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.8vw, 6.35rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
}

h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.7rem);
}

p {
  margin: 0;
}

.small-label {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ivory);
  background: var(--clay);
  border-color: var(--clay);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.76);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ivory);
  background: var(--ink);
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--ivory);
  background: var(--clay);
  border-color: var(--clay);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  isolation: isolate;
  background: var(--ivory);
}

.hero > * {
  min-width: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 118px) clamp(22px, 6vw, 106px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -26%;
  bottom: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), transparent);
  transform: rotate(-6deg);
  opacity: 0.62;
}

.hero-lede {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(31, 41, 38, 0.74);
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
}

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

.hero-note {
  margin-top: 20px;
  color: rgba(31, 41, 38, 0.62);
  font-size: 0.92rem;
}

.hero-media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(251, 250, 247, 0.74) 12%, rgba(251, 250, 247, 0) 38%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 61% center;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.typed-shell {
  display: inline-grid;
  grid-template: "type" auto / 1fr;
  max-width: 100%;
  color: var(--clay);
  vertical-align: baseline;
}

.typed-sizer,
.typed-live {
  grid-area: type;
  white-space: nowrap;
}

.typed-sizer {
  visibility: hidden;
}

.typed-live {
  color: var(--clay);
}

.typed-phrase,
.typed-period {
  display: inline;
}

.typed-period {
  color: var(--ink);
}

.typed-live::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.78em;
  margin-left: 0.06em;
  background: currentColor;
  opacity: 0.34;
  transform: translateY(0.08em);
}

main > section {
  scroll-margin-top: var(--header-height);
}

.section-band {
  padding: clamp(72px, 8vw, 132px) clamp(22px, 6vw, 96px);
  background: var(--ivory);
}

.meaning {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 96px);
  border-top: 1px solid rgba(31, 41, 38, 0.1);
}

.section-intro,
.ways-heading,
.model-head,
.proof-intro {
  max-width: 880px;
}

.section-intro p:last-child,
.model-head p,
.proof-item p,
.founder-copy p,
.insights-copy p,
.contact-copy p {
  color: rgba(31, 41, 38, 0.7);
}

.section-intro p:last-child {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.value-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: end;
  border-top: 1px solid rgba(31, 41, 38, 0.12);
  border-bottom: 1px solid rgba(31, 41, 38, 0.12);
}

.value-rail article {
  min-height: 250px;
  padding: 30px 26px;
  border-right: 1px solid rgba(31, 41, 38, 0.12);
}

.value-rail article:last-child {
  border-right: 0;
}

.value-mark {
  display: block;
  margin-bottom: 26px;
  color: var(--sage);
  font-weight: 800;
}

.value-rail h3 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.value-rail p {
  color: rgba(31, 41, 38, 0.68);
}

.ways {
  padding: clamp(72px, 8vw, 126px) clamp(22px, 6vw, 96px);
  background: var(--mist);
}

.ways-heading {
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(31, 41, 38, 0.16);
  box-shadow: var(--shadow);
}

.service-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 62px);
  background:
    linear-gradient(140deg, rgba(251, 250, 247, 0.97), rgba(251, 250, 247, 0.86)),
    url("./assets/images/hero-journey-sunrise.webp") center / cover;
  color: var(--ink);
}

.service-panel-dark {
  background:
    linear-gradient(140deg, rgba(31, 41, 38, 0.92), rgba(31, 41, 38, 0.72)),
    url("./assets/images/hero-journey-sunrise.webp") center / cover;
  color: var(--ivory);
}

.service-number {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-panel p {
  max-width: 560px;
  margin: 22px 0;
  color: rgba(31, 41, 38, 0.72);
  font-size: 1.03rem;
}

.service-panel-dark p {
  color: rgba(251, 250, 247, 0.74);
}

.service-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding-left: 22px;
  color: inherit;
}

.service-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--clay);
}

.service-panel a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.service-panel a:hover,
.service-panel a:focus-visible {
  color: var(--clay);
  transform: translateX(4px);
}

.model {
  background: var(--ivory);
}

.model-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 78px);
}

.model-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
}

.model-line {
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage), var(--clay), var(--sage), transparent);
}

.model-step {
  position: relative;
  z-index: 1;
  min-height: 162px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.model-step span {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 41, 38, 0.22);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.model-step strong {
  max-width: 230px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 0.96;
}

.model-step:hover span,
.model-step:focus-visible span,
.model-step.is-active span {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.model-detail {
  max-width: 760px;
  margin-top: 28px;
  padding-top: 30px;
  border-top: 1px solid rgba(31, 41, 38, 0.14);
}

.model-detail h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.model-detail p {
  color: rgba(31, 41, 38, 0.7);
  font-size: 1.06rem;
}

.founder {
  position: relative;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  padding: 0 0 clamp(74px, 9vw, 142px);
  background: linear-gradient(180deg, var(--mist), var(--ivory));
}

.founder-hero {
  position: relative;
  min-height: clamp(520px, 68vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(74px, 9vw, 142px) clamp(22px, 6vw, 96px);
}

.founder-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(251, 250, 247, 0.97) 0%,
    rgba(251, 250, 247, 0.9) 24%,
    rgba(251, 250, 247, 0.58) 39%,
    rgba(251, 250, 247, 0.12) 49%,
    rgba(251, 250, 247, 0.08) 58%,
    rgba(251, 250, 247, 0.42) 62%,
    rgba(251, 250, 247, 0.84) 67%,
    rgba(251, 250, 247, 0.93) 78%,
    rgba(251, 250, 247, 0.97) 100%
  );
  pointer-events: none;
}

.founder-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
}

.founder-intro h2 {
  max-width: 880px;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}

.founder-intro p:last-child {
  color: rgba(31, 41, 38, 0.72);
  font-size: 1.08rem;
}

.founder-intro-copy {
  max-width: 610px;
}

.founder-intro-copy > p:first-child {
  color: rgba(31, 41, 38, 0.72);
  font-size: 1.08rem;
}

.founder-principle {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 41, 38, 0.2);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 600;
  line-height: 1.06;
}

.founder-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.founder-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/images/mentisora-real-seedling-extra-wide.webp") center 54% / cover no-repeat;
  opacity: 0.13;
}

.founder-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  transform: none;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 46px);
  padding: 0 clamp(22px, 6vw, 96px);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(31, 41, 38, 0.12);
  background: rgba(251, 250, 247, 0.82);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 34%;
}

.founder-card img.founder-photo-tight {
  object-position: center 16%;
  transform: scale(1.2);
  transform-origin: center 18%;
}

.founder-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

.founder-card-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}

.founder-role {
  margin-bottom: 22px;
  color: var(--sage);
  font-size: 0.95rem;
  font-weight: 800;
}

.founder-card-copy p:not(.small-label):not(.founder-role) {
  color: rgba(31, 41, 38, 0.72);
  font-size: 1rem;
}

.founder-card-copy p + p:not(.founder-role) {
  margin-top: 16px;
}

.profile-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: 24px;
  border-bottom: 1px solid rgba(31, 41, 38, 0.28);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-link:hover,
.profile-link:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.linkedin-mark {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.75rem;
  line-height: 1;
}

.insights {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.84fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  padding: clamp(72px, 8vw, 134px) clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: var(--ivory);
}

.paper-cover {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(122, 146, 120, 0.22), transparent 44%),
    #f3eee5;
  border: 1px solid rgba(216, 209, 197, 0.58);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.paper-cover::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -14%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(185, 143, 115, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(122, 146, 120, 0.08), 0 0 0 62px rgba(185, 143, 115, 0.08);
}

.paper-cover img,
.paper-cover-meta,
.paper-cover-rule,
.paper-cover small,
.paper-cover strong,
.paper-cover p,
.paper-cover-footer {
  position: relative;
  z-index: 1;
}

.paper-cover img {
  width: 150px;
  margin-bottom: 28px;
}

.paper-cover-meta {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-cover-rule {
  width: 100%;
  height: 1px;
  margin: 16px 0 28px;
  background: rgba(31, 41, 38, 0.18);
}

.paper-cover small {
  max-width: 320px;
  color: var(--sage);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.paper-cover strong {
  display: block;
  margin-top: 28px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  font-weight: 600;
  line-height: 0.82;
}

.paper-cover p {
  max-width: 360px;
  margin-top: 24px;
  color: rgba(31, 41, 38, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.paper-cover-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 34px;
  border-top: 1px solid rgba(31, 41, 38, 0.16);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.insights-copy .small-label,
.insights-copy p {
  color: rgba(251, 250, 247, 0.72);
}

.insights-copy p {
  margin-top: 22px;
  font-size: 1.08rem;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.signal-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(251, 250, 247, 0.22);
  color: rgba(251, 250, 247, 0.84);
  font-size: 0.88rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(251, 250, 247, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(251, 250, 247, 0.24);
  background: rgba(251, 250, 247, 0.1);
  color: var(--ivory);
  padding: 0 14px;
  font: inherit;
}

.lead-form input:focus-visible {
  outline: 2px solid rgba(216, 209, 197, 0.9);
  outline-offset: 2px;
}

.consent-check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.consent-check input {
  margin-top: 3px;
  accent-color: var(--clay);
}

.lead-status {
  min-height: 24px;
  color: rgba(251, 250, 247, 0.76);
  font-size: 0.92rem;
}

.lead-download {
  justify-self: start;
}

.lead-download[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.56;
}

.proof {
  background: var(--ivory);
}

.proof-intro {
  margin-bottom: 42px;
}

.proof-intro p {
  max-width: 740px;
  margin-top: 22px;
  color: rgba(31, 41, 38, 0.7);
  font-size: 1.08rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(31, 41, 38, 0.12);
}

.proof-item {
  min-height: 280px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--ivory);
}

.proof-item span {
  display: block;
  margin-bottom: 26px;
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5vw, 5.6rem);
  line-height: 0.85;
}

.proof-item h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.proof-item a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  border-bottom: 1px solid rgba(31, 41, 38, 0.28);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.proof-item a:hover,
.proof-item a:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.credentials {
  display: grid;
  grid-template-columns: minmax(260px, 0.54fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(72px, 8vw, 120px) clamp(22px, 6vw, 96px);
  border-top: 1px solid rgba(31, 41, 38, 0.1);
  background: var(--mist);
}

.credentials-intro h2 {
  max-width: 560px;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.credential-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(31, 41, 38, 0.14);
  border-left: 1px solid rgba(31, 41, 38, 0.14);
}

.credential-rail article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 30px;
  border-right: 1px solid rgba(31, 41, 38, 0.14);
  border-bottom: 1px solid rgba(31, 41, 38, 0.14);
}

.credential-rail img {
  width: auto;
  max-width: 168px;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
}

.credential-rail strong,
.credential-rail span {
  display: block;
}

.credential-rail .credential-badge {
  max-height: 82px;
}

.msc-mark {
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 0.8;
}

.credential-rail strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.credential-rail span {
  margin-top: 8px;
  color: rgba(31, 41, 38, 0.64);
  font-size: 0.82rem;
  line-height: 1.45;
}

.cpcc-seal {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--mist), inset 0 0 0 7px rgba(185, 143, 115, 0.42);
  color: var(--ink);
}

.cpcc-seal span {
  margin: 0;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(74px, 9vw, 142px) clamp(22px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(31, 41, 38, 0.94), rgba(31, 41, 38, 0.68)),
    url("./assets/images/hero-journey-sunrise.webp") center / cover;
  color: var(--ivory);
}

.contact-copy p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(251, 250, 247, 0.76);
  font-size: 1.08rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-details a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(251, 250, 247, 0.28);
  color: var(--ivory);
  font-weight: 800;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  border-color: rgba(251, 250, 247, 0.72);
}

.contact-panel {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 18px;
  font-weight: 800;
}

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

.interest-options button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(31, 41, 38, 0.18);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.interest-options button:hover,
.interest-options button:focus-visible,
.interest-options button.is-selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.contact-mail {
  width: 100%;
}

.contact-phone {
  width: 100%;
  margin-top: 12px;
}

.copy-email {
  min-height: 44px;
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(31, 41, 38, 0.18);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.copy-email:hover,
.copy-email:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.copy-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--sage);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.2fr) minmax(210px, auto);
  grid-template-areas:
    "brand nav legal"
    "brand credit legal";
  column-gap: 34px;
  row-gap: 10px;
  align-items: center;
  padding: 28px clamp(22px, 6vw, 96px);
  background: var(--ink);
  color: rgba(251, 250, 247, 0.72);
  font-size: 0.88rem;
}

.site-footer img {
  width: 154px;
  filter: invert(1) brightness(1.5);
}

.site-footer > div {
  grid-area: brand;
}

.site-footer p {
  margin-top: 8px;
}

.site-footer nav {
  grid-area: nav;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ivory);
}

.footer-legal {
  grid-area: legal;
  text-align: right;
}

.site-footer .footer-credit {
  grid-area: credit;
  min-height: 42px;
  width: fit-content;
  justify-self: center;
  padding: 0 18px;
  border: 1px solid rgba(251, 250, 247, 0.42);
  background: var(--clay);
  color: var(--ivory);
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

.site-footer .footer-credit strong {
  margin-left: 4px;
  font-weight: 800;
}

.cookie-notice {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(420px, calc(100vw - 36px));
  display: grid;
  gap: 16px;
  padding: 18px;
  background: var(--ivory);
  border: 1px solid rgba(31, 41, 38, 0.16);
  box-shadow: var(--shadow);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  color: rgba(31, 41, 38, 0.74);
  font-size: 0.92rem;
}

.cookie-notice div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-notice button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.cookie-notice button:last-child {
  background: var(--ink);
  color: var(--ivory);
}

.floating-email {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clay);
  color: var(--ivory);
  box-shadow: 0 18px 42px rgba(31, 41, 38, 0.22);
  animation: floatPulse 2800ms ease-in-out infinite;
}

.floating-email svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-email:hover,
.floating-email:focus-visible {
  background: var(--ink);
}

.testimonials-main {
  background: var(--ivory);
}

.testimonials-hero {
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  padding: clamp(78px, 10vw, 150px) clamp(22px, 6vw, 96px);
  border-bottom: 1px solid rgba(31, 41, 38, 0.12);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.98), rgba(251, 250, 247, 0.72)),
    url("./assets/images/mentisora-growth-leadership.webp") right center / min(54vw, 860px) auto no-repeat;
}

.testimonials-hero h1 {
  max-width: 820px;
}

.testimonials-hero-copy p:last-child {
  max-width: 700px;
  margin-top: 26px;
  color: rgba(31, 41, 38, 0.7);
  font-size: 1.08rem;
}

.testimonials-summary {
  padding: 28px 0 6px 28px;
  border-left: 1px solid rgba(31, 41, 38, 0.18);
}

.testimonials-summary strong,
.testimonials-summary span {
  display: block;
}

.testimonials-summary strong {
  color: var(--clay);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.8;
}

.testimonials-summary span {
  max-width: 260px;
  margin-top: 18px;
  color: rgba(31, 41, 38, 0.64);
  font-size: 0.9rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(64px, 8vw, 124px) clamp(22px, 6vw, 96px);
  background: rgba(31, 41, 38, 0.12);
}

.testimonial-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--ivory);
}

.testimonial-card-featured {
  grid-column: 1 / -1;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: center;
  background: var(--ink);
  color: var(--ivory);
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 41, 38, 0.2);
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.testimonial-card-featured .testimonial-avatar {
  width: 108px;
  height: 108px;
  border-color: rgba(251, 250, 247, 0.28);
  background: var(--clay);
  color: var(--ivory);
  font-size: 2rem;
}

.testimonial-photo {
  object-fit: cover;
  object-position: center;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.testimonial-person span {
  margin-top: 6px;
  color: rgba(31, 41, 38, 0.62);
  font-size: 0.8rem;
}

.testimonial-card-featured .testimonial-person span {
  color: rgba(251, 250, 247, 0.62);
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(31, 41, 38, 0.76);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.12;
}

.testimonial-card-featured blockquote {
  color: rgba(251, 250, 247, 0.88);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

.testimonial-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: 22px;
  border-bottom: 1px solid rgba(251, 250, 247, 0.42);
  color: var(--ivory);
  font-size: 0.82rem;
  font-weight: 800;
}

.testimonial-link:hover,
.testimonial-link:focus-visible {
  color: var(--clay);
  border-color: var(--clay);
}

.testimonial-link-dark {
  border-color: rgba(31, 41, 38, 0.28);
  color: var(--ink);
}

.testimonials-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(22px, 6vw, 96px);
  background: var(--sage-soft);
}

.testimonials-cta h2 {
  max-width: 820px;
}

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 22px;
}

.site-nav.legal-nav {
  position: static;
  display: flex;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  padding: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.legal-main h1 {
  margin-bottom: 28px;
}

.legal-main h2 {
  margin-top: 42px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.legal-main p,
.legal-main li {
  color: rgba(31, 41, 38, 0.72);
}

.legal-main ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .founder-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
    margin-inline: auto;
  }

  .founder-card {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  }
}

@media (max-width: 1024px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 22px;
    background: var(--ivory);
    border-bottom: 1px solid rgba(31, 41, 38, 0.12);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
    border-bottom: 1px solid rgba(31, 41, 38, 0.1);
  }

  .site-nav .nav-cta {
    justify-content: center;
    margin-top: 12px;
  }

  .hero,
  .meaning,
  .founder-intro,
  .insights,
  .contact,
  .model-head,
  .credentials,
  .testimonials-hero,
  .testimonials-cta,
  .testimonial-card-featured {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 62px;
    padding-bottom: 42px;
    max-width: 100%;
  }

  .hero-copy::after {
    display: none;
  }

  .hero-media {
    min-height: 420px;
    max-width: 100%;
  }

  .founder-hero {
    min-height: 620px;
  }

  .founder-intro {
    gap: 26px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, var(--ivory) 0%, rgba(251, 250, 247, 0) 28%);
  }

  .value-rail,
  .service-grid,
  .proof-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-featured {
    grid-column: auto;
  }

  .value-rail article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 41, 38, 0.12);
  }

  .value-rail article:last-child {
    border-bottom: 0;
  }

  .service-panel {
    min-height: 460px;
  }

  .founder-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .founder-card img {
    height: clamp(420px, 58vw, 560px);
    min-height: 0;
    max-height: none;
  }

  .founder-card img.founder-photo-tight {
    object-position: center 16%;
    transform: scale(1.12);
    transform-origin: center 18%;
  }

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

  .model-line {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "credit"
      "legal";
  }

  .footer-legal {
    text-align: left;
  }

  .site-footer .footer-credit {
    justify-self: start;
  }

  .testimonials-hero {
    min-height: auto;
    background-size: 760px auto;
    background-position: right bottom;
  }

  .testimonials-summary {
    max-width: 360px;
  }
}

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

  .brand img {
    width: 148px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.5vw, 3.7rem);
  }

  .typed-shell {
    font-size: 0.94em;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-copy {
    padding-inline: 18px;
  }

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

  .section-band,
  .ways,
  .founder,
  .insights,
  .contact,
  .credentials,
  .testimonials-hero,
  .testimonial-grid,
  .testimonials-cta {
    padding-inline: 18px;
  }

  .founder {
    padding-inline: 0;
  }

  .founder-hero {
    min-height: auto;
    padding-inline: 18px;
    padding-block: 84px 62px;
  }

  .founder-art {
    inset: 0;
  }

  .founder-hero::before {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.96) 0%, rgba(251, 250, 247, 0.72) 36%, rgba(251, 250, 247, 0.86) 62%, rgba(251, 250, 247, 0.98) 100%),
      linear-gradient(90deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.58) 46%, rgba(251, 250, 247, 0.98) 100%);
  }

  .founder-art::before {
    background-size: 1320px auto;
    background-position: center 44%;
    opacity: 0.1;
  }

  .founder-art img {
    width: 155%;
    max-width: none;
    margin-left: -27%;
    object-fit: contain;
    object-position: center 38%;
    opacity: 0.52;
  }

  .founder-intro {
    gap: 30px;
  }

  .founder-intro h2 {
    font-size: clamp(2.15rem, 9.2vw, 3rem);
  }

  .founder-intro-copy {
    max-width: 100%;
  }

  .founder-intro-copy > p:first-child {
    color: rgba(31, 41, 38, 0.84);
  }

  .founder-principle {
    color: var(--ink);
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .founder-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 4.65;
  }

  .founder-card img.founder-photo-tight {
    object-position: center 18%;
    transform: scale(1.08);
    transform-origin: center 20%;
  }

  .founder-card-copy {
    min-height: 360px;
    padding: 30px 24px 34px;
  }

  .model-stage {
    grid-template-columns: 1fr;
  }

  .model-step {
    min-height: 94px;
    flex-direction: row;
    align-items: center;
  }

  .paper-cover {
    min-height: 390px;
    padding: 28px;
  }

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

  .credential-rail article {
    min-height: 180px;
    min-height: 170px;
  }

  .testimonial-grid {
    padding-block: 54px;
  }

  .testimonial-card,
  .testimonial-card-featured {
    min-height: auto;
    padding: 28px;
  }

  .testimonial-card-featured .testimonial-avatar {
    width: 82px;
    height: 82px;
  }

  .testimonials-cta .button {
    width: 100%;
  }

  .floating-email {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 460px) {
  .credential-rail {
    grid-template-columns: 1fr;
  }
}
