:root {
  --off-white: #f4efe7;
  --warm-white: #fff8ee;
  --sand: #d7c2a5;
  --stone: #8f877c;
  --charcoal: #11100e;
  --charcoal-soft: rgba(17, 16, 14, .78);
  --gold: #e9b66c;
  --amber: #c87832;
  --header-height: 82px;
  --side-gutter: clamp(1.25rem, 4vw, 4.5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--off-white);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  top: clamp(.75rem, 1.4vw, 1.15rem);
  left: var(--side-gutter);
  right: var(--side-gutter);
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.4vw, 2.6rem);
  padding: .55rem clamp(1rem, 2.1vw, 1.65rem);
  background: rgba(18, 15, 12, .62);
  border: 1px solid rgba(255, 248, 238, .13);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .20);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: auto clamp(1.2rem, 2.6vw, 2.6rem) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 182, 108, .30), rgba(255, 248, 238, .12), transparent);
  opacity: .55;
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(128px, 10vw, 172px);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .26));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.95rem, 1.65vw, 2rem);
}

.site-nav a {
  position: relative;
  color: rgba(255, 248, 238, .76);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  transition: color .28s ease, opacity .28s ease, border-color .28s ease, background .28s ease, transform .28s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.72rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--gold), var(--warm-white), transparent);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--warm-white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 1.02rem;
  margin-left: clamp(.15rem, .8vw, .7rem);
  border: 1px solid rgba(255, 248, 238, .25);
  border-radius: 999px;
  color: rgba(255, 248, 238, .88);
  background: rgba(255, 248, 238, .06);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--charcoal);
  border-color: rgba(255, 248, 238, .62);
  background: linear-gradient(135deg, rgba(255, 248, 238, .96), rgba(233, 182, 108, .82));
  transform: translateY(-1px);
}

.nav-toggle {
  position: relative;
  z-index: 35;
  display: none;
  align-items: center;
  gap: .75rem;
  min-height: 44px;
  padding: 0 .92rem 0 1.05rem;
  border: 1px solid rgba(255, 248, 238, .18);
  border-radius: 999px;
  background: rgba(255, 248, 238, .06);
  color: var(--warm-white);
  cursor: pointer;
  font: inherit;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nav-toggle__label {
  display: inline-block;
  font-size: .68rem;
  line-height: 1;
}

.nav-toggle__icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.nav-toggle__icon span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform .28s ease, opacity .28s ease;
}

.nav-toggle__icon span:first-child {
  transform: translateY(-4px);
}

.nav-toggle__icon span:last-child {
  transform: translateY(4px);
}

.nav-open .nav-toggle__icon span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle__icon span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-height) + 4rem) var(--side-gutter) clamp(5.2rem, 8.5vw, 8.6rem);
  background-image: url("../assets/hero-track.png");
  background-size: cover;
  background-position: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(11, 9, 7, .75) 0%, rgba(20, 13, 8, .54) 42%, rgba(20, 13, 8, .26) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(11, 9, 7, .32) 62%, rgba(11, 9, 7, .68) 100%);
}

.hero::after {
  background:
    radial-gradient(circle at 74% 38%, rgba(235, 159, 82, .20), transparent 34%),
    radial-gradient(circle at 23% 65%, rgba(255, 248, 238, .09), transparent 31%);
}

.hero__inner {
  width: min(100%, 1500px);
  margin-inline: auto;
}


.hero__title {
  width: min(100%, 1180px);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 7.35vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .94;
  text-wrap: balance;
}

.hero__line {
  display: block;
  white-space: nowrap;
}

.hero__word {
  display: inline-block;
  margin-right: .16em;
  color: rgba(255, 248, 238, .42);
  background-image: linear-gradient(
    105deg,
    rgba(255, 248, 238, .38) 0%,
    rgba(255, 248, 238, .52) 30%,
    #fff8ee 43%,
    #f0c987 53%,
    #d88942 62%,
    #fff8ee 75%,
    rgba(255, 248, 238, .86) 100%
  );
  background-size: 280% 100%;
  background-position: 150% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(9px);
  opacity: .16;
  transform: translateY(30px) scale(.975);
  will-change: transform, opacity, filter, background-position, text-shadow;
}

.hero__word:last-child {
  margin-right: 0;
}

.hero__aftercopy {
  max-width: 760px;
  margin-top: clamp(1.35rem, 2.4vw, 2.4rem);
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.hero__support {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 248, 238, .72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .01em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .8rem;
  margin-top: clamp(1.25rem, 2vw, 1.9rem);
}

.hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: 999px;
  color: var(--warm-white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, color .28s ease;
}

.hero__button--primary {
  border: 1px solid rgba(255, 248, 238, .52);
  background: linear-gradient(135deg, rgba(255, 248, 238, .20), rgba(216, 137, 66, .22));
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.hero__button--ghost {
  border: 1px solid rgba(255, 248, 238, .20);
  background: rgba(255, 248, 238, .035);
  color: rgba(255, 248, 238, .72);
}

.hero__button:hover,
.hero__button:focus-visible {
  transform: translateY(-1px);
}

.hero__button--primary:hover,
.hero__button--primary:focus-visible {
  color: var(--charcoal);
  border-color: rgba(255, 248, 238, .70);
  background: linear-gradient(135deg, rgba(255, 248, 238, .96), rgba(233, 182, 108, .84));
}

.hero__button--ghost:hover,
.hero__button--ghost:focus-visible {
  color: var(--warm-white);
  border-color: rgba(233, 182, 108, .45);
  background: rgba(255, 248, 238, .08);
}

.method-section {
  position: relative;
  min-height: 100vh;
  padding: clamp(6rem, 10vw, 11rem) var(--side-gutter);
  background: var(--off-white);
}

.method-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--side-gutter);
  right: var(--side-gutter);
  height: 1px;
  background: rgba(17, 16, 14, .12);
}

.method-section__grid {
  display: grid;
  grid-template-columns: minmax(8rem, 18rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  width: min(100%, 1360px);
  margin-inline: auto;
}

.method-section__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .55rem;
  border-top: 1px solid rgba(17, 16, 14, .18);
  color: rgba(17, 16, 14, .46);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 1.6rem;
  color: rgba(17, 16, 14, .50);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.method-section h2 {
  max-width: 920px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}

.method-section p:not(.section-label) {
  max-width: 640px;
  margin: clamp(1.7rem, 3vw, 2.7rem) 0 0;
  color: rgba(17, 16, 14, .68);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.7;
}

@media (max-width: 980px) {
  :root {
    --header-height: 74px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    top: .8rem;
    left: clamp(.8rem, 4vw, 1.4rem);
    right: clamp(.8rem, 4vw, 1.4rem);
    min-height: var(--header-height);
    padding-block: .52rem;
  }

  .brand {
    width: clamp(112px, 22vw, 150px);
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 25;
    display: grid;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) var(--side-gutter) 3rem;
    background:
      radial-gradient(circle at 72% 16%, rgba(216, 137, 66, .15), transparent 30%),
      linear-gradient(180deg, rgba(13, 12, 10, .98), rgba(20, 15, 11, .96));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1.25rem);
    transition: opacity .38s ease, visibility .38s ease, transform .38s ease;
  }

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

  .site-nav__inner {
    width: min(100%, 720px);
    margin-inline: auto;
    display: grid;
    gap: 0;
    align-content: center;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(1.05rem, 3.5vw, 1.55rem) 0;
    border-bottom: 1px solid rgba(255, 248, 238, .11);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.15rem, 7vw, 4.8rem);
    font-weight: 400;
    letter-spacing: -.045em;
    text-transform: none;
    color: rgba(255, 248, 238, .78);
    line-height: .98;
  }

  .site-nav a::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    order: 2;
    margin-left: 1.5rem;
    color: rgba(233, 182, 108, .52);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .68rem;
    letter-spacing: .18em;
  }

  .site-nav__inner {
    counter-reset: nav-item;
  }

  .site-nav a::after,
  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav .nav-cta {
    justify-content: center;
    width: max-content;
    min-height: 48px;
    margin-top: 2rem;
    margin-left: 0;
    padding: 0 1.25rem;
    border-radius: 999px;
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1;
  }

  .site-nav .nav-cta::before {
    display: none;
  }

  .hero__title {
    max-width: 1060px;
    letter-spacing: -.052em;
  }

  .method-section__grid {
    grid-template-columns: 1fr;
  }

  .method-section__meta {
    max-width: 18rem;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .brand {
    width: 118px;
  }

  .nav-toggle {
    padding-inline: .92rem;
  }

  .nav-toggle__label {
    display: none;
  }

  .hero {
    place-items: end start;
    padding-bottom: 4.8rem;
    background-position: center right 42%;
  }

  .hero__title {
    font-size: clamp(2.85rem, 12.5vw, 4.9rem);
    line-height: .99;
    letter-spacing: -.047em;
  }

  .hero__support {
    max-width: 34rem;
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero__actions {
    gap: .65rem;
  }

  .hero__button {
    min-height: 42px;
    padding-inline: .95rem;
    font-size: .65rem;
    letter-spacing: .13em;
  }

  .hero__line {
    white-space: normal;
  }

  .hero__word {
    margin-right: .12em;
  }

  .method-section {
    min-height: auto;
  }
}

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

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

  .hero__word {
    opacity: 1;
    filter: none;
    transform: none;
    background-position: 10% 50%;
    text-shadow: 0 0 22px rgba(216, 137, 66, .16);
  }

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

/* Landing sections built from the services content, kept intentionally selective. */
.editorial-section {
  position: relative;
  padding: clamp(5.8rem, 9vw, 10rem) var(--side-gutter);
  background: var(--off-white);
  color: var(--charcoal);
}

.editorial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--side-gutter);
  right: var(--side-gutter);
  height: 1px;
  background: rgba(17, 16, 14, .11);
}

.section-shell {
  width: min(100%, 1360px);
  margin-inline: auto;
}

.section-shell--split {
  display: grid;
  grid-template-columns: minmax(9rem, 18rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
}

.section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-self: start;
  padding-top: .6rem;
  border-top: 1px solid rgba(17, 16, 14, .18);
  color: rgba(17, 16, 14, .46);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-label {
  margin: 0 0 1.45rem;
  color: rgba(17, 16, 14, .50);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 920px;
  margin-bottom: clamp(2.6rem, 5vw, 5.5rem);
}

.section-heading--between {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(16rem, 360px);
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
}

.section-heading h2,
.section-copy h2,
.final-cta h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5.65vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
}

.section-copy p:not(.section-label),
.section-note,
.final-cta p:not(.section-label) {
  max-width: 660px;
  margin: clamp(1.45rem, 2.8vw, 2.4rem) 0 0;
  color: rgba(17, 16, 14, .66);
  font-size: clamp(1.02rem, 1.32vw, 1.28rem);
  line-height: 1.7;
}

.method-block {
  min-height: 78vh;
  display: grid;
  align-items: center;
}

.audience-block {
  background: #eee6db;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 16, 14, .14);
  border-left: 1px solid rgba(17, 16, 14, .10);
}

.profile-card {
  min-height: 250px;
  padding: clamp(1.35rem, 2.7vw, 2.4rem);
  border-right: 1px solid rgba(17, 16, 14, .10);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
  background: rgba(255, 248, 238, .22);
  transition: background .32s ease, transform .32s ease;
}

.profile-card:hover {
  background: rgba(255, 248, 238, .48);
  transform: translateY(-2px);
}

.profile-card span,
.process-list span,
.plan-card__top span {
  display: inline-block;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
  color: rgba(200, 120, 50, .82);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.profile-card h3,
.plan-card h3,
.process-list h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.55vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.profile-card p,
.plan-card li,
.process-list p,
.faq-list p {
  margin: 1.05rem 0 0;
  color: rgba(17, 16, 14, .63);
  font-size: .98rem;
  line-height: 1.62;
}

.plans-block {
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 137, 66, .10), transparent 28%),
    var(--off-white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.45rem);
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.8vw, 2.4rem);
  border: 1px solid rgba(17, 16, 14, .13);
  border-radius: 28px;
  background: rgba(255, 248, 238, .36);
  box-shadow: 0 18px 60px rgba(30, 25, 18, .05);
}

.plan-card--featured {
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .56), rgba(233, 182, 108, .14)),
    rgba(255, 248, 238, .48);
  border-color: rgba(200, 120, 50, .28);
}

.plan-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2.2rem, 4vw, 4.4rem);
}

.plan-card__top span {
  margin: 0;
}

.plan-card__top strong {
  color: rgba(17, 16, 14, .70);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-align: right;
  text-transform: uppercase;
}

.plan-card ul {
  display: grid;
  gap: .7rem;
  margin: clamp(2rem, 4vw, 3.2rem) 0 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 1.25rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: .73em;
  left: 0;
  width: .38rem;
  height: 1px;
  background: rgba(200, 120, 50, .72);
}

.process-block {
  background: #171411;
  color: var(--warm-white);
}

.process-block::before,
.final-cta::before {
  background: rgba(255, 248, 238, .12);
}

.process-block .section-kicker {
  border-color: rgba(255, 248, 238, .18);
  color: rgba(255, 248, 238, .45);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 248, 238, .12);
  border: 1px solid rgba(255, 248, 238, .12);
}

.process-list article {
  min-height: 250px;
  padding: clamp(1.35rem, 2.8vw, 2.4rem);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .035), transparent),
    #171411;
}

.process-list span {
  color: rgba(233, 182, 108, .78);
}

.process-list h3 {
  color: var(--warm-white);
}

.process-list p {
  color: rgba(255, 248, 238, .62);
}

.faq-block {
  background: #eee6db;
}

.faq-list {
  border-top: 1px solid rgba(17, 16, 14, .16);
}

.faq-list details {
  border-bottom: 1px solid rgba(17, 16, 14, .16);
  padding: clamp(1.25rem, 2.2vw, 1.9rem) 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
  letter-spacing: -.035em;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  margin-left: 1rem;
  color: rgba(200, 120, 50, .82);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

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

.final-cta {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  padding: clamp(5.8rem, 9vw, 10rem) var(--side-gutter);
  color: var(--warm-white);
  background:
    linear-gradient(90deg, rgba(10, 8, 6, .92), rgba(17, 13, 9, .74)),
    url("../assets/hero-track.png") center / cover;
}

.final-cta__inner {
  width: min(100%, 1120px);
}

.final-cta .section-label,
.final-cta h2 {
  color: var(--warm-white);
}

.final-cta p:not(.section-label) {
  color: rgba(255, 248, 238, .68);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: clamp(1.55rem, 2.7vw, 2.35rem);
}

@media (max-width: 980px) {
  .section-shell--split,
  .section-heading--between {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    max-width: 18rem;
  }

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

  .plans-grid .plan-card--featured {
    grid-column: span 2;
  }

  .plan-card {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .editorial-section,
  .final-cta {
    padding-block: clamp(4.5rem, 14vw, 6.4rem);
  }

  .section-heading h2,
  .section-copy h2,
  .final-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4.5rem);
  }

  .profile-grid,
  .plans-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .plans-grid .plan-card--featured {
    grid-column: auto;
  }

  .profile-card,
  .process-list article {
    min-height: 210px;
  }

  .plan-card {
    min-height: auto;
    border-radius: 22px;
  }
}

/* Premium method section with editorial scroll effects. */
.method-block {
  min-height: auto;
  display: block;
  overflow: hidden;
  padding-block: clamp(6.8rem, 11vw, 12rem);
  background:
    radial-gradient(circle at 85% 12%, rgba(233, 182, 108, .10), transparent 28%),
    var(--off-white);
}

.method-block::before {
  display: none;
}

.method-rule {
  position: absolute;
  top: 0;
  left: var(--side-gutter);
  right: var(--side-gutter);
  height: 1px;
  background: linear-gradient(90deg, rgba(17, 16, 14, .16), rgba(200, 120, 50, .32), rgba(17, 16, 14, .06));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.method-shell {
  display: grid;
  grid-template-columns: minmax(9rem, 18rem) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
}

.method-kicker {
  position: sticky;
  top: calc(var(--header-height) + 3.2rem);
}

.method-content {
  min-width: 0;
}

.method-label {
  margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.method-title {
  max-width: 1040px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 7.45rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .94;
  text-wrap: balance;
}

.method-title span {
  display: block;
  will-change: transform, opacity, filter;
}

.method-intro {
  max-width: 720px;
  margin: clamp(1.55rem, 3vw, 2.65rem) 0 0;
  color: rgba(17, 16, 14, .66);
  font-size: clamp(1.05rem, 1.38vw, 1.34rem);
  line-height: 1.72;
}

.method-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(3.2rem, 6vw, 6.2rem);
  border: 1px solid rgba(17, 16, 14, .11);
  background: rgba(17, 16, 14, .10);
}

.method-card {
  position: relative;
  min-height: clamp(270px, 24vw, 360px);
  padding: clamp(1.35rem, 2.7vw, 2.45rem);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .48), rgba(255, 248, 238, .20)),
    rgba(244, 239, 231, .72);
  border: 1px solid transparent;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1), border-color .45s ease, background .45s ease;
  will-change: transform, opacity, filter;
}

.method-card::after {
  content: "";
  position: absolute;
  left: clamp(1.35rem, 2.7vw, 2.45rem);
  right: clamp(1.35rem, 2.7vw, 2.45rem);
  bottom: clamp(1.35rem, 2.7vw, 2.45rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 120, 50, .50), transparent);
  transform: scaleX(0);
  transform-origin: left;
  opacity: .85;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 137, 72, .34);
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .70), rgba(255, 248, 238, .28)),
    rgba(244, 239, 231, .82);
}

.method-card:hover::after {
  transform: scaleX(1);
}

.method-card__number {
  display: inline-block;
  margin-bottom: clamp(2rem, 4.5vw, 4.4rem);
  color: rgba(200, 120, 50, .82);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  will-change: transform;
}

.method-card h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.method-card p {
  max-width: 26rem;
  margin: 1.1rem 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: .98rem;
  line-height: 1.64;
}

.method-bridge {
  max-width: 720px;
  margin: clamp(2.1rem, 4vw, 3.8rem) 0 0 auto;
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
  color: rgba(17, 16, 14, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.35vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.1;
  text-wrap: balance;
  will-change: transform, opacity, filter;
}

@media (max-width: 980px) {
  .method-shell {
    grid-template-columns: 1fr;
  }

  .method-kicker {
    position: static;
    max-width: 18rem;
  }

  .method-cards {
    grid-template-columns: 1fr;
  }

  .method-card {
    min-height: 240px;
  }

  .method-bridge {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .method-block {
    padding-block: clamp(4.8rem, 15vw, 7rem);
  }

  .method-title {
    font-size: clamp(2.65rem, 11.8vw, 4.6rem);
    letter-spacing: -.048em;
  }

  .method-intro {
    font-size: 1rem;
  }

  .method-cards {
    margin-top: 2.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-rule,
  .method-title span,
  .method-card,
  .method-card__number,
  .method-bridge {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .method-rule {
    transform: scaleX(1) !important;
  }
}

/* Refined progressive method section: asymmetrical editorial layout. */
.method-progressive {
  min-height: auto;
  padding-block: clamp(7.2rem, 12vw, 13rem);
  background:
    radial-gradient(circle at 82% 10%, rgba(233, 182, 108, .12), transparent 30%),
    linear-gradient(180deg, rgba(255, 248, 238, .34), transparent 46%),
    var(--off-white);
}

.method-progressive__shell {
  display: grid;
  grid-template-columns: minmax(12rem, 22rem) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
}

.method-progressive__aside {
  position: sticky;
  top: calc(var(--header-height) + 4.2rem);
  display: grid;
  gap: clamp(2.2rem, 4vw, 4.4rem);
}

.method-progressive .method-kicker {
  position: static;
  max-width: none;
}

.method-microdata {
  display: grid;
  gap: .7rem;
  max-width: 15rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(17, 16, 14, .12);
  color: rgba(17, 16, 14, .42);
  font-size: .68rem;
  letter-spacing: .16em;
  line-height: 1.55;
  text-transform: uppercase;
}

.method-microdata strong {
  color: rgba(17, 16, 14, .68);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .14em;
}

.method-progressive__main {
  min-width: 0;
}

.method-progressive .method-title {
  max-width: 1080px;
}

.method-progressive .method-intro {
  max-width: 760px;
  color: rgba(17, 16, 14, .70);
}

.method-progress {
  position: relative;
  width: min(100%, 900px);
  height: 1px;
  margin-top: clamp(3rem, 5.5vw, 5.8rem);
  background: rgba(17, 16, 14, .12);
  overflow: hidden;
}

.method-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(200, 120, 50, .72), rgba(233, 182, 108, .48), transparent);
  will-change: transform;
}

.method-principles {
  width: min(100%, 980px);
  margin-top: clamp(1.2rem, 2vw, 1.8rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
}

.method-principle {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4rem, 7.8rem) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 3.6rem);
  padding: clamp(1.5rem, 3.2vw, 2.85rem) 0;
  border-bottom: 1px solid rgba(17, 16, 14, .12);
  opacity: .42;
  transform: translateY(24px);
  filter: blur(4px);
  transition: opacity .45s ease, filter .45s ease, transform .45s ease;
  will-change: opacity, transform, filter;
}

.method-principle::before {
  content: attr(data-keyword);
  position: absolute;
  top: clamp(1.45rem, 3vw, 2.8rem);
  right: 0;
  color: rgba(200, 120, 50, 0);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: color .35s ease, transform .35s ease;
}

.method-principle.is-active,
.method-principle:hover,
.method-principle:focus-within {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.method-principle.is-active::before,
.method-principle:hover::before,
.method-principle:focus-within::before {
  color: rgba(200, 120, 50, .78);
  transform: translateY(0);
}

.method-principle__number {
  display: inline-block;
  color: rgba(200, 120, 50, .78);
  font-size: .72rem;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.method-principle__keyword {
  display: none;
}

.method-principle h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.method-principle p:not(.method-principle__keyword) {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.66;
}

.method-progressive .method-bridge {
  max-width: 760px;
  margin: clamp(2.4rem, 5vw, 4.8rem) 0 0;
  color: rgba(17, 16, 14, .78);
}

@media (max-width: 980px) {
  .method-progressive__shell {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .method-progressive__aside {
    position: static;
  }

  .method-microdata {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .method-progressive {
    padding-block: clamp(5rem, 16vw, 7.4rem);
  }

  .method-principle {
    grid-template-columns: 1fr;
    gap: .95rem;
    padding-block: 1.65rem;
  }

  .method-principle::before {
    position: static;
    grid-row: 1;
    color: rgba(200, 120, 50, .68);
    transform: none;
  }

  .method-principle__number {
    display: none;
  }

  .method-principle h3 {
    font-size: clamp(2.35rem, 12vw, 4.2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-principle,
  .method-progress span {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}


/* Centered method refinement: remove side meta and make the key copy the focus. */
.method-progressive__shell--centered {
  display: block;
  max-width: min(100%, 1120px);
  margin-inline: auto;
}

.method-progressive__main--centered {
  display: grid;
  justify-items: center;
  text-align: center;
}

.method-progressive__main--centered .method-title {
  max-width: 980px;
  margin-inline: auto;
}

.method-progressive__main--centered .method-intro {
  max-width: 760px;
  margin-inline: auto;
}

.method-progressive__main--centered .method-progress {
  width: min(100%, 780px);
  margin-inline: auto;
}

.method-progressive__main--centered .method-principles {
  width: min(100%, 920px);
  margin-inline: auto;
}

.method-progressive__main--centered .method-principle {
  grid-template-columns: 1fr;
  gap: .95rem;
  justify-items: center;
  text-align: center;
  padding-inline: clamp(1rem, 3vw, 2.6rem);
}

.method-progressive__main--centered .method-principle::before {
  right: 50%;
  transform: translate(50%, 8px);
}

.method-progressive__main--centered .method-principle.is-active::before,
.method-progressive__main--centered .method-principle:hover::before,
.method-progressive__main--centered .method-principle:focus-within::before {
  transform: translate(50%, 0);
}

.method-progressive__main--centered .method-principle__number {
  color: rgba(200, 120, 50, .72);
}

.method-progressive__main--centered .method-principle p:not(.method-principle__keyword) {
  max-width: 34rem;
  margin-inline: auto;
}

.method-progressive__main--centered .method-bridge {
  max-width: 760px;
  margin-inline: auto;
}

@media (max-width: 680px) {
  .method-progressive__main--centered .method-principle::before {
    transform: none;
  }
}

/* Editorial audience section: identity-first, light, and non-generic. */
.audience-editorial {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 137, 66, .12), transparent 30%),
    linear-gradient(180deg, #eee6db 0%, #f6efe4 100%);
}

.audience-editorial::after {
  content: "";
  position: absolute;
  inset: auto clamp(1.2rem, 4vw, 4rem) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 16, 14, .16), transparent);
  pointer-events: none;
}

.audience-editorial__shell {
  display: grid;
  gap: clamp(3rem, 6vw, 6.8rem);
}

.audience-editorial__heading {
  display: grid;
  justify-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: 1120px;
}

.audience-editorial__heading .section-label {
  margin-bottom: clamp(1.2rem, 2vw, 1.8rem);
}

.audience-editorial__heading h2 {
  max-width: 1050px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5.8vw, 6.65rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .94;
  text-wrap: balance;
}

.audience-editorial__heading p:not(.section-label) {
  max-width: 720px;
  margin: clamp(1.4rem, 2.8vw, 2.25rem) auto 0;
  color: rgba(17, 16, 14, .64);
  font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  line-height: 1.7;
  text-wrap: balance;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1180px);
  margin-inline: auto;
  border-top: 1px solid rgba(17, 16, 14, .13);
  border-left: 1px solid rgba(17, 16, 14, .10);
}

.audience-card {
  position: relative;
  min-height: clamp(230px, 24vw, 310px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.6vw, 2.35rem);
  border-right: 1px solid rgba(17, 16, 14, .10);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
  background: rgba(255, 248, 238, .18);
  overflow: hidden;
  transition: transform .45s ease, background .45s ease, border-color .45s ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  left: clamp(1.35rem, 2.6vw, 2.35rem);
  right: clamp(1.35rem, 2.6vw, 2.35rem);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 120, 50, .86), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .5s ease;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(216, 137, 66, .13), transparent 58%);
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.audience-card:hover,
.audience-card:focus-within {
  transform: translateY(-5px);
  background: rgba(255, 248, 238, .43);
  border-color: rgba(200, 120, 50, .22);
}

.audience-card:hover::before,
.audience-card:focus-within::before {
  transform: scaleX(1);
}

.audience-card:hover::after,
.audience-card:focus-within::after {
  opacity: 1;
}

.audience-card span {
  position: relative;
  z-index: 1;
  color: rgba(200, 120, 50, .72);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.audience-card h3 {
  position: relative;
  z-index: 1;
  margin: clamp(2.6rem, 5vw, 4.4rem) 0 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .95;
}

.audience-card p {
  position: relative;
  z-index: 1;
  max-width: 19rem;
  margin: 1rem 0 0;
  color: rgba(17, 16, 14, .61);
  font-size: .98rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .audience-editorial__heading {
    text-align: left;
    justify-items: start;
  }

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

  .audience-card {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-editorial__heading,
  .audience-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Scroll-activated audience section with subtle ThreeJS atmosphere. */
.audience-scroll {
  min-height: 118vh;
  isolation: isolate;
}

.audience-track-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .52;
  mix-blend-mode: multiply;
}

.audience-scroll .audience-editorial__shell {
  position: relative;
  z-index: 1;
}

.audience-scroll-progress {
  position: relative;
  width: min(100%, 760px);
  height: 1px;
  margin: clamp(-1rem, -1vw, -.2rem) auto clamp(1.8rem, 3vw, 2.8rem);
  overflow: hidden;
  background: rgba(17, 16, 14, .10);
}

.audience-scroll-progress span {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(200, 120, 50, .08), rgba(200, 120, 50, .85), rgba(255, 248, 238, .72));
}

.audience-scroll .audience-card {
  will-change: transform, opacity, filter;
}

.audience-scroll .audience-card:not(.is-active) {
  opacity: .58;
  filter: saturate(.78);
}

.audience-scroll .audience-card.is-active {
  opacity: 1;
  background:
    radial-gradient(circle at 50% 100%, rgba(216, 137, 66, .17), transparent 62%),
    rgba(255, 248, 238, .50);
  border-color: rgba(200, 120, 50, .28);
  box-shadow: inset 0 0 0 1px rgba(200, 120, 50, .10), 0 18px 46px rgba(56, 39, 22, .055);
}

.audience-scroll .audience-card.is-active::before {
  transform: scaleX(1);
}

.audience-scroll .audience-card.is-active span {
  color: rgba(166, 89, 34, .96);
}

.audience-scroll .audience-card.is-active h3 {
  color: rgba(17, 16, 14, .96);
}

@media (max-width: 680px) {
  .audience-scroll {
    min-height: auto;
  }


  .audience-track-canvas {
    opacity: .30;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-track-canvas,
  .audience-scroll-progress {
    display: none;
  }

  .audience-scroll .audience-card {
    opacity: 1 !important;
    filter: none !important;
  }
}


/* Audience refinement: interaction lives inside the grid, no external active marker. */
.audience-scroll {
  min-height: 108vh;
}

.audience-editorial__heading {
  margin-inline: auto;
  text-align: center;
}

.audience-editorial__heading h2 {
  max-width: 930px;
  margin-inline: auto;
  line-height: .94;
}

.audience-editorial__heading p:not(.section-label) {
  max-width: 620px;
  margin-inline: auto;
}

.audience-scroll-progress {
  width: min(100%, 560px);
  margin-top: clamp(1.8rem, 3vw, 3.2rem);
}

.audience-grid {
  margin-top: clamp(2.4rem, 4.6vw, 4.8rem);
}

.audience-card {
  min-height: clamp(220px, 25vw, 292px);
}

.audience-scroll .audience-card:not(.is-active) {
  opacity: .72;
  filter: saturate(.86);
}

.audience-scroll .audience-card.is-active {
  transform: translateY(-4px);
}

@media (max-width: 680px) {
  .audience-scroll { min-height: auto; }
  .audience-scroll-progress { width: min(100%, 220px); }
  .audience-card { min-height: auto; }
}

/* Premium guided service levels */
.plans-guide {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(217, 157, 88, .16), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(112, 74, 41, .10), transparent 34%),
    linear-gradient(180deg, #fff8ee 0%, #f2e6d6 100%);
}

.plans-guide::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 16, 14, .04) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 11.5rem;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 82%, transparent);
  opacity: .18;
}

.plans-guide .section-shell {
  position: relative;
  z-index: 1;
}

.plans-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, .58fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3.6rem, 8vw, 7.2rem);
  padding-top: .2rem;
}

.plans-guide__label {
  margin-bottom: clamp(1.1rem, 2vw, 1.65rem);
}

.plans-guide__copy h2 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.8vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .88;
}

.plans-guide__copy h2 span {
  display: block;
}

.plans-guide__lead {
  max-width: 460px;
  margin: 0 0 .5rem;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.75;
}

.plans-guide__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.35rem, 2.25vw, 2.15rem);
  border: 1px solid rgba(17, 16, 14, .13);
  border-radius: 28px;
  background: rgba(255, 250, 243, .48);
  box-shadow: none;
  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    border-color .55s ease,
    background .55s ease;
}

.plan-card__accent {
  position: absolute;
  top: 0;
  left: clamp(1.35rem, 2.25vw, 2.15rem);
  right: clamp(1.35rem, 2.25vw, 2.15rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(207, 139, 67, .74), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.plan-card:hover,
.plan-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(198, 124, 52, .35);
  background: rgba(255, 250, 243, .76);
}

.plan-card:hover .plan-card__accent,
.plan-card.is-active .plan-card__accent {
  transform: scaleX(1);
}

.plan-card--featured {
  border-color: rgba(198, 124, 52, .38);
  background:
    linear-gradient(180deg, rgba(255, 250, 243, .86), rgba(220, 156, 80, .13)),
    rgba(255, 250, 243, .62);
}

.plan-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .46rem .7rem;
  border: 1px solid rgba(198, 124, 52, .28);
  border-radius: 999px;
  color: rgba(110, 63, 28, .82);
  background: rgba(255, 248, 238, .72);
  font-size: .6rem;
  font-weight: 720;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}

.plan-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: clamp(1.05rem, 1.7vw, 1.4rem);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
}

.plan-card__number {
  color: rgba(17, 16, 14, .32);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 3.6rem);
  letter-spacing: -.055em;
  line-height: .82;
  transition: color .45s ease;
}

.plan-card__name {
  color: rgba(17, 16, 14, .54);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .45s ease;
}

.plan-card:hover .plan-card__number,
.plan-card.is-active .plan-card__number,
.plan-card:hover .plan-card__name,
.plan-card.is-active .plan-card__name {
  color: rgba(176, 100, 40, .88);
}

.plan-card__header {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  padding: clamp(1.35rem, 2.4vw, 2rem) 0 clamp(1.25rem, 2.3vw, 1.9rem);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
}

.plan-card h3 {
  max-width: 13ch;
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -.047em;
  line-height: .98;
}

.plan-card__price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: rgba(17, 16, 14, .80);
  font-size: .82rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .45s ease;
}

.plan-card:hover .plan-card__price,
.plan-card.is-active .plan-card__price {
  color: rgba(176, 100, 40, .95);
}

.plan-card__body {
  padding-top: clamp(1.25rem, 2.2vw, 1.75rem);
}

.plan-card__mini-title {
  margin: 0 0 .95rem;
  color: rgba(17, 16, 14, .42);
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.plan-card ul {
  display: grid;
  gap: .7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  margin: 0;
  padding-left: 1.18rem;
  color: rgba(17, 16, 14, .67);
  font-size: .92rem;
  line-height: 1.44;
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: .36rem;
  height: 1px;
  background: rgba(198, 124, 52, .74);
}

.plan-card__ideal {
  margin: auto 0 0;
  padding-top: clamp(1.35rem, 2.4vw, 2rem);
  color: rgba(17, 16, 14, .56);
  font-size: .91rem;
  line-height: 1.58;
}

.plan-card__cta {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  padding: .78rem 1.02rem;
  border: 1px solid rgba(17, 16, 14, .15);
  border-radius: 999px;
  color: rgba(17, 16, 14, .78);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color .35s ease, background .35s ease, color .35s ease, transform .35s ease;
}

.plan-card__cta:hover,
.plan-card.is-active .plan-card__cta {
  transform: translateY(-2px);
  border-color: rgba(198, 124, 52, .45);
  background: rgba(198, 124, 52, .11);
  color: rgba(17, 16, 14, .94);
}

.plans-guide__decision {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(2.3rem, 5vw, 4.5rem);
  padding-top: clamp(1.4rem, 2.8vw, 2.4rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
}

.plans-guide__decision p {
  max-width: 560px;
  margin: 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(.95rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.plans-guide__decision a {
  position: relative;
  flex: 0 0 auto;
  color: rgba(17, 16, 14, .82);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}

.plans-guide__decision a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.48rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 124, 52, .78), transparent);
  transform-origin: left;
  transition: transform .35s ease;
}

.plans-guide__decision a:hover::after {
  transform: scaleX(.68);
}

@media (max-width: 1140px) {
  .plans-guide__intro {
    grid-template-columns: 1fr;
    gap: clamp(1.4rem, 4vw, 2.5rem);
  }

  .plans-guide__lead {
    max-width: 640px;
  }

  .plans-guide__cards {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-inline: auto;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-card h3 {
    max-width: 18ch;
  }
}

@media (max-width: 720px) {
  .plans-guide__intro {
    margin-bottom: clamp(2.6rem, 12vw, 4rem);
  }

  .plans-guide__copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
    line-height: .9;
  }

  .plans-guide__lead {
    font-size: 1rem;
  }

  .plans-guide__cards {
    gap: 1rem;
  }

  .plan-card {
    border-radius: 24px;
    padding: 1.18rem;
  }

  .plan-card__badge {
    position: static;
    width: fit-content;
    margin: 0 0 1rem auto;
  }

  .plan-card__topline {
    align-items: flex-end;
  }

  .plan-card h3 {
    max-width: 16ch;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .plan-card li {
    font-size: .94rem;
    line-height: 1.5;
  }

  .plans-guide__decision {
    display: grid;
    gap: 1.25rem;
  }

  .plans-guide__decision a {
    width: fit-content;
  }
}

/* Subtle hero scroll indicator */
.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 3.2vw, 2.65rem);
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .42rem;
  color: rgba(255, 248, 238, .68);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: .78;
  transition: opacity .45s ease, transform .45s ease, color .35s ease;
  animation: scrollCueFloat 2.6s cubic-bezier(.45, 0, .25, 1) infinite;
}

.hero__scroll-cue::before {
  content: "";
  position: absolute;
  inset: -.8rem -1rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 137, 66, .13), transparent 68%);
  opacity: .55;
  z-index: -1;
}

.hero__scroll-cue:hover,
.hero__scroll-cue:focus-visible {
  color: rgba(255, 248, 238, .95);
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.hero__scroll-text {
  opacity: .78;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: clamp(1.55rem, 3vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255, 248, 238, .12), rgba(233, 182, 108, .62), rgba(255, 248, 238, .18));
  transform-origin: top;
}

.hero__scroll-arrow {
  display: block;
  font-size: .82rem;
  line-height: 1;
  color: rgba(233, 182, 108, .74);
}

.hero__scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}

@keyframes scrollCueFloat {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 680px) {
  .hero__scroll-cue {
    bottom: 1.2rem;
    font-size: .58rem;
    gap: .36rem;
  }

  .hero__scroll-line {
    height: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue {
    animation: none;
  }
}

/* Method section refinement: clearer step hierarchy and a subtle golden route. */
.method-progressive__main--centered .method-principles {
  position: relative;
  border-top: 0;
  padding-left: clamp(1.25rem, 4vw, 3.75rem);
}

.method-progressive__main--centered .method-principle {
  position: relative;
  padding-block: clamp(2rem, 4vw, 3.45rem);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
}

.method-progressive__main--centered .method-principle::before {
  content: none;
}

.method-progressive__main--centered .method-principle__number {
  display: block;
  margin-bottom: .58rem;
  color: rgba(200, 120, 50, .78);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .22em;
  line-height: 1;
  text-transform: uppercase;
}

.method-progressive__main--centered .method-principle__keyword {
  display: block;
  margin: 0 0 .95rem;
  color: rgba(17, 16, 14, .44);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.method-progressive__main--centered .method-principle.is-active .method-principle__keyword,
.method-progressive__main--centered .method-principle:hover .method-principle__keyword,
.method-progressive__main--centered .method-principle:focus-within .method-principle__keyword {
  color: rgba(200, 120, 50, .78);
}

.method-route {
  position: absolute;
  top: clamp(1.6rem, 3vw, 2.6rem);
  bottom: clamp(1.6rem, 3vw, 2.6rem);
  left: clamp(.18rem, 1.6vw, 1.2rem);
  width: 1px;
  background: rgba(17, 16, 14, .07);
  pointer-events: none;
  overflow: hidden;
}

.method-route span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, rgba(200, 120, 50, 0), rgba(200, 120, 50, .82) 18%, rgba(233, 182, 108, .56) 72%, rgba(200, 120, 50, 0));
  will-change: transform;
}

.method-principle::after {
  content: "";
  position: absolute;
  left: calc(clamp(.18rem, 1.6vw, 1.2rem) * -1 - clamp(1.25rem, 4vw, 3.75rem));
  top: 50%;
  width: clamp(.85rem, 2vw, 1.35rem);
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(200, 120, 50, .72), rgba(233, 182, 108, 0));
  opacity: 0;
  transition: transform .45s ease, opacity .45s ease;
  pointer-events: none;
}

.method-principle.is-active::after,
.method-principle:hover::after,
.method-principle:focus-within::after {
  transform: scaleX(1);
  opacity: 1;
}

@media (max-width: 680px) {
  .method-progressive__main--centered .method-principles {
    padding-left: clamp(1rem, 6vw, 1.5rem);
  }

  .method-route {
    left: 0;
  }

  .method-principle::after {
    left: calc(-1 * clamp(1rem, 6vw, 1.5rem));
    width: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-route span {
    transform: scaleY(1) !important;
  }
}

/* Safer positioning values for the route ticks. */
.method-progressive__main--centered .method-principles {
  --method-route-left: clamp(.18rem, 1.6vw, 1.2rem);
  --method-principles-padding: clamp(1.25rem, 4vw, 3.75rem);
  padding-left: var(--method-principles-padding);
}

.method-route {
  left: var(--method-route-left);
}

.method-principle::after {
  left: calc(0px - var(--method-route-left) - var(--method-principles-padding));
}

@media (max-width: 680px) {
  .method-progressive__main--centered .method-principles {
    --method-route-left: 0px;
    --method-principles-padding: clamp(1rem, 6vw, 1.5rem);
  }
}

/* Method redesign: editorial timeline with SVG path drawn by scroll. */
.method-timeline {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7rem, 12vw, 13rem);
  background:
    radial-gradient(circle at 50% 8%, rgba(233, 182, 108, .12), transparent 32%),
    linear-gradient(180deg, rgba(255, 248, 238, .40), transparent 44%),
    var(--off-white);
}

.method-timeline::after {
  content: "";
  position: absolute;
  inset: auto clamp(1.2rem, 4vw, 4rem) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 16, 14, .14), transparent);
  pointer-events: none;
}

.method-timeline__shell {
  max-width: min(100%, 1180px);
  margin-inline: auto;
}

.method-timeline__heading {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 1050px;
  margin-inline: auto;
}

.method-timeline .method-title {
  max-width: 980px;
  margin-inline: auto;
  line-height: .92;
}

.method-timeline .method-intro {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(17, 16, 14, .68);
  text-wrap: balance;
}

.method-timeline__stage {
  position: relative;
  width: min(100%, 1040px);
  margin: clamp(4.6rem, 8vw, 8rem) auto 0;
  padding-block: clamp(1rem, 2.5vw, 2rem);
  min-height: clamp(700px, 92vw, 980px);
}

.method-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  opacity: .96;
}

.method-path path {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.method-path__base {
  stroke: rgba(17, 16, 14, .10);
  stroke-width: 1;
}

.method-path__draw {
  stroke: url(#methodGoldGradient);
  stroke-width: 1.35;
  filter: drop-shadow(0 0 10px rgba(216, 137, 66, .13));
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(5.5rem, 7rem) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.8rem);
  align-items: start;
  width: min(100%, 520px);
  padding: clamp(1.55rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 248, 238, .35);
  border: 1px solid rgba(17, 16, 14, .10);
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(17, 16, 14, .035);
  opacity: .40;
  transform: translateY(26px);
  filter: blur(5px);
  transition: opacity .45s ease, filter .45s ease, transform .45s ease, border-color .45s ease, background .45s ease;
}

.method-step::before {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(3.8rem, 8vw, 7.6rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 120, 50, .0), rgba(200, 120, 50, .58));
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}

.method-step--left {
  margin-right: auto;
  margin-left: clamp(0rem, 4vw, 4rem);
}

.method-step--right {
  margin-left: auto;
  margin-right: clamp(0rem, 4vw, 4rem);
  margin-top: clamp(4.5rem, 8vw, 7.4rem);
}

.method-step--left + .method-step--left,
.method-step--right + .method-step--left {
  margin-top: clamp(4.5rem, 8vw, 7.4rem);
}

.method-step--left::before {
  left: 100%;
  transform-origin: left;
}

.method-step--right::before {
  right: 100%;
  background: linear-gradient(90deg, rgba(200, 120, 50, .58), rgba(200, 120, 50, .0));
  transform-origin: right;
}

.method-step.is-active,
.method-step:hover,
.method-step:focus-within {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  border-color: rgba(200, 120, 50, .28);
  background: rgba(255, 248, 238, .58);
}

.method-step.is-active::before,
.method-step:hover::before,
.method-step:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.method-step__meta {
  display: grid;
  gap: .8rem;
  justify-items: start;
  min-width: 0;
}

.method-step__number {
  display: block;
  color: rgba(200, 120, 50, .78);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1;
}

.method-step__verb {
  display: block;
  color: rgba(17, 16, 14, .42);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.method-step.is-active .method-step__verb,
.method-step:hover .method-step__verb,
.method-step:focus-within .method-step__verb {
  color: rgba(200, 120, 50, .76);
}

.method-step__content h3 {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -.058em;
  line-height: .9;
}

.method-step__content p {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(1rem, 1.12vw, 1.15rem);
  line-height: 1.65;
}

.method-timeline__bridge {
  max-width: 960px;
  margin: clamp(4.2rem, 8vw, 8rem) auto 0;
  padding-top: clamp(2rem, 4vw, 3.2rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
  color: rgba(17, 16, 14, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5.2vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 860px) {
  .method-timeline__stage {
    width: min(100%, 720px);
    min-height: auto;
    display: grid;
    gap: 2rem;
    padding-left: clamp(1.5rem, 5vw, 2.5rem);
  }

  .method-path {
    left: 0;
    width: 72px;
  }

  .method-step,
  .method-step--left,
  .method-step--right {
    width: 100%;
    margin: 0;
  }

  .method-step::before {
    right: 100%;
    left: auto;
    width: clamp(1.5rem, 5vw, 2.3rem);
    background: linear-gradient(90deg, rgba(200, 120, 50, .55), rgba(200, 120, 50, .0));
    transform-origin: right;
  }
}

@media (max-width: 620px) {
  .method-timeline {
    padding-block: clamp(5.4rem, 16vw, 7.8rem);
  }

  .method-timeline__stage {
    margin-top: 3.5rem;
    padding-left: 1.35rem;
  }

  .method-step {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.35rem 1.1rem;
  }

  .method-step__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }

  .method-step__verb {
    white-space: normal;
  }

  .method-step__content h3 {
    font-size: clamp(2.45rem, 14vw, 4.3rem);
  }

  .method-timeline__bridge {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-step,
  .method-path__draw,
  .method-timeline__bridge {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

/* Final scroll cue fix: draw the arrow with CSS so it cannot look cut or tilted by font rendering. */
.hero__scroll-cue {
  gap: .5rem;
  overflow: visible;
}

.hero__scroll-line {
  height: clamp(1.7rem, 3vw, 2.35rem);
}

.hero__scroll-arrow {
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(233, 182, 108, .82);
  border-bottom: 1px solid rgba(233, 182, 108, .82);
  transform: rotate(45deg);
  transform-origin: center;
  margin-top: -.14rem;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 620px) {
  .hero__scroll-arrow {
    width: 8px;
    height: 8px;
  }
}

/* Final method timeline polish: keep each step clear and let the golden route border the content, never cross it. */
.method-timeline__stage {
  isolation: isolate;
}

.method-step {
  backdrop-filter: blur(10px);
}

.method-step__meta {
  gap: .95rem;
}

.method-step__number,
.method-step__verb {
  position: relative;
  z-index: 1;
}

.method-step__verb {
  max-width: 7.5rem;
}

@media (min-width: 861px) {
  .method-step--left {
    margin-left: clamp(0rem, 3vw, 2.5rem);
  }

  .method-step--right {
    margin-right: clamp(0rem, 3vw, 2.5rem);
  }
}

@media (max-width: 860px) {
  .method-path {
    left: 0;
    width: 76px;
  }

  .method-step__meta {
    grid-template-columns: auto 1fr;
  }
}

/* Final polish: crisper method text and scroll-synced golden route built with DOM lines, not SVG. */
.method-timeline__stage {
  --route-x: 50%;
}

.method-path {
  display: none !important;
}

.method-scroll-route {
  position: absolute;
  top: clamp(1.6rem, 3vw, 2.4rem);
  bottom: clamp(1.6rem, 3vw, 2.4rem);
  left: var(--route-x);
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.method-scroll-route__base,
.method-scroll-route__draw {
  position: absolute;
  inset: 0;
  display: block;
  width: 1px;
  transform-origin: top;
}

.method-scroll-route__base {
  background: linear-gradient(180deg, transparent, rgba(17, 16, 14, .10) 10%, rgba(17, 16, 14, .10) 88%, transparent);
}

.method-scroll-route__draw {
  transform: scaleY(0);
  background: linear-gradient(180deg, rgba(200, 120, 50, 0), rgba(200, 120, 50, .72) 16%, rgba(233, 182, 108, .88) 48%, rgba(200, 120, 50, .52) 82%, rgba(200, 120, 50, 0));
  box-shadow: 0 0 14px rgba(216, 137, 66, .14);
  will-change: transform;
}

.method-step {
  opacity: .58;
  filter: none !important;
  transform: translateY(18px);
  backdrop-filter: blur(2px);
}

.method-step.is-active,
.method-step:hover,
.method-step:focus-within {
  opacity: 1;
  filter: none !important;
  transform: translateY(0);
}

.method-step::before {
  top: 50%;
  width: clamp(2.8rem, 7vw, 6.2rem);
  opacity: .35;
  transform: scaleX(.28);
}

.method-step.is-active::before,
.method-step:hover::before,
.method-step:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.method-step__number,
.method-step__verb,
.method-step__content h3,
.method-step__content p {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  transform: translateZ(0);
}

.method-step__meta {
  gap: .95rem;
}

.method-step__number {
  letter-spacing: .16em;
}

.method-step__verb {
  margin-top: .08rem;
  opacity: .85;
}

.method-timeline__bridge {
  text-align: center !important;
  margin-inline: auto;
}

@media (max-width: 860px) {
  .method-timeline__stage {
    --route-x: 1px;
  }

  .method-scroll-route {
    left: 0;
  }
}

@media (max-width: 620px) {
  .method-timeline__bridge {
    text-align: center !important;
  }

  .method-step {
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-scroll-route__draw {
    transform: scaleY(1) !important;
  }
}

/* Serpentine method refinement: clearer steps, centered intro/ending and a subtle scroll-synced golden route. */
.method-timeline__heading,
.method-timeline .method-intro,
.method-timeline__bridge {
  text-align: center !important;
  margin-inline: auto !important;
}

.method-timeline .method-title {
  max-width: 900px;
  margin-inline: auto;
}

.method-timeline .method-intro {
  max-width: 760px;
  color: rgba(17, 16, 14, .72);
}

.method-timeline__stage {
  --route-width: clamp(70px, 8vw, 118px);
  --route-left: 50%;
  isolation: isolate;
}

.method-scroll-route {
  display: none !important;
}

.method-serpentine-route {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2.2rem);
  bottom: clamp(1.4rem, 3vw, 2.2rem);
  left: var(--route-left);
  width: var(--route-width);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}

.method-route-segment {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 999px;
}

.method-route-segment__base,
.method-route-segment__draw {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
}

.method-route-segment__base {
  background: rgba(17, 16, 14, .085);
}

.method-route-segment__draw {
  background: linear-gradient(180deg, rgba(197, 121, 51, .38), rgba(235, 186, 113, .82), rgba(197, 121, 51, .40));
  box-shadow: 0 0 12px rgba(214, 145, 73, .10);
  will-change: transform;
}

.method-route-segment[data-direction="x"] .method-route-segment__draw,
.method-route-segment[data-direction="x-reverse"] .method-route-segment__draw {
  background: linear-gradient(90deg, rgba(197, 121, 51, .34), rgba(235, 186, 113, .78), rgba(197, 121, 51, .34));
}

.method-route-segment--v1,
.method-route-segment--v2,
.method-route-segment--v3 {
  width: 1px;
}

.method-route-segment--h1,
.method-route-segment--h2 {
  height: 1px;
}

.method-route-segment--v1 {
  left: 42%;
  top: 0;
  height: 27%;
}

.method-route-segment--h1 {
  left: 42%;
  top: 27%;
  width: 18%;
}

.method-route-segment--v2 {
  left: 60%;
  top: 27%;
  height: 25%;
}

.method-route-segment--h2 {
  left: 42%;
  top: 52%;
  width: 18%;
}

.method-route-segment--v3 {
  left: 42%;
  top: 52%;
  height: 48%;
}

.method-route-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(235, 186, 113, .58);
  border: 1px solid rgba(255, 248, 238, .88);
  box-shadow: 0 0 0 6px rgba(214, 145, 73, .055), 0 0 18px rgba(214, 145, 73, .16);
  transform: translate(-50%, -50%) scale(.65);
  opacity: .22;
  transition: opacity .42s ease, transform .42s ease, background .42s ease;
}

.method-route-dot.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(235, 186, 113, .94);
}

.method-route-dot--1 { left: 42%; top: 18%; }
.method-route-dot--2 { left: 60%; top: 39%; }
.method-route-dot--3 { left: 42%; top: 72%; }

.method-step {
  opacity: .76;
  filter: none !important;
  transform: none;
  backdrop-filter: none;
  background: rgba(255, 248, 238, .34);
  border-color: rgba(17, 16, 14, .085);
  box-shadow: 0 26px 72px rgba(17, 16, 14, .028);
}

.method-step.is-active,
.method-step:hover,
.method-step:focus-within {
  opacity: 1;
  background: rgba(255, 248, 238, .64);
  border-color: rgba(200, 120, 50, .24);
  box-shadow: 0 30px 88px rgba(17, 16, 14, .045);
}

.method-step__number {
  color: rgba(17, 16, 14, .38);
  font-size: clamp(.9rem, 1.25vw, 1.12rem);
  letter-spacing: .22em;
}

.method-step.is-active .method-step__number,
.method-step:hover .method-step__number,
.method-step:focus-within .method-step__number {
  color: rgba(200, 120, 50, .78);
}

.method-step__verb {
  color: rgba(200, 120, 50, .60);
  font-size: .62rem;
  letter-spacing: .22em;
  font-weight: 700;
}

.method-step__content h3 {
  font-size: clamp(2.75rem, 5.4vw, 5.9rem);
}

.method-step__content p {
  color: rgba(17, 16, 14, .68);
}

.method-step::before {
  opacity: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 120, 50, 0), rgba(200, 120, 50, .34));
}

.method-step.is-active::before,
.method-step:hover::before,
.method-step:focus-within::before {
  opacity: .78;
}

.method-timeline__bridge {
  display: block;
  max-width: 820px;
  padding-top: clamp(2.4rem, 5vw, 3.8rem);
  font-size: clamp(2.6rem, 5.7vw, 6.6rem);
}

@media (min-width: 861px) {
  .method-step--left {
    margin-left: clamp(0rem, 2vw, 1.8rem);
  }

  .method-step--right {
    margin-right: clamp(0rem, 2vw, 1.8rem);
  }
}

@media (max-width: 860px) {
  .method-timeline__stage {
    --route-left: 24px;
    --route-width: 54px;
    padding-left: clamp(2.25rem, 8vw, 3rem);
  }

  .method-serpentine-route {
    left: var(--route-left);
  }

  .method-route-segment--v1,
  .method-route-segment--v2,
  .method-route-segment--v3 {
    left: 42%;
  }

  .method-route-segment--h1,
  .method-route-segment--h2 {
    left: 42%;
    width: 14%;
  }

  .method-route-segment--v2 {
    left: 56%;
  }

  .method-route-dot--1 { left: 42%; }
  .method-route-dot--2 { left: 56%; }
  .method-route-dot--3 { left: 42%; }
}

@media (max-width: 620px) {
  .method-timeline__stage {
    --route-left: 14px;
    --route-width: 38px;
    padding-left: 1.85rem;
  }

  .method-step__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .method-timeline__bridge {
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-route-segment__draw {
    transform: none !important;
  }

  .method-route-dot {
    opacity: .8 !important;
    transform: translate(-50%, -50%) scale(1) !important;
  }
}

/* Hero refinement: calmer cinematic image, natural dawn reveal and more conversion-focused copy. */
.hero {
  background-image: none;
  background-color: #0f0d0a;
  place-items: end start;
  padding-bottom: clamp(5.6rem, 8.8vw, 9rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("../assets/hero-track.png");
  background-size: cover;
  background-position: 52% 50%;
  transform: scale(1.055);
  transform-origin: center;
  will-change: transform;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, .82) 0%, rgba(17, 12, 8, .58) 38%, rgba(17, 12, 8, .22) 72%, rgba(17, 12, 8, .08) 100%),
    linear-gradient(180deg, rgba(5, 4, 3, .16) 0%, rgba(8, 7, 6, .18) 48%, rgba(11, 9, 7, .64) 100%);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 73% 38%, rgba(235, 159, 82, .27), transparent 31%),
    radial-gradient(circle at 20% 70%, rgba(255, 248, 238, .08), transparent 28%),
    linear-gradient(180deg, transparent 70%, rgba(244, 239, 229, .10) 88%, rgba(244, 239, 229, .28) 100%);
}

.hero__inner {
  max-width: 1500px;
}

.hero__title {
  width: min(100%, 1100px);
  font-size: clamp(3.15rem, 7vw, 8.05rem);
  letter-spacing: -.062em;
  line-height: .93;
}

.hero__word {
  color: rgba(255, 248, 238, .52);
  background-image: linear-gradient(
    105deg,
    rgba(255, 248, 238, .46) 0%,
    rgba(255, 248, 238, .58) 30%,
    #fff8ee 44%,
    #f2d39a 56%,
    #e0a15c 64%,
    #fff8ee 78%,
    rgba(255, 248, 238, .90) 100%
  );
  background-size: 320% 100%;
  background-position: 155% 50%;
  filter: blur(6px);
  opacity: .24;
  transform: translateY(24px) scale(.985);
}

.hero__support {
  max-width: 660px;
  color: rgba(255, 248, 238, .76);
}

.hero__button--primary {
  border-color: rgba(233, 182, 108, .48);
  background: linear-gradient(135deg, rgba(255, 248, 238, .18), rgba(216, 137, 66, .26));
}

.hero__button--ghost {
  border: 0;
  border-radius: 0;
  min-height: 34px;
  padding: 0 0 .22rem;
  background: transparent;
  color: rgba(255, 248, 238, .72);
  border-bottom: 1px solid rgba(233, 182, 108, .35);
}

.hero__button--ghost:hover,
.hero__button--ghost:focus-visible {
  background: transparent;
  border-color: rgba(255, 248, 238, .76);
}

@media (max-width: 760px) {
  .hero__media {
    background-position: 56% 50%;
    transform: scale(1.035);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, .38) 0%, rgba(8, 7, 6, .30) 42%, rgba(8, 7, 6, .72) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, .70) 0%, rgba(17, 12, 8, .36) 62%, rgba(17, 12, 8, .14) 100%);
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 5.6rem);
  }

  .hero__support {
    max-width: 32rem;
  }
}

/* Hero text clipping fix: give the headline line box enough vertical room for descenders like "y". */
.hero__inner {
  padding-block: .18em .42em;
  overflow: visible;
}

.hero__title {
  line-height: 1.02;
  overflow: visible;
  padding-bottom: .08em;
}

.hero__line {
  overflow: visible;
  padding-bottom: .035em;
}

.hero__word {
  line-height: 1.08;
  padding-bottom: .055em;
}

@media (max-width: 760px) {
  .hero__inner {
    padding-block: .16em .5em;
  }

  .hero__title {
    line-height: 1.04;
    padding-bottom: .12em;
  }

  .hero__word {
    line-height: 1.1;
    padding-bottom: .07em;
  }
}

/* Method editorial scroll redesign */
.method-experience {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 168, 95, .10), transparent 30%),
    linear-gradient(180deg, #f4efe6 0%, #fbf7ef 52%, #f7f0e4 100%);
  color: #201a15;
  padding: clamp(7rem, 13vw, 14rem) 0 clamp(7rem, 12vw, 13rem);
}

.method-experience__shell {
  width: min(100% - clamp(2rem, 6vw, 7rem), 1320px);
  margin-inline: auto;
}

.method-experience__rule {
  height: 1px;
  width: 100%;
  margin-bottom: clamp(4rem, 7vw, 8rem);
  background: rgba(32, 26, 21, .10);
  transform-origin: left center;
}

.method-experience__rule span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(174, 112, 51, .78), rgba(216, 168, 95, .28), transparent);
}

.method-experience__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.method-experience__intro {
  position: sticky;
  top: clamp(8rem, 14vh, 11rem);
  min-height: 42vh;
}

.method-experience__title {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(4rem, 8.4vw, 10.6rem);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 500;
  color: #211b15;
}

.method-experience__title span {
  display: block;
  overflow: visible;
  padding-bottom: .08em;
}

.method-experience__intro p {
  max-width: 620px;
  margin: clamp(2rem, 4vw, 3.8rem) 0 0;
  color: rgba(32, 26, 21, .68);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.72;
  letter-spacing: -.015em;
}


.method-experience__intro .section-label {
  margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(17, 16, 14, .50);
  font-size: .75rem;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.method-experience__intro > p:not(.section-label) {
  max-width: 620px;
  margin: clamp(2rem, 4vw, 3.8rem) 0 0;
  color: rgba(32, 26, 21, .68);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.72;
  letter-spacing: -.015em;
}

.method-experience__principles {
  display: grid;
  gap: clamp(2.6rem, 5vw, 5rem);
  padding-top: clamp(.5rem, 2vw, 1.6rem);
}

.method-experience__principle {
  position: relative;
  padding: clamp(2rem, 4vw, 3.4rem) 0 clamp(2.2rem, 4vw, 3.6rem);
  border-top: 1px solid rgba(32, 26, 21, .12);
  opacity: .72;
  transition: opacity .45s ease;
}

.method-experience__principle:last-child {
  border-bottom: 1px solid rgba(32, 26, 21, .12);
}

.method-experience__principle-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: clamp(1.1rem, 2.2vw, 1.9rem);
}

.method-experience__number {
  color: rgba(32, 26, 21, .34);
  font-size: clamp(.82rem, 1vw, .95rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .45s ease, transform .45s ease;
}

.method-experience__principle h3 {
  margin: 0;
  color: rgba(32, 26, 21, .72);
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.25rem, 4.4vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 500;
  transition: color .45s ease;
}

.method-experience__principle p {
  max-width: 560px;
  margin: clamp(1.1rem, 2vw, 1.7rem) 0 0 calc(clamp(.82rem, 1vw, .95rem) + clamp(1.1rem, 2.2vw, 1.9rem));
  color: rgba(32, 26, 21, .56);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
  transition: color .45s ease;
}

.method-experience__line {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(186, 123, 55, .82), rgba(216, 168, 95, .38), transparent);
}

.method-experience__principle.is-active,
.method-experience__principle:hover,
.method-experience__principle:focus-within {
  opacity: 1;
}

.method-experience__principle.is-active .method-experience__number,
.method-experience__principle:hover .method-experience__number,
.method-experience__principle:focus-within .method-experience__number {
  color: rgba(179, 113, 48, .92);
  transform: translateX(4px);
}

.method-experience__principle.is-active h3,
.method-experience__principle:hover h3,
.method-experience__principle:focus-within h3 {
  color: #201a15;
}

.method-experience__principle.is-active p,
.method-experience__principle:hover p,
.method-experience__principle:focus-within p {
  color: rgba(32, 26, 21, .74);
}

.method-experience__closing {
  max-width: 980px;
  margin: clamp(6rem, 10vw, 11rem) auto 0;
  text-align: center;
  color: #211b15;
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(3rem, 6.4vw, 8rem);
  line-height: .95;
  letter-spacing: -.065em;
}

@media (max-width: 900px) {
  .method-experience {
    padding: clamp(6.5rem, 18vw, 9rem) 0 clamp(6rem, 18vw, 8rem);
  }

  .method-experience__shell {
    width: min(100% - 2rem, 720px);
  }

  .method-experience__rule {
    margin-bottom: clamp(3.2rem, 10vw, 5rem);
  }

  .method-experience__grid {
    grid-template-columns: 1fr;
    gap: clamp(3.8rem, 12vw, 6rem);
  }

  .method-experience__intro {
    position: relative;
    top: auto;
    min-height: auto;
    text-align: center;
  }

  .method-experience__title {
    max-width: 680px;
    margin-inline: auto;
    font-size: clamp(3.4rem, 13vw, 6.6rem);
    letter-spacing: -.065em;
  }

  .method-experience__intro p {
    margin-inline: auto;
    max-width: 34rem;
    font-size: clamp(1rem, 4.1vw, 1.2rem);
  }

  
.method-experience__intro .section-label {
  margin: 0 0 clamp(1.2rem, 2vw, 1.8rem);
  color: rgba(17, 16, 14, .50);
  font-size: .75rem;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.method-experience__intro > p:not(.section-label) {
  max-width: 620px;
  margin: clamp(2rem, 4vw, 3.8rem) 0 0;
  color: rgba(32, 26, 21, .68);
  font-size: clamp(1.05rem, 1.45vw, 1.42rem);
  line-height: 1.72;
  letter-spacing: -.015em;
}

.method-experience__principles {
    gap: clamp(2.2rem, 9vw, 3.8rem);
  }

  .method-experience__principle {
    min-height: clamp(13rem, 46vw, 18rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(2.4rem, 10vw, 4rem);
  }

  .method-experience__principle-head {
    grid-template-columns: 1fr;
    row-gap: .85rem;
    text-align: center;
  }

  .method-experience__number {
    justify-self: center;
  }

  .method-experience__principle h3 {
    font-size: clamp(2.6rem, 12vw, 5.4rem);
  }

  .method-experience__principle p {
    margin: clamp(1rem, 4vw, 1.4rem) auto 0;
    text-align: center;
    max-width: 30rem;
    font-size: clamp(1rem, 4vw, 1.16rem);
  }

  .method-experience__closing {
    margin-top: clamp(4.5rem, 16vw, 7rem);
    font-size: clamp(2.8rem, 12vw, 5.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-experience__rule span,
  .method-experience__line {
    transform: none !important;
  }

  .method-experience__principle {
    opacity: 1;
  }
}

/* Audience chapters redesign: editorial split, progressive recognition. */
.audience-chapters {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 137, 66, .105), transparent 30%),
    radial-gradient(circle at 10% 86%, rgba(216, 137, 66, .07), transparent 34%),
    linear-gradient(180deg, #f4ecdf 0%, #fff8ee 58%, #f1e6d7 100%);
}

.audience-chapters::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(17, 16, 14, .035) 1px, transparent 1px);
  background-size: min(18vw, 240px) 100%;
  opacity: .22;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
}

.audience-chapters__shell {
  position: relative;
  z-index: 1;
}

.audience-chapters__rule {
  width: 100%;
  height: 1px;
  margin-bottom: clamp(3.2rem, 6vw, 6rem);
  background: rgba(17, 16, 14, .10);
  overflow: hidden;
}

.audience-chapters__rule span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(200, 120, 50, .08), rgba(200, 120, 50, .68), rgba(200, 120, 50, .10));
}

.audience-chapters__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.audience-chapters__intro {
  position: sticky;
  top: clamp(7rem, 12vh, 9rem);
  align-self: start;
  max-width: 650px;
  padding-bottom: 2rem;
}

.audience-chapters__intro .section-label {
  margin: 0 0 clamp(1.35rem, 2.6vw, 2rem);
}

.audience-chapters__intro h2 {
  margin: 0;
  color: rgba(17, 16, 14, .96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.7vw, 7.1rem);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .93;
  text-wrap: balance;
}

.audience-chapters__intro h2 span {
  display: block;
}

.audience-chapters__intro > p:not(.section-label) {
  max-width: 32rem;
  margin: clamp(1.5rem, 2.8vw, 2.25rem) 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.75;
  text-wrap: balance;
}

.audience-chapters__list {
  display: grid;
  gap: 0;
  padding-top: clamp(.4rem, 1vw, 1rem);
}

.audience-chapter {
  position: relative;
  min-height: clamp(14rem, 26vh, 19rem);
  display: grid;
  align-content: center;
  padding: clamp(2rem, 4.4vw, 4.25rem) 0 clamp(2.2rem, 4.2vw, 4.5rem);
  border-top: 1px solid rgba(17, 16, 14, .105);
  opacity: .76;
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

.audience-chapter:last-child {
  border-bottom: 1px solid rgba(17, 16, 14, .105);
}

.audience-chapter__topline {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: clamp(1rem, 1.8vw, 1.4rem);
}

.audience-chapter__number {
  color: rgba(17, 16, 14, .34);
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: color .45s ease, transform .45s ease;
}

.audience-chapter__dash {
  display: block;
  width: clamp(1.8rem, 4vw, 3.4rem);
  height: 1px;
  background: rgba(17, 16, 14, .15);
  transition: background .45s ease, transform .45s ease;
  transform-origin: left;
}

.audience-chapter h3 {
  margin: 0;
  color: rgba(17, 16, 14, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4.6vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .94;
  transition: color .45s ease, letter-spacing .45s ease;
}

.audience-chapter p {
  max-width: 31rem;
  margin: clamp(1rem, 1.6vw, 1.35rem) 0 0;
  color: rgba(17, 16, 14, .54);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.72;
  transition: color .45s ease, opacity .45s ease;
}

.audience-chapter__line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(200, 120, 50, .02), rgba(200, 120, 50, .78), rgba(200, 120, 50, .04));
  transition: transform .52s ease;
}

.audience-chapter.is-active {
  opacity: 1;
  transform: translateX(clamp(.25rem, .65vw, .65rem));
}

.audience-chapter.is-active .audience-chapter__number {
  color: rgba(186, 105, 42, .95);
  transform: translateX(.15rem);
}

.audience-chapter.is-active .audience-chapter__dash {
  background: rgba(200, 120, 50, .58);
  transform: scaleX(1.18);
}

.audience-chapter.is-active h3 {
  color: rgba(17, 16, 14, .98);
  letter-spacing: -.058em;
}

.audience-chapter.is-active p {
  color: rgba(17, 16, 14, .68);
}

.audience-chapter.is-active .audience-chapter__line,
.audience-chapter:hover .audience-chapter__line,
.audience-chapter:focus-within .audience-chapter__line {
  transform: scaleX(1);
}

.audience-chapter:hover,
.audience-chapter:focus-within {
  opacity: 1;
}

@media (max-width: 980px) {
  .audience-chapters__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.4rem, 7vw, 4.5rem);
  }

  .audience-chapters__intro {
    position: relative;
    top: auto;
    max-width: 780px;
  }

  .audience-chapter {
    min-height: clamp(12.5rem, 24vh, 16.5rem);
  }
}

@media (max-width: 680px) {
  .audience-chapters {
    overflow: hidden;
  }

  .audience-chapters__rule {
    margin-bottom: clamp(2.25rem, 9vw, 3.5rem);
  }

  .audience-chapters__intro {
    text-align: left;
  }

  .audience-chapters__intro h2 {
    font-size: clamp(2.7rem, 12.4vw, 4.8rem);
    line-height: .96;
    letter-spacing: -.055em;
  }

  .audience-chapters__intro > p:not(.section-label) {
    max-width: 100%;
    font-size: 1.02rem;
  }

  .audience-chapter {
    min-height: clamp(14rem, 42vh, 20rem);
    padding: clamp(2.25rem, 9vw, 3.6rem) 0;
    transform: none !important;
  }

  .audience-chapter h3 {
    font-size: clamp(2.45rem, 12vw, 4.25rem);
  }

  .audience-chapter p {
    max-width: 20.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audience-chapters__rule span,
  .audience-chapter__line {
    transform: scaleX(1) !important;
  }

  .audience-chapters__intro > *,
  .audience-chapter {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* Editorial process journey: practical onboarding route. */
.process-journey {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(233, 182, 108, .11), transparent 30%),
    linear-gradient(180deg, #f4efe7 0%, #eee6db 100%);
  color: var(--charcoal);
  padding-block: clamp(6.8rem, 11vw, 12rem);
}

.process-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 16, 14, .026) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at 50% 38%, #000 0%, transparent 70%);
  opacity: .38;
  pointer-events: none;
}

.process-journey .section-shell {
  position: relative;
  z-index: 1;
}

.process-journey__intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid rgba(17, 16, 14, .13);
  padding-top: clamp(1.6rem, 2.6vw, 2.3rem);
}

.process-journey__label {
  grid-column: 1 / -1;
  margin: 0 0 clamp(1.6rem, 3vw, 2.8rem);
}

.process-journey__title {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7.4vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -.07em;
  line-height: .9;
}

.process-journey__title span {
  display: block;
}

.process-journey__lead {
  max-width: 620px;
  margin: 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(1.02rem, 1.35vw, 1.28rem);
  line-height: 1.72;
}

.process-journey__track {
  --track-offset: clamp(1.4rem, 3.2vw, 4rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.65rem);
  align-items: stretch;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5.5rem);
}

.process-journey__line {
  position: absolute;
  top: clamp(1.05rem, 2.2vw, 2rem);
  left: var(--track-offset);
  right: var(--track-offset);
  height: 1px;
  background: rgba(17, 16, 14, .12);
  pointer-events: none;
}

.process-journey__line span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(200, 120, 50, .15), rgba(233, 182, 108, .92), rgba(200, 120, 50, .28));
}

.process-step {
  position: relative;
  min-height: clamp(320px, 30vw, 430px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.45rem, 2.6vw, 2.4rem) clamp(1.15rem, 2.2vw, 2rem);
  border-left: 1px solid rgba(17, 16, 14, .10);
  transition: transform .45s ease, border-color .45s ease, background .45s ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: clamp(.82rem, 1.6vw, 1.48rem);
  left: calc(var(--track-offset) - clamp(.2rem, .5vw, .35rem));
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(17, 16, 14, .22);
  box-shadow: 0 0 0 7px rgba(244, 239, 231, .95);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}

.process-step--two,
.process-step--four {
  transform: translateY(clamp(2rem, 5vw, 4.4rem));
}

.process-step:hover {
  background: rgba(255, 248, 238, .30);
  border-color: rgba(200, 120, 50, .28);
  transform: translateY(-4px);
}

.process-step--two:hover,
.process-step--four:hover {
  transform: translateY(calc(clamp(2rem, 5vw, 4.4rem) - 4px));
}

.process-step__meta {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: clamp(1.4rem, 2.8vw, 2.8rem);
}

.process-step__number {
  color: rgba(17, 16, 14, .36);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .35s ease;
}

.process-step__dash {
  flex: 1;
  height: 1px;
  transform: scaleX(.22);
  transform-origin: left center;
  background: rgba(17, 16, 14, .14);
  transition: transform .45s ease, background .45s ease;
}

.process-step h3 {
  max-width: 11ch;
  margin: 0;
  color: rgba(17, 16, 14, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
  transition: color .35s ease;
}

.process-step p {
  max-width: 28rem;
  margin: clamp(1.1rem, 2vw, 1.55rem) 0 0;
  color: rgba(17, 16, 14, .54);
  font-size: clamp(.96rem, 1.08vw, 1.06rem);
  line-height: 1.66;
  transition: color .35s ease;
}

.process-step.is-active {
  background: rgba(255, 248, 238, .26);
  border-color: rgba(200, 120, 50, .26);
}

.process-step.is-active::before {
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(233, 182, 108, .12), 0 0 24px rgba(200, 120, 50, .26);
  transform: scale(1.12);
}

.process-step.is-active .process-step__number {
  color: rgba(200, 120, 50, .92);
}

.process-step.is-active .process-step__dash {
  transform: scaleX(1);
  background: linear-gradient(90deg, rgba(233, 182, 108, .82), transparent);
}

.process-step.is-active h3 {
  color: var(--charcoal);
}

.process-step.is-active p {
  color: rgba(17, 16, 14, .72);
}

.process-journey__closing {
  max-width: 980px;
  margin: clamp(6rem, 10vw, 10rem) auto 0;
  padding-top: clamp(2rem, 4vw, 3.4rem);
  border-top: 1px solid rgba(17, 16, 14, .13);
  text-align: center;
}

.process-journey__closing p {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.4vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .93;
}

.process-journey__closing span {
  display: block;
}

@media (max-width: 980px) {
  .process-journey__intro {
    grid-template-columns: 1fr;
    gap: clamp(1.4rem, 4vw, 2.4rem);
  }

  .process-journey__track {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: clamp(1.4rem, 5vw, 2.6rem);
  }

  .process-journey__line {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 1px;
    height: auto;
  }

  .process-journey__line span {
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top center;
    background: linear-gradient(180deg, rgba(200, 120, 50, .10), rgba(233, 182, 108, .86), rgba(200, 120, 50, .22));
  }

  .process-step,
  .process-step--two,
  .process-step--four,
  .process-step:hover,
  .process-step--two:hover,
  .process-step--four:hover {
    min-height: auto;
    transform: none;
  }

  .process-step {
    padding: clamp(2.1rem, 7vw, 3.2rem) 0 clamp(2.1rem, 7vw, 3.2rem) clamp(1.5rem, 5vw, 2.2rem);
    border-left: 0;
    border-bottom: 1px solid rgba(17, 16, 14, .11);
  }

  .process-step::before {
    top: clamp(2.35rem, 7.6vw, 3.45rem);
    left: calc(clamp(1.5rem, 5vw, 2.2rem) * -1 - 3.5px);
  }

  .process-step h3 {
    max-width: 12ch;
  }
}

@media (max-width: 680px) {
  .process-journey {
    padding-block: clamp(5.6rem, 17vw, 7.2rem);
  }

  .process-journey__intro {
    padding-bottom: clamp(3rem, 12vw, 4.2rem);
  }

  .process-journey__title {
    font-size: clamp(3rem, 13.5vw, 4.9rem);
    line-height: .94;
  }

  .process-journey__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .process-step__meta {
    margin-bottom: 1.45rem;
  }

  .process-step h3 {
    font-size: clamp(2.25rem, 10.5vw, 3.8rem);
  }

  .process-step p {
    font-size: .98rem;
  }

  .process-journey__closing {
    margin-top: clamp(4rem, 14vw, 5.8rem);
  }

  .process-journey__closing p {
    font-size: clamp(2.55rem, 11.5vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-journey__line span {
    transform: none !important;
  }

  .process-step,
  .process-journey__label,
  .process-journey__title span,
  .process-journey__lead,
  .process-journey__closing {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Trust phase: About Kike, TrainingPeaks, Evolution and refined FAQ */
.about-kike {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6.5rem, 12vw, 11rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(233, 182, 108, .12), transparent 34%),
    linear-gradient(180deg, #f3ede3 0%, #f6f0e7 100%);
}

.about-kike::before {
  content: "";
  position: absolute;
  inset: clamp(2rem, 4vw, 4rem) var(--side-gutter) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 16, 14, .13), rgba(200, 120, 50, .25), transparent);
  pointer-events: none;
}

.about-kike__shell {
  display: grid;
  grid-template-columns: minmax(18rem, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8.5rem);
}

.about-kike__media {
  position: relative;
  min-width: 0;
}

.about-kike__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: clamp(1.2rem, 2.4vw, 2rem);
  background: rgba(17, 16, 14, .08);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(17, 16, 14, .10);
  box-shadow: 0 36px 110px rgba(17, 16, 14, .13);
}

.about-kike__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 16, 14, .08), transparent 36%, rgba(17, 16, 14, .24)),
    linear-gradient(90deg, rgba(233, 182, 108, .11), transparent 45%);
  pointer-events: none;
}

.about-kike__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 58%;
  filter: saturate(.92) contrast(1.02);
}

.about-kike__figure figcaption {
  position: absolute;
  left: clamp(1.1rem, 2vw, 1.6rem);
  right: clamp(1.1rem, 2vw, 1.6rem);
  bottom: clamp(1.1rem, 2vw, 1.6rem);
  z-index: 2;
  color: rgba(255, 248, 238, .82);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-kike__content {
  max-width: 760px;
}

.about-kike__label {
  margin-bottom: clamp(1.2rem, 2.4vw, 2rem);
}

.about-kike__title {
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
}

.about-kike__title span {
  display: block;
}

.about-kike__copy {
  max-width: 650px;
  margin-top: clamp(1.8rem, 4vw, 3.1rem);
  display: grid;
  gap: 1rem;
  color: rgba(17, 16, 14, .65);
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  line-height: 1.72;
}

.about-kike__copy p {
  margin: 0;
}

.about-kike__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(2.3rem, 5vw, 4.2rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
  border-left: 1px solid rgba(17, 16, 14, .10);
}

.about-kike__facts article {
  min-height: 9rem;
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  border-right: 1px solid rgba(17, 16, 14, .10);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
  background: rgba(255, 248, 238, .22);
  transition: border-color .35s ease, background .35s ease, transform .35s ease;
}

.about-kike__facts article:hover {
  background: rgba(255, 248, 238, .38);
  border-color: rgba(200, 120, 50, .26);
  transform: translateY(-3px);
}

.about-kike__facts strong {
  display: block;
  color: rgba(200, 120, 50, .92);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.about-kike__facts span {
  display: block;
  margin-top: .85rem;
  color: rgba(17, 16, 14, .62);
  font-size: .95rem;
  line-height: 1.55;
}

.trainingpeaks-note {
  display: grid;
  grid-template-columns: minmax(13rem, .36fr) minmax(0, .64fr);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
  margin-top: clamp(5rem, 8vw, 7.4rem);
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(17, 16, 14, .11);
  border-radius: clamp(1rem, 2vw, 1.6rem);
  background: rgba(255, 248, 238, .42);
}

.trainingpeaks-note__brand {
  display: grid;
  gap: 1.25rem;
  align-content: center;
  min-height: 100%;
  padding-right: clamp(1.2rem, 3vw, 3rem);
  border-right: 1px solid rgba(17, 16, 14, .10);
}

.trainingpeaks-note__brand img {
  width: min(220px, 72%);
  opacity: 1;
  filter: none;
}

.trainingpeaks-note__brand span {
  color: rgba(17, 16, 14, .45);
  font-size: .72rem;
  line-height: 1.5;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trainingpeaks-note__copy h3 {
  margin: 0;
  max-width: 720px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.4vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
}

.trainingpeaks-note__copy p {
  max-width: 720px;
  margin: clamp(1rem, 2vw, 1.4rem) 0 0;
  color: rgba(17, 16, 14, .62);
  font-size: clamp(.98rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.evolution-block {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6.5rem, 12vw, 11rem);
  background:
    linear-gradient(180deg, #f6f0e7 0%, #f1e8db 100%);
}

.evolution-block::before {
  content: "";
  position: absolute;
  inset: clamp(2rem, 4vw, 4rem) var(--side-gutter) auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 16, 14, .13), rgba(200, 120, 50, .20), transparent);
}

.evolution-block__intro {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.evolution-block__intro h2 {
  margin: clamp(1rem, 2.4vw, 1.6rem) 0 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
}

.evolution-block__intro h2 span {
  display: block;
}

.evolution-block__stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(3.6rem, 7vw, 6.4rem);
  border-top: 1px solid rgba(17, 16, 14, .12);
  border-left: 1px solid rgba(17, 16, 14, .10);
}

.evolution-stage {
  position: relative;
  min-height: clamp(17rem, 28vw, 24rem);
  padding: clamp(1.45rem, 2.7vw, 2.35rem);
  border-right: 1px solid rgba(17, 16, 14, .10);
  border-bottom: 1px solid rgba(17, 16, 14, .10);
  background: rgba(255, 248, 238, .20);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}

.evolution-stage::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(233, 182, 108, .85), transparent);
  transition: transform .45s ease;
}

.evolution-stage__eyebrow {
  display: block;
  color: rgba(200, 120, 50, .86);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.evolution-stage p {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  color: rgba(17, 16, 14, .68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 3.1rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.evolution-stage.is-active,
.evolution-stage:hover {
  background: rgba(255, 248, 238, .38);
  border-color: rgba(200, 120, 50, .22);
  transform: translateY(-4px);
}

.evolution-stage.is-active::before,
.evolution-stage:hover::before {
  transform: scaleX(1);
}

.faq-premium {
  padding-block: clamp(6.2rem, 11vw, 10rem);
  background: #f4efe7;
}

.faq-premium__shell {
  display: grid;
  grid-template-columns: minmax(18rem, .48fr) minmax(0, .52fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

.faq-premium__heading {
  position: sticky;
  top: calc(var(--header-height) + 3.2rem);
}

.faq-premium__heading h2 {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .9;
}

.faq-premium__heading h2 span {
  display: block;
}

.faq-premium__list {
  border-top: 1px solid rgba(17, 16, 14, .14);
}

.faq-premium__list details {
  border-bottom: 1px solid rgba(17, 16, 14, .12);
  padding: 0;
  background: transparent;
}

.faq-premium__list summary {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  padding: clamp(1.35rem, 2.4vw, 2.1rem) 0;
  color: rgba(17, 16, 14, .82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  letter-spacing: -.03em;
  cursor: pointer;
}

.faq-premium__list summary::after {
  content: "+";
  color: rgba(200, 120, 50, .78);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s ease;
}

.faq-premium__list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-premium__list p {
  max-width: 720px;
  margin: 0;
  padding: 0 0 clamp(1.4rem, 2.6vw, 2.2rem);
  color: rgba(17, 16, 14, .62);
  font-size: clamp(.98rem, 1.15vw, 1.08rem);
  line-height: 1.74;
}

@media (max-width: 980px) {
  .about-kike__shell,
  .faq-premium__shell {
    grid-template-columns: 1fr;
  }

  .about-kike__media {
    order: 2;
  }

  .about-kike__content {
    order: 1;
    max-width: none;
  }

  .about-kike__figure {
    max-width: 620px;
    margin-inline: auto;
  }

  .trainingpeaks-note {
    grid-template-columns: 1fr;
  }

  .trainingpeaks-note__brand {
    padding-right: 0;
    padding-bottom: 1.6rem;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 16, 14, .10);
  }

  .evolution-block__stages {
    grid-template-columns: 1fr;
  }

  .evolution-stage {
    min-height: auto;
  }

  .evolution-stage p {
    margin-top: clamp(2.3rem, 8vw, 4rem);
  }

  .faq-premium__heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 680px) {
  .about-kike,
  .evolution-block,
  .faq-premium {
    padding-block: clamp(5.2rem, 16vw, 7rem);
  }

  .about-kike__title,
  .evolution-block__intro h2,
  .faq-premium__heading h2 {
    font-size: clamp(2.85rem, 12.5vw, 4.75rem);
    line-height: .94;
  }

  .about-kike__facts {
    grid-template-columns: 1fr;
  }

  .about-kike__facts article {
    min-height: auto;
  }

  .trainingpeaks-note {
    padding: clamp(1.1rem, 5vw, 1.5rem);
  }

  .trainingpeaks-note__brand img {
    width: min(210px, 86%);
  }

  .trainingpeaks-note__copy h3 {
    font-size: clamp(2rem, 10vw, 3.45rem);
  }

  .evolution-stage p {
    font-size: clamp(1.55rem, 7vw, 2.5rem);
  }

  .faq-premium__list summary {
    font-size: clamp(1.25rem, 6vw, 1.55rem);
    line-height: 1.14;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-kike__label,
  .about-kike__title span,
  .about-kike__copy p,
  .about-kike__figure,
  .about-kike__facts article,
  .trainingpeaks-note,
  .evolution-block__label,
  .evolution-block__intro h2 span,
  .evolution-stage,
  .faq-premium__heading > *,
  .faq-premium__list details {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

/* Final readability pass: prevent editorial headings from overlapping or clipping */
.method-experience__title {
  max-width: 900px;
  font-size: clamp(3.6rem, 7.2vw, 8.9rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  overflow: visible;
}

.method-experience__title span {
  display: block;
  overflow: visible;
  padding-bottom: 0.12em;
}

.method-experience__intro {
  overflow: visible;
}

.method-experience__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.76fr);
}

.method-experience__intro > p:not(.section-label) {
  margin-top: clamp(1.6rem, 3vw, 2.8rem);
}

.method-experience__principle h3 {
  line-height: 1.04;
  padding-bottom: 0.04em;
}

.method-experience__closing {
  line-height: 1.04;
  padding-bottom: 0.08em;
}

@media (max-width: 900px) {
  .method-experience__title {
    max-width: 680px;
    font-size: clamp(3rem, 10.8vw, 5.9rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .method-experience__title span {
    padding-bottom: 0.08em;
  }

  .method-experience__intro > p:not(.section-label) {
    margin: clamp(1.4rem, 5vw, 2.4rem) auto 0;
    max-width: 34rem;
  }

  .method-experience__principle h3 {
    font-size: clamp(2.35rem, 10vw, 4.8rem);
    line-height: 1.08;
  }

  .method-experience__closing {
    font-size: clamp(2.55rem, 10.4vw, 5.2rem);
    line-height: 1.08;
  }
}

@media (max-width: 520px) {
  .method-experience__title {
    font-size: clamp(2.85rem, 13.6vw, 4.8rem);
    line-height: 1.09;
    letter-spacing: -0.038em;
  }

  .method-experience__principle {
    min-height: auto;
  }
}

/* Premium experience layer: Apple/Awwwards-style refinements */
html { scroll-behavior: auto; }

.brand-preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: clamp(2rem, 7vw, 5rem);
  background:
    radial-gradient(circle at 50% 28%, rgba(216, 137, 66, .11), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(255, 248, 238, .045), transparent 42%),
    linear-gradient(180deg, #0a0908 0%, #12100d 48%, #090807 100%);
  transition: opacity .92s cubic-bezier(.22, 1, .36, 1), visibility .92s cubic-bezier(.22, 1, .36, 1);
  overflow: hidden;
}

html.is-preloading,
body.is-preloading {
  overflow: hidden;
}

.brand-preloader::before,
.brand-preloader::after {
  content: "";
  position: absolute;
  inset: auto 9vw 13vh;
  height: 1px;
  opacity: .22;
  background: linear-gradient(90deg, transparent, rgba(238, 206, 156, .55), transparent);
}

.brand-preloader::before {
  top: 12vh;
  bottom: auto;
}

.brand-preloader__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(980px, 100%);
  gap: clamp(1.15rem, 2.8vw, 2rem);
  text-align: center;
}

.brand-preloader__mark {
  width: clamp(104px, 13vw, 176px);
}

.brand-preloader__mark img {
  width: 100%;
  opacity: .88;
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, .38));
}

.brand-preloader__line {
  display: block;
  width: min(280px, 54vw);
  height: 1px;
  transform-origin: center;
  background: linear-gradient(90deg, transparent, rgba(198, 137, 72, .92), rgba(255, 248, 238, .65), transparent);
}

.brand-preloader__copy {
  display: grid;
  justify-items: center;
  gap: clamp(.72rem, 1.55vw, 1rem);
  max-width: 760px;
  color: rgba(255, 248, 238, .72);
}

.brand-preloader__copy p {
  margin: 0;
  max-width: 62ch;
  font-family: var(--font-sans);
  font-size: clamp(.86rem, 1.18vw, 1.05rem);
  line-height: 1.72;
  letter-spacing: .025em;
}

.brand-preloader__headline {
  max-width: 14ch;
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5vw, 5.2rem) !important;
  line-height: .98 !important;
  letter-spacing: -.045em !important;
  color: rgba(255, 248, 238, .94);
}

body.is-loaded .brand-preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes preloaderLine {
  from { transform: scaleX(0); opacity: .15; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 720px) {
  .brand-preloader {
    padding: 2rem 1.5rem;
  }

  .brand-preloader__inner {
    gap: 1.15rem;
  }

  .brand-preloader__mark {
    width: clamp(96px, 31vw, 132px);
  }

  .brand-preloader__copy {
    gap: .66rem;
    max-width: 21rem;
  }

  .brand-preloader__headline {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3.5rem) !important;
    line-height: 1.02 !important;
  }

  .brand-preloader__copy p:not(.brand-preloader__headline) {
    font-size: clamp(.78rem, 3.2vw, .92rem);
    line-height: 1.58;
  }
}


.site-header {
  transition:
    min-height .42s cubic-bezier(.22, 1, .36, 1),
    padding .42s cubic-bezier(.22, 1, .36, 1),
    background .42s cubic-bezier(.22, 1, .36, 1),
    border-color .42s cubic-bezier(.22, 1, .36, 1),
    box-shadow .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1);
}

.site-header.is-scrolled {
  min-height: 66px;
  padding-block: .42rem;
  background: rgba(18, 15, 12, .80);
  border-color: rgba(255, 248, 238, .18);
  box-shadow: 0 16px 52px rgba(0, 0, 0, .18);
}

.site-header.is-scrolled .brand {
  width: clamp(106px, 8.5vw, 142px);
}

.site-header .brand {
  transition: width .42s cubic-bezier(.22, 1, .36, 1), transform .42s cubic-bezier(.22, 1, .36, 1);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 1.25rem));
}

.hero__button,
.plan-card__cta,
.plans-guide__decision a,
.final-cta__actions a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__button::before,
.plan-card__cta::before,
.plans-guide__decision a::before,
.final-cta__actions a::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  transform: translateX(-120%) skewX(-16deg);
  background: linear-gradient(90deg, transparent, rgba(255, 248, 238, .28), rgba(233, 182, 108, .28), transparent);
  transition: transform .72s cubic-bezier(.22, 1, .36, 1), opacity .38s ease;
}

.hero__button:hover::before,
.hero__button:focus-visible::before,
.plan-card__cta:hover::before,
.plan-card__cta:focus-visible::before,
.plans-guide__decision a:hover::before,
.plans-guide__decision a:focus-visible::before,
.final-cta__actions a:hover::before,
.final-cta__actions a:focus-visible::before {
  opacity: 1;
  transform: translateX(120%) skewX(-16deg);
}

.section-label {
  position: relative;
  display: inline-block;
}

.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.62rem;
  width: min(92px, 100%);
  height: 1px;
  transform: scaleX(var(--label-line-scale, 0));
  transform-origin: left;
  background: linear-gradient(90deg, rgba(233, 182, 108, .72), transparent);
  opacity: .76;
}

.editorial-section {
  position: relative;
}

.editorial-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  opacity: .36;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(17, 16, 14, .12), transparent);
}

.about-kike__figure,
.about-kike__media {
  overflow: hidden;
}

.about-kike__figure img {
  transform: scale(1.045);
  transform-origin: center;
  will-change: transform;
}

.about-kike__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(17, 16, 14, .15)),
    radial-gradient(circle at 68% 18%, rgba(233, 182, 108, .18), transparent 38%);
}

.plan-card,
.audience-chapter,
.method-experience__principle,
.evolution-stage,
.process-step,
.faq-premium details {
  transition:
    transform .5s cubic-bezier(.22, 1, .36, 1),
    border-color .5s cubic-bezier(.22, 1, .36, 1),
    background .5s cubic-bezier(.22, 1, .36, 1),
    opacity .5s ease,
    color .5s ease;
}

.plan-card:hover,
.plan-card:focus-within,
.evolution-stage:hover,
.faq-premium details:hover {
  transform: translateY(-4px);
}

.plan-card:hover,
.plan-card:focus-within {
  border-color: rgba(198, 137, 72, .44);
}

.plan-card:hover .plan-card__accent,
.plan-card:focus-within .plan-card__accent {
  opacity: 1;
  transform: scaleX(1);
}

.faq-premium details {
  border-radius: 18px;
}

.faq-premium details[open] {
  background: rgba(255, 255, 255, .28);
  border-color: rgba(198, 137, 72, .24);
}

.faq-premium summary {
  cursor: pointer;
}

.faq-premium summary::marker { content: ""; }
.faq-premium summary::-webkit-details-marker { display: none; }

.faq-premium summary::after {
  content: "+";
  float: right;
  color: rgba(198, 137, 72, .72);
  transition: transform .36s cubic-bezier(.22, 1, .36, 1);
}

.faq-premium details[open] summary::after {
  transform: rotate(45deg);
}

.faq-premium details p {
  animation: faqReveal .36s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-premium-reveal] {
  will-change: transform, opacity;
}

@media (max-width: 980px) {
  .site-header.is-scrolled {
    min-height: 64px;
  }

  .site-header.is-scrolled .brand {
    width: clamp(96px, 19vw, 126px);
  }

  .brand-preloader__mark {
    width: min(58vw, 190px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-preloader,
  .brand-preloader__mark span,
  .site-header,
  .brand,
  .hero__button,
  .plan-card,
  .faq-premium details,
  .faq-premium details p {
    transition: none !important;
    animation: none !important;
  }

  body .brand-preloader {
    display: none;
  }
}

/* Photo refresh: About Kike + final CTA image */
.about-kike__figure img {
  object-position: 50% 44%;
}

.final-cta {
  min-height: auto;
  display: block;
  overflow: hidden;
  padding-block: clamp(5.8rem, 9vw, 9.5rem);
  background:
    radial-gradient(circle at 14% 20%, rgba(214, 154, 87, .18), transparent 32%),
    radial-gradient(circle at 86% 22%, rgba(255, 248, 238, .07), transparent 30%),
    linear-gradient(135deg, #0f0d0b 0%, #17120d 52%, #24170e 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 238, .06), transparent 34%, rgba(0, 0, 0, .26)),
    linear-gradient(90deg, rgba(255, 248, 238, .05), transparent 32%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr);
  align-items: center;
  gap: clamp(2.4rem, 6vw, 6rem);
  width: min(100%, 1180px);
  margin-inline: auto;
}

.final-cta__content {
  max-width: 760px;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: clamp(26rem, 45vw, 41rem);
  border-radius: clamp(1.2rem, 2.2vw, 2rem);
  border: 1px solid rgba(255, 248, 238, .13);
  background: rgba(255, 248, 238, .05);
  box-shadow: 0 40px 120px rgba(0, 0, 0, .25);
  isolation: isolate;
}

.final-cta__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 13, 11, .03), transparent 38%, rgba(15, 13, 11, .34)),
    linear-gradient(90deg, rgba(214, 154, 87, .12), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.final-cta__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 52% 56%;
  filter: saturate(.88) contrast(1.03) brightness(.92);
  transform: scale(1.015);
}

.final-cta__media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1.1rem, 2vw, 1.6rem);
  right: clamp(1.1rem, 2vw, 1.6rem);
  bottom: clamp(1.1rem, 2vw, 1.6rem);
  margin: 0;
  color: rgba(255, 248, 238, .78);
  font-size: .72rem;
  line-height: 1.45;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .final-cta__content {
    max-width: 760px;
  }

  .final-cta__media {
    width: min(100%, 560px);
    min-height: clamp(28rem, 118vw, 42rem);
  }
}

@media (max-width: 680px) {
  .final-cta {
    padding-block: clamp(4.8rem, 14vw, 6.6rem);
  }

  .final-cta__media {
    min-height: clamp(26rem, 122vw, 36rem);
    border-radius: 1.35rem;
  }

  .final-cta__media figcaption {
    font-size: .62rem;
    letter-spacing: .12em;
  }
}

/* Mobile navigation refinement: full editorial overlay, clearer hierarchy and no hero bleed-through. */
@media (max-width: 980px) {
  .nav-open .site-header {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-open .site-header::before {
    opacity: 0;
  }

  .site-nav {
    inset: 0;
    z-index: 32;
    display: block;
    min-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: calc(var(--header-height) + 2.6rem) clamp(1.25rem, 6vw, 4rem) 2.6rem;
    background:
      radial-gradient(circle at 82% 10%, rgba(233, 182, 108, .16), transparent 28%),
      radial-gradient(circle at 12% 86%, rgba(200, 120, 50, .10), transparent 30%),
      linear-gradient(180deg, rgba(13, 12, 10, .995), rgba(16, 13, 10, .985) 52%, rgba(22, 17, 12, .985));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-.75rem);
    transition: opacity .42s cubic-bezier(.22, 1, .36, 1), visibility .42s, transform .42s cubic-bezier(.22, 1, .36, 1);
  }

  .site-nav::before {
    content: "Navegación";
    display: block;
    width: min(100%, 680px);
    margin: 0 auto clamp(1.5rem, 5vw, 2.4rem);
    color: rgba(255, 248, 238, .42);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
  }

  .site-nav::after {
    content: "";
    position: fixed;
    inset: auto 0 0;
    height: 22vh;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(13, 12, 10, .92));
  }

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

  .site-nav__inner {
    width: min(100%, 680px);
    min-height: auto;
    margin-inline: auto;
    display: grid;
    align-content: start;
    gap: 0;
    counter-reset: nav-item;
  }

  .site-nav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 1.25rem;
    align-items: baseline;
    padding: clamp(.88rem, 2.8vw, 1.22rem) 0;
    border-bottom: 1px solid rgba(255, 248, 238, .105);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 5.1vw, 3.25rem);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.04;
    text-transform: none;
    color: rgba(255, 248, 238, .86);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    color: var(--warm-white);
  }

  .site-nav a::before {
    content: "0" counter(nav-item);
    counter-increment: nav-item;
    order: 2;
    margin-left: 0;
    align-self: center;
    color: rgba(233, 182, 108, .54);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .18em;
    line-height: 1;
  }

  .site-nav a::after,
  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    justify-self: start;
    width: auto;
    min-height: 48px;
    margin: clamp(1.45rem, 4vw, 2.4rem) 0 0;
    padding: 0 1.35rem;
    border: 1px solid rgba(233, 182, 108, .36);
    border-radius: 999px;
    background: rgba(255, 248, 238, .08);
    color: rgba(255, 248, 238, .92);
    font-family: Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: .7rem;
    font-weight: 650;
    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1;
  }

  .site-nav .nav-cta::before {
    display: none;
  }

  .nav-toggle {
    min-height: 44px;
    padding: 0 .92rem 0 1.05rem;
    background: rgba(18, 15, 12, .42);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .nav-open .nav-toggle {
    border-color: rgba(255, 248, 238, .24);
    background: rgba(255, 248, 238, .08);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: .7rem;
    left: .85rem;
    right: .85rem;
    min-height: 60px;
    padding: .44rem .5rem .44rem .78rem;
  }

  .brand {
    width: 108px;
  }

  .site-nav {
    padding: 6.8rem 1.25rem 2rem;
  }

  .site-nav::before {
    margin-bottom: 1.25rem;
  }

  .site-nav a {
    padding: 1rem 0;
    font-size: clamp(2.05rem, 11vw, 3.35rem);
    letter-spacing: -.045em;
    line-height: 1.02;
  }

  .nav-toggle__label {
    display: inline-block;
    font-size: .62rem;
    max-width: 4.8rem;
  }

  .nav-toggle {
    gap: .52rem;
    padding: 0 .78rem 0 .9rem;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 96px;
  }

  .nav-toggle__label {
    display: none;
  }

  .site-nav a {
    font-size: clamp(1.82rem, 10.2vw, 2.6rem);
  }
}

/* Final mobile menu readability fix: keep the overlay from clipping long items. */
@media (max-width: 680px) {
  .site-nav {
    padding-left: clamp(1.05rem, 5vw, 1.45rem);
    padding-right: clamp(1.05rem, 5vw, 1.45rem);
  }

  .site-nav__inner {
    width: 100%;
  }

  .site-nav a {
    grid-template-columns: minmax(0, 1fr) max-content;
    column-gap: .85rem;
    font-size: clamp(1.72rem, 8.7vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -.032em;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .site-nav a::before {
    align-self: start;
    padding-top: .28em;
    font-size: .62rem;
  }
}

@media (max-width: 390px) {
  .site-nav a {
    font-size: clamp(1.55rem, 8.15vw, 2.05rem);
    letter-spacing: -.025em;
  }
}

/* Final correction: keep the mobile menu fix, but restore Method section readability on mobile/tablet. */
@media (max-width: 900px) {
  .method-experience__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(3rem, 10vw, 5rem) !important;
    align-items: stretch !important;
  }

  .method-experience__intro {
    position: relative !important;
    top: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    text-align: center !important;
  }

  .method-experience__title {
    max-width: 680px !important;
    margin-inline: auto !important;
    font-size: clamp(3rem, 12vw, 5.8rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
  }

  .method-experience__title span {
    display: block !important;
    overflow: visible !important;
    padding-bottom: .08em !important;
  }

  .method-experience__intro > p:not(.section-label),
  .method-experience__intro p:not(.section-label) {
    max-width: 34rem !important;
    margin: clamp(1.35rem, 5vw, 2.35rem) auto 0 !important;
    text-align: center !important;
    font-size: clamp(1rem, 4vw, 1.18rem) !important;
    line-height: 1.7 !important;
  }

  .method-experience__principles {
    width: 100% !important;
    display: grid !important;
    gap: clamp(2.1rem, 8vw, 3.6rem) !important;
    padding-top: 0 !important;
  }

  .method-experience__principle {
    width: 100% !important;
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: clamp(2.35rem, 9vw, 3.8rem) 0 !important;
    opacity: .86 !important;
  }

  .method-experience__principle-head {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: .85rem !important;
    text-align: center !important;
  }

  .method-experience__number {
    justify-self: center !important;
  }

  .method-experience__principle h3 {
    max-width: 100% !important;
    margin-inline: auto !important;
    font-size: clamp(2.25rem, 10.5vw, 4.75rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.045em !important;
    text-align: center !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .method-experience__principle p {
    max-width: 31rem !important;
    margin: clamp(1rem, 4vw, 1.4rem) auto 0 !important;
    text-align: center !important;
    font-size: clamp(1rem, 4vw, 1.15rem) !important;
    line-height: 1.7 !important;
  }

  .method-experience__closing {
    max-width: 680px !important;
    margin: clamp(4.2rem, 14vw, 7rem) auto 0 !important;
    text-align: center !important;
    font-size: clamp(2.55rem, 10.8vw, 5.1rem) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 520px) {
  .method-experience__shell {
    width: min(100% - 2rem, 720px) !important;
  }

  .method-experience__title {
    font-size: clamp(2.8rem, 13vw, 4.65rem) !important;
  }

  .method-experience__principle h3 {
    font-size: clamp(2.15rem, 10.2vw, 4.1rem) !important;
  }
}

/* Interactive brand intro refinement */
html.is-preloading,
body.is-preloading {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

.brand-preloader {
  cursor: default;
}

.brand-preloader__inner {
  min-height: min(760px, 92svh);
  align-content: center;
}

.brand-preloader__enter {
  appearance: none;
  border: 0;
  background: transparent;
  display: grid;
  justify-items: center;
  gap: .74rem;
  margin-top: clamp(.55rem, 1.8vw, 1.4rem);
  padding: .7rem 1rem;
  color: rgba(255, 248, 238, .68);
  font: 500 .68rem/1 var(--font-sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: auto;
}

.brand-preloader__enter:focus-visible {
  outline: 1px solid rgba(238, 206, 156, .8);
  outline-offset: .45rem;
  border-radius: 999px;
}

.brand-preloader__enter-line {
  display: block;
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(238, 206, 156, .72), rgba(198, 137, 72, .18));
  transform-origin: top;
  animation: introCueLine 1.75s cubic-bezier(.22, 1, .36, 1) infinite;
}

.brand-preloader__enter-arrow {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(238, 206, 156, .75);
  border-bottom: 1px solid rgba(238, 206, 156, .75);
  transform: rotate(45deg);
  margin-top: -9px;
  animation: introCueArrow 1.75s cubic-bezier(.22, 1, .36, 1) infinite;
}

.brand-preloader__copy p {
  will-change: transform, opacity;
}

@keyframes introCueLine {
  0% { transform: scaleY(.35); opacity: .28; }
  48% { transform: scaleY(1); opacity: .82; }
  100% { transform: scaleY(.35); opacity: .28; }
}

@keyframes introCueArrow {
  0%, 100% { transform: translateY(-3px) rotate(45deg); opacity: .35; }
  48% { transform: translateY(4px) rotate(45deg); opacity: .85; }
}

@media (max-width: 720px) {
  .brand-preloader__inner {
    min-height: min(720px, 92svh);
    gap: .94rem;
  }

  .brand-preloader__enter-label::before {
    content: attr(data-mobile);
  }

  .brand-preloader__enter-label {
    font-size: 0;
  }

  .brand-preloader__enter-label::before {
    font-size: .64rem;
  }

  .brand-preloader__enter-line {
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-preloader__enter-line,
  .brand-preloader__enter-arrow {
    animation: none;
  }
}

/* Hero video overlay: semi-transparent Kike footage above the athletics track, below text and readability overlays. */
.hero__media {
  z-index: -4;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
  mix-blend-mode: screen;
  filter: saturate(.95) contrast(1.1) sepia(.04);
  pointer-events: none;
  transform: scale(1.015);
  transform-origin: center;
}

@media (max-width: 760px) {
  .hero__video-overlay {
    opacity: .43;
    object-position: center;
    transform: scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video-overlay {
    opacity: .34;
  }
}

/* New LINDE logo integration */
.site-header .brand {
  width: auto;
  height: clamp(54px, 4.8vw, 70px);
}

.site-header .brand img,
.brand-preloader__mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* The new logo has dark artwork; invert only in dark UI surfaces for contrast. */
.site-header .brand img,
.site-nav .brand img,
.brand-preloader__mark img {
  filter: invert(1) brightness(1.16) contrast(.92) drop-shadow(0 10px 28px rgba(0, 0, 0, .28));
}

.brand-preloader__mark {
  width: auto;
  height: clamp(118px, 16vw, 190px);
}

@media (max-width: 760px) {
  .site-header .brand {
    height: 58px;
  }

  .brand-preloader__mark {
    height: clamp(104px, 24vw, 142px);
  }
}

@media (max-width: 390px) {
  .site-header .brand {
    height: 52px;
  }
}
