@font-face {
  font-family: "LS Display";
  src:
    url("assets/fonts/ls-k-400") format("woff2"),
    url("assets/fonts/ls-k-400-fb") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LS Body";
  src: url("assets/fonts/ls-s-300") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LS UI";
  src: url("assets/fonts/ls-s-400") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cherry: #5b0f1a;
  --cherry-deep: #170407;
  --cherry-ink: #0d0305;
  --cherry-black: #0b0204;
  --off-white: #f7f5f2;
  --muted-white: rgba(247, 245, 242, 0.72);
  --footer-text: rgba(247, 245, 242, 0.58);
  --teal: #0e686d;
  --teal-bright: #20c7c9;
  --line: rgba(247, 245, 242, 0.14);
  --line-teal-soft: rgba(32, 199, 201, 0.22);
  --line-teal-surface: rgba(32, 199, 201, 0.24);
  --line-teal-control: rgba(32, 199, 201, 0.42);
  --line-text-link: rgba(32, 199, 201, 0.5);
  --surface-control-hover: rgba(247, 245, 242, 0.08);
  --surface-header-scrolled: rgba(13, 3, 5, 0.76);
  --surface-header-submenu: rgba(13, 3, 5, 0.92);
  --surface-button-quiet: rgba(13, 3, 5, 0.2);
  --surface-button-quiet-hover: rgba(32, 199, 201, 0.1);
  --soft-marker-base: rgba(247, 245, 242, 0.2);
  --motion-quick: 180ms ease;
  --motion-state: 220ms ease;
  --motion-reveal: 640ms ease;
  --motion-marker-pulse: 1.8s ease-in-out;
  --motion-reduced: 0.01ms;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --shadow-full-logo: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.34));
  --shadow-button-teal: 0 14px 34px rgba(14, 104, 109, 0.28);
  --shadow-floating-whatsapp: 0 16px 36px rgba(0, 0, 0, 0.32);
  --font-display: "LS Display", Georgia, "Times New Roman", serif;
  --font-body: "LS Body", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-ui: "LS UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --anchor-offset: 4.5rem;
  --material-color:
    linear-gradient(180deg,
      rgba(13, 3, 5, 0.95) 0%,
      rgba(23, 4, 7, 0.96) 50%,
      rgba(13, 3, 5, 0.98) 100%
    ),
    radial-gradient(circle at 45% 48%, rgba(91, 15, 26, 0.18), transparent 34rem),
    radial-gradient(circle at 90% 20%, rgba(14, 104, 109, 0.22), transparent 30rem);
  --site-material-image-asset: url("assets/cherry-satin-bg.jpg") center / cover;
  --site-material-image-overlay-depth: linear-gradient(180deg, rgba(13, 3, 5, 0.18), rgba(13, 3, 5, 0.72));
  --site-material-image-overlay-lateral: linear-gradient(90deg, rgba(13, 3, 5, 0.58), rgba(13, 3, 5, 0.05), rgba(13, 3, 5, 0.7));
  --site-material-image:
    var(--site-material-image-overlay-depth),
    var(--site-material-image-overlay-lateral),
    var(--site-material-image-asset);
  --site-material-image-fade: linear-gradient(180deg, transparent, var(--cherry-ink));
  --site-material-image-fade-height: 28%;
  --site-base-material:
    radial-gradient(circle at 15% 20%, rgba(91, 15, 26, 0.68), transparent 34rem),
    linear-gradient(180deg, var(--cherry-ink), var(--cherry-deep) 46%, var(--cherry-black));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--off-white);
  background: var(--site-base-material);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.material-field--color {
  background: var(--material-color);
}

.material-field--image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--site-material-image);
}

.material-field--color > .section,
.material-field--image > .section {
  background: transparent;
}

.material-field--image > .section {
  position: relative;
  z-index: 1;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-150%);
  border: 1px solid var(--teal-bright);
  border-radius: var(--radius);
  background: var(--cherry-ink);
  color: var(--off-white);
  padding: 0.7rem 1rem;
  text-decoration: none;
  transition: transform var(--motion-quick);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 4.5rem;
  padding: 1rem clamp(0.75rem, 4vw, 3.5rem);
  color: var(--off-white);
  transition:
    background var(--motion-state),
    border-color var(--motion-state),
    min-height var(--motion-state);
}

.site-header.is-scrolled {
  min-height: 3.8rem;
  border-bottom: 1px solid var(--line);
  background: var(--surface-header-scrolled);
  backdrop-filter: blur(16px);
}

.brand-link,
.site-nav {
  display: flex;
  align-items: center;
}

.brand-link {
  flex: 0 0 auto;
  width: clamp(3rem, 5vw, 3.45rem);
  min-height: 2.35rem;
  color: var(--off-white);
  text-decoration: none;
}

.brand-link__logo {
  width: 100%;
  max-height: 2.06rem;
  height: auto;
}

.site-nav {
  gap: 0.2rem;
}

.site-nav__menu {
  position: relative;
}

.site-nav > a,
.site-nav__toggle,
.site-nav__submenu a {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted-white);
  font-family: var(--font-ui);
  font-weight: 400;
  text-decoration: none;
  transition:
    color var(--motion-quick),
    background var(--motion-quick);
}

.site-nav > a,
.site-nav__toggle {
  justify-content: center;
  min-width: 4.95rem;
  height: 2.55rem;
  min-height: 2.55rem;
  padding: 0.65rem 0.55rem;
  font-size: 0.78rem;
}

@media (max-width: 41.99rem) {
  .site-header {
    padding-inline: clamp(0.65rem, 2.8vw, 0.9rem);
  }

  .brand-link {
    width: clamp(2.7rem, 11vw, 3.1rem);
    min-height: 2.25rem;
  }

  .brand-link__logo {
    max-height: 1.85rem;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(0.08rem, 0.8vw, 0.18rem);
    min-width: 0;
  }

  .site-nav > a,
  .site-nav__toggle {
    min-width: auto;
    padding-inline: clamp(0.36rem, 1.9vw, 0.62rem);
    font-size: clamp(0.72rem, 2.8vw, 0.82rem);
  }

}

.site-nav__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: inherit;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  background: var(--surface-control-hover);
  color: var(--off-white);
  outline: none;
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  z-index: 40;
  display: grid;
  gap: 0.2rem;
  width: max-content;
  min-width: min(18rem, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  padding: 0.45rem;
  border: 1px solid var(--line-teal-surface);
  border-radius: var(--radius);
  background: var(--surface-header-submenu);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition:
    opacity var(--motion-quick),
    transform var(--motion-quick);
  backdrop-filter: blur(16px);
}

.site-nav__submenu a {
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  padding: 0.72rem 0.8rem;
  font-size: 0.88rem;
  line-height: 1.3;
  white-space: normal;
}

.site-nav__menu.is-open .site-nav__toggle {
  background: var(--surface-control-hover);
  color: var(--off-white);
}

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

.page {
  --page-section-entry-space: 2.4rem;
  --page-section-exit-space: 1.4rem;
  --reveal-threshold: 0.18;
  --reveal-root-margin: 0px 0px 0px 0px;
}


.section {
  padding: 0 1.25rem;
}

.content-frame {
  width: min(100%, var(--content-frame-width, 100%));
  margin-inline: auto;
}

.opening {
  --content-frame-width: 45rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 84svh;
  overflow: hidden;
  isolation: isolate;
}

.page-has-opening {
  --page-opening-space: 3.9rem;
}

.page-home {
  --page-opening-before-content-space: minmax(0, 1fr);
  --page-opening-content-action-space: minmax(2.4rem, 1fr);
  --page-opening-action-transition-space: minmax(2.4rem, 1fr);
}

.page-has-opening .opening {
  padding-top: var(--page-opening-space);
  padding-bottom: 0;
}


.material-fade {
  pointer-events: none;
}

.material-field--image > .material-fade {
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: var(--site-material-image-fade-height);
  background: var(--site-material-image-fade);
}

.opening .content-frame {
  margin-block: auto;
  text-align: center;
}

.page-home .opening .content-frame {
  display: grid;
  flex: 1;
  grid-template-rows:
    var(--page-opening-before-content-space)
    auto
    var(--page-opening-content-action-space)
    auto
    var(--page-opening-action-transition-space)
    auto;
  align-items: center;
  margin-block: 0;
  text-align: center;
}

.page-home .opening .content-group {
  grid-row: 2;
}

.full-logo {
  display: block;
  width: min(46vw, 8.75rem);
  height: auto;
  filter: var(--shadow-full-logo);
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.opening .full-logo {
  margin: 0 auto 1.35rem;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
p {
  overflow-wrap: anywhere;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h1,
.h1 {
  max-width: 12ch;
  margin-inline: auto;
  font-size: 2.35rem;
}

h2,
.h2 {
  font-size: 2.15rem;
}

h3,
.h3 {
  color: var(--off-white);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
}

p {
  margin: 0;
  color: var(--muted-white);
}

.b3 {
  max-width: 34rem;
  margin: 1rem auto 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
}

.control-layout {
  display: grid;
  gap: 0.75rem;
  width: min(100%, 26rem);
}

.control-layout .button {
  width: 100%;
}

.content-frame:not(.control-layout) > .button {
  margin: 1.4rem auto 0;
}

.page-home .opening .content-frame > .button {
  grid-row: 4;
  margin: 0 auto;
}

.page-home .opening .content-frame > .transition {
  grid-row: 6;
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    transform var(--motion-quick),
    border-color var(--motion-quick),
    background var(--motion-quick),
    color var(--motion-quick);
}

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

.button--teal {
  width: min(100%, 30rem);
  background: var(--teal);
  color: var(--off-white);
  box-shadow: var(--shadow-button-teal);
}

.button--teal:hover,
.button--teal:focus-visible {
  background: var(--teal-bright);
  color: var(--cherry-ink);
}

.button--ghost {
  width: min(100%, 14.625rem);
  border-color: var(--line);
  background: var(--surface-button-quiet);
  color: var(--off-white);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--teal-bright);
  background: var(--surface-button-quiet-hover);
}

.transition {
  --transition-top-space: 1.75rem;
  --transition-line-space: 1.4rem;
  width: 100%;
  margin: var(--transition-top-space) 0 0;
}


.transition-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 2.75rem;
  color: var(--muted-white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.76rem;
  text-decoration: none;
  text-transform: uppercase;
}

.transition-marker {
  position: relative;
  width: 1px;
  height: 2.1rem;
  overflow: hidden;
  background: var(--soft-marker-base);
}

.transition-marker::after {
  position: absolute;
  inset: -60% 0 auto;
  height: 55%;
  background: var(--teal-bright);
  content: "";
  animation: scrollPulse var(--motion-marker-pulse) infinite;
}

.transition > .transition-link {
  margin: 0 auto;
}

.transition-link:hover,
.transition-link:focus-visible {
  color: var(--off-white);
  outline: none;
}

.teal-line {
  display: block;
  position: relative;
  flex: none;
}

.teal-line--horizontal {
  width: 100%;
  height: 1px;
}

.transition > .teal-line--horizontal {
  margin: var(--transition-line-space) 0 0;
}


.teal-line--horizontal::before {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--line-teal-soft);
  content: "";
}

.teal-line--vertical {
  display: none;
  width: 1px;
  background: var(--line-teal-soft);
}


.reading-section {
  --content-frame-width: 42rem;
}

.reading-section .content-frame {
  display: grid;
  gap: 1rem;
}

.gateway {
  --content-frame-width: 58rem;
}

.gateway .content-frame {
  text-align: center;
}

.gateway .content-frame > .h2 {
  max-width: 48rem;
  margin: 0 auto 2.35rem;
  text-wrap: balance;
}

.gateway .content-frame > .gateway-option + .gateway-option {
  margin-top: 2.6rem;
}

.gateway .content-frame > .teal-line--horizontal {
  display: none;
}

.gateway-option {
  display: grid;
  align-content: start;
  gap: 1.05rem;
}

.text-link {
  color: inherit;
  font: inherit;
  overflow-wrap: break-word;
  text-decoration-line: underline;
  text-decoration-color: var(--line-text-link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.1em;
  transition:
    text-decoration-color var(--motion-quick),
    color var(--motion-quick);
}

.text-link--standalone {
  border-bottom: 1px solid var(--line-text-link);
  color: var(--off-white);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--teal-bright);
  text-decoration-color: var(--teal-bright);
  outline: none;
}

.text-link--standalone:hover,
.text-link--standalone:focus-visible {
  border-color: var(--teal-bright);
}

.gateway-option .text-link--standalone {
  display: inline-block;
  justify-self: start;
  max-width: 100%;
}

.gateway-option .b1 {
  max-width: 27rem;
  line-height: 1.72;
}

.reading-section .h2 {
  color: var(--off-white);
  text-align: center;
}

.b1 {
  display: grid;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-weight: 300;
}

.cta {
  --content-frame-width: 42rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.routing {
  --content-frame-width: 56rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-home .gateway {
  --page-section-entry-space: 2.4rem;
  --reveal-threshold: 0;
  --reveal-root-margin: 0px 0px -22% 0px;
}

.page-about .reading-section,
.page-coaching .reading-section,
.page-jecm .reading-section {
  --page-section-entry-space: 2.8rem;
}

.page-about .reading-section:first-child,
.page-coaching .reading-section:first-child,
.page-jecm .reading-section:first-child,
.page-jecm .cta,
.page-home .reading-section,
.page-home .cta,
.page-contact .routing {
  --reveal-threshold: 0;
  --reveal-root-margin: 0px 0px -24% 0px;
}

.page-about .cta,
.page-coaching .cta {
  --reveal-threshold: 0;
  --reveal-root-margin: 0px 0px -18% 0px;
}

.page-about #presence-responsibility,
.page-about #professional-life,
.page-about #joy-values {
  --reveal-threshold: 0;
  --reveal-root-margin: 0px 0px -12% 0px;
}

.page .cta {
  --page-section-entry-space: 5.4rem;
}

.page-contact .routing {
  --page-section-entry-space: 4rem;
}

.material-field--color > .section > .content-frame:first-child {
  padding-top: var(--page-section-entry-space);
}

.material-field--color > .section:last-child > .content-frame:last-of-type {
  padding-bottom: var(--page-section-exit-space);
}

.b2 {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.55;
}

.routing .b1 {
  font-size: 1rem;
  line-height: 1.6;
}


.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid var(--line-teal-control);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: var(--shadow-floating-whatsapp);
  transition:
    transform var(--motion-quick),
    background var(--motion-quick);
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: var(--off-white);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  background: var(--teal-bright);
  outline: none;
}

.whatsapp-float:hover svg,
.whatsapp-float:focus-visible svg {
  fill: var(--cherry-ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  border-top: 1px solid var(--line);
  background: var(--cherry-ink);
  color: var(--footer-text);
  padding: 1.25rem;
  font-size: 0.82rem;
}

.site-footer__brand {
  flex: 0 0 auto;
  width: clamp(5.45rem, 11vw, 7.25rem);
  opacity: 0.68;
  transition: opacity var(--motion-quick);
}

.site-footer__brand:hover,
.site-footer__brand:focus-visible {
  opacity: 0.9;
  outline: none;
}

.site-footer__brand img {
  width: 100%;
  height: auto;
}

.site-footer__mark--compact {
  display: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-footer__link {
  font-size: 0.82rem;
}

.site-footer__copyright {
  margin: 0 0 0 auto;
}

@media (max-width: 41.99rem) {
  .transition--mobile {
    --transition-top-space: 1.2rem;
    --transition-line-space: 1.05rem;
  }

  .page-home .gateway,
  .page-home .cta,
  .page-about .cta,
  .page-coaching .cta,
  .page-jecm .cta,
  .page-contact .routing {
    --page-section-entry-space: 2.4rem;
  }

  .page-about .reading-section,
  .page-coaching .reading-section,
  .page-jecm .reading-section {
    --page-section-entry-space: 2.4rem;
  }

  .page-contact .routing .control-layout {
    --reveal-root-margin: 0px 0px -20% 0px;
  }

  .page-home .cta > .content-frame:first-child,
  .page-about .cta > .content-frame:first-child {
    text-align: center;
  }

  .page-home .gateway-option .text-link--standalone {
    justify-self: center;
    border-bottom: 0;
    text-align: center;
    text-decoration-line: underline;
    text-decoration-color: var(--line-text-link);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.1em;
  }

  .page-home .gateway .content-frame > .teal-line--horizontal {
    display: block;
    width: 70vw;
    max-width: 100%;
    margin: 1.3rem auto;
  }

  .page-home .gateway .content-frame > .teal-line--horizontal::before {
    width: 100%;
  }


  .control-layout--mobile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .control-layout--mobile-grid .button:last-child {
    grid-column: span 2;
  }

  .control-layout--mobile-grid.control-layout--split .button:last-child {
    grid-column: auto;
  }

  .site-footer__brand {
    width: clamp(2.7rem, 11vw, 3.1rem);
  }

  .site-footer__mark--wordmark {
    display: none;
  }

  .site-footer__mark--compact {
    display: block;
  }

  .site-footer__copyright {
    flex-basis: 100%;
    margin-left: 0;
  }
}

html.reveal-enabled [data-reveal] {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity var(--motion-reveal),
    transform var(--motion-reveal);
}

html.reveal-enabled [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes scrollPulse {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(320%);
  }
}

@media (min-width: 42rem) {
  .site-nav {
    gap: 0.35rem;
  }

  .site-nav > a,
  .site-nav__toggle {
    min-width: 5.35rem;
    height: 2.75rem;
    min-height: 2.75rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.88rem;
  }

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

  .control-layout .button:last-child {
    grid-column: span 2;
  }

  .control-layout.control-layout--split .button:last-child {
    grid-column: auto;
  }

  h1,
  .h1 {
    font-size: 3.25rem;
  }

  h2,
  .h2 {
    font-size: 2.75rem;
  }
}

@media (min-width: 56rem) {
  .site-header {
    padding-inline: 3.5rem;
  }

  .section {
    padding: 0 3.5rem;
  }

  .full-logo {
    width: 9.25rem;
  }

  h1,
  .h1 {
    font-size: 3.75rem;
  }

  .b3 {
    font-size: 1.08rem;
  }

  .gateway {
    --content-frame-width: 64rem;
  }

  .gateway .content-frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 6rem;
  }

  .gateway .content-frame > .h2 {
    grid-column: 1 / -1;
    margin-bottom: 2.85rem;
  }

  .gateway .content-frame > .gateway-option + .gateway-option {
    margin-top: 0;
  }

  .gateway .content-frame > .gateway-option {
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    justify-items: start;
    text-align: left;
  }

  .gateway-option:nth-of-type(2) {
    position: relative;
  }

  .gateway-option:nth-of-type(2) > .teal-line--vertical {
    display: block;
    position: absolute;
    top: 0.2rem;
    bottom: 0.2rem;
    left: -3rem;
  }

  .reading-section {
    --content-frame-width: 56rem;
  }


  .reading-section .b1 {
    font-size: 1.06rem;
    line-height: 1.78;
  }

  .routing .b1 {
    font-size: 1.06rem;
    line-height: 1.78;
  }

  .cta {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 26rem);
  }

  .page .cta {
    --page-section-entry-space: 8.4rem;
    --page-section-exit-space: 7rem;
  }

  .page-home .cta,
  .page-about .cta,
  .page-coaching .cta,
  .page-jecm .cta {
    --page-section-entry-space: 5rem;
    --page-section-exit-space: 5rem;
  }

  .routing {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 26rem);
  }

  .material-field--color > .section:has(> .content-frame + .content-frame) > .content-frame {
    padding-top: var(--page-section-entry-space);
  }

  .material-field--color > .section:last-child:has(> .content-frame + .content-frame) > .content-frame {
    padding-bottom: var(--page-section-exit-space);
  }

  .page-contact .routing {
    --page-section-entry-space: 7rem;
    --page-section-exit-space: 7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: var(--motion-reduced) !important;
    animation-iteration-count: 1 !important;
    transition-duration: var(--motion-reduced) !important;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
