@font-face {
    font-family: "Barlow Condensed";
    src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
}

:root {
    --ink: #18131a;
    --ink-soft: #5f5661;
    --night: #120d16;
    --aubergine: #21152b;
    --aubergine-light: #392142;
    --wine: #7b1e3a;
    --berry: #df506e;
    --berry-light: #f1899d;
    --cream: #f6f1ed;
    --paper: #fffdfb;
    --white: #fff;
    --line: rgba(24, 19, 26, 0.16);
    --line-light: rgba(255, 255, 255, 0.18);
    --display: "Barlow Condensed", "Arial Narrow", sans-serif;
    --body: "Manrope", system-ui, sans-serif;
    --shell: min(92vw, 1340px);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --shadow: 0 28px 80px rgba(18, 13, 22, 0.28);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.modal-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

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

a {
    color: inherit;
    text-underline-offset: 0.18em;
}

button {
    color: inherit;
}

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

h1,
h2,
h3 {
    line-height: 0.98;
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

:focus-visible {
    outline: 3px solid var(--berry-light);
    outline-offset: 4px;
}

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-pad {
    padding: clamp(88px, 10vw, 150px) 0;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--wine);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--berry-light);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    cursor: pointer;
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 220ms var(--ease),
        background-color 220ms ease,
        color 220ms ease,
        box-shadow 220ms ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-2px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
}

.button--primary {
    background: #c93858;
    color: var(--white);
    box-shadow: 0 12px 30px rgba(223, 80, 110, 0.26);
}

.button--primary:hover:not(:disabled) {
    background: #d13b5e;
    box-shadow: 0 16px 34px rgba(223, 80, 110, 0.36);
}

.button--text {
    justify-content: flex-start;
    padding-inline: 0;
    background: transparent;
    color: var(--ink-soft);
}

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

.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 50%;
    display: grid;
    width: min(94vw, 1460px);
    min-height: 94px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
    color: var(--white);
    transform: translateX(-50%);
}

.wordmark {
    display: inline-grid;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 0.74;
    text-decoration: none;
}

.wordmark span:last-child {
    color: var(--berry-light);
    font-size: 1.58rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(22px, 3vw, 48px);
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--berry-light);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms var(--ease);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-cta {
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
    transition: background-color 200ms ease, border-color 200ms ease;
}

.header-cta:hover {
    border-color: var(--berry-light);
    background: rgba(241, 137, 157, 0.13);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: max(900px, 100svh);
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 28%, rgba(223, 80, 110, 0.28), transparent 28%),
        linear-gradient(125deg, var(--night) 0%, var(--aubergine) 52%, #32192d 100%);
    color: var(--white);
}

.hero::after {
    position: absolute;
    z-index: 1;
    right: -8vw;
    bottom: -40vh;
    width: 48vw;
    height: 105vh;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    transform: rotate(-24deg);
}

.hero__noise {
    position: absolute;
    z-index: 1;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero__word {
    position: absolute;
    z-index: 1;
    top: 10%;
    left: -0.03em;
    max-width: 70vw;
    color: rgba(255, 255, 255, 0.036);
    font-family: var(--display);
    font-size: clamp(10rem, 21vw, 23rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.7;
    pointer-events: none;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.hero__stripe {
    position: absolute;
    z-index: 1;
    width: 150%;
    height: clamp(74px, 8vw, 122px);
    pointer-events: none;
    transform: rotate(-16deg);
    transform-origin: center;
}

.hero__stripe--one {
    top: 51%;
    left: -26%;
    background: linear-gradient(90deg, rgba(123, 30, 58, 0.04), rgba(223, 80, 110, 0.9), rgba(255, 158, 132, 0.1));
}

.hero__stripe--two {
    top: 60%;
    left: -21%;
    height: 18px;
    background: rgba(255, 255, 255, 0.14);
}

.hero__canvas {
    position: relative;
    z-index: 3;
    display: grid;
    width: min(94vw, 1500px);
    min-height: max(900px, 100svh);
    margin-inline: auto;
    padding: 126px 0 70px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
}

.hero__intro {
    z-index: 4;
    grid-column: 1 / span 4;
    padding-left: clamp(0px, 2vw, 28px);
}

.hero__intro h1 {
    max-width: 500px;
    margin-bottom: 26px;
    font-family: var(--display);
    font-size: clamp(4rem, 6.2vw, 7.2rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero__intro h1 span {
    color: var(--berry-light);
}

.hero__lede {
    max-width: 410px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    line-height: 1.7;
}

.hero__location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__location::before {
    width: 22px;
    height: 2px;
    background: var(--berry-light);
    content: "";
}

.hero__portrait {
    position: absolute;
    z-index: 3;
    bottom: -118px;
    left: 28.5%;
    width: min(42vw, 650px);
    pointer-events: none;
    filter: drop-shadow(0 28px 50px rgba(7, 3, 8, 0.36));
}

.hero__portrait img {
    width: 100%;
    height: auto;
    transform: scaleX(-1);
    transform-origin: center;
}

.questionnaire {
    position: relative;
    z-index: 6;
    min-height: 650px;
    padding: clamp(28px, 3vw, 45px);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: var(--radius-lg);
    grid-column: 8 / span 5;
    background: rgba(255, 253, 251, 0.94);
    box-shadow: var(--shadow);
    color: var(--ink);
    backdrop-filter: blur(22px);
}

.questionnaire::before {
    position: absolute;
    z-index: -1;
    top: 22%;
    right: -18px;
    width: 18px;
    height: 42%;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(var(--berry), #ff9b8c);
    content: "";
}

.questionnaire__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.questionnaire__kicker,
.questionnaire__step {
    margin-bottom: 11px;
    color: var(--wine);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.progress-track {
    height: 4px;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7dfe3;
}

.progress-track span {
    display: block;
    width: 33.333%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--wine), var(--berry-light));
    transition: width 420ms var(--ease);
}

.questionnaire h2 {
    margin-bottom: 9px;
    font-family: var(--display);
    font-size: clamp(2.8rem, 4vw, 4.25rem);
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.questionnaire__intro {
    max-width: 470px;
    margin-bottom: 22px;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.form-step {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}

.js .form-step {
    display: none;
}

.js .form-step.is-active {
    display: block;
    animation: step-in 420ms var(--ease) both;
}

.form-step + .form-step {
    margin-top: 38px;
}

.js .form-step + .form-step {
    margin-top: 0;
}

.form-step legend {
    width: 100%;
    margin-bottom: 4px;
    padding: 0;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: 0.015em;
    line-height: 1.15;
    text-transform: uppercase;
}

.field-hint {
    margin-bottom: 15px;
    color: var(--ink-soft);
    font-size: 0.76rem;
    line-height: 1.5;
}

.choice-list {
    display: grid;
    gap: 9px;
}

.choice-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-list--compact .choice:last-child {
    grid-column: 1 / -1;
}

.choice {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.choice > span {
    position: relative;
    display: flex;
    min-height: 56px;
    flex-direction: column;
    justify-content: center;
    padding: 11px 42px 11px 16px;
    border: 1px solid #dcd3d8;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.66);
    transition:
        border-color 170ms ease,
        background-color 170ms ease,
        transform 170ms ease,
        box-shadow 170ms ease;
}

.choice > span::after {
    position: absolute;
    top: 50%;
    right: 15px;
    display: grid;
    width: 21px;
    height: 21px;
    border: 1px solid #b9adb4;
    border-radius: 50%;
    color: transparent;
    content: "✓";
    font-size: 0.7rem;
    font-weight: 800;
    place-items: center;
    transform: translateY(-50%);
    transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.choice input[type="checkbox"] + span::after {
    border-radius: 6px;
}

.choice b {
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.25;
}

.choice small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 0.68rem;
    line-height: 1.3;
}

.choice:hover > span {
    border-color: rgba(123, 30, 58, 0.55);
    transform: translateY(-1px);
}

.choice input:focus-visible + span {
    outline: 3px solid rgba(223, 80, 110, 0.38);
    outline-offset: 2px;
}

.choice input:checked + span {
    border-color: var(--wine);
    background: rgba(123, 30, 58, 0.07);
    box-shadow: 0 8px 20px rgba(123, 30, 58, 0.08);
}

.choice input:checked + span::after {
    border-color: var(--wine);
    background: var(--wine);
    color: var(--white);
}

.field {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
}

.field label {
    font-size: 0.76rem;
    font-weight: 800;
}

.field input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #d7cdd3;
    border-radius: 11px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus {
    border-color: var(--wine);
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 30, 58, 0.11);
}

.field input[aria-invalid="true"] {
    border-color: #ad1538;
}

.field-error,
.form-status {
    min-height: 1.25em;
    margin: 5px 0 0;
    color: #a8193a;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.35;
}

.form-status {
    margin: 9px 0 0;
}

.form-status.is-success {
    color: #306e45;
}

.form-status.is-error {
    color: #a8193a;
}

.questionnaire form.is-submitted .form-step {
    opacity: 0.72;
}

.questionnaire form.is-submitted input {
    cursor: not-allowed;
}

.privacy-note {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 0.64rem;
    line-height: 1.55;
}

.privacy-note a {
    color: var(--wine);
    font-weight: 800;
}

.step-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 14px;
}

.button--book {
    min-width: 154px;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.no-js .step-actions .button[type="button"] {
    display: none;
}

.no-js .form-step {
    margin-bottom: 32px;
}

.no-js .form-step:last-child {
    margin-bottom: 0;
}

@keyframes step-in {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fit-section {
    position: relative;
    background: var(--paper);
}

.fit-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 5px;
    background: linear-gradient(90deg, var(--wine), var(--berry-light));
    content: "";
}

.fit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(60px, 9vw, 150px);
    align-items: start;
}

.section-heading {
    position: sticky;
    top: 70px;
}

.section-heading h2,
.services__intro h2,
.process__heading h2,
.everfit h2,
.about h2,
.faq h2,
.final-cta h2 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.028em;
    text-transform: uppercase;
}

.section-heading h2 {
    max-width: 660px;
    margin-bottom: 0;
    font-size: clamp(3.25rem, 6vw, 6.5rem);
}

.fit-lines {
    display: grid;
}

.fit-lines p {
    display: grid;
    margin: 0;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 52px 1fr;
    gap: 16px;
    color: #373039;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    font-weight: 650;
    line-height: 1.55;
}

.fit-lines p:last-child {
    border-bottom: 1px solid var(--line);
}

.fit-lines span {
    color: var(--berry);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
}

.services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 15%, rgba(223, 80, 110, 0.19), transparent 28%),
        var(--night);
    color: var(--white);
}

.services__word {
    position: absolute;
    top: 15px;
    right: -0.04em;
    color: rgba(255, 255, 255, 0.035);
    font-family: var(--display);
    font-size: clamp(9rem, 24vw, 25rem);
    line-height: 0.8;
    pointer-events: none;
}

.services__intro {
    position: relative;
    max-width: 910px;
    margin-bottom: clamp(60px, 8vw, 110px);
}

.services__intro h2 {
    margin-bottom: 28px;
    font-size: clamp(3.3rem, 7.2vw, 8rem);
}

.services__intro h2 span {
    color: var(--berry-light);
}

.services__intro > p:last-child {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.03rem;
}

.service-list {
    position: relative;
    margin-left: clamp(0px, 10vw, 150px);
    border-top: 1px solid var(--line-light);
}

.service-row {
    display: grid;
    min-height: 190px;
    padding: 34px 6px;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 84px 1fr auto;
    gap: 32px;
    align-items: start;
}

.service-row__number {
    color: var(--berry-light);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.service-row h3 {
    margin-bottom: 14px;
    font-family: var(--display);
    font-size: clamp(2.25rem, 4vw, 4rem);
    text-transform: uppercase;
}

.service-row div p {
    max-width: 660px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.58);
}

.service-row__mark {
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    color: var(--berry-light);
    place-items: center;
}

.process {
    background: var(--cream);
}

.process .section-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(55px, 10vw, 160px);
}

.process__heading {
    align-self: start;
}

.process__heading h2 {
    margin-bottom: 22px;
    font-size: clamp(4rem, 8vw, 8.5rem);
}

.process__heading > p:last-child {
    max-width: 410px;
    color: var(--ink-soft);
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    display: grid;
    min-height: 165px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    grid-template-columns: 64px 1fr;
    gap: 22px;
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list li > span {
    color: var(--berry);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.process-list h3 {
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    text-transform: uppercase;
}

.process-list p {
    max-width: 580px;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.everfit {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, transparent 47%, rgba(223, 80, 110, 0.11) 47%, rgba(223, 80, 110, 0.11) 57%, transparent 57%),
        var(--aubergine);
    color: var(--white);
}

.everfit__stripe {
    position: absolute;
    right: -25%;
    bottom: 10%;
    width: 85%;
    height: 13px;
    background: linear-gradient(90deg, transparent, var(--berry), #ffab8f);
    transform: rotate(-24deg);
}

.everfit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: clamp(55px, 10vw, 150px);
    align-items: center;
}

.everfit h2 {
    margin-bottom: 24px;
    font-size: clamp(4rem, 8vw, 8.2rem);
}

.everfit-copy > p:not(.eyebrow) {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.68);
}

.check-list {
    display: grid;
    margin: 32px 0 0;
    padding: 0;
    gap: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 16px 0 16px 34px;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.check-list li::before {
    position: absolute;
    top: 17px;
    left: 0;
    color: var(--berry-light);
    content: "↗";
}

.app-stage {
    position: relative;
    min-height: 640px;
}

.app-stage__halo {
    position: absolute;
    top: 12%;
    left: 50%;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(223, 80, 110, 0.2);
    filter: blur(50px);
    transform: translateX(-50%);
}

.phone {
    position: absolute;
    display: flex;
    width: 285px;
    height: 570px;
    flex-direction: column;
    justify-content: center;
    border: 10px solid #0b080d;
    border-radius: 44px;
    padding: 32px;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 237, 0.88));
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.36);
    color: var(--ink);
}

.phone--front {
    z-index: 2;
    top: 34px;
    left: 50%;
    transform: translateX(-75%) rotate(-7deg);
}

.phone--back {
    z-index: 1;
    top: 7px;
    right: auto;
    left: 50%;
    border-color: #261927;
    background: linear-gradient(160deg, var(--wine), #e06472);
    color: rgba(255, 255, 255, 0.14);
    font-family: var(--display);
    font-size: 4.4rem;
    letter-spacing: -0.04em;
    line-height: 0.8;
    transform: translateX(-10%) rotate(9deg);
}

.phone__speaker {
    position: absolute;
    top: 14px;
    left: 50%;
    width: 78px;
    height: 18px;
    border-radius: 999px;
    background: #0b080d;
    transform: translateX(-50%);
}

.phone__label {
    margin-bottom: 16px;
    color: var(--wine);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.phone strong {
    font-family: var(--display);
    font-size: 2rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.phone small {
    margin-top: 16px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.about {
    position: relative;
    overflow: hidden;
    background: var(--paper);
}

.about__ghost {
    position: absolute;
    top: 30px;
    left: 51%;
    color: rgba(24, 19, 26, 0.035);
    font-family: var(--display);
    font-size: clamp(10rem, 23vw, 22rem);
    line-height: 0.75;
    pointer-events: none;
}

.about-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(380px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(60px, 9vw, 140px);
    align-items: center;
}

.about-photo {
    position: relative;
    margin: 0;
}

.about-photo::before {
    position: absolute;
    z-index: 1;
    top: -18px;
    right: -18px;
    width: 48%;
    height: 62%;
    border-top: 3px solid var(--berry);
    border-right: 3px solid var(--berry);
    content: "";
}

.about-photo picture {
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 220px 220px 26px 26px;
    background: var(--cream);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 44%;
}

.about-photo figcaption {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: -22px 18px 0 auto;
    border-radius: 999px;
    padding: 12px 18px;
    background: var(--aubergine);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-copy {
    position: relative;
    z-index: 2;
}

.about h2 {
    max-width: 790px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.about-copy > p:not(.eyebrow):not(.about-copy__note) {
    max-width: 670px;
    color: var(--ink-soft);
}

.about-copy blockquote {
    max-width: 670px;
    margin: 34px 0;
    padding: 25px 0 25px 28px;
    border-left: 4px solid var(--berry);
    color: var(--wine);
    font-family: var(--display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.about-copy__note {
    font-size: 0.72rem;
    font-weight: 650;
}

.faq {
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(55px, 10vw, 150px);
    align-items: start;
}

.faq-heading {
    position: sticky;
    top: 70px;
}

.faq h2 {
    margin-bottom: 24px;
    font-size: clamp(4rem, 7vw, 7rem);
}

.faq-heading > p:last-child {
    max-width: 400px;
    color: var(--ink-soft);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: grid;
    min-height: 92px;
    padding: 24px 2px;
    cursor: pointer;
    font-weight: 750;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    list-style: none;
}

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

.faq-list summary span {
    display: grid;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--wine);
    font-size: 1.15rem;
    line-height: 1;
    place-items: center;
    transition: transform 220ms var(--ease), background-color 220ms ease;
}

.faq-list details[open] summary span {
    background: rgba(123, 30, 58, 0.08);
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 710px;
    margin: -4px 58px 28px 0;
    color: var(--ink-soft);
    font-size: 0.91rem;
}

.final-cta {
    position: relative;
    display: grid;
    min-height: min(850px, 90svh);
    padding-block: clamp(96px, 9vw, 144px);
    overflow: hidden;
    color: var(--white);
    place-items: center;
}

.final-cta__photo,
.final-cta__photo img,
.final-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.final-cta__photo img {
    object-fit: cover;
    object-position: 52% 44%;
}

.final-cta__overlay {
    background:
        linear-gradient(90deg, rgba(18, 13, 22, 0.95) 0%, rgba(18, 13, 22, 0.78) 43%, rgba(18, 13, 22, 0.18) 100%),
        linear-gradient(15deg, rgba(123, 30, 58, 0.62), transparent 55%);
}

.final-cta__content {
    position: relative;
    z-index: 2;
    width: var(--shell);
}

.final-cta h2 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(4rem, 6.8vw, 7.5rem);
}

.final-cta h2 span {
    color: var(--berry-light);
}

.final-cta__content > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.05rem;
}

.site-footer {
    padding: 80px 0 28px;
    background: var(--night);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr;
    gap: clamp(45px, 8vw, 120px);
    padding-bottom: 65px;
}

.wordmark--footer {
    margin-bottom: 24px;
    font-size: 1.7rem;
}

.wordmark--footer span:last-child {
    font-size: 2.15rem;
}

.footer-grid > div:first-child p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-title {
    margin-bottom: 10px;
    color: var(--berry-light);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-grid a:not(.wordmark) {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.84rem;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    padding-top: 25px;
    border-top: 1px solid var(--line-light);
    justify-content: space-between;
    gap: 24px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.66rem;
}

.footer-bottom p {
    margin: 0;
}

.booking-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
}

.booking-modal[hidden] {
    display: none;
}

.booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 14, 0.8);
    backdrop-filter: blur(8px);
    animation: modal-backdrop-in 220ms ease both;
}

.booking-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(94vw, 980px);
    max-height: 92svh;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 28px;
    padding: clamp(26px, 4vw, 46px);
    background: var(--paper);
    box-shadow: 0 45px 100px rgba(0, 0, 0, 0.48);
    transform: translate(-50%, -50%);
    animation: modal-dialog-in 360ms var(--ease) both;
}

.booking-dialog__close {
    position: absolute;
    z-index: 3;
    top: 17px;
    right: 17px;
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 1.65rem;
    line-height: 1;
    place-items: center;
}

.booking-dialog__header {
    max-width: 740px;
    padding-right: 38px;
}

.booking-dialog__header h2 {
    margin-bottom: 15px;
    font-family: var(--display);
    font-size: clamp(2.7rem, 5vw, 4.7rem);
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.booking-dialog__header p:last-child {
    color: var(--ink-soft);
}

.booking-frame {
    position: relative;
    min-height: 640px;
    margin-top: 25px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
}

.booking-frame iframe {
    width: 100%;
    min-height: 640px;
    border: 0;
}

.booking-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    color: var(--ink-soft);
    transform: translate(-50%, -50%);
}

.booking-loading[hidden] {
    display: none;
}

.booking-fallback {
    margin: 15px 0 0;
    color: var(--ink-soft);
    font-size: 0.75rem;
}

.booking-fallback a {
    color: var(--wine);
    font-weight: 800;
}

.booking-placeholder {
    position: relative;
    margin-top: 28px;
    overflow: hidden;
    border: 1px dashed rgba(123, 30, 58, 0.34);
    border-radius: 18px;
    padding: clamp(44px, 8vw, 86px) clamp(24px, 7vw, 75px);
    background:
        radial-gradient(circle at 80% 20%, rgba(223, 80, 110, 0.16), transparent 32%),
        var(--cream);
    text-align: center;
}

.booking-placeholder > span {
    position: absolute;
    top: -0.12em;
    right: -0.04em;
    color: rgba(123, 30, 58, 0.055);
    font-family: var(--display);
    font-size: clamp(6rem, 15vw, 11rem);
    line-height: 0.8;
}

.booking-placeholder h3 {
    position: relative;
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    text-transform: uppercase;
}

.booking-placeholder p {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    color: var(--ink-soft);
}

@keyframes modal-backdrop-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-dialog-in {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 24px)) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

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

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

.response-page {
    display: grid;
    min-height: 100svh;
    padding: 24px;
    background:
        radial-gradient(circle at 75% 20%, rgba(223, 80, 110, 0.24), transparent 28%),
        var(--aubergine);
    place-items: center;
}

.response-card {
    width: min(100%, 680px);
    border-radius: 26px;
    padding: clamp(32px, 7vw, 70px);
    background: var(--paper);
    box-shadow: var(--shadow);
}

.response-card h1 {
    margin-bottom: 22px;
    font-family: var(--display);
    font-size: clamp(3rem, 8vw, 5.6rem);
    text-transform: uppercase;
}

.response-card p {
    color: var(--ink-soft);
}

@media (max-width: 1180px) {
    .site-header {
        width: 92vw;
    }

    .hero__canvas {
        width: 92vw;
    }

    .hero__intro {
        grid-column: 1 / span 4;
    }

    .hero__portrait {
        left: 20%;
        width: min(45vw, 590px);
    }

    .questionnaire {
        grid-column: 7 / span 6;
    }

    .hero__intro h1 {
        font-size: clamp(3.6rem, 6vw, 5.5rem);
    }

    .everfit-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    }

}

@media (max-width: 960px) {
    :root {
        --shell: min(90vw, 760px);
    }

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

    .primary-nav {
        position: absolute;
        top: 78px;
        right: 0;
        display: none;
        width: min(86vw, 340px);
        align-items: stretch;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 18px;
        padding: 20px;
        background: rgba(24, 13, 28, 0.96);
        box-shadow: var(--shadow);
        flex-direction: column;
        gap: 0;
        backdrop-filter: blur(18px);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav a {
        padding: 12px 8px;
    }

    .menu-toggle {
        display: grid;
        width: 44px;
        height: 44px;
        margin-left: auto;
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        grid-template-rows: repeat(2, 2px);
        align-content: center;
        gap: 6px;
        place-items: center;
    }

    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 17px;
        height: 2px;
        background: var(--white);
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero__canvas {
        display: grid;
        min-height: auto;
        padding: 130px 0 86px;
        grid-template-columns: 0.83fr 1.17fr;
        gap: 36px;
        align-items: start;
    }

    .hero__intro {
        position: relative;
        z-index: 5;
        padding-top: 70px;
        padding-left: 0;
        grid-column: 1;
    }

    .hero__intro h1 {
        font-size: clamp(3.9rem, 9vw, 5.8rem);
    }

    .hero__portrait {
        bottom: -40px;
        left: -6%;
        width: min(59vw, 500px);
        opacity: 0.82;
    }

    .questionnaire {
        min-height: 640px;
        grid-column: 2;
    }

    .fit-grid,
    .process .section-shell,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .section-heading,
    .faq-heading {
        position: static;
    }

    .service-list {
        margin-left: 0;
    }

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

    .everfit-grid {
        gap: 40px;
    }

    .app-stage {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .about-photo {
        width: min(100%, 570px);
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 0.8fr;
        gap: 45px;
    }
}

@media (max-width: 760px) {
    .section-pad {
        padding: 82px 0;
    }

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

    .wordmark {
        font-size: 1.05rem;
    }

    .wordmark span:last-child {
        font-size: 1.3rem;
    }

    .hero__canvas {
        display: block;
        width: 90vw;
        padding: 105px 0 70px;
    }

    .hero__word {
        top: 11%;
        left: auto;
        right: -11%;
        font-size: 11rem;
        writing-mode: horizontal-tb;
        transform: none;
    }

    .hero__stripe--one {
        top: 22%;
        left: -32%;
        width: 180%;
        height: 68px;
    }

    .hero__stripe--two {
        top: 27%;
    }

    .hero__intro {
        min-height: 335px;
        padding-top: 28px;
    }

    .hero__intro h1 {
        max-width: 76%;
        margin-bottom: 18px;
        font-size: clamp(3.6rem, 16.5vw, 5.25rem);
    }

    .hero__lede {
        position: relative;
        z-index: 3;
        max-width: 64%;
        font-size: 0.86rem;
        line-height: 1.55;
    }

    .hero__location {
        font-size: 0.62rem;
    }

    .hero__portrait {
        top: 18px;
        right: -78px;
        bottom: auto;
        left: auto;
        width: 330px;
        opacity: 0.86;
        filter: drop-shadow(0 24px 34px rgba(7, 3, 8, 0.28));
    }

    .questionnaire {
        min-height: 0;
        margin-top: clamp(30px, 8vw, 42px);
        padding: 26px 21px 24px;
        border-radius: 25px;
    }

    .questionnaire::before {
        display: none;
    }

    .questionnaire h2 {
        font-size: 2.85rem;
    }

    .questionnaire__intro {
        font-size: 0.78rem;
    }

    .choice-list--compact {
        grid-template-columns: 1fr;
    }

    .choice-list--compact .choice:last-child {
        grid-column: auto;
    }

    .choice > span {
        min-height: 54px;
    }

    .fit-grid,
    .process .section-shell,
    .faq-grid,
    .everfit-grid,
    .about-grid {
        gap: 44px;
    }

    .section-heading h2,
    .services__intro h2,
    .process__heading h2,
    .everfit h2,
    .about h2,
    .faq h2,
    .final-cta h2 {
        line-height: 0.94;
    }

    .fit-lines p {
        grid-template-columns: 39px 1fr;
    }

    .service-row {
        min-height: 0;
        padding: 28px 0;
        grid-template-columns: 42px 1fr;
        gap: 16px;
    }

    .service-row__mark {
        display: none;
    }

    .service-row h3 {
        font-size: 2.4rem;
    }

    .service-row div p {
        font-size: 0.82rem;
    }

    .process-list li {
        grid-template-columns: 44px 1fr;
        gap: 13px;
    }

    .app-stage {
        min-height: 510px;
    }

    .phone {
        width: 235px;
        height: 470px;
        border-width: 8px;
        border-radius: 36px;
        padding: 25px;
    }

    .phone--back {
        top: 24px;
    }

    .phone strong {
        font-size: 1.65rem;
    }

    .about-photo {
        width: 95%;
    }

    .about-photo picture {
        border-radius: 160px 160px 24px 24px;
    }

    .about-copy blockquote {
        padding-left: 20px;
    }

    .faq-list summary {
        min-height: 82px;
        font-size: 0.87rem;
    }

    .faq-list details p {
        margin-right: 0;
        font-size: 0.82rem;
    }

    .final-cta {
        min-height: 760px;
        padding-block: 0;
        place-items: end center;
    }

    .final-cta__photo img {
        object-position: 50% 46%;
    }

    .final-cta__overlay {
        background:
            linear-gradient(0deg, rgba(18, 13, 22, 0.98) 0%, rgba(18, 13, 22, 0.76) 48%, rgba(18, 13, 22, 0.18) 100%),
            linear-gradient(15deg, rgba(123, 30, 58, 0.45), transparent 60%);
    }

    .final-cta__content {
        padding-bottom: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .booking-dialog {
        top: auto;
        bottom: 0;
        width: 100%;
        max-height: 94svh;
        border-radius: 26px 26px 0 0;
        transform: none;
        left: 0;
        animation-name: modal-dialog-mobile-in;
    }

    .booking-frame,
    .booking-frame iframe {
        min-height: 590px;
    }

    @keyframes modal-dialog-mobile-in {
        from {
            opacity: 0;
            transform: translateY(34px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 420px) {
    .hero__intro {
        min-height: 320px;
    }

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

    .hero__portrait {
        right: -98px;
        width: 310px;
    }

    .questionnaire {
        padding-inline: 18px;
    }

    .step-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .step-actions .button {
        width: 100%;
    }

    .step-actions > span:empty {
        display: none;
    }

    .app-stage {
        min-height: 460px;
    }

    .phone {
        width: 210px;
        height: 430px;
    }

}

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

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

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

/* Privacy policy */
.legal-page {
    background: var(--cream);
}

.legal-header {
    display: flex;
    width: var(--shell);
    min-height: 94px;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
}

.legal-header .wordmark {
    color: var(--ink);
}

.legal-header .button {
    background: var(--ink);
    color: var(--white);
}

.legal-hero {
    display: grid;
    min-height: 410px;
    align-content: end;
    padding: 72px max(4vw, calc((100vw - 1340px) / 2)) 66px;
    background:
        linear-gradient(118deg, rgba(18, 13, 22, 0.98), rgba(57, 33, 66, 0.93)),
        radial-gradient(circle at 80% 20%, rgba(223, 80, 110, 0.4), transparent 34%);
    color: var(--white);
}

.legal-hero h1 {
    margin-bottom: 12px;
    font-family: var(--display);
    font-size: clamp(4.5rem, 11vw, 9.5rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.legal-hero > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
}

.legal-content {
    width: min(88vw, 820px);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) 0;
}

.legal-intro {
    margin-bottom: 65px;
    color: var(--ink);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 620;
    line-height: 1.55;
}

.legal-content section {
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 16px;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.legal-content p {
    color: var(--ink-soft);
}

.legal-content a {
    color: var(--wine);
    font-weight: 750;
}

.legal-note {
    margin-top: 45px;
    border-radius: var(--radius-md);
    padding: clamp(27px, 5vw, 48px);
    background: var(--aubergine);
    color: var(--white);
}

.legal-note h2 {
    color: var(--white);
}

.legal-note p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.legal-review-note {
    margin: 24px 0 0;
    border-left: 3px solid var(--berry);
    padding: 12px 0 12px 20px;
    font-size: 0.78rem;
}

.legal-footer {
    padding-top: 30px;
}

.legal-footer a {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 760px) {
    .legal-header {
        min-height: 78px;
    }

    .legal-header .button {
        min-height: 44px;
        padding-inline: 16px;
        font-size: 0.66rem;
    }

    .legal-hero {
        min-height: 320px;
        padding-inline: 6vw;
    }

    .legal-hero h1 {
        font-size: 4.7rem;
    }

    .legal-content {
        width: min(88vw, 820px);
    }
}
