:root {
    --blue: #264b5e;
    --blue-deep: #173747;
    --blue-soft: #dfe8eb;
    --paper: #f6f5f1;
    --white: #fff;
    --ink: #13242c;
    --muted: #5e6a70;
    --line: rgba(38, 75, 94, .18);
    --header-height: 92px;
    --page-pad: clamp(22px, 4.5vw, 76px);
    --section-space: clamp(80px, 10vw, 160px);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --shadow: 0 24px 70px rgba(19, 36, 44, .14);
}

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

html {
    scroll-behavior: smooth;
    background: var(--blue);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.1vw, 18px);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: var(--white);
    background: var(--blue);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--blue);
    background: var(--white);
    transform: translateY(-150%);
    transition: transform .2s;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-weight: 600;
    line-height: .96;
    letter-spacing: -.045em;
    text-wrap: balance;
}

p,
li {
    text-wrap: pretty;
}

h1 {
    font-size: clamp(50px, 8.4vw, 144px);
}

h2 {
    font-size: clamp(40px, 6vw, 92px);
}

.display-heading {
    max-width: 13ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lead {
    font-size: clamp(24px, 3.3vw, 48px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.03em;
}

.prose {
    max-width: 720px;
}

.prose p {
    margin-bottom: 1.2em;
}

.prose--large {
    font-size: clamp(19px, 2vw, 28px);
    line-height: 1.45;
}

.narrow {
    width: min(880px, 100%);
    margin: 0 auto;
    text-align: center;
}

.section-pad {
    padding: var(--section-space) var(--page-pad);
}

.section-pad--topless {
    padding-top: 0;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 16px 30px;
    overflow: hidden;
    border: 1px solid currentColor;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
    transition: color .45s var(--ease), background .45s var(--ease), transform .25s var(--ease);
}

.button::before {
    position: absolute;
    z-index: -1;
    inset: -2px;
    border-radius: inherit;
    content: "";
    background: currentColor;
    transform: translateY(105%);
    transition: transform .45s var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateY(0);
}

.button--light {
    z-index: 0;
    color: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
    color: var(--blue);
}

.button--light::before {
    background: var(--white);
}

.button--dark {
    z-index: 0;
    color: var(--blue);
}

.button--dark:hover,
.button--dark:focus-visible {
    color: var(--white);
}

.button--dark::before {
    background: var(--blue);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-link span {
    transition: transform .3s var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(7px);
}

.text-link--light {
    color: var(--white);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    transition: background .45s var(--ease), box-shadow .45s var(--ease), transform .45s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
    background: rgba(23, 55, 71, .96);
    box-shadow: 0 8px 38px rgba(4, 19, 27, .14);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.site-header.is-menu-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.site-header.is-scrolled .site-header__inner {
    padding-bottom: 3px;
}

.site-header__inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 var(--page-pad);
}

.site-logo {
    position: relative;
    z-index: 102;
    flex: 0 0 auto;
    transform: translateY(6px);
}

.site-logo img {
    width: clamp(112px, 11vw, 166px);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 34px);
    font-size: 13px;
    font-weight: 600;
}

.site-nav > a,
.nav-dropdown__toggle {
    position: relative;
    padding: 11px 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.site-nav > a::after,
.nav-dropdown__toggle::after {
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a[aria-current="page"]::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown__toggle > span {
    font-size: 18px;
    font-weight: 300;
    transition: transform .35s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown__toggle > span {
    transform: rotate(45deg);
}

.nav-dropdown__panel {
    position: absolute;
    top: calc(100% + 20px);
    right: -150px;
    width: min(620px, 90vw);
    padding: 32px;
    color: var(--white);
    background: var(--blue-deep);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease);
}

.nav-dropdown__panel::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 22px;
    content: "";
}

.nav-dropdown.is-open .nav-dropdown__panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown__all {
    display: inline-block;
    margin-bottom: 20px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav-dropdown__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px 22px;
}

.nav-dropdown__grid a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: opacity .25s, transform .25s var(--ease);
}

.nav-dropdown__grid a:hover,
.nav-dropdown__grid a:focus-visible {
    opacity: .65;
    transform: translateX(4px);
}

.site-nav__socials {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 6px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: .82;
    transition: opacity .25s, transform .25s var(--ease);
}

.social-link:hover,
.social-link:focus-visible {
    opacity: 1;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
    overflow: visible;
}

.social-link:first-child svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.social-link:last-child svg {
    fill: currentColor;
}

.mobile-nav-toggle {
    position: relative;
    z-index: 102;
    display: none;
    width: 46px;
    height: 46px;
    padding: 12px 8px;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.mobile-nav-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    margin: 6px 0;
    background: currentColor;
    transition: transform .35s var(--ease), opacity .25s;
}

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

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

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

.home-hero,
.inner-hero,
.photo-cta,
.not-found {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    color: var(--white);
    background: var(--blue-deep);
}

.home-hero__media,
.inner-hero__media,
.photo-cta__media {
    position: absolute;
    inset: -7%;
    background-image: var(--raze-bg-desktop, var(--hero-image));
    background-position: center;
    background-size: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
    will-change: transform;
}

.inner-hero__media {
    inset: -8%;
    background-image: var(--raze-bg-desktop, none);
}

.photo-cta__media {
    background-image: var(--raze-bg-desktop, var(--section-image));
}

.home-hero__veil,
.inner-hero__veil,
.photo-cta__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12, 37, 49, .84), rgba(38, 75, 94, .42) 56%, rgba(11, 30, 39, .3));
}

.home-hero__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - (2 * var(--page-pad))));
    padding: calc(var(--header-height) + 60px) 0 90px;
    text-align: center;
}

.home-hero h1 {
    max-width: none;
    margin: 0 auto 28px;
    font-size: clamp(50px, 5.45vw, 96px);
    line-height: .94;
}

.home-hero h1 span {
    display: block;
}

.home-hero h1 span:first-child {
    white-space: nowrap;
}

.home-hero__lead {
    max-width: 1080px;
    margin: 0 auto 18px;
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.55;
}

.home-hero__lead span {
    display: block;
    white-space: nowrap;
}

.home-hero__tagline {
    margin-bottom: 34px;
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 600;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 32px;
    left: 50%;
    display: grid;
    width: 38px;
    height: 60px;
    place-items: start center;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 100px;
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 4px;
    height: 4px;
    margin-top: 13px;
    border-radius: 50%;
    background: var(--white);
    animation: scroll-cue 2.2s infinite var(--ease);
}

@keyframes scroll-cue {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    75%, 100% { opacity: 0; transform: translateY(24px); }
}

.statement-section {
    color: var(--blue);
    background: var(--paper);
}

.statement-section .prose {
    margin: 38px auto 0;
    color: var(--muted);
}

.statement-section--home-intro .display-heading {
    max-width: none;
    white-space: nowrap;
}

.story-scroll-motif {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    margin-top: clamp(38px, 5vw, 68px);
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.story-scroll-motif i {
    position: relative;
    display: block;
    width: 1px;
    height: 58px;
    overflow: hidden;
    background: rgba(38, 75, 94, .22);
}

.story-scroll-motif i::after {
    position: absolute;
    top: -24px;
    left: 0;
    width: 1px;
    height: 24px;
    content: "";
    background: var(--blue);
    animation: story-scroll 2.3s infinite var(--ease);
}

@keyframes story-scroll {
    0% { transform: translateY(0); }
    65%, 100% { transform: translateY(82px); }
}

.split-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(42px, 6vw, 104px);
    min-height: 85vh;
    background: var(--white);
}

.split-section--image-left .split-section__media {
    order: 2;
}

.split-section--image-left .split-section__copy {
    order: 1;
}

.split-section__media {
    position: relative;
    height: min(72vh, 800px);
    min-height: 480px;
    overflow: hidden;
}

.split-section__media::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    border: 1px solid rgba(38, 75, 94, .08);
}

.split-section__media img,
[data-parallax-frame] > img {
    width: 100%;
    height: calc(100% + 90px);
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, -45px), 0) scale(1.02);
    will-change: transform;
}

.split-section__copy {
    max-width: 760px;
}

.split-section__copy h2 {
    max-width: 13ch;
    color: var(--blue);
}

.split-section__copy .text-link {
    margin-top: 24px;
    color: var(--blue);
}

.split-section--community {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 5vw, 80px);
    min-height: 72vh;
}

.split-section--community .split-section__media {
    height: min(64vh, 680px);
    min-height: 440px;
    border-radius: 28px;
}

.split-section--community .split-section__copy h2 {
    max-width: none;
    font-size: clamp(36px, 3vw, 50px);
    white-space: nowrap;
}

.photo-cta {
    min-height: 88vh;
}

.photo-cta__content {
    position: relative;
    z-index: 1;
    width: min(840px, calc(100% - (2 * var(--page-pad))));
    padding: 110px 0;
    text-align: center;
}

.photo-cta__content h2 {
    margin-bottom: 30px;
}

.photo-cta__content .prose {
    margin: 0 auto 35px;
    font-size: clamp(18px, 1.5vw, 23px);
}

.photo-cta--compact {
    min-height: min(68vh, 700px);
}

.photo-cta--compact .photo-cta__media {
    inset: -18%;
    background-attachment: fixed;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.14);
}

.photo-cta--compact .photo-cta__veil {
    background: linear-gradient(100deg, rgba(12, 37, 49, .88), rgba(38, 75, 94, .55) 58%, rgba(11, 30, 39, .38));
}

.photo-cta--compact .photo-cta__content {
    width: min(760px, calc(100% - (2 * var(--page-pad))));
    padding: 84px 0;
}

.photo-cta--compact .photo-cta__content h2 {
    font-size: clamp(46px, 6.2vw, 88px);
}

.photo-cta--compact .photo-cta__content .prose {
    max-width: 650px;
    font-size: clamp(16px, 1.25vw, 20px);
}

.style-section {
    overflow: hidden;
    color: var(--blue);
    background: var(--paper);
}

.style-section__intro {
    width: min(780px, 100%);
    margin: 0 auto clamp(60px, 8vw, 110px);
    text-align: center;
}

.style-section__intro .prose {
    margin: 0 auto;
    color: var(--muted);
}

.style-carousel {
    position: relative;
    margin-right: calc(-1 * var(--page-pad));
    margin-left: calc(-1 * var(--page-pad));
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
    overflow: hidden;
}

.style-carousel__track {
    display: flex;
    gap: clamp(14px, 2vw, 28px);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.style-carousel__track::-webkit-scrollbar {
    display: none;
}

.style-carousel__slide {
    position: relative;
    flex: 0 0 min(72vw, 880px);
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    scroll-snap-align: start;
    background: var(--blue);
}

.style-carousel__slide:nth-child(3n + 2) {
    flex-basis: min(46vw, 560px);
    aspect-ratio: 4 / 5;
}

.style-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease), filter .6s var(--ease);
}

.style-carousel__slide:hover img {
    filter: saturate(.9) contrast(1.04);
    transform: scale(1.035);
}

.style-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
}

.style-carousel__controls button {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 28px;
    flex: 0 0 32px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--blue);
    background: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: color .25s, transform .25s var(--ease);
}

.style-carousel__controls button::before {
    position: absolute;
    top: calc(50% - .5px);
    left: 4px;
    width: 24px;
    height: 1px;
    content: "";
    background: currentColor;
}

.style-carousel__controls button::after {
    position: absolute;
    top: calc(50% - 4px);
    left: 4px;
    width: 8px;
    height: 8px;
    content: "";
    border-bottom: 1px solid currentColor;
    border-left: 1px solid currentColor;
    transform: rotate(45deg);
}

.style-carousel__controls button:last-child::after {
    right: 4px;
    left: auto;
    border: 0;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
}

.style-carousel__controls button:hover,
.style-carousel__controls button:focus-visible {
    color: var(--ink);
    transform: translateX(-2px);
}

.style-carousel__controls button:last-child:hover,
.style-carousel__controls button:last-child:focus-visible {
    transform: translateX(2px);
}

.style-carousel__controls p {
    display: flex;
    min-width: 62px;
    height: 28px;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-align: center;
}

.membership-strip {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: clamp(38px, 6vw, 100px);
    min-height: 54vh;
    padding-top: clamp(68px, 8vw, 110px);
    padding-bottom: clamp(68px, 8vw, 110px);
    color: var(--white);
    background: var(--blue-deep);
}

.membership-strip__media {
    height: min(46vh, 480px);
    min-height: 330px;
    overflow: hidden;
    border-radius: 28px;
}

.membership-strip__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.membership-strip__media:hover img {
    transform: scale(1.035);
}

.membership-strip__copy {
    max-width: 780px;
}

.membership-strip__copy .eyebrow {
    max-width: none;
    font-size: 18px;
    line-height: 1.35;
    white-space: nowrap;
}

.membership-strip__copy h2 {
    max-width: 13ch;
    margin-bottom: 25px;
    font-size: clamp(43px, 5.2vw, 82px);
}

.membership-strip__copy .prose {
    max-width: 660px;
    color: rgba(255, 255, 255, .78);
}

.membership-strip__copy .button {
    margin-top: 24px;
}

.final-cta,
.schedule-note,
.contact-final {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--blue);
}

.final-cta {
    min-height: 75vh;
    display: grid;
    place-items: center;
}

.final-cta__orb {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(72vw, 920px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    box-shadow: 0 0 0 7vw rgba(255, 255, 255, .025), 0 0 0 14vw rgba(255, 255, 255, .018);
    transform: translate(-50%, -50%);
}

.final-cta .narrow,
.schedule-note .narrow,
.contact-final .narrow {
    position: relative;
    z-index: 1;
}

.final-cta h2,
.contact-final h2 {
    margin-bottom: 30px;
}

.final-cta .prose {
    margin: 0 auto 34px;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 20px;
    margin-bottom: clamp(44px, 6vw, 82px);
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.section-heading h2 {
    max-width: 12ch;
    margin-bottom: 0;
    color: var(--blue);
}

.section-heading .text-link {
    color: var(--blue);
}

.lesson-teaser {
    background: var(--white);
}

.lesson-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lesson-chip {
    position: relative;
    flex: 1 1 220px;
    min-height: 78px;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    color: var(--blue);
    font-size: clamp(17px, 1.6vw, 24px);
    font-weight: 600;
    letter-spacing: -.02em;
    transition: color .35s var(--ease), transform .35s var(--ease), border-color .35s;
}

.lesson-chip::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: var(--blue);
    transform: translateY(101%);
    transition: transform .4s var(--ease);
}

.lesson-chip:hover,
.lesson-chip:focus-visible {
    z-index: 0;
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-4px);
}

.lesson-chip:hover::before,
.lesson-chip:focus-visible::before {
    transform: translateY(0);
}

.inner-hero {
    min-height: min(68vh, 760px);
}

.inner-hero--lessons .inner-hero__veil {
    background: linear-gradient(105deg, rgba(7, 23, 31, .94), rgba(20, 54, 70, .76) 60%, rgba(7, 23, 31, .68));
}

.inner-hero--faq .inner-hero__veil {
    background: linear-gradient(105deg, rgba(7, 23, 31, .95), rgba(20, 54, 70, .8) 60%, rgba(7, 23, 31, .74));
}

.inner-hero--team .inner-hero__veil {
    background: linear-gradient(105deg, rgba(7, 23, 31, .95), rgba(20, 54, 70, .8) 60%, rgba(7, 23, 31, .74));
}

.inner-hero--contact {
    background: linear-gradient(135deg, #102d3b, var(--blue) 68%, #315f73);
}

.inner-hero--pricing {
    background: linear-gradient(135deg, #102d3b, var(--blue) 68%, #315f73);
}

.inner-hero--pricing .inner-hero__media,
.inner-hero--pricing .inner-hero__veil {
    display: none;
}

.inner-hero--pricing .inner-hero__content h1 {
    max-width: none;
    font-size: clamp(86px, 12vw, 190px);
}

.inner-hero--contact .inner-hero__content h1 {
    max-width: 14ch;
}

.inner-hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - (2 * var(--page-pad))));
    padding: calc(var(--header-height) + 80px) 0 100px;
    text-align: center;
}

.inner-hero__content h1 {
    max-width: 11ch;
    margin: 0 auto 28px;
}

.inner-hero__content > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    font-size: clamp(18px, 2vw, 27px);
}

.lessons-intro,
.pricing-intro {
    color: var(--blue);
    background: var(--paper);
}

.lessons-intro .prose,
.pricing-intro p:not(.lead) {
    margin-right: auto;
    margin-left: auto;
    color: var(--muted);
}

.lessons-intro .button {
    margin-top: 26px;
}

.lesson-grid-wrap {
    background: var(--paper);
}

.lesson-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 32px);
}

.lesson-card {
    position: relative;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 440px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 16px 45px rgba(25, 55, 70, .06);
}

.lesson-card__number {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.lesson-card__image {
    overflow: hidden;
}

.lesson-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
}

.lesson-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 4vw, 62px);
}

.lesson-card__body h2 {
    margin-bottom: 22px;
    color: var(--blue);
    font-size: clamp(31px, 3.2vw, 55px);
}

.lesson-card__body > p:not(.eyebrow) {
    color: var(--muted);
}

.lesson-card__times span {
    display: block;
}

.lesson-card__times span + span {
    margin-top: 7px;
}

.lesson-card__body .text-link {
    margin-top: auto;
    color: var(--blue);
}

.lesson-card:hover .lesson-card__image img,
.lesson-card:focus-visible .lesson-card__image img {
    filter: saturate(.8) contrast(1.05);
    transform: scale(1.055);
}

.schedule-note {
    text-align: center;
}

.schedule-note h2 {
    max-width: 22ch;
    margin-right: auto;
    margin-bottom: 32px;
    margin-left: auto;
    font-size: clamp(40px, 5vw, 72px);
}

.lesson-detail {
    background: var(--paper);
}

.lesson-detail__hero {
    display: grid;
    min-height: 100svh;
    grid-template-columns: 55% 45%;
    color: var(--white);
    background: var(--blue);
}

.lesson-detail__photo {
    position: relative;
    min-height: 640px;
    overflow: hidden;
}

.lesson-detail__photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, transparent 65%, rgba(38, 75, 94, .25));
}

.lesson-detail__headline {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-height) + 50px) var(--page-pad) 80px clamp(40px, 6vw, 110px);
}

.lesson-detail__headline h1 {
    font-size: clamp(52px, 7.2vw, 120px);
}

.lesson-detail__headline .lead {
    max-width: 620px;
    font-size: clamp(20px, 2.5vw, 35px);
}

.lesson-detail__content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: clamp(50px, 10vw, 150px);
}

.lesson-detail__story h2 {
    max-width: 18ch;
    color: var(--blue);
    font-size: clamp(34px, 4.2vw, 64px);
}

.lesson-detail__story .prose {
    color: var(--muted);
}

.lesson-schedule {
    align-self: start;
    padding: clamp(30px, 4.5vw, 65px);
    overflow: hidden;
    border-radius: 26px;
    color: var(--white);
    background: var(--blue);
    box-shadow: var(--shadow);
}

.lesson-schedule__photo {
    aspect-ratio: 16 / 10;
    margin: calc(-1 * clamp(30px, 4.5vw, 65px)) calc(-1 * clamp(30px, 4.5vw, 65px)) clamp(28px, 4vw, 44px);
    overflow: hidden;
}

.lesson-schedule__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lesson-schedule h2 {
    font-size: clamp(32px, 3.5vw, 52px);
}

.lesson-schedule ul {
    margin: 35px 0;
    padding: 0;
    list-style: none;
}

.lesson-schedule li {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    font-weight: 600;
}

.lesson-schedule li + li {
    margin-top: 6px;
}

.lesson-schedule li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.lesson-schedule > p:not(.eyebrow) {
    font-size: 14px;
    opacity: .72;
}

.lesson-schedule .button {
    margin-top: 20px;
}

.lesson-reassurance {
    color: var(--blue);
    background: var(--white);
}

.lesson-reassurance h2 {
    max-width: none;
    margin-bottom: 34px;
    font-size: clamp(38px, 4.7vw, 68px);
    white-space: nowrap;
}

.lesson-reassurance p:last-child {
    max-width: 670px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 27px);
}

.lesson-next {
    background: var(--paper);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 28px);
    background: var(--paper);
}

.price-card {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    padding: clamp(24px, 2.8vw, 42px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}

.price-card h2 {
    margin-bottom: 24px;
    color: var(--blue);
    font-size: clamp(27px, 2.2vw, 36px);
}

.price-card > p:not(.eyebrow) {
    max-width: 38ch;
    color: var(--muted);
}

.price-card__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: clamp(21px, 1.9vw, 30px);
    font-weight: 700;
    letter-spacing: -.03em;
}

.price-card__price::after {
    content: "↗";
    font-size: 18px;
}

.price-card--featured {
    color: var(--white);
    background: var(--blue);
}

.price-card--featured h2,
.price-card--featured .price-card__price,
.price-card--featured > p:not(.eyebrow) {
    color: var(--white);
}

.price-card--featured .price-card__price {
    border-color: rgba(255, 255, 255, .25);
}

.price-card:hover {
    transform: none;
    box-shadow: none;
}

.price-card--price-09 h2 {
    font-size: clamp(23px, 1.75vw, 29px);
    white-space: nowrap;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 34px);
    background: var(--paper);
}

.contact-card {
    min-height: 410px;
    padding: clamp(30px, 5vw, 76px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    box-shadow: 0 16px 45px rgba(25, 55, 70, .06);
}

.contact-card:has(img),
.contact-card--has-image {
    padding: 0 0 clamp(30px, 5vw, 76px);
}

.contact-card img {
    width: 100%;
    height: min(55vh, 520px);
    margin-bottom: clamp(30px, 5vw, 64px);
    object-fit: cover;
}

.contact-card:has(img) > :not(img),
.contact-card--has-image > :not(img) {
    margin-right: clamp(30px, 5vw, 76px);
    margin-left: clamp(30px, 5vw, 76px);
}

.contact-card h2 {
    max-width: 13ch;
    color: var(--blue);
    font-size: clamp(35px, 4.6vw, 70px);
}

.contact-card--contact-address h2 {
    max-width: 18ch;
    font-size: clamp(30px, 3.2vw, 50px);
}

.contact-card .prose {
    color: var(--muted);
}

.contact-card .text-link {
    margin-top: 20px;
    color: var(--blue);
}

.contact-route {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
    padding: clamp(30px, 4vw, 58px) 0;
}

.contact-route__map {
    aspect-ratio: 4 / 5;
    min-height: 0;
    overflow: hidden;
    border-radius: 24px;
    background: var(--white);
}

.contact-route__map img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.contact-route__copy {
    max-width: 620px;
}

.contact-route__copy h2 {
    max-width: 18ch;
    color: var(--blue);
    font-size: clamp(30px, 3.3vw, 50px);
}

.contact-route__copy .prose {
    color: var(--muted);
}

.contact-final h2 {
    margin-bottom: 18px;
}

.contact-final .narrow > p:not(.eyebrow) {
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, .75);
    font-size: clamp(18px, 2vw, 27px);
}

.faq-wrap {
    min-height: 60vh;
    background: var(--paper);
}

.faq-list {
    width: min(1020px, 100%);
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
    padding: 0 clamp(20px, 3vw, 38px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px 0;
    color: var(--blue);
    font-size: clamp(21px, 2.4vw, 34px);
    font-weight: 600;
    letter-spacing: -.025em;
    list-style: none;
    cursor: pointer;
}

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

.faq-item summary span {
    flex: 0 0 auto;
    font-size: 34px;
    font-weight: 300;
    transition: transform .35s var(--ease);
}

.faq-item[open] summary span {
    transform: rotate(45deg);
}

.faq-item > p {
    max-width: 760px;
    padding: 0 0 32px;
    color: var(--muted);
}

.team-page {
    display: grid;
    gap: clamp(44px, 7vw, 100px);
    color: var(--blue);
    background: var(--paper);
}

.team-page__intro {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(30px, 7vw, 110px);
}

.team-page__intro .lead {
    margin: 0;
    color: var(--blue);
    font-size: clamp(30px, 4vw, 58px);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1.02;
}

.team-page__portrait {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(0, 2fr);
    align-items: stretch;
    gap: clamp(24px, 4vw, 64px);
}

.team-page__motif {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: clamp(10px, 2vw, 28px) 0;
    color: var(--blue);
    text-align: right;
}

.team-page__motif p {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    margin: 0;
}

.team-page__motif strong {
    color: rgba(38, 75, 94, .13);
    font-size: clamp(76px, 9vw, 150px);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .72;
}

.team-page__motif p span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.55;
}

.team-page__motif-line {
    flex: 1 1 auto;
    width: 1px;
    min-height: 100px;
    margin-top: 28px;
    margin-right: 2px;
    background: linear-gradient(to bottom, rgba(38, 75, 94, .42), rgba(38, 75, 94, 0));
}

.team-page__photo {
    width: 100%;
    height: clamp(360px, 48vw, 654px);
    margin: 0 0 0 auto;
    overflow: hidden;
    border-radius: clamp(24px, 3vw, 48px);
    background: var(--blue-deep);
}

.team-page__photo img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center 42%;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 28px);
}

.team-card {
    position: relative;
    min-height: 320px;
    padding: clamp(28px, 4vw, 58px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    transition: color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease);
}

.team-card:hover {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-6px);
}

.team-card__number {
    position: absolute;
    top: 26px;
    right: 30px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
}

.team-card h2 {
    max-width: 12ch;
    margin: 42px 0 20px;
    color: currentColor;
    font-size: clamp(42px, 5vw, 72px);
}

.team-card h2 small {
    display: inline-block;
    margin-left: .42em;
    color: var(--muted);
    font-size: .28em;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    white-space: nowrap;
}

.team-card > p:last-child {
    max-width: 42ch;
    color: var(--muted);
    font-size: clamp(17px, 1.5vw, 21px);
}

.team-card:hover .eyebrow,
.team-card:hover .team-card__number,
.team-card:hover h2 small,
.team-card:hover > p:last-child {
    color: rgba(255, 255, 255, .76);
}

.standard-page {
    background: var(--paper);
}

.not-found {
    text-align: center;
    background: radial-gradient(circle at 72% 28%, #3d6980, var(--blue) 48%, var(--blue-deep));
}

.auth-page {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    padding: calc(var(--header-height) + 60px) var(--page-pad) 80px;
    color: var(--white);
    background: var(--blue-deep);
}

.auth-page__media {
    position: absolute;
    inset: -7%;
    background-image: var(--raze-bg-desktop, var(--hero-image));
    background-position: center;
    background-size: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.06);
}

.auth-page__veil {
    position: absolute;
    inset: 0;
    background: rgba(14, 43, 56, .84);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.auth-card {
    position: relative;
    z-index: 1;
    width: min(510px, 100%);
    padding: clamp(34px, 5vw, 64px);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(23, 55, 71, .88);
    box-shadow: var(--shadow);
}

.auth-card__logo {
    display: inline-block;
    margin-bottom: 42px;
}

.auth-card__logo img {
    width: 150px;
    height: auto;
}

.auth-card h1 {
    margin-bottom: 18px;
    font-size: clamp(44px, 6vw, 72px);
}

.auth-card > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .7);
}

.auth-form {
    display: grid;
    gap: 22px;
    margin-top: 36px;
}

.auth-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auth-field input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 0;
    outline: 0;
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    transition: border-color .25s, background .25s;
}

.auth-field input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, .1);
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.auth-check input {
    width: 17px;
    height: 17px;
    accent-color: var(--white);
}

.auth-alert {
    margin-top: 24px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .35);
    font-size: 14px;
}

.auth-alert--success {
    border-color: #87d5a6;
}

.auth-alert--error {
    border-color: #ff9393;
}

.auth-card__back {
    display: inline-block;
    margin-top: 34px;
    font-size: 13px;
    opacity: .68;
    transition: opacity .25s;
}

.auth-card__back:hover {
    opacity: 1;
}

.not-found__content {
    width: min(760px, calc(100% - (2 * var(--page-pad))));
    padding: calc(var(--header-height) + 80px) 0 100px;
}

.not-found h1 {
    margin-bottom: 28px;
}

.not-found__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 38px;
}

.footer-quotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    color: var(--blue);
    background: var(--paper);
}

.footer-quote {
    min-height: 330px;
    margin: 0;
    padding: clamp(34px, 5vw, 74px);
    border-right: 1px solid var(--line);
}

.footer-quote:last-child {
    border-right: 0;
}

.footer-quote p {
    font-size: clamp(21px, 2.5vw, 37px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.footer-quote footer {
    margin-top: 38px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-quote footer span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-weight: 500;
}

.site-footer {
    color: var(--white);
    background: var(--blue-deep);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: clamp(40px, 8vw, 120px);
    padding: clamp(58px, 7vw, 96px) var(--page-pad);
}

.site-footer__brand img {
    width: clamp(145px, 17vw, 245px);
    height: auto;
}

.site-footer__brand p {
    max-width: 460px;
    margin-top: 32px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(18px, 1.7vw, 25px);
}

.site-footer__nav,
.site-footer__contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.site-footer__nav a,
.site-footer__contact a {
    padding-bottom: 3px;
    border-bottom: 1px solid transparent;
    transition: border-color .25s, opacity .25s;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
    border-color: currentColor;
    opacity: .72;
}

.site-footer__contact p {
    max-width: 260px;
    color: rgba(255, 255, 255, .65);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 18px var(--page-pad);
    border-top: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .78);
    background: var(--blue-deep);
    font-size: 12px;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__bottom p a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .5);
    transition: border-color .25s, opacity .25s;
}

.site-footer__bottom p a:hover,
.site-footer__bottom p a:focus-visible {
    border-color: transparent;
    opacity: .72;
}

.site-footer__socials {
    display: flex;
    gap: 24px;
}

.site-footer__bottom a:hover {
    color: var(--white);
}

html.js-ready .reveal {
    --reveal-delay: 0ms;
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity .85s var(--ease) var(--reveal-delay),
        transform .85s var(--ease) var(--reveal-delay),
        filter .85s var(--ease) var(--reveal-delay),
        clip-path 1s var(--ease) var(--reveal-delay),
        color .35s var(--ease),
        background-color .35s var(--ease),
        border-color .35s var(--ease),
        box-shadow .35s var(--ease);
}

html.js-ready .reveal--card {
    filter: saturate(.82);
    transform: translateY(54px) scale(.97);
}

html.js-ready .reveal--media {
    clip-path: inset(7% 0 7% 0 round 26px);
    filter: saturate(.82);
    transform: translateY(46px) scale(.985);
}

html.js-ready .reveal--copy {
    transform: translateY(48px);
}

html.js-ready .reveal.is-visible {
    clip-path: inset(0 round 0);
    filter: none;
    opacity: 1;
    transform: translateY(0);
}

.lesson-grid .reveal:nth-child(even),
.lesson-chip-row .reveal:nth-child(even) {
    --reveal-delay: 90ms;
}

@media (hover: hover) and (pointer: fine) {
    .magnetic {
        transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
    }

    html.js-ready .price-card.reveal.is-visible:hover {
        border-color: rgba(38, 75, 94, .36);
        background: var(--blue-soft);
        box-shadow: 0 22px 55px rgba(25, 55, 70, .12);
        transform: translateY(-6px);
    }

    html.js-ready .price-card--featured.reveal.is-visible:hover {
        border-color: var(--blue-deep);
        background: var(--blue-deep);
    }

    html.js-ready .lesson-card.reveal.is-visible:hover,
    html.js-ready .contact-card.reveal.is-visible:hover,
    html.js-ready .contact-route.reveal.is-visible:hover,
    html.js-ready .lesson-schedule.reveal.is-visible:hover {
        border-color: rgba(38, 75, 94, .34);
        box-shadow: 0 24px 62px rgba(25, 55, 70, .13);
        transform: translateY(-5px);
    }

    html.js-ready .faq-item.reveal.is-visible:hover,
    html.js-ready .footer-quote.reveal.is-visible:hover {
        border-color: rgba(38, 75, 94, .3);
        background: var(--white);
        transform: translateY(-3px);
    }

    html.js-ready .lesson-chip.reveal.is-visible:hover {
        transform: translateY(-4px);
    }

    .split-section__media:hover,
    .membership-strip__media:hover {
        box-shadow: 0 24px 64px rgba(25, 55, 70, .14);
    }
}

@media (min-width: 1921px) {
    :root {
        --page-pad: 13vw;
    }

    .footer-quotes {
        padding-right: var(--page-pad);
        padding-left: var(--page-pad);
    }

    .style-carousel {
        padding-right: 0;
        padding-left: 0;
    }

    .style-carousel__controls {
        margin-right: var(--page-pad);
        margin-left: var(--page-pad);
    }
}

@media (max-width: 1180px) {
    :root {
        --header-height: 80px;
    }

    body.raze-page[class*="raze-page-lekce"] .site-header {
        background: rgba(23, 55, 71, .92);
        box-shadow: 0 8px 30px rgba(4, 19, 27, .16);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .mobile-nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: flex;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 5px;
        padding: calc(var(--header-height) + 55px) var(--page-pad) 60px;
        color: var(--white);
        background: var(--blue-deep);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-25px);
        transition: opacity .35s var(--ease), visibility .35s, transform .35s var(--ease);
    }

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

    .site-nav > a,
    .nav-dropdown__toggle {
        font-size: clamp(26px, 4vw, 46px);
        font-weight: 500;
        letter-spacing: -.035em;
    }

    .site-nav > a::after,
    .nav-dropdown__toggle::after {
        bottom: 4px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown__panel {
        position: static;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height .55s var(--ease), padding .4s var(--ease);
    }

    .nav-dropdown.is-open .nav-dropdown__panel {
        max-height: 720px;
        padding: 26px 0 20px;
    }

    .nav-dropdown__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-nav__socials {
        margin-top: 24px;
        margin-left: 0;
    }

    .social-link {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

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

@media (min-width: 901px) and (max-height: 800px) {
    .home-hero__content {
        padding-top: calc(var(--header-height) + 24px);
        padding-bottom: 56px;
    }

    .home-hero .eyebrow {
        margin-bottom: 12px;
    }

    .home-hero h1 {
        margin-bottom: 16px;
        font-size: clamp(50px, 5.5vw, 78px);
    }

    .home-hero__lead {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .home-hero__tagline {
        margin-bottom: 18px;
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .home-hero__media,
    .inner-hero__media,
    .auth-page__media {
        background-image: var(--raze-bg-mobile, var(--hero-image));
    }

    .photo-cta__media {
        background-image: var(--raze-bg-mobile, var(--section-image));
    }

    .split-section,
    .membership-strip,
    .lesson-detail__hero,
    .lesson-detail__content,
    .contact-route,
    .team-page__intro {
        grid-template-columns: 1fr;
    }

    .split-section {
        gap: 50px;
        min-height: 0;
    }

    .split-section__media,
    .split-section--image-left .split-section__media {
        order: 1;
        height: 70vw;
        min-height: 420px;
    }

    .split-section__copy,
    .split-section--image-left .split-section__copy {
        order: 2;
    }

    .split-section--community .split-section__copy h2 {
        white-space: nowrap;
    }

    .membership-strip {
        gap: 42px;
    }

    .membership-strip__media {
        height: 58vw;
        min-height: 360px;
    }

    .style-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(420px, 65vh) minmax(260px, 40vh);
    }

    .style-mosaic__large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .lesson-detail__hero {
        min-height: 0;
    }

    .lesson-detail__photo {
        min-height: 78vh;
    }

    .lesson-detail__headline {
        padding: 70px var(--page-pad) 90px;
    }

    .lesson-detail__content {
        gap: 60px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-route {
        gap: 36px;
        padding-bottom: 20px;
    }

    .contact-route__map {
        min-height: 0;
    }

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

    .team-page__portrait {
        grid-template-columns: minmax(76px, .45fr) minmax(0, 1.55fr);
        gap: clamp(16px, 5vw, 34px);
    }

    .team-page__photo {
        height: min(84vw, 567px);
    }

    .footer-quotes {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-quote {
        min-height: 0;
        border-bottom: 1px solid var(--line);
    }

    .footer-quote:nth-child(2n) {
        border-right: 0;
    }

    .site-footer__main {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 72px;
        --page-pad: 20px;
        --section-space: 76px;
    }

    h1 {
        font-size: clamp(48px, 16vw, 80px);
    }

    h2 {
        font-size: clamp(38px, 12.5vw, 62px);
    }

    .home-hero {
        min-height: 100svh;
    }

    .home-hero__content {
        padding-top: calc(var(--header-height) + 42px);
    }

    .home-hero h1 {
        font-size: clamp(46px, 13vw, 72px);
    }

    .home-hero h1 span:first-child {
        white-space: normal;
    }

    .home-hero__lead br {
        display: none;
    }

    .home-hero__lead span,
    .statement-section--home-intro .display-heading {
        white-space: normal;
    }

    .split-section--community .split-section__copy h2 {
        font-size: clamp(23px, 7vw, 30px);
        white-space: nowrap;
    }

    .scroll-cue {
        bottom: 18px;
        height: 52px;
    }

    .nav-dropdown__grid {
        grid-template-columns: 1fr;
    }

    .style-mosaic {
        display: flex;
        flex-direction: column;
    }

    .style-mosaic figure {
        min-height: 65vw;
    }

    .style-carousel__slide,
    .style-carousel__slide:nth-child(3n + 2) {
        flex-basis: 82vw;
        aspect-ratio: 4 / 5;
        border-radius: 20px;
    }

    .style-carousel__controls {
        justify-content: space-between;
    }

    .photo-cta--compact {
        min-height: 560px;
    }

    .photo-cta--compact .photo-cta__media {
        inset: -10%;
        background-attachment: scroll;
        transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.1);
    }

    .membership-strip__media {
        min-height: 290px;
        border-radius: 20px;
    }

    .team-page {
        gap: 48px;
    }

    .team-page__motif {
        padding: 8px 0;
    }

    .team-page__motif p {
        gap: 12px;
    }

    .team-page__motif strong {
        font-size: clamp(56px, 18vw, 88px);
    }

    .team-page__motif p span {
        font-size: 9px;
        letter-spacing: .14em;
    }

    .team-page__motif-line {
        min-height: 70px;
        margin-top: 18px;
    }

    .team-page__photo {
        height: 84vw;
        max-height: 480px;
        border-radius: 20px;
    }

    .team-card {
        min-height: 280px;
        border-radius: 20px;
    }

    .section-heading {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .lesson-card__image {
        min-height: 65vw;
    }

    .lesson-card__body {
        min-height: 360px;
    }

    .lesson-detail__photo {
        min-height: 70svh;
    }

    .lesson-detail__headline h1 {
        font-size: clamp(46px, 15vw, 72px);
    }

    .lesson-reassurance h2 {
        white-space: normal;
    }

    .lesson-reassurance h2 span {
        display: block;
    }

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

    .price-card {
        min-height: 300px;
        padding: 20px 17px;
    }

    .price-card h2 {
        margin-bottom: 17px;
        font-size: clamp(20px, 5.3vw, 24px);
    }

    .price-card .eyebrow {
        margin-bottom: 15px;
        font-size: 9px;
    }

    .price-card > p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.42;
    }

    .price-card__price {
        gap: 8px;
        font-size: clamp(17px, 4.8vw, 21px);
    }

    .price-card--price-09 h2 {
        font-size: clamp(16px, 4.25vw, 19px);
    }

    .contact-card {
        min-height: 0;
    }

    .membership-strip__copy .eyebrow {
        font-size: 14px;
        white-space: normal;
    }

    .not-found__actions,
    .site-footer__bottom {
        flex-direction: column;
    }

    .footer-quotes {
        grid-template-columns: 1fr;
    }

    .footer-quote {
        border-right: 0;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        gap: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    html.js-ready .reveal {
        clip-path: none;
        filter: none;
        opacity: 1;
        transform: none;
    }

    [data-parallax] {
        transform: none !important;
    }
}
