/*
 * Relational Rescue Design System 1.0
 * Locked baseline: 18 August 2026
 * Contract: ./DESIGN-SYSTEM.md
 *
 * New pages must reuse the tokens, type roles, spacing rhythm, surfaces, and
 * section patterns defined here. Route-specific CSS may extend the system but
 * must not silently redefine global tokens or existing component semantics.
 */

:root {
  color-scheme: dark;
  --obsidian: #0a0a0a;
  --charcoal: #121211;
  --graphite: #1f1f1d;
  --ash: #5c5c59;
  --slate: #7a7a77;
  --bone: #f3f2ec;
  --rust: #bc251f;
  --rust-bright: #d6322a;
  --ink: var(--bone);
  --muted: #aaa9a3;
  --signal: var(--rust);
  --action: var(--rust);
  --action-hover: var(--rust-bright);
  --line: var(--graphite);
  --focus: rgba(188, 37, 31, 0.28);
  --action-ink: var(--bone);
  --radius-panel: 0;
  --radius-control: 0;
  --font-heading: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-display: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --weight-display: 700;
  --tracking-display: -0.035em;
  --page-pad: 40px;
  --measure: 1440px;
  --gutter: max(var(--page-pad), calc((100vw - var(--measure)) / 2));
  --hero-copy-measure: 880px;
  --hero-media-measure: 520px;
  --hero-grid-gap: 40px;
  --hero-title-size: clamp(54px, 3.4vw, 64px);
  --hero-copy-top: 108px;
  --hero-copy-top-after-breadcrumb: 51px;
  --step-000: 12px;
  --step-00: 14px;
  --step-0: 17px;
  --step-1: clamp(20px, 1.7vw, 26px);
  --step-2: clamp(25px, 2.3vw, 34px);
  --step-3: clamp(34px, 4vw, 56px);
  --step-4: clamp(44px, 6vw, 82px);
  --space-eyebrow-heading: 24px;
  --space-heading-copy: 28px;
  --space-copy-copy: 18px;
}

.route-steadfast {
  --problem-bg: var(--obsidian);
  --problem-ink: var(--bone);
  --problem-muted: #aaa9a3;
  --shift-bg: var(--charcoal);
  --shift-ink: var(--bone);
  --shift-muted: var(--slate);
  --shift-accent: var(--bone);
  --shift-line: var(--graphite);
  --journey-bg: var(--obsidian);
  --journey-ink: var(--bone);
  --journey-muted: #aaa9a3;
  --steps-bg: var(--charcoal);
  --steps-ink: var(--bone);
  --steps-muted: #aaa9a3;
  --steps-line: var(--graphite);
  --faq-bg: var(--obsidian);
  --faq-ink: var(--bone);
  --faq-muted: #aaa9a3;
  --faq-line: var(--graphite);
}

html,
body {
  background: var(--obsidian);
}

body {
  color: var(--bone);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--rust);
  color: var(--bone);
}

main {
  background: var(--obsidian);
}

/* Type roles */
.t-display,
.t-h2,
.t-h3 {
  color: var(--bone);
  font-family: var(--font-heading) !important;
  font-weight: 400 !important;
  letter-spacing: 0.018em !important;
  text-transform: uppercase !important;
  text-wrap: balance;
}

/* Shared typographic rhythm: one hierarchy across every route. */
.t-h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.t-h2 + .t-body {
  margin-top: var(--space-heading-copy) !important;
}

:is(
  .recharge-heading,
  .scenario-heading,
  .video-proof-heading,
  .journey-intro,
  .division-intro,
  .section-heading,
  .story-heading,
  .values-heading,
  .about-proof-heading,
  .booking-intro,
  .fit-heading,
  .call-steps-heading,
  .method-heading,
  .offer-heading,
  .case-heading,
  .trust-heading,
  .safety-copy
) > .t-h2 + :is(.t-body, p:not(.section-label)) {
  margin-top: var(--space-heading-copy) !important;
}

:is(
  .recharge-heading,
  .scenario-heading,
  .video-proof-heading,
  .journey-intro,
  .section-heading,
  .story-heading,
  .values-heading,
  .about-proof-heading,
  .fit-heading,
  .method-heading,
  .offer-heading,
  .trust-heading
) > .section-label {
  margin-bottom: var(--space-eyebrow-heading) !important;
}

.t-display {
  font-size: var(--step-4) !important;
  line-height: 1.02 !important;
}

.t-h2 {
  font-size: var(--step-3) !important;
  line-height: 1.12 !important;
}

.t-h3 {
  font-size: var(--step-2) !important;
  line-height: 1.18 !important;
}

.t-eyebrow,
.t-label {
  font-family: var(--font-display) !important;
  font-size: var(--step-000) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
}

/* Eyebrows stay typographic: no decorative leading rules. */
.t-eyebrow::before,
.eyebrow::before,
.section-label::before {
  display: none !important;
  content: none !important;
}

.t-eyebrow {
  color: var(--rust) !important;
  letter-spacing: 0.22em !important;
}

.t-label {
  letter-spacing: 0.12em !important;
}

.t-body,
.t-body-sm,
.t-caption {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
  text-transform: none !important;
}

.t-body {
  font-size: var(--step-0) !important;
  line-height: 1.62 !important;
}

.t-body-sm,
.t-caption {
  font-size: var(--step-00) !important;
  line-height: 1.58 !important;
}

.eyebrow,
.section-label {
  color: var(--rust) !important;
}

.route-steadfast .hero .eyebrow {
  color: #fff !important;
}

.route-steadfast .hero-proof {
  bottom: 42px;
}

.route-steadfast .hero-rule {
  bottom: 158px;
}

.hero-authority-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 42px;
  overflow: hidden;
  border-top: 1px solid rgba(243, 242, 236, 0.14);
  border-bottom: 1px solid rgba(188, 37, 31, 0.48);
  background: rgba(8, 9, 9, 0.96);
}

.hero-authority-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: hero-authority-scroll 38s linear infinite;
  will-change: transform;
}

.hero-authority-group {
  display: flex;
  min-width: max-content;
  height: 40px;
  align-items: center;
  gap: 0;
  padding-right: 32px;
  color: #d8d6cf;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-authority-group > span {
  display: inline-flex;
  align-items: center;
}

.hero-authority-group > span::after {
  width: 4px;
  height: 4px;
  margin: 0 28px;
  border-radius: 50%;
  content: "";
  background: var(--rust);
  box-shadow: 0 0 10px rgba(188, 37, 31, 0.5);
}

.hero-authority-ticker:hover .hero-authority-track {
  animation-play-state: paused;
}

@keyframes hero-authority-scroll {
  to {
    transform: translateX(-50%);
  }
}

.eyebrow::before {
  height: 1px;
  background: var(--rust);
}

/* Navigation and controls */
.site-header,
.inner-header {
  border-color: var(--graphite);
  background: rgba(10, 10, 10, 0.92);
}

.wordmark,
.wordmark strong {
  color: var(--bone);
  font-family: var(--font-display);
}

.wordmark strong {
  color: var(--rust);
}

.site-nav > a:not(.nav-cta) {
  color: #b6b5ae;
}

.site-nav > a:not(.nav-cta)::after {
  background: var(--rust);
}

.route-steadfast .site-nav > a:not(.nav-cta)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button,
.division-link,
.journey-cta {
  border-radius: 0;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
}

.nav-cta {
  border-color: #4b4b47;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--rust);
  background: rgba(188, 37, 31, 0.12);
}

.button-primary,
.route-book .inner-header .nav-cta[aria-current="page"] {
  border-color: var(--rust);
  background: var(--rust);
  box-shadow: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--rust-bright);
}

.button-secondary {
  border-color: #4b4b47;
  background: rgba(10, 10, 10, 0.4);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--bone);
  background: rgba(243, 242, 236, 0.06);
}

:focus-visible {
  outline-color: var(--rust);
}

/* Common surfaces */
.proof-bar,
.belief-section,
.problem-section,
.journey-section,
.testimonials-section,
.division-section,
.steps-section,
.faq-section,
.final-cta,
.story-section,
.values-section,
.founder-section,
.about-proof,
.booking-hero,
.fit-section,
.call-steps,
.safety-section,
.method-section,
.offer-section,
.case-section,
.trust-section,
.featured-section {
  color: var(--bone);
}

.proof-bar,
.featured-section {
  border-color: var(--graphite);
  background: var(--charcoal) !important;
}

.belief-section,
.problem-section,
.journey-section,
.division-section,
.faq-section,
.values-section,
.about-proof,
.call-steps,
.safety-section,
.method-section,
.offer-section,
.trust-section {
  background-color: var(--obsidian) !important;
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.48) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.48) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
}

.testimonials-section,
.steps-section,
.story-section,
.founder-section,
.fit-section,
.case-section,
.final-cta {
  background: var(--charcoal) !important;
  color: var(--bone) !important;
}

.belief-heading::before,
.testimonials-heading::before {
  border-color: var(--rust);
  background: var(--rust);
}

.founder-photo::before {
  border-color: var(--rust);
  background: transparent;
}

.belief-copy,
.proof-item,
.pain-grid,
.pain-grid article,
.steps-list,
.steps-list li,
.faq-list,
.faq-item,
.values-list,
.values-list article,
.about-proof-grid,
.about-proof-grid > div,
.fit-grid,
.fit-grid article,
.call-steps-list,
.call-steps-list li,
.trust-list,
.trust-list article,
.case-grid,
.case-grid article {
  border-color: var(--graphite) !important;
}

.belief-copy p,
.problem-section p,
.journey-intro > p:last-child,
.journey-card p,
.division-intro > p,
.division-card p,
.steps-list p,
.faq-answer p,
.story-copy p,
.values-list p,
.founder-copy p,
.about-proof-grid dd,
.about-proof-note,
.fit-grid li,
.call-steps-list p,
.safety-copy > p:not(.section-label),
.method-copy p,
.offer-heading > p:last-child,
.offer-list p,
.offer-decision p + p,
.case-heading > p:last-child,
.case-grid p,
.trust-list p {
  color: #aaa9a3 !important;
}

.proof-item dt,
.featured-section h2,
.values-list article > span,
.about-proof-grid dt,
.call-steps-list li > span,
.offer-list li > span,
.case-grid span,
.trust-list article > span,
.steps-list li > span {
  color: var(--rust) !important;
}

.proof-item dd,
.outcome-note,
.footer-brand > p,
.footer-column a,
.footer-smallprint p,
.footer-base p,
.footer-base a {
  color: #85847f !important;
}

/* Hero language */
.hero {
  background-color: var(--obsidian);
}

.route-steadfast:not(.route-for-men) .hero {
  background:
    linear-gradient(
      90deg,
      rgba(0, 5, 9, 0.9) 0%,
      rgba(0, 6, 10, 0.72) 34%,
      rgba(0, 7, 11, 0.2) 59%,
      rgba(0, 5, 8, 0.01) 100%
    ),
    linear-gradient(180deg, rgba(0, 4, 7, 0.02) 62%, rgba(0, 3, 5, 0.64) 100%),
    url("./assets/hero-portrait.jpg") 60% 50% / cover no-repeat;
}

.hero::after {
  background:
    linear-gradient(to right, rgba(31, 31, 29, 0.28) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.28) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 10, 10, 0.25), transparent 22%);
  background-size: 64px 64px, 64px 64px, auto;
}

.hero h1 span:last-child {
  color: var(--rust);
}

.subheadline {
  color: #aaa9a3;
}

.hero-rule {
  background: linear-gradient(90deg, var(--rust) 0 80px, var(--graphite) 80px);
}

.hero-proof p {
  color: #aaa9a3;
}

.hero-proof-logos img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.featured-grid img,
.featured-men .featured-grid img {
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

/* Comparison section — direct translation of the supplied reference */
.identity-shift {
  position: relative;
  isolation: isolate;
  padding: clamp(112px, 10vw, 160px) var(--gutter) clamp(96px, 9vw, 144px);
  overflow: hidden;
  background-color: var(--obsidian) !important;
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.6) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
  color: var(--bone) !important;
}

.identity-shift::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(10, 10, 10, 0.7);
}

.identity-shift-header {
  max-width: 1120px;
  margin-right: auto;
  margin-bottom: clamp(76px, 8vw, 120px);
  margin-left: auto;
  text-align: center;
}

.identity-shift-header .section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 0 0 34px;
}

.identity-shift-header .section-label::before {
  width: 32px;
  height: 1px;
  content: "";
  background: var(--rust);
}

.identity-shift-header h2 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: var(--step-3) !important;
  letter-spacing: 0.018em !important;
  line-height: 0.98 !important;
}

.identity-shift-header h2 span {
  display: block;
}

.identity-shift-header h2 span:last-child {
  margin-top: 0;
  color: var(--ash);
}

.identity-shift-list {
  width: 100%;
}

.identity-shift-head,
.identity-shift-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
  gap: 32px;
}

.identity-shift-head {
  align-items: center;
  padding: 0 32px 22px;
  border-bottom: 1px solid var(--graphite);
  color: rgba(243, 242, 236, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: var(--step-00);
  font-style: italic;
  letter-spacing: 0.025em;
}

.identity-shift-head div:last-child {
  color: rgba(243, 242, 236, 0.82);
}

.identity-shift-row {
  align-items: center;
  padding: clamp(42px, 4.2vw, 64px) 32px;
  border-bottom: 1px solid var(--graphite);
  transition: background 500ms ease;
}

.identity-shift-row:hover {
  background: rgba(18, 18, 17, 0.68);
}

.identity-shift-row p {
  margin: 0;
  font-size: clamp(23px, 2.15vw, 32px) !important;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.22 !important;
}

.identity-shift-before {
  padding-right: clamp(16px, 3vw, 48px);
}

.identity-shift-before p {
  color: var(--slate) !important;
  transition: color 500ms ease;
}

.identity-shift-row:hover .identity-shift-before p {
  color: #aaa9a3 !important;
}

.identity-shift-after {
  padding-left: clamp(16px, 3vw, 48px);
}

.identity-shift-after p {
  color: var(--bone) !important;
  transition: color 500ms ease, transform 500ms ease;
}

.identity-shift-row:hover .identity-shift-after p {
  color: #fff !important;
  transform: translateX(12px);
}

.identity-shift-arrow {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  color: var(--ash);
  font-family: var(--font-display);
  font-size: 24px;
  transition: border-color 500ms ease, background 500ms ease, color 500ms ease, transform 500ms ease;
}

.identity-shift-row:hover .identity-shift-arrow {
  border-color: var(--rust);
  background: rgba(188, 37, 31, 0.1);
  color: var(--rust);
  transform: translateX(4px);
}

.identity-shift-mobile-label {
  display: none;
}

.identity-shift-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-top: clamp(56px, 6vw, 88px);
}

.identity-shift-footer p {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.35;
}

.identity-shift-footer em {
  display: block;
  color: var(--ash);
}

.identity-shift-footer strong {
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.identity-shift-footer a {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 16px;
  color: var(--rust);
  font-family: var(--font-display);
  font-size: var(--step-000);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.identity-shift-footer i {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--rust);
  transition: width 300ms ease, background 300ms ease;
}

.identity-shift-footer a:hover,
.identity-shift-footer a:focus-visible {
  color: var(--bone);
}

.identity-shift-footer a:hover i,
.identity-shift-footer a:focus-visible i {
  width: 64px;
  background: var(--bone);
}

/* The men's route uses the same comparison language with one additional row. */
.route-for-men .shift-section {
  background-color: var(--obsidian) !important;
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.6) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.6) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
}

.route-for-men .shift-table {
  border-color: var(--graphite);
}

.route-for-men .shift-row {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 128px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  border-color: var(--graphite);
  transition: background 500ms ease;
}

.route-for-men .shift-row:not(.shift-head):hover {
  background: rgba(18, 18, 17, 0.7);
}

.route-for-men .shift-row > div:first-child {
  grid-column: 1;
  color: var(--slate) !important;
}

.route-for-men .shift-row > div + div {
  grid-column: 3;
  border-left: 0;
  color: var(--bone) !important;
}

.route-for-men .shift-row:not(.shift-head)::after {
  display: grid;
  width: 56px;
  height: 56px;
  grid-column: 2;
  grid-row: 1;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  content: "→";
  color: var(--ash);
  font-family: var(--font-display);
  font-size: 24px;
  transition: border-color 500ms ease, background 500ms ease, color 500ms ease, transform 500ms ease;
}

.route-for-men .shift-row:not(.shift-head):hover::after {
  border-color: var(--rust);
  background: rgba(188, 37, 31, 0.1);
  color: var(--rust);
  transform: translateX(4px);
}

.route-for-men .shift-row > div {
  min-height: 154px;
  padding: 42px 32px;
  font-size: clamp(22px, 2vw, 30px) !important;
  font-weight: 500 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.22 !important;
}

.route-for-men .shift-head > div {
  min-height: 0;
  padding-block: 18px;
  color: rgba(243, 242, 236, 0.82) !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: var(--step-00) !important;
  font-style: italic;
  font-weight: 400 !important;
  letter-spacing: 0.025em !important;
  text-transform: none !important;
}

.route-for-men .shift-underline {
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 38px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-transform: none;
}

/* Home-page components */
.proof-bar::before,
.process-photo,
.roadmap-photo,
.journey-image,
.story-image,
.values-image,
.steps-outcome-image {
  border-color: var(--rust);
  background-color: var(--rust);
}

.proof-item dt {
  font-family: var(--font-heading);
  font-weight: 400;
}

.belief-section {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 880px);
  align-content: center;
  align-items: start;
  justify-content: center;
  gap: var(--space-heading-copy);
  color: var(--bone);
  text-align: center;
}

.belief-heading {
  max-width: 880px;
  padding-top: 34px;
}

.belief-heading::before {
  right: 0;
  margin-inline: auto;
}

.belief-copy {
  max-width: 760px;
  margin-inline: auto;
  padding-left: 0;
  border-left: 0;
}

.section-heading {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.section-heading .section-label,
.journey-intro .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 0;
}

.section-heading .section-label::before,
.journey-intro .section-label::before {
  width: 32px;
  height: 1px;
  content: "";
  background: var(--rust);
}

.section-heading h2 {
  margin-inline: auto;
}

.journey-intro,
.testimonials-heading {
  margin-inline: auto;
  text-align: center;
}

.journey-intro > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.testimonials-heading::before {
  right: 0;
  margin-inline: auto;
}

.testimonials-heading h2 {
  margin-inline: auto;
}

.division-intro {
  display: block;
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
}

.division-intro h2,
.division-intro > p {
  margin-right: auto;
  margin-left: auto;
}

.division-intro > p {
  margin-top: 28px;
}

.belief-heading::before,
.testimonials-heading::before {
  width: 32px;
  height: 1px;
}

.pain-grid article {
  background: rgba(10, 10, 10, 0.38);
}

.about-proof-note {
  border-color: var(--rust);
  background: rgba(188, 37, 31, 0.08);
  color: var(--bone) !important;
}

.route-steadfast .stakes-line {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  border: 0;
  background: transparent;
  color: #c8c6bf !important;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.route-steadfast .editorial-break-family figcaption {
  right: auto;
  left: 50%;
  width: min(760px, calc(100% - 48px));
  max-width: 760px;
  padding: 15px 22px;
  transform: translateX(-50%);
  border-left: 0;
  background: rgba(5, 5, 5, 0.58);
  text-align: center;
}

.route-steadfast .editorial-break-family {
  min-height: clamp(390px, 42vw, 650px);
}

.route-steadfast .editorial-break-family img {
  object-position: 50% 62%;
}

.journey-card,
.offer-card {
  border-color: var(--graphite);
  border-radius: 0;
  background: rgba(18, 18, 17, 0.94);
  box-shadow: none;
}

.route-steadfast .journey-card,
.route-steadfast .journey-list > li:nth-child(odd) .journey-card {
  border-left: 1px solid var(--graphite);
  border-right: 1px solid var(--graphite);
  border-top: 3px solid var(--rust);
}

.journey-node {
  border-color: var(--rust);
  border-radius: 50%;
  background: var(--obsidian);
  box-shadow: 0 0 0 8px rgba(188, 37, 31, 0.08);
}

.journey-list::before {
  background: linear-gradient(var(--rust), var(--graphite));
}

.testimonial-card {
  border-color: var(--graphite);
  box-shadow: none;
}

.division-card {
  border-color: var(--graphite);
  border-top: 3px solid var(--rust);
  border-radius: 0;
}

.division-card::after {
  border-color: rgba(188, 37, 31, 0.35);
}

.division-link:hover,
.division-link:focus-visible {
  background: var(--rust);
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: -0.03em;
}

.faq-item summary::after {
  border-color: var(--graphite);
  border-radius: 50%;
  color: var(--rust);
}

.pain-card:hover::before,
.pain-card:focus-within::before {
  opacity: 0.84;
}

.pain-card:hover::after,
.pain-card:focus-within::after {
  opacity: 1;
  background: linear-gradient(180deg, rgba(3, 6, 8, 0.28), rgba(3, 6, 8, 0.68));
}

@media (hover: hover) and (min-width: 781px) {
  .route-steadfast .pain-card:hover p,
  .route-steadfast .pain-card:focus-within p {
    color: #fff !important;
  }
}

.steps-list li > span {
  padding-top: 0;
  color: var(--rust) !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(46px, 5vw, 76px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 0.9 !important;
}

.route-steadfast .steps-list {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.route-steadfast .steps-list li {
  padding-right: clamp(22px, 3vw, 40px);
  padding-left: clamp(22px, 3vw, 40px);
}

.route-steadfast .faq-section .section-heading,
.route-steadfast .faq-list {
  width: 100%;
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.final-cta {
  border-top: 1px solid var(--graphite);
}

.final-cta .button-primary {
  background: var(--rust);
  box-shadow: none;
}

.final-cta .button-primary:hover,
.final-cta .button-primary:focus-visible {
  background: var(--rust-bright);
}

/* About */
.about-hero {
  background-color: var(--obsidian);
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.45) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
}

.about-hero::after {
  background: linear-gradient(90deg, var(--rust) 0 86px, var(--graphite) 86px);
}

.about-hero-copy > p:last-child,
.about-hero-base {
  color: #aaa9a3;
}

.about-hero-frame {
  border-color: #3e3e3a;
}

.story-image,
.values-image,
.founder-photo img {
  filter: grayscale(0.5) contrast(1.06);
}

.founder-photo-caption {
  color: var(--slate);
}

.about-proof-grid {
  border-left: 0;
}

.about-proof-grid > div {
  background: rgba(18, 18, 17, 0.65);
}

/* Booking */
.booking-hero {
  background-color: var(--obsidian) !important;
}

.booking-hero::before,
.booking-signal {
  border-color: #3e3e3a;
}

.booking-form {
  border: 1px solid var(--graphite);
  border-top: 3px solid var(--rust);
  background: var(--charcoal);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.45);
  color: var(--bone);
}

.booking-form-head {
  border-color: var(--graphite);
}

.booking-form .optional,
.form-note {
  color: var(--slate);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-color: #3e3e3a;
  border-radius: 0;
  background: var(--obsidian);
  color: var(--bone);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--rust);
  outline-color: var(--focus);
}

.booking-base {
  border-color: var(--graphite);
  color: #aaa9a3;
}

.fit-grid {
  border-left: 0;
}

.fit-grid article,
.fit-no {
  background: rgba(10, 10, 10, 0.25);
}

/* Men */
.route-for-men .proof-bar,
.route-for-men .problem-section,
.route-for-men .shift-section,
.route-for-men .case-section,
.route-for-men .featured-men,
.route-for-men .steps-section {
  color: var(--bone) !important;
}

.route-for-men .problem-section,
.route-for-men .shift-section,
.route-for-men .case-section,
.route-for-men .featured-men,
.route-for-men .steps-section {
  background: var(--charcoal) !important;
}

.route-for-men .pain-grid-four article {
  border-color: var(--graphite) !important;
}

.method-path {
  border-color: var(--graphite);
  color: var(--rust);
  font-family: var(--font-display);
}

.offer-card {
  border-top: 3px solid var(--rust);
}

.offer-card-label,
.offer-list li {
  border-color: var(--graphite);
}

.case-grid {
  border-left: 0;
}

.case-grid article {
  background: rgba(10, 10, 10, 0.26);
}

/* Homepage mechanism and scenario bridge */
.recharge-section,
.scenario-section {
  position: relative;
  padding: clamp(112px, 10vw, 160px) var(--gutter);
  color: var(--bone);
}

.recharge-section {
  background-color: var(--obsidian);
  background-image:
    radial-gradient(circle at 50% 38%, rgba(188, 37, 31, 0.12), transparent 34%),
    linear-gradient(to right, rgba(31, 31, 29, 0.48) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.48) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.recharge-heading,
.scenario-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.recharge-heading .section-label,
.scenario-heading .section-label {
  margin-bottom: 24px;
}

.recharge-heading h2,
.scenario-heading h2 {
  margin: 0;
}

.recharge-heading > p:not(.section-label) {
  max-width: 780px;
  margin: 28px auto 0;
  color: #aaa9a3;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.recharge-heading > p + p:not(.section-label) {
  margin-top: 16px;
}

.recharge-pillars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1440px;
  margin: clamp(68px, 7vw, 104px) auto 0;
  padding: 0;
  border-top: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
  list-style: none;
}

.recharge-pillars li {
  position: relative;
  display: flex;
  box-sizing: border-box;
  min-height: 238px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 34px clamp(20px, 2.4vw, 36px);
  border-right: 1px solid var(--graphite);
  background: transparent;
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.recharge-pillars li:last-child {
  border-right: 0;
}

.recharge-pillars span {
  display: block;
  margin: 0;
  color: var(--rust);
  font-family: var(--font-heading) !important;
  font-size: clamp(27px, 2.4vw, 38px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.recharge-pillars h3 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 29px) !important;
  line-height: 1.08 !important;
}

@media (hover: hover) {
  .recharge-pillars li:hover {
    z-index: 1;
    background: linear-gradient(180deg, rgba(188, 37, 31, 0.11), rgba(188, 37, 31, 0.035));
    box-shadow: inset 0 3px 0 var(--rust), 0 18px 44px rgba(0, 0, 0, 0.22);
    transform: translateY(-6px);
  }
}

.recharge-boundary {
  display: grid;
  grid-template-columns: auto auto minmax(320px, 1fr);
  gap: 26px;
  align-items: center;
  max-width: 1120px;
  margin: clamp(62px, 6vw, 92px) auto 0;
  padding-top: 34px;
  border-top: 3px solid var(--rust);
}

.recharge-boundary p {
  margin: 0;
}

.recharge-boundary .t-h3 {
  white-space: nowrap;
}

.recharge-boundary .t-body {
  padding-left: 26px;
  border-left: 1px solid var(--graphite);
  color: #aaa9a3;
  line-height: 1.55;
}

.recharge-cta,
.route-steadfast .journey-cta {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.recharge-cta {
  margin-top: clamp(48px, 5vw, 72px);
}

.scenario-section {
  background: var(--charcoal);
}

.scenario-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: clamp(64px, 7vw, 96px) auto 0;
  padding: 0;
  border-top: 1px solid var(--graphite);
  list-style: none;
}

.scenario-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 108px;
  padding: 24px 30px;
  border-right: 1px solid var(--graphite);
  border-bottom: 1px solid var(--graphite);
}

.scenario-list li:nth-child(even) {
  border-right: 0;
}

.scenario-list span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(188, 37, 31, 0.55);
  border-radius: 50%;
  color: var(--rust);
  font-family: var(--font-display);
}

.scenario-list p {
  margin: 0;
  color: var(--bone);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.scenario-close {
  max-width: 780px;
  margin: clamp(50px, 5vw, 72px) auto 0;
  color: #c8c6bf;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  text-align: center;
}

/* Moving video proof */
.video-proof-section {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 10vw, 160px) 0;
  background-color: var(--obsidian);
  background-image:
    radial-gradient(circle at 50% 24%, rgba(188, 37, 31, 0.12), transparent 30%),
    linear-gradient(to right, rgba(31, 31, 29, 0.48) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.48) 1px, transparent 1px);
  background-size: auto, 64px 64px, 64px 64px;
}

.video-proof-heading {
  max-width: 920px;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  text-align: center;
}

.video-proof-heading .section-label {
  margin-bottom: 24px;
}

.video-proof-heading h2 {
  margin: 0;
}

.video-proof-heading .t-body {
  max-width: 680px;
  margin: 28px auto 0;
  color: #aaa9a3;
  font-size: clamp(17px, 1.35vw, 20px);
}

.video-proof-marquee {
  width: 100%;
  margin-top: clamp(64px, 7vw, 96px);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.video-proof-marquee::-webkit-scrollbar {
  display: none;
}

.video-proof-marquee.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  user-select: none;
}

.video-proof-track {
  display: flex;
  width: max-content;
  transform: none;
}

.video-proof-group {
  display: flex;
  gap: clamp(20px, 2.2vw, 34px);
  padding-right: clamp(20px, 2.2vw, 34px);
}

.video-proof-card {
  flex: 0 0 clamp(280px, 23vw, 350px);
  overflow: hidden;
  border: 1px solid var(--graphite);
  background: var(--charcoal);
  scroll-snap-align: start;
}

.video-proof-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-bottom: 1px solid var(--graphite);
  background: #050505;
  object-fit: cover;
}

.video-proof-copy {
  min-height: 150px;
  padding: 24px;
}

.video-proof-copy .t-label {
  margin: 0 0 18px;
  color: var(--rust);
}

.video-proof-copy h3 {
  margin: 0;
  font-size: clamp(23px, 1.8vw, 29px) !important;
  line-height: 1.08 !important;
}

.video-proof-nav {
  display: grid;
  max-width: 760px;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 18px;
  align-items: center;
  margin: 34px auto 0;
  padding-inline: var(--page-pad);
}

.video-proof-hint {
  margin: 0;
  color: var(--slate);
  text-align: center;
}

.video-proof-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  background: rgba(18, 18, 17, 0.9);
  color: var(--bone);
  font: 700 20px/1 var(--font-display);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.video-proof-arrow:hover,
.video-proof-arrow:focus-visible {
  border-color: var(--rust);
  background: rgba(188, 37, 31, 0.14);
  transform: translateY(-2px);
}

@keyframes video-proof-scroll {
  to {
    transform: translateX(-50%);
  }
}

/* Scroll-led journey: the centre line fills and each phase resolves into view. */
.journey-list {
  --journey-progress: 0;
}

.journey-list::before {
  background: var(--graphite);
  z-index: 0;
  pointer-events: none;
}

.journey-list::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--journey-line-width);
  height: calc(var(--journey-progress) * 100%);
  max-height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--rust), var(--rust-bright));
  box-shadow: 0 0 24px rgba(188, 37, 31, 0.24);
  transform: translateX(-50%);
  transition: height 90ms linear;
  z-index: 0;
  pointer-events: none;
}

.journey-list > li {
  z-index: 1;
}

.js .journey-list > li .journey-card,
.js .journey-list > li .journey-node {
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .journey-list > li:nth-child(odd) .journey-card {
  transform: translate3d(-32px, 24px, 0);
}

.js .journey-list > li:nth-child(even) .journey-card {
  transform: translate3d(32px, 24px, 0);
}

.js .journey-list > li .journey-node {
  transform: scale(0.72);
}

.js .journey-list > li.is-visible .journey-card,
.js .journey-list > li.is-visible .journey-node {
  opacity: 1;
  transform: none;
}

.route-steadfast .process-photo {
  aspect-ratio: 2.35;
}

.route-steadfast .process-photo img {
  object-position: center 44%;
  filter: grayscale(1) contrast(1.06);
  opacity: 0.94;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--graphite);
  background-color: var(--obsidian);
  background-image:
    linear-gradient(to right, rgba(31, 31, 29, 0.45) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31, 31, 29, 0.45) 1px, transparent 1px);
  background-size: 64px 64px;
}

.footer-column h2,
.footer-column .footer-heading,
.footer-heading {
  color: var(--rust);
  font-family: var(--font-display);
}

.footer-smallprint,
.footer-base {
  border-color: var(--graphite);
}

@media (max-width: 900px) {
  :root {
    --page-pad: 24px;
  }

  .route-steadfast .hero {
    min-height: 1102px;
  }

  .route-steadfast .hero-content {
    padding-bottom: 280px;
  }

  .route-steadfast .hero-proof {
    bottom: 42px;
  }

  .route-steadfast .hero-rule {
    bottom: 252px;
  }

  .identity-shift-head {
    display: none;
  }

  .identity-shift-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 46px 0;
  }

  .identity-shift-before,
  .identity-shift-after {
    padding: 0;
  }

  .identity-shift-after {
    margin-top: 32px;
    padding-left: 20px;
    border-left: 1px solid rgba(188, 37, 31, 0.45);
  }

  .identity-shift-arrow {
    display: none;
  }

  .identity-shift-mobile-label {
    display: block;
    margin-bottom: 12px;
    color: rgba(243, 242, 236, 0.82);
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--step-000);
    font-style: italic;
    letter-spacing: 0.03em;
  }

  .identity-shift-after .identity-shift-mobile-label {
    color: var(--rust);
  }

  .identity-shift-row:hover .identity-shift-after p {
    transform: none;
  }

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

  .route-for-men .shift-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .route-for-men .shift-row > div:first-child,
  .route-for-men .shift-row > div + div {
    grid-column: 1;
  }

  .route-for-men .shift-row > div {
    min-height: 0;
    padding: 28px 0;
  }

  .route-for-men .shift-row > div + div {
    padding-left: 20px;
    border-top: 1px dashed var(--graphite);
    border-left: 1px solid rgba(188, 37, 31, 0.45);
  }

  .route-for-men .shift-row:not(.shift-head)::after {
    display: none;
  }

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

  .recharge-pillars li {
    min-height: 210px;
    border-bottom: 1px solid var(--graphite);
  }

  .recharge-pillars li:nth-child(even) {
    border-right: 0;
  }

  .recharge-pillars li:last-child {
    grid-column: 1 / -1;
    min-height: 0;
    border-bottom: 0;
  }

  .recharge-boundary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .recharge-boundary .t-h3 {
    white-space: normal;
  }

  .recharge-boundary .t-body {
    padding: 24px 0 0;
    border-top: 1px solid var(--graphite);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 20px;
    --step-4: clamp(40px, 13vw, 58px);
  }

  .identity-shift {
    padding-block: 92px;
  }

  .identity-shift-header {
    margin-bottom: 58px;
  }

  .identity-shift-header h2 {
    font-size: clamp(27px, 8vw, 38px) !important;
  }

  .identity-shift-row p {
    font-size: clamp(22px, 6vw, 28px) !important;
  }

  .identity-shift-footer p {
    font-size: clamp(24px, 7vw, 31px);
  }

  .route-steadfast .hero {
    min-height: 1112px;
  }

  .route-steadfast .hero-content {
    padding-bottom: 292px;
  }

  .route-steadfast .hero-rule {
    bottom: 268px;
  }

  .recharge-section,
  .scenario-section,
  .video-proof-section {
    padding-block: 92px;
  }

  .video-proof-marquee {
    mask-image: none;
  }

  .video-proof-card {
    flex-basis: min(78vw, 330px);
  }

  .video-proof-nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .video-proof-arrow {
    width: 44px;
    height: 44px;
  }

  .video-proof-hint {
    font-size: 10px !important;
  }

  .journey-list::after {
    left: 22px;
  }

  .js .journey-list > li:nth-child(odd) .journey-card,
  .js .journey-list > li:nth-child(even) .journey-card {
    transform: translate3d(18px, 20px, 0);
  }

  .js .journey-list > li.is-visible .journey-card {
    transform: none;
  }

  .route-steadfast .process-photo {
    aspect-ratio: 4 / 3;
  }

  .recharge-pillars,
  .scenario-list {
    grid-template-columns: 1fr;
  }

  .recharge-pillars li,
  .recharge-pillars li:nth-child(even),
  .scenario-list li,
  .scenario-list li:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .recharge-pillars li:last-child {
    grid-column: auto;
  }

  .recharge-pillars span {
    margin-bottom: 0;
  }
}

/* Shared hero rail
 * Every primary page opening uses the same 1,440px canvas as the header:
 * 880px copy / 40px gap / 520px media. The viewport-based gutter is
 * intentional so nested grid columns cannot resolve it against themselves.
 */
@media (min-width: 901px) {
  .route-steadfast .hero-content {
    width: min(var(--hero-copy-measure), calc(100vw - (2 * var(--gutter))));
    margin-top: var(--hero-copy-top);
    margin-left: var(--gutter);
  }

  .route-steadfast :is(
    .hero-content,
    .for-men-hero-copy,
    .method-cover-copy,
    .about-hero-copy,
    .content-hero-copy,
    .article-hero-copy,
    .booking-intro,
    .utility-panel
  ) > :is(.eyebrow, .section-label, .t-eyebrow) {
    margin: 0 0 var(--space-eyebrow-heading) !important;
  }

  .route-steadfast .hero-content h1,
  .route-for-men .for-men-hero-copy h1,
  .route-how-it-works .method-cover h1,
  .route-about .about-hero-copy h1,
  .route-content .content-hero-copy h1,
  .route-proof .content-hero-copy h1,
  .route-scenario .content-hero-copy h1,
  .route-article .article-hero-copy h1,
  .route-book .booking-intro h1,
  .route-utility .utility-panel h1 {
    width: 100%;
    max-width: var(--hero-copy-measure);
    font-size: var(--hero-title-size) !important;
    line-height: 1.02 !important;
  }

  .route-for-men .for-men-hero,
  .route-how-it-works .method-cover {
    align-items: start;
    padding-top: calc(var(--hero-copy-top-after-breadcrumb) + 4px);
  }

  .route-for-men .for-men-hero-copy {
    align-self: start;
  }

  .route-for-men .for-men-hero,
  .route-how-it-works .method-cover,
  .route-book .booking-hero {
    grid-template-columns: minmax(0, var(--hero-copy-measure)) minmax(360px, var(--hero-media-measure));
    gap: var(--hero-grid-gap);
  }

  .route-how-it-works .method-cover-copy {
    width: 100%;
    max-width: var(--hero-copy-measure);
  }

  .route-about .about-hero {
    grid-template-columns: minmax(0, var(--hero-copy-measure)) minmax(400px, var(--hero-media-measure));
    gap: var(--hero-grid-gap);
  }

  .route-about .about-hero-copy {
    align-self: start;
    padding-top: var(--hero-copy-top);
    padding-right: 0;
  }

  .route-about .about-hero-copy:not(:has(> :is(.eyebrow, .section-label, .t-eyebrow))) {
    padding-top: calc(var(--hero-copy-top) + 40px);
  }

  .route-content .content-hero,
  .route-proof .content-hero,
  .route-scenario .content-hero,
  .route-article .article-hero {
    grid-template-columns: minmax(0, var(--hero-copy-measure)) minmax(360px, var(--hero-media-measure));
    gap: var(--hero-grid-gap);
    padding-inline: var(--gutter);
  }

  .route-content .content-hero-copy,
  .route-proof .content-hero-copy,
  .route-scenario .content-hero-copy,
  .route-article .article-hero-copy {
    justify-content: flex-start;
    max-width: var(--hero-copy-measure);
    padding-top: var(--hero-copy-top-after-breadcrumb);
    padding-right: 0;
    padding-left: 0;
  }

  :is(
    .route-content .content-hero-copy,
    .route-proof .content-hero-copy,
    .route-scenario .content-hero-copy,
    .route-article .article-hero-copy
  ):not(:has(> :is(.eyebrow, .section-label, .t-eyebrow))) {
    padding-top: calc(var(--hero-copy-top-after-breadcrumb) + 40px);
  }

  .route-content .content-hero-image,
  .route-proof .content-hero-image,
  .route-scenario .content-hero-image,
  .route-article .article-hero-image {
    width: 100%;
    max-width: var(--hero-media-measure);
    margin-right: 0;
    margin-left: 0;
  }

  .route-utility .utility-panel {
    width: 100%;
    max-width: var(--hero-copy-measure);
    margin-right: auto;
    margin-left: 0;
  }

  .route-utility .utility-section {
    padding-top: var(--hero-copy-top-after-breadcrumb);
  }

  .route-utility:not(:has(> .content-breadcrumb)) .utility-section {
    padding-top: calc(var(--hero-copy-top) + 40px);
  }

  .route-utility:has(> .content-breadcrumb) .utility-section {
    padding-top: calc(var(--hero-copy-top-after-breadcrumb) + 40px);
  }

  .route-book .booking-hero {
    padding-top: var(--hero-copy-top);
  }

  .route-book .booking-intro {
    top: 0;
    padding-top: 0;
  }

  .route-book .booking-intro:not(:has(> :is(.eyebrow, .section-label, .t-eyebrow))) {
    padding-top: 40px;
  }
}

@media (max-width: 900px) {
  .route-steadfast :is(
    .hero-content,
    .for-men-hero-copy,
    .method-cover-copy,
    .about-hero-copy,
    .content-hero-copy,
    .article-hero-copy,
    .booking-intro,
    .utility-panel,
    .content-section-heading
  ):not(:has(> :is(.eyebrow, .section-label, .t-eyebrow))) > h1 {
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .identity-shift-row,
  .identity-shift-row *,
  .identity-shift-footer * {
    transition-duration: 0.01ms !important;
  }

  .video-proof-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .video-proof-track {
    animation: none;
  }

  .video-proof-group[aria-hidden="true"] {
    display: none;
  }

  .hero-authority-ticker {
    overflow-x: auto;
  }

  .hero-authority-track {
    animation: none;
    transform: none;
  }

  .hero-authority-group[aria-hidden="true"] {
    display: none;
  }

  .journey-list {
    --journey-progress: 1 !important;
  }

  .js .journey-list > li .journey-card,
  .js .journey-list > li .journey-node {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
