:root {
    --bg: #0a0a0a;
    --surface: #121212;
    --surface-2: #181818;
    --cool-surface: #0d0d12;
    --warm-surface: #111110;
    --navy: #0e2a47;
    --navy-deep: #081a2e;
    --orange: #ff8a00;
    --text: #f5f5f5;
    --text-2: #a1a1a1;
    --line: rgba(245, 245, 245, 0.09);
    --font: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;
    --pad-x: clamp(20px, 5vw, 72px);
    --sec-y: clamp(88px, 13vw, 180px);
    --photo-bright: 0.78;
    --photo-sat: 0.72;
    --photo-con: 1.12;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 86%);
    pointer-events: none;
}

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

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

::selection {
    background: var(--orange);
    color: #0a0a0a;
}

.site-shell {
    position: relative;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--orange);
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--orange);
    flex: none;
}

h1,
h2,
h3,
.hero-meta strong,
.brand-copy strong {
    font-family: var(--font);
}

h1,
h2 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    line-height: 1.02;
    text-wrap: balance;
}

h1 {
    font-size: clamp(46px, 9.2vw, 122px);
    max-width: 11ch;
}

@media (min-width: 981px) and (max-width: 1440px) {
    h1 {
        font-size: clamp(46px, 5.6vw, 74px);
        max-width: 16ch;
    }
}

/* Hero-scoped h1: larger scale than inner-page h1 */
.hero h1 {
    font-size: clamp(48px, 7vw, 90px);
    letter-spacing: -0.03em;
    max-width: 14ch;
}

@media (min-width: 981px) and (max-width: 1440px) {
    .hero h1 {
        font-size: clamp(48px, 6.5vw, 84px);
        max-width: 14ch;
    }
}

.h1-accent {
    color: var(--orange);
}

.h1-line {
    display: block;
}

h2 {
    font-size: clamp(34px, 5.4vw, 64px);
}

h3 {
    font-size: clamp(15px, 1.4vw, 19px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

p {
    font-family: var(--font-body);
    color: var(--text-2);
    line-height: 1.7;
    text-wrap: pretty;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px var(--pad-x);
    transition: background 0.4s, border-color 0.4s, padding 0.4s;
    border-bottom: 1px solid transparent;
}

.topbar.is-scrolled {
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--line);
    padding-top: 10px;
    padding-bottom: 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, var(--orange), #ffb06e);
    color: #091018;
    font-weight: 800;
}

.brand-mark-img {
    height: 38px;
    width: auto;
    display: block;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    font-size: 0.78rem;
    color: var(--text-2);
}

.brand-copy strong {
    color: var(--text);
    font-size: 0.96rem;
}

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

.nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.2s;
    padding: 8px 0;
}

.nav a:hover {
    color: var(--text);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    background: var(--orange);
    color: #0a0a0a !important;
    font-size: 12px !important;
    font-weight: 700;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: transform 0.32s var(--ease), opacity 0.2s ease;
    transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero,
.section,
.footer {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(24px, 3vw, 40px);
    align-items: center;
    padding: 140px var(--pad-x) clamp(48px, 8vh, 88px);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(600px 400px at 15% 60%, rgba(255, 138, 0, 0.05), transparent 60%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.65) 0%, rgba(10, 10, 10, 0.42) 35%, rgba(10, 10, 10, 0.94) 88%),
        linear-gradient(78deg, rgba(10, 10, 10, 0.82) 0%, rgba(14, 42, 71, 0.54) 48%, rgba(10, 10, 10, 0.22) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url("./images/v3/gym.jpg") center 34% / cover no-repeat;
    filter: brightness(0.70) saturate(0.80) contrast(1.08);
    transform: scale(1.05) translateY(var(--parallax-y, 0px));
    will-change: transform;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
}

.hero-copy > .eyebrow {
    margin-bottom: clamp(18px, 2.5vw, 28px);
}

.hero-copy > h1 {
    margin-bottom: clamp(28px, 4vw, 44px);
}

.hero-copy > .hero-text {
    margin-bottom: 12px;
}

.hero-copy > .hero-credential {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.hero-text {
    max-width: 46ch;
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(245, 245, 245, 0.82);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 34px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.button-primary {
    background: var(--orange);
    color: #0a0a0a;
    box-shadow: 0 0 0 rgba(255, 138, 0, 0);
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 138, 0, 0.28);
}

.button-primary:active {
    transform: translateY(0);
}

.button-secondary {
    background: transparent;
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(245, 245, 245, 0.25);
}

.button-secondary:hover {
    box-shadow: inset 0 0 0 1px rgba(245, 245, 245, 0.6);
    background: rgba(255, 255, 255, 0.04);
}

.hero-cta-note {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--text-2);
    line-height: 1.5;
    margin: 0;
    max-width: 48ch;
}

.hero-foot,
.hero-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: clamp(16px, 4vh, 38px);
    padding-top: 22px;
    border-top: 1px solid rgba(245, 245, 245, 0.16);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-2);
}

.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.hero-meta strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-media {
    display: grid;
    gap: 18px;
    align-self: end;
}

.hero-environment,
.hero-video-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(18, 18, 18, 0.7);
}

.hero-video-card {
    background: url("./images/v3/gym.jpg") center 40% / cover no-repeat;
}

.hero-environment img,
.founder-video {
    width: 100%;
    filter: brightness(var(--photo-bright)) saturate(var(--photo-sat)) contrast(var(--photo-con));
}

.hero-environment img {
    aspect-ratio: 4 / 3.1;
    object-fit: cover;
}

.founder-video {
    aspect-ratio: 9 / 13;
    object-fit: cover;
    background: #050505;
}

.hero-environment::after,
.hero-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 42, 71, 0.18) 0%, rgba(10, 10, 10, 0) 40%, rgba(10, 10, 10, 0.55) 100%);
    pointer-events: none;
}

.hero-environment figcaption,
.hero-video-card figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    background: var(--bg);
    padding: 12px 20px 0 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-2);
}

.section {
    padding: var(--sec-y) var(--pad-x);
    position: relative;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: clamp(40px, 6vw, 72px);
    max-width: 920px;
}

.section-story,
.section-method,
.section-faq {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.section-leonardo {
    background:
        radial-gradient(1200px 600px at 85% 0%, rgba(255, 138, 0, 0.08), transparent 55%),
        linear-gradient(180deg, var(--navy-deep), var(--navy));
    border-top: 1px solid rgba(245, 245, 245, 0.12);
    border-bottom: 1px solid rgba(245, 245, 245, 0.12);
}

.story-grid,
.philosophy-grid,
.leonardo-grid,
.inside-layout,
.location-grid,
.footer-grid,
.lead-grid {
    display: grid;
    gap: clamp(24px, 4vw, 56px);
}

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

.story-grid p {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    font-size: clamp(16px, 1.6vw, 18px);
}

.philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.philosophy-item {
    padding: 28px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}

.philosophy-item span {
    display: block;
    position: absolute;
    top: -0.15em;
    left: -0.03em;
    font-size: clamp(80px, 10vw, 128px);
    font-weight: 800;
    color: rgba(245, 245, 245, 0.055);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.philosophy-item h3,
.philosophy-item > p {
    position: relative;
    z-index: 1;
}

.pn {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.philosophy-item h3 {
    margin: 32px 0 8px;
}

.pstep h3 {
    margin: 8px 0 8px;
}

.process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-track::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(245, 245, 245, 0.18);
}

.process-track::after {
    content: "";
    position: absolute;
    top: 6.5px;
    left: 0;
    width: var(--progress, 0%);
    height: 2px;
    background: var(--orange);
    transition: width 1.6s var(--ease);
}

.pstep {
    padding: 36px 24px 0 0;
    position: relative;
}

.pstep::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--text-2);
    z-index: 1;
    transition: border-color 0.4s, background 0.4s;
}

.pstep.lit::before {
    border-color: var(--orange);
    background: var(--orange);
}

.pstep p {
    font-size: 14px;
    max-width: 24ch;
}

.leonardo-cta {
    align-self: flex-start;
    margin-top: 8px;
}

.process-cta {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: clamp(40px, 6vw, 64px);
    flex-wrap: wrap;
}

.process-cta-note {
    font-size: 13px;
    color: var(--text-2);
    max-width: 38ch;
    margin: 0;
    line-height: 1.6;
}

.leonardo-grid {
    grid-template-columns: minmax(340px, 0.9fr) 1fr;
    align-items: center;
}

.leonardo-portrait,
.inside-main,
.inside-side,
.location-image {
    position: relative;
}

.leonardo-portrait::after {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 56%;
    height: 56%;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    pointer-events: none;
}

.leonardo-portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(var(--photo-bright)) saturate(var(--photo-sat)) contrast(var(--photo-con));
}

.leonardo-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote {
    border-left: 2px solid var(--orange);
    padding-left: 20px;
    font-size: clamp(20px, 2.6vw, 32px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
    max-width: 44ch;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.tag-row span {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-2);
    border: 1px solid var(--line);
    padding: 9px 14px;
}

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

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

.want-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(18px, 3vw, 30px) 0;
    cursor: pointer;
}

.want-word {
    font-size: clamp(34px, 7vw, 88px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(245, 245, 245, 0.52);
    transition: color 0.35s var(--ease), -webkit-text-stroke-color 0.35s;
}

.want-list a:hover .want-word,
.want-list li.on .want-word {
    color: var(--text);
    -webkit-text-stroke-color: transparent;
}

.want-arrow {
    flex: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(245, 245, 245, 0.22);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--text-2);
    font-size: 18px;
    transition: background 0.3s, color 0.3s, transform 0.35s var(--ease), border-color 0.3s;
}

.want-list a:hover .want-arrow,
.want-list li.on .want-arrow {
    background: var(--orange);
    border-color: var(--orange);
    color: #0a0a0a;
    transform: rotate(-45deg);
}

.proof-block {
    max-width: 760px;
    padding: 28px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.proof-block span {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
}

.inside-layout {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.inside-main img,
.inside-side img,
.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(var(--photo-bright)) saturate(var(--photo-sat)) contrast(var(--photo-con));
}

.inside-main img {
    aspect-ratio: 4 / 3.5;
}

.inside-side img {
    aspect-ratio: 4 / 5;
}

.inside-main figcaption,
.inside-side figcaption {
    padding-top: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-2);
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.faq-item {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    color: var(--text);
    user-select: none;
}

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

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--orange);
    transition: transform 220ms ease;
}

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

.faq-item p {
    padding: 0 1.4rem 1.2rem;
}

.location-grid,
.lead-grid,
.footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.location-copy,
.lead-copy,
.footer-brand,
.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-image img {
    aspect-ratio: 4 / 5;
}

.final-wrap {
    padding: clamp(36px, 5vw, 56px);
    background:
        radial-gradient(1200px 520px at 82% 8%, rgba(14, 42, 71, 0.55), transparent 65%),
        radial-gradient(900px 600px at 8% 95%, rgba(255, 138, 0, 0.07), transparent 60%),
        var(--surface);
    border: 1px solid var(--line);
}

.final-wrap p {
    max-width: 46ch;
    margin: 18px 0 22px;
}

.final-note {
    color: var(--text);
    font-weight: 600;
}

.lead-grid {
    gap: clamp(32px, 5vw, 72px);
    padding: clamp(28px, 4vw, 42px);
    border: 1px solid var(--line);
    background: var(--surface);
}

.bridge-card,
.follow-grid {
    border: 1px solid var(--line);
    background: rgba(18, 18, 18, 0.88);
}

.bridge-card {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.6rem;
    padding: 1.25rem;
}

.bridge-card h3 {
    font-size: 1rem;
}

.bridge-label,
.footer-socials__title {
    color: var(--orange);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lead-keywords {
    margin-top: 1.25rem;
    max-width: 48ch;
}

.lead-capture__form {
    display: grid;
    gap: 1rem;
}

.lead-capture__form.is-submitted .lead-capture__field,
.lead-capture__form.is-submitted .lead-capture__honeypot,
.lead-capture__form.is-submitted .button {
    display: none;
}

.lead-capture__field {
    display: grid;
    gap: 0.45rem;
}

.lead-capture__label {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lead-capture__input,
.lead-capture__select {
    width: 100%;
    min-height: 56px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(245, 245, 245, 0.12);
    background: rgba(8, 8, 8, 0.92);
    color: var(--text);
    font: inherit;
}

.lead-capture__input::placeholder {
    color: #8f8f8f;
}

.lead-capture__input:focus,
.lead-capture__select:focus {
    outline: none;
    border-color: rgba(255, 138, 0, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.1);
}

.lead-capture__form .button[disabled] {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.lead-capture__status {
    margin: 0;
    padding: 0.95rem 1rem;
    border: 1px solid transparent;
    line-height: 1.6;
}

.lead-capture__status--success {
    color: #ddf4e6;
    background: rgba(29, 103, 66, 0.28);
    border-color: rgba(79, 201, 134, 0.38);
}

.lead-capture__status--error {
    color: #ffe3dc;
    background: rgba(112, 36, 24, 0.3);
    border-color: rgba(255, 138, 0, 0.32);
}

.lead-capture__consent {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-2);
    font-size: 14px;
    line-height: 1.6;
}

.lead-capture__consent input {
    margin-top: 0.2rem;
    accent-color: var(--orange);
}

.lead-capture__privacy {
    font-size: 13px;
    color: var(--text-2);
    margin: 0;
}

.turnstile-wrap {
    display: grid;
    gap: 0.45rem;
}

.turnstile-slot {
    min-height: 68px;
}

.turnstile-slot:empty::before {
    content: "Loading verification…";
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    color: var(--text-2);
    font-size: 13px;
}

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

.footer {
    padding: 0 var(--pad-x) 3rem;
    color: var(--text-2);
}

.footer-grid {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--line);
}

.footer-tagline,
.footer-contact p,
.footer-socials__group span {
    color: var(--text-2);
}

.footer-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-contact a,
.footer-socials__group a {
    color: var(--text);
}

.footer-socials {
    display: grid;
    gap: 1.1rem;
}

.footer-socials__group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    margin-top: 0.55rem;
    font-size: 14px;
}

.section-follow {
    padding-top: 0;
}

.follow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(24px, 4vw, 48px);
    padding: clamp(28px, 4vw, 40px);
}

.follow-columns {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.follow-copy p:last-child {
    max-width: 50ch;
}

.follow-links {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.follow-links a,
.follow-links span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 1rem;
    border: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.92);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.follow-links--muted span {
    color: var(--text-2);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 1.2rem;
    font-size: 12px;
}

.sticky-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    min-width: 164px;
    padding: 0 26px;
    background: var(--orange);
    color: #0a0a0a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(120px);
    transition: transform 0.45s var(--ease), opacity 0.25s ease;
}

.sticky-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }

    .reveal.in,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .hero-reveal {
        opacity: 0;
        transform: translateY(24px);
        animation: hero-enter 0.72s var(--ease) forwards;
    }

    /* eyebrow=1, h1=2 (no hero-reveal), text=3, credential=4, actions=5 */
    .hero-copy .hero-reveal:nth-child(1) { animation-delay: 0.04s; }
    .hero-copy .hero-reveal:nth-child(3) { animation-delay: 0.44s; }
    .hero-copy .hero-reveal:nth-child(4) { animation-delay: 0.56s; }
    .hero-copy .hero-reveal:nth-child(5) { animation-delay: 0.68s; }

    .h1-line {
        clip-path: inset(0 0 100% 0);
        animation: headline-wipe 0.65s var(--ease) forwards;
    }

    .h1-line:nth-child(1) { animation-delay: 0.10s; }
    .h1-line:nth-child(2) { animation-delay: 0.22s; }
    .h1-line:nth-child(3) { animation-delay: 0.34s; }
}

@keyframes hero-enter {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes headline-wipe {
    to { clip-path: inset(0 0 0% 0); }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--line);
        padding: 8px var(--pad-x) 24px;
    }

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

    .nav a:not(.nav-cta) {
        padding: 15px 0;
        font-size: 13px;
        border-bottom: 1px solid var(--line);
        color: var(--text-2);
    }

    .nav-cta {
        margin-top: 18px;
        min-height: 52px;
        clip-path: none;
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        align-items: end;
        min-height: auto;
        padding-top: 120px;
    }

    .hero-video-card {
        height: clamp(260px, 40vh, 400px);
    }

    .story-grid,
    .philosophy-grid,
    .leonardo-grid,
    .inside-layout,
    .location-grid,
    .lead-grid,
    .follow-grid,
    .footer-grid,
    .process-track {
        grid-template-columns: 1fr;
    }

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

    .process-track::after {
        top: 0;
        left: 6.5px;
        width: 2px;
        height: var(--progress, 0%);
        transition: height 1.6s var(--ease);
    }

    .pstep {
        padding: 0 0 36px 38px;
    }

    .pstep:last-child {
        padding-bottom: 0;
    }

    .pstep p {
        max-width: 40ch;
    }

    .want-word {
        font-size: clamp(28px, 10vw, 56px);
        -webkit-text-stroke-width: 1px;
    }
}

@media (max-width: 640px) {
    .hero-actions .button {
        width: 100%;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-meta div {
        width: 100%;
    }

    .hero-foot span:nth-child(2) {
        display: none;
    }

    .sticky-whatsapp {
        left: 16px;
        right: 16px;
        width: auto;
    }
}

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

    .reveal,
    .hero-reveal,
    .sticky-whatsapp,
    .topbar,
    .button {
        transition: none;
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ---------- trust strip ---------- */

.trust-strip {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0 var(--pad-x);
    overflow: hidden;
}

.trust-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
}

.trust-chip {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 22px 0;
    flex: 1;
    min-width: 140px;
}

.trust-chip + .trust-chip {
    padding-left: clamp(16px, 3vw, 36px);
    border-left: 1px solid var(--line);
}

.trust-chip strong {
    font-family: var(--font);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1;
}

.trust-chip span {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-2);
}

@media (max-width: 640px) {
    .trust-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .trust-chip + .trust-chip {
        padding-left: 0;
        border-left: none;
    }

    .trust-chip:nth-child(odd) {
        padding-right: 12px;
        border-right: 1px solid var(--line);
    }

    .trust-chip:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid var(--line);
        padding-bottom: 18px;
    }

    .trust-chip:nth-child(n+3) {
        padding-top: 18px;
    }
}

/* ---------- hero media: single founder video ---------- */

.hero-media {
    display: block;
    max-width: 520px;
    width: 100%;
    align-self: center;
    margin-left: auto;
}

.hero-video-card {
    aspect-ratio: 9 / 13;
    height: auto;
}

.founder-video {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center top;
}

/* ---------- Google Review CTA ---------- */

.review-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: border-color 0.25s, background 0.25s;
}

.review-cta:hover {
    border-color: rgba(255, 138, 0, 0.45);
    background: rgba(255, 138, 0, 0.06);
}

.review-cta::before {
    content: "★";
    color: var(--orange);
    font-size: 14px;
}

/* ---------- social ecosystem enhancements ---------- */

.section-follow .follow-links a::after {
    content: "→";
    color: var(--orange);
    transition: transform 0.25s var(--ease);
}

.section-follow .follow-links a:hover::after {
    transform: translateX(4px);
}

/* ---------- responsive QA ---------- */

@media (max-width: 820px) {
    .inside-layout {
        grid-template-columns: 1fr;
    }

    .inside-side img {
        aspect-ratio: 16 / 9;
    }

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

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

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

    .location-image img {
        aspect-ratio: 16 / 9;
    }

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

@media (max-width: 600px) {
    .hero-meta strong {
        font-size: 16px;
    }

    .final-wrap {
        padding: clamp(24px, 5vw, 40px);
    }
}

/* ---------- proof grid ---------- */

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.proof-trust-col {
    display: flex;
    flex-direction: column;
}

.proof-trust-items {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

.proof-trust-item {
    padding: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.proof-trust-item strong {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
}

.proof-image {
    position: relative;
    overflow: hidden;
    align-self: start;
}

.proof-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(var(--photo-bright)) saturate(var(--photo-sat)) contrast(var(--photo-con));
}

.proof-image figcaption {
    padding-top: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
}

@media (max-width: 820px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- V4 hero photo ---------- */

.hero-photo {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    margin-right: calc(-1 * var(--pad-x));
    min-height: 480px;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.72) saturate(0.85) contrast(1.15);
}

/* Left-edge gradient: pushes photo visually right, gives headline clear air */
.hero-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.88) 0%, transparent 38%);
    pointer-events: none;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 56%;
    height: 56%;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    pointer-events: none;
}

/* ---------- hero credential chip ---------- */

.hero-credential {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.68);
    border-left: 2px solid var(--orange);
    padding-left: 12px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- V4 position section ---------- */

.section-position {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.position-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 56px);
}

.position-grid p {
    padding: 20px 0;
    border-top: 1px solid var(--line);
    font-size: clamp(16px, 1.6vw, 18px);
}

.position-close {
    margin-top: clamp(32px, 5vw, 56px);
    font-size: clamp(17px, 2vw, 21px) !important;
    font-weight: 600;
    color: var(--text) !important;
    line-height: 1.5;
    max-width: 52ch;
}

.position-bridge {
    margin-top: 20px;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-2) !important;
}

/* ---------- V4 founder section ---------- */

.section-founder {
    background: var(--cool-surface);
    border-top: 1px solid rgba(245, 245, 245, 0.12);
    border-bottom: 1px solid rgba(245, 245, 245, 0.12);
    padding-top: clamp(100px, 14vw, 200px);
    padding-bottom: clamp(100px, 14vw, 200px);
}

.section-founder h2 {
    font-size: clamp(18px, 1.8vw, 24px);
    letter-spacing: 0.08em;
}

.founder-credential {
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2) !important;
    margin-top: -4px;
}

/* ---------- V4 proof assertions ---------- */

.proof-assertions {
    display: grid;
    gap: 18px;
    margin-bottom: 28px;
}

.proof-assertion {
    font-size: clamp(16px, 1.8vw, 20px) !important;
    font-weight: 600;
    color: var(--text) !important;
    line-height: 1.5;
    border-left: 2px solid var(--orange);
    padding-left: 16px;
    margin: 0;
}

.proof-cta-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.soft-link {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-2);
    transition: color 0.2s;
}

.soft-link:hover {
    color: var(--text);
}

/* ---------- V4 want back ---------- */

.want-intro {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--text-2);
    margin-bottom: clamp(24px, 4vw, 40px);
    text-align: center;
}

/* ---------- V4 before you book ---------- */

.section-before-book {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.before-book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.before-book-faq {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.before-book-location {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: clamp(40px, 5vw, 72px);
}

.before-book-location h3 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.015em;
    color: var(--text);
}

/* ---------- V4 lead heading ---------- */

.lead-heading {
    font-family: var(--font-body) !important;
    font-size: clamp(18px, 2.2vw, 24px) !important;
    font-weight: 600;
    color: var(--text) !important;
    text-transform: none;
    line-height: 1.4;
}

/* ---------- V4 hero bridge ---------- */

.hero-bridge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-2);
    padding-top: 16px;
    border-top: 1px solid rgba(245, 245, 245, 0.1);
    margin-top: -4px;
}

/* ---------- V4 process text link ---------- */

.process-bridge-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.06em;
    transition: color 0.2s;
    display: inline-block;
    margin-top: 6px;
}

.process-bridge-link:hover {
    color: var(--orange);
}

/* ---------- V4 clinic images strip ---------- */

.clinic-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 4px 0;
}

.clinic-images figure img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: brightness(0.72) saturate(0.72) contrast(1.12);
}

.clinic-images figcaption {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    padding-top: 7px;
}

/* ---------- V4 section tier spacing ---------- */

#want-back {
    padding-top: clamp(100px, 14vw, 200px);
    padding-bottom: clamp(100px, 14vw, 200px);
}

.section-lead {
    padding-top: clamp(48px, 6vw, 80px);
    padding-bottom: clamp(48px, 6vw, 80px);
}

/* ---------- Expanded nav ---------- */

@media (min-width: 981px) {
    .nav {
        gap: clamp(12px, 1.6vw, 28px);
    }
    .nav-mobile-only {
        display: none;
    }
}

/* ---------- Placeholder cards ---------- */

.placeholder-card {
    background: var(--surface);
    border: 1px dashed rgba(245, 245, 245, 0.14);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.placeholder-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    opacity: 0.7;
}

.placeholder-card h2 {
    font-size: clamp(16px, 1.8vw, 22px);
    color: var(--text-2);
}

.placeholder-card p {
    font-size: 14px;
    color: var(--text-2);
    max-width: 42ch;
    line-height: 1.7;
}

/* ---------- FAQ categories ---------- */

.faq-category {
    margin-top: clamp(40px, 6vw, 64px);
}

.faq-category:first-child {
    margin-top: 0;
}

.faq-category-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-2);
}

.faq-category-head::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

/* ---------- Pricing block ---------- */

.pricing-block {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
}

.pricing-amount {
    font-family: var(--font);
    font-size: clamp(44px, 7vw, 80px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-currency {
    font-size: 0.42em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-2);
    vertical-align: super;
}

.pricing-includes {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.pricing-include-item {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-2);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.pricing-include-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ---------- Contact methods ---------- */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: clamp(32px, 5vw, 56px);
}

.contact-method {
    background: var(--surface);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: background 0.25s;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.04);
}

.contact-method-label {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
}

.contact-method-value {
    display: block;
    font-family: var(--font);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--text);
    line-height: 1.2;
}

.contact-method > p {
    font-size: 13px;
    max-width: 32ch;
}

.contact-method-arrow {
    display: block;
    font-size: 18px;
    color: var(--orange);
    margin-top: 8px;
}

@media (max-width: 640px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* ---------- Resource grid ---------- */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.resource-card {
    background: var(--surface);
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: background 0.25s;
}

.resource-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.resource-card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
}

.resource-card h2 {
    font-size: clamp(16px, 1.8vw, 22px);
    letter-spacing: 0.03em;
}

.resource-card p {
    font-size: 13px;
    max-width: 28ch;
    line-height: 1.65;
}

.resource-card-arrow {
    display: block;
    color: var(--orange);
    font-size: 20px;
    margin-top: auto;
    padding-top: 8px;
}

@media (max-width: 820px) {
    .resource-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- About Leonardo hero ---------- */

.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.65fr) 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: clamp(120px, 16vw, 200px) var(--pad-x) clamp(60px, 8vw, 100px);
    border-bottom: 1px solid var(--line);
}

.about-portrait {
    position: relative;
    overflow: hidden;
}

.about-portrait::after {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 56%;
    height: 56%;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    pointer-events: none;
}

.about-portrait img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.72) contrast(1.12);
}

.about-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-hero-copy h1 {
    margin-top: 10px;
}

@media (max-width: 820px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        padding-top: clamp(100px, 14vw, 160px);
    }

    .about-portrait {
        max-width: 280px;
    }

    .about-portrait::after {
        display: none;
    }
}

/* ---------- Review placeholder grid ---------- */

.review-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

@media (max-width: 640px) {
    .review-placeholder-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Review cards ---------- */

.review-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--line);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.25s;
}

.review-card:hover {
    border-color: rgba(245, 245, 245, 0.2);
}

.review-card-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    font-family: var(--font-body);
}

.review-card-stars {
    color: var(--orange);
    font-size: 15px;
    letter-spacing: 3px;
    line-height: 1;
}

.review-card-quote {
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.75;
    color: var(--text);
    flex: 1;
    font-style: italic;
}

.review-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.review-card-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    font-family: var(--font-body);
}

.review-card-source {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-2);
    font-family: var(--font-body);
}

@media (max-width: 640px) {
    .review-card-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sub-page hero ---------- */

.page-hero {
    padding: clamp(120px, 16vw, 200px) var(--pad-x) clamp(60px, 8vw, 100px);
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-size: clamp(38px, 7vw, 96px);
    max-width: 20ch;
    margin-top: 18px;
}

.page-hero-sub {
    max-width: 52ch;
    font-size: clamp(16px, 1.8vw, 20px) !important;
    margin-top: 22px;
    color: rgba(245, 245, 245, 0.82) !important;
    line-height: 1.65 !important;
}

.page-hero .hero-actions {
    margin-top: 36px;
}

/* ---------- Hub content grid ---------- */

.hub-section {
    padding: var(--sec-y) var(--pad-x);
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.hub-card {
    background: var(--surface);
    padding: clamp(28px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hub-card h2 {
    font-size: clamp(16px, 1.8vw, 22px);
    letter-spacing: 0.03em;
}

.hub-card p {
    font-size: 15px;
    max-width: 46ch;
    line-height: 1.75;
}

.hub-card-treat h2 {
    padding-top: 18px;
    border-top: 2px solid var(--orange);
}

@media (max-width: 640px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Hub closing CTA ---------- */

.hub-cta-section {
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.hub-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 640px;
}

.hub-cta-wrap h2 {
    font-size: clamp(32px, 5vw, 60px);
}

.hub-cta-note {
    font-size: clamp(15px, 1.6vw, 18px) !important;
    color: rgba(245, 245, 245, 0.75) !important;
    max-width: 44ch;
}

/* ---------- Videos page ---------- */

.videos-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.channel-card {
    background: var(--surface);
    padding: clamp(24px, 3.5vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    transition: background 0.25s;
}

.channel-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.channel-name {
    display: block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
}

.channel-handle {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--orange);
}

.channel-desc {
    font-size: 13px !important;
    color: var(--text-2) !important;
    max-width: 28ch;
    line-height: 1.65 !important;
}

.channel-arrow {
    display: block;
    font-size: 20px;
    color: var(--orange);
    margin-top: 8px;
}

.videos-notice {
    margin-top: clamp(40px, 6vw, 72px);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--line);
    background: var(--surface);
    max-width: 640px;
}

.videos-notice p {
    font-size: 15px;
    line-height: 1.75;
    max-width: 48ch;
}

.videos-notice p + p {
    margin-top: 14px;
}

@media (max-width: 820px) {
    .videos-channels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .videos-channels {
        grid-template-columns: 1fr;
    }
}

/* ---------- Sub-page footer nav ---------- */

.footer-nav-subpage {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-subpage a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.2s;
}

.footer-nav-subpage a:hover {
    color: var(--text);
}

/* ---------- Who We Help ---------- */

.section-who {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.who-card {
    background: var(--surface);
    padding: clamp(22px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.who-card h3 {
    font-size: clamp(13px, 1.3vw, 16px);
    color: var(--text);
}

.who-card p {
    font-size: 13px;
    max-width: 30ch;
    line-height: 1.65;
}

/* ---------- What We Treat ---------- */

.section-treat {
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.treat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.treat-card {
    background: var(--bg);
    padding: clamp(22px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.treat-card h3 {
    font-size: clamp(13px, 1.3vw, 16px);
    color: var(--text);
    padding-top: 16px;
    border-top: 2px solid var(--orange);
}

.treat-card p {
    font-size: 13px;
    max-width: 30ch;
    line-height: 1.65;
}

@media (max-width: 820px) {
    .who-grid,
    .treat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 420px) {
    .who-grid,
    .treat-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Why PhysioPro Is Different ---------- */

.section-difference {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.diff-item {
    background: var(--surface);
    padding: clamp(28px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.diff-n {
    display: block;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--orange);
}

.diff-item h3 {
    font-size: clamp(15px, 1.6vw, 19px);
    color: var(--text);
    margin-top: 4px;
}

.diff-item > p {
    font-size: 14px;
    max-width: 38ch;
}

@media (max-width: 640px) {
    .diff-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Google Reviews card ---------- */

.google-reviews-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.025);
    transition: border-color 0.25s, background 0.25s;
    text-decoration: none;
}

.google-reviews-card:hover {
    border-color: rgba(255, 138, 0, 0.45);
    background: rgba(255, 138, 0, 0.06);
}

.gr-stars {
    font-size: 18px;
    color: var(--orange);
    letter-spacing: 3px;
    font-family: var(--font-body);
}

.gr-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    font-family: var(--font-body);
}

.gr-cta {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--text);
    font-family: var(--font-body);
    margin-top: 4px;
    transition: color 0.2s;
}

.google-reviews-card:hover .gr-cta {
    color: var(--orange);
}

/* ---------- V4 mobile overrides ---------- */

@media (max-width: 980px) {
    .hero-photo {
        margin-right: 0;
        min-height: 0;
        height: clamp(260px, 40vh, 400px);
        align-self: auto;
    }

    .before-book-grid {
        grid-template-columns: 1fr;
    }

    .before-book-location {
        padding-top: 0;
    }

    .section-founder {
        padding-top: clamp(72px, 12vw, 120px);
        padding-bottom: clamp(72px, 12vw, 120px);
    }

    #want-back {
        padding-top: clamp(72px, 12vw, 120px);
        padding-bottom: clamp(72px, 12vw, 120px);
    }
}

/* ---------- PhysioPro chat widget ---------- */

.pchat {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 200;
}

.pchat-bubble {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(255, 138, 0, 0.35);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.pchat-bubble:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(255, 138, 0, 0.48);
}

.pchat-bubble svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pchat-panel {
    position: absolute;
    bottom: 72px;
    left: 0;
    width: 340px;
    max-height: 480px;
    background: var(--surface);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    animation: pchat-enter 0.28s var(--ease) both;
}

@keyframes pchat-enter {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

.pchat-panel[hidden] {
    display: none;
}

.pchat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.pchat-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text);
}

.pchat-close {
    background: none;
    border: none;
    color: var(--text-2);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.pchat-close:hover {
    color: var(--text);
}

.pchat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
}

.pchat-msg {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.65;
}

.pchat-msg--bot {
    color: var(--text-2);
}

.pchat-msg--user {
    color: var(--text);
    text-align: right;
    padding-left: 40px;
}

.pchat-msg--answer {
    color: var(--text-2);
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--orange);
}

.pchat-msg--answer p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
}

.pchat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.2s;
}

.pchat-cta:hover {
    opacity: 0.72;
}

.pchat-escalate {
    display: block;
    margin-top: 12px;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-2);
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.pchat-escalate a {
    color: var(--text);
    font-weight: 600;
    transition: color 0.2s;
}

.pchat-escalate a:hover {
    color: var(--orange);
}

.pchat-topics {
    padding: 0 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    flex-shrink: 0;
}

.pchat-topic {
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.pchat-topic:hover {
    background: rgba(255, 138, 0, 0.1);
    border-color: rgba(255, 138, 0, 0.45);
}

.pchat-input-row {
    display: flex;
    border-top: 1px solid var(--line);
    flex-shrink: 0;
}

.pchat-status {
    padding: 10px 16px 0;
    color: var(--text-2);
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
}

.pchat-status--error {
    color: #ffb59f;
}

.pchat-input {
    flex: 1;
    min-height: 46px;
    padding: 0 14px;
    background: rgba(8, 8, 8, 0.92);
    border: none;
    border-right: 1px solid var(--line);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.pchat-input::placeholder {
    color: #555;
}

.pchat-send {
    min-width: 46px;
    background: none;
    border: none;
    color: var(--orange);
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.pchat-send:hover {
    background: rgba(255, 138, 0, 0.1);
}

@media (max-width: 640px) {
    .pchat {
        left: auto;
        right: 20px;
        bottom: 82px;
    }

    .pchat-panel {
        left: auto;
        right: 0;
        width: calc(100vw - 40px);
        max-width: 340px;
        max-height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pchat-bubble {
        transition: none;
    }
    .pchat-panel {
        animation: none;
    }
}

/* ---------- Ask Leonardo page ---------- */

/* ---------- Ask Leonardo — hero ---------- */

.ask-hero {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 0.6fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    padding: clamp(120px, 16vw, 200px) var(--pad-x) clamp(64px, 9vw, 100px);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.ask-hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ask-hero-content .eyebrow {
    margin-bottom: clamp(14px, 2vw, 22px);
}

.ask-hero-content h1 {
    font-size: clamp(38px, 5.5vw, 72px);
    max-width: 16ch;
    margin-bottom: clamp(20px, 2.5vw, 28px);
}

.ask-hero-content .page-hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: rgba(245, 245, 245, 0.82);
    max-width: 42ch;
    margin-bottom: 16px;
}

.ask-hero-note {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.68);
    border-left: 2px solid var(--orange);
    padding-left: 12px;
    line-height: 1.6;
    margin: 0;
}

.ask-hero-image {
    position: relative;
    overflow: hidden;
    align-self: stretch;
    min-height: 420px;
}

.ask-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 12%;
    filter: brightness(0.78) saturate(0.82) contrast(1.12);
}

.ask-hero-image::after {
    content: "";
    position: absolute;
    inset: auto -14px -14px auto;
    width: 50%;
    height: 50%;
    border-right: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    pointer-events: none;
}

/* ---------- Ask Leonardo — sample Q&A ---------- */

.ask-qa-block {
    max-width: 760px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.ask-qa-question,
.ask-qa-answer {
    padding: clamp(24px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ask-qa-question {
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid var(--line);
}

.ask-qa-answer {
    background: rgba(255, 138, 0, 0.03);
    border-left: 3px solid var(--orange);
}

.ask-qa-label {
    font-family: var(--font);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--orange);
}

.ask-qa-question p,
.ask-qa-answer p {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 16px);
    color: rgba(245, 245, 245, 0.88);
    line-height: 1.78;
    max-width: 58ch;
    margin: 0;
}

.ask-qa-question p {
    font-style: italic;
    color: var(--text-2);
}

.ask-qa-answer p + p {
    margin-top: 10px;
}

.ask-qa-attribution {
    display: block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-top: 4px;
}

/* ---------- Ask Leonardo — form ---------- */

.ask-form-wrap {
    max-width: 640px;
}

.ask-response-note {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    letter-spacing: 0.04em;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Ask Leonardo — mobile ---------- */

@media (max-width: 820px) {
    .ask-hero {
        grid-template-columns: 1fr;
        padding-top: clamp(100px, 14vw, 140px);
        gap: clamp(24px, 4vw, 40px);
    }

    .ask-hero-image {
        order: -1;
        min-height: 240px;
        max-height: 320px;
        align-self: auto;
    }

    .ask-hero-image::after {
        display: none;
    }
}

/* ---------- Nav dropdown / mega-menu ---------- */

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
    white-space: nowrap;
    line-height: 1;
}

.nav-trigger:hover {
    color: var(--text);
}

.nav-trigger:focus-visible {
    color: var(--text);
    outline: 2px solid var(--orange);
    outline-offset: 3px;
    border-radius: 2px;
}

.nav-chevron {
    font-size: 9px;
    opacity: 0.55;
    transition: transform 0.2s;
    display: inline-block;
}

.nav-home {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: color 0.2s;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-home:hover {
    color: var(--text);
}

/* Dropdown panel — hidden by default on all breakpoints */
.nav-dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    padding: 6px 0;
    z-index: 300;
}

/* Show on hover, focus-within (keyboard tab), or JS .is-open */
@media (min-width: 981px) {
    .nav-item:hover .nav-chevron,
    .nav-item:focus-within .nav-chevron,
    .nav-item.is-open .nav-chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown,
    .nav-item.is-open .nav-dropdown {
        display: flex;
    }

    .nav-dropdown a {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-2);
        padding: 10px 18px;
        white-space: nowrap;
        transition: color 0.15s, background 0.15s;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
        color: var(--text);
        background: rgba(255, 255, 255, 0.05);
        outline: none;
    }

    /* Tighten gap to fit 8 top-level items */
    .nav {
        gap: clamp(8px, 1.1vw, 20px);
    }
}

/* Mobile dropdown — accordion style */
@media (max-width: 980px) {
    .nav-home {
        display: block;
        padding: 15px 0;
        font-size: 13px;
        border-bottom: 1px solid var(--line);
        color: var(--text-2);
    }

    .nav-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 15px 0;
        font-size: 13px;
        border-bottom: 1px solid var(--line);
        color: var(--text-2);
        letter-spacing: 0.14em;
    }

    .nav-chevron {
        font-size: 11px;
        opacity: 0.7;
    }

    .nav-item {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-item.is-open .nav-chevron {
        transform: rotate(180deg);
        opacity: 1;
    }

    .nav-item.is-open .nav-dropdown {
        display: flex;
    }

    /* Mobile dropdown as indented accordion */
    .nav-dropdown {
        position: static;
        backdrop-filter: none;
        background: none;
        border: none;
        border-left: 2px solid var(--line);
        padding: 4px 0 4px 16px;
        margin-bottom: 4px;
        min-width: 0;
    }

    .nav-dropdown a {
        display: block;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-2);
        padding: 10px 0;
        border-bottom: none;
        white-space: normal;
        transition: color 0.15s;
    }

    .nav-dropdown a:hover {
        color: var(--text);
    }
}

/* ── Legal Infrastructure ────────────────────────────────────────────── */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    justify-content: center;
    margin-top: 0.65rem;
}

.footer-legal a {
    font-size: 11px;
    color: var(--text-2);
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-legal a:hover {
    color: var(--orange);
}

.legal-pending {
    background: rgba(255, 138, 0, 0.10);
    border: 1px dashed rgba(255, 138, 0, 0.45);
    border-radius: 4px;
    padding: 0.4rem 0.6rem;
    font-size: 13px;
    color: var(--orange);
    font-family: var(--font-body);
    display: inline-block;
}

.legal-notice-box {
    background: rgba(255, 138, 0, 0.07);
    border-left: 3px solid var(--orange);
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 6px 6px 0;
}

.legal-notice-box p {
    font-size: 13px;
    margin: 0;
    color: var(--text-2);
}

.legal-notice-box strong {
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.35rem;
}

.legal-section-body {
    max-width: 68ch;
}

.legal-section-body p {
    margin-bottom: 1rem;
}

.legal-section-body p:last-child {
    margin-bottom: 0;
}

.legal-dl {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.legal-dl dt {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.legal-dl dd {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    margin: 0;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .footer-legal {
        gap: 0.4rem 1rem;
    }
}

/* === SPRINT C — Conversion flow additions === */
.hero-micro-cta { font-family: var(--font-body); font-size: 14px; color: var(--text-2); margin-top: 0.75rem; line-height: 1.5; }
.hero-micro-cta a { color: var(--orange); text-decoration: none; }
.hero-micro-cta a:hover { text-decoration: underline; }

.section-cta-mid { padding: clamp(32px,5vw,64px) clamp(16px,5vw,48px); background: rgba(255,138,0,.05); border-top: 1px solid rgba(255,138,0,.15); border-bottom: 1px solid rgba(255,138,0,.15); }
.cta-mid-block { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-mid-copy { font-family: var(--font); font-size: clamp(18px,2.5vw,24px); font-weight: 700; color: var(--text); margin: 0; }

/* === SPRINT A — nav-link style for direct About/Contact links === */
.nav-link { font-family: var(--font); font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; letter-spacing: 0.03em; padding: 0.25rem 0; }
.nav-link:hover { color: var(--orange); }

/* ============================================================
   SPRINT 1 — Motion Foundation
   ============================================================ */

/* 1. Card hover states — shared transition */
.who-card,
.treat-card,
.diff-item,
.hub-card,
.philosophy-item {
    transition: transform 0.28s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease;
}

.who-card:hover,
.treat-card:hover,
.diff-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 138, 0, 0.30);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(255, 138, 0, 0.08);
}

.hub-card:hover,
.philosophy-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 138, 0, 0.25);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* 2. Card grid stagger entrance (applied via CSS, works with existing JS reveal) */
.who-grid .who-card.reveal:nth-child(2),
.treat-grid .treat-card.reveal:nth-child(2),
.diff-grid .diff-item.reveal:nth-child(2) { transition-delay: 70ms; }

.who-grid .who-card.reveal:nth-child(3),
.treat-grid .treat-card.reveal:nth-child(3),
.diff-grid .diff-item.reveal:nth-child(3) { transition-delay: 140ms; }

.who-grid .who-card.reveal:nth-child(4),
.treat-grid .treat-card.reveal:nth-child(4),
.diff-grid .diff-item.reveal:nth-child(4) { transition-delay: 210ms; }

.who-grid .who-card.reveal:nth-child(5),
.treat-grid .treat-card.reveal:nth-child(5) { transition-delay: 280ms; }

.who-grid .who-card.reveal:nth-child(6),
.treat-grid .treat-card.reveal:nth-child(6) { transition-delay: 350ms; }

/* 3. Image hover zoom — add overflow:hidden to image containers */
.inside-main,
.inside-side,
.location-image {
    overflow: hidden;
}

.inside-main img,
.inside-side img,
.location-image img,
.proof-image img {
    transition: transform 0.5s ease-out;
}

.inside-main:hover img,
.inside-side:hover img,
.location-image:hover img,
.proof-image:hover img {
    transform: scale(1.035);
}

/* 4. Dropdown transition — desktop only (visibility/opacity for animation) */
@media (min-width: 981px) {
    .nav-dropdown {
        display: flex;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown,
    .nav-item.is-open .nav-dropdown {
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: opacity 0.18s ease, transform 0.18s ease;
    }
}

/* Mobile: revert to display toggle, disable visibility approach */
@media (max-width: 980px) {
    .nav-dropdown {
        display: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        transition: none;
    }

    .nav-item.is-open .nav-dropdown {
        display: flex;
    }
}

/* 5. Mid-page CTA — stronger visual break + larger headline */
.section-cta-mid {
    background:
        radial-gradient(900px 400px at 50% 100%, rgba(255, 138, 0, 0.10), transparent 70%),
        rgba(255, 138, 0, 0.04);
    border-top: 1px solid rgba(255, 138, 0, 0.22);
    border-bottom: 1px solid rgba(255, 138, 0, 0.22);
    padding: clamp(48px, 8vw, 96px) clamp(16px, 5vw, 48px);
}

.cta-mid-block {
    text-align: left;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
}

.cta-mid-copy {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    max-width: 22ch;
    margin: 0;
}

/* ---------- Knowledge Base (resources.html) ---------- */

.kb-featured {
    display: block;
    background: var(--surface);
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange);
    padding: clamp(32px, 4vw, 56px);
    text-decoration: none;
    transition: background 0.25s;
}

.kb-featured:hover {
    background: #181818;
}

.kb-featured-labels {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.kb-featured h2 {
    font-size: clamp(22px, 2.8vw, 36px);
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.kb-featured > p {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
    max-width: 72ch;
    color: var(--text-2);
}

.kb-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.kb-author {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
}

.kb-read-time {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 138, 0, 0.1);
    padding: 4px 10px;
    border-radius: 2px;
}

.kb-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
}

.kb-author-chip {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-2);
}

.kb-read-time-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 138, 0, 0.1);
    padding: 3px 8px;
    border-radius: 2px;
}

.kb-card-related {
    font-size: 12px;
    color: var(--text-2);
    margin-top: 8px;
    margin-bottom: 4px;
}

.kb-related-title {
    color: var(--orange);
}

.kb-inline-cta {
    padding: 18px clamp(24px, 3vw, 40px);
    background: rgba(255, 138, 0, 0.04);
    border: 1px solid var(--line);
    border-top: none;
}

.kb-inline-cta p {
    font-size: 14px;
    color: var(--text-2);
    margin: 0;
}

.kb-inline-cta a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.kb-inline-cta a:hover {
    text-decoration: underline;
}

/* ---------- Sprint 6 — Trust Layer ---------- */

/* Credential bar */
.cred-bar-section {
    padding: 0 var(--pad-x);
}

.cred-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 40px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin-bottom: clamp(40px, 6vw, 72px);
}

.cred-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cred-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-2);
}

.cred-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

/* Method comparison */
.method-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.compare-col {
    background: var(--surface);
    padding: clamp(28px, 3.5vw, 48px);
}

.compare-col--physiopro {
    background: var(--bg);
}

.compare-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 20px;
}

.compare-heading--physiopro {
    color: var(--orange);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.compare-list li {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.compare-col--standard .compare-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--text-2);
}

.compare-col--physiopro .compare-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--orange);
}

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

/* Good fit / Not a good fit */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.fit-col {
    background: var(--surface);
    padding: clamp(28px, 3.5vw, 48px);
}

.fit-col h3 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.fit-col--yes h3 {
    color: var(--orange);
}

.fit-col--no h3 {
    color: var(--text-2);
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fit-list li {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.55;
    padding-left: 20px;
    position: relative;
}

.fit-col--yes .fit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.fit-col--no .fit-list li::before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--text-2);
    font-weight: 700;
}

.fit-note {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-style: italic;
}

@media (max-width: 680px) {
    .fit-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   Sprint 1 — Premium Motion Polish
   ============================================================ */

:root {
    --ease-fast: cubic-bezier(0.2, 0.8, 0.2, 1);
    --card-shadow-hover: 0 22px 48px rgba(0, 0, 0, 0.42), 0 6px 18px rgba(255, 138, 0, 0.08);
}

.button,
.nav-cta,
.sticky-whatsapp {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.button::before,
.nav-cta::before,
.sticky-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform 0.55s var(--ease-fast);
    pointer-events: none;
}

.button::after,
.nav-cta::after,
.sticky-whatsapp::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border: 1px solid transparent;
    opacity: 0;
    transition: opacity 0.25s ease, border-color 0.25s ease;
    pointer-events: none;
}

.button,
.nav-cta,
.sticky-whatsapp,
.nav a,
.nav-trigger,
.nav-home {
    transition:
        color 0.2s ease,
        background 0.25s ease,
        transform 0.25s var(--ease),
        box-shadow 0.25s var(--ease),
        opacity 0.2s ease,
        border-color 0.25s ease;
}

.button:focus-visible,
.nav-cta:focus-visible,
.sticky-whatsapp:focus-visible,
.resource-card:focus-visible,
.kb-featured:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.nav-home,
.nav-link,
.nav-trigger {
    position: relative;
}

.nav-home::after,
.nav-link::after,
.nav-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.95), transparent);
    opacity: 0;
    transform: scaleX(0.42);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.22s var(--ease);
}

.nav-home:hover::after,
.nav-home:focus-visible::after,
.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-home.is-current::after,
.nav-link.is-current::after,
.nav-item.has-current > .nav-trigger::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-home.is-current,
.nav-link.is-current,
.nav-item.has-current > .nav-trigger {
    color: var(--text);
}

.nav-dropdown {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

@media (min-width: 981px) {
    .nav-dropdown a {
        opacity: 0;
        transform: translateY(6px);
        transition: color 0.15s, background 0.15s, transform 0.18s var(--ease), opacity 0.18s ease;
    }

    .nav-item:hover .nav-dropdown a,
    .nav-item:focus-within .nav-dropdown a,
    .nav-item.is-open .nav-dropdown a {
        opacity: 1;
        transform: none;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
        transform: translateX(3px);
    }

    .nav-dropdown a:nth-child(1) { transition-delay: 0.02s; }
    .nav-dropdown a:nth-child(2) { transition-delay: 0.04s; }
    .nav-dropdown a:nth-child(3) { transition-delay: 0.06s; }
    .nav-dropdown a:nth-child(4) { transition-delay: 0.08s; }
    .nav-dropdown a:nth-child(5) { transition-delay: 0.10s; }
    .nav-dropdown a:nth-child(6) { transition-delay: 0.12s; }
}

@media (max-width: 980px) {
    .nav {
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.24s ease, transform 0.24s var(--ease), visibility 0s linear 0.24s;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    }

    .nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: opacity 0.24s ease, transform 0.24s var(--ease);
    }

    .nav-dropdown {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transform: translateY(-6px);
        transition: opacity 0.2s ease, transform 0.2s var(--ease), max-height 0.24s var(--ease);
    }

    .nav-item.is-open .nav-dropdown {
        opacity: 1;
        max-height: 420px;
        transform: none;
    }

    .nav-dropdown a {
        transition: color 0.15s, transform 0.18s var(--ease);
    }

    .nav-dropdown a:hover {
        transform: translateX(3px);
    }
}

.reveal {
    --reveal-y: 28px;
    --reveal-duration: 0.9s;
    --reveal-delay: 0s;
    --reveal-blur: 0px;
}

.section-head.reveal,
.kb-featured.reveal {
    --reveal-y: 20px;
}

.resource-card.reveal,
.who-card.reveal,
.treat-card.reveal,
.diff-item.reveal,
.trust-chip,
.pstep.reveal {
    --reveal-y: 18px;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        transform: translateY(var(--reveal-y));
        transition:
            opacity var(--reveal-duration) var(--ease),
            transform var(--reveal-duration) var(--ease),
            filter var(--reveal-duration) var(--ease);
        transition-delay: var(--reveal-delay);
        filter: blur(var(--reveal-blur));
    }

    .reveal.in,
    .reveal.is-visible {
        filter: none;
    }

    .resource-grid .resource-card.reveal:nth-child(2),
    .who-grid .who-card.reveal:nth-child(2),
    .treat-grid .treat-card.reveal:nth-child(2),
    .diff-grid .diff-item.reveal:nth-child(2) {
        --reveal-delay: 70ms;
    }

    .resource-grid .resource-card.reveal:nth-child(3),
    .who-grid .who-card.reveal:nth-child(3),
    .treat-grid .treat-card.reveal:nth-child(3),
    .diff-grid .diff-item.reveal:nth-child(3) {
        --reveal-delay: 140ms;
    }

    .resource-grid .resource-card.reveal:nth-child(4),
    .who-grid .who-card.reveal:nth-child(4),
    .treat-grid .treat-card.reveal:nth-child(4),
    .diff-grid .diff-item.reveal:nth-child(4) {
        --reveal-delay: 210ms;
    }

    .resource-grid .resource-card.reveal:nth-child(5),
    .who-grid .who-card.reveal:nth-child(5),
    .treat-grid .treat-card.reveal:nth-child(5) {
        --reveal-delay: 280ms;
    }

    .resource-grid .resource-card.reveal:nth-child(6),
    .who-grid .who-card.reveal:nth-child(6),
    .treat-grid .treat-card.reveal:nth-child(6) {
        --reveal-delay: 350ms;
    }
}

.trust-strip {
    position: relative;
}

.trust-strip-inner {
    position: relative;
}

.trust-strip-inner::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.6), transparent);
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: opacity 0.35s ease, transform 0.65s var(--ease);
}

.trust-chip {
    position: relative;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.trust-chip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 1px;
    background: rgba(255, 138, 0, 0.55);
    transform: scaleX(0.4);
    transform-origin: left center;
    opacity: 0.3;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
}

.trust-strip.is-visible .trust-strip-inner::after {
    opacity: 1;
    transform: scaleX(1);
}

.trust-strip.is-visible .trust-chip::before {
    transform: scaleX(1);
    opacity: 1;
}

.resource-card,
.kb-featured,
.who-card,
.treat-card,
.diff-item,
.hub-card,
.philosophy-item,
.faq-item,
.ask-qa-block {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.resource-card::before,
.kb-featured::before,
.who-card::before,
.treat-card::before,
.diff-item::before,
.hub-card::before,
.philosophy-item::before,
.faq-item::before,
.ask-qa-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%, rgba(255, 138, 0, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.resource-card-arrow,
.kb-read-time,
.kb-read-time-badge,
.kb-related-title,
.pstep p,
.pstep h3,
.pstep .pn {
    transition: transform 0.22s var(--ease), color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.pstep.lit::before {
    box-shadow: 0 0 0 5px rgba(255, 138, 0, 0.10);
}

.pstep.lit .pn,
.pstep.lit h3 {
    color: var(--text);
    transform: translateY(-2px);
}

.pstep.lit p {
    color: rgba(245, 245, 245, 0.84);
    transform: translateY(-1px);
}

.lead-capture__field {
    padding: 0.35rem 0;
    transition: transform 0.22s var(--ease), filter 0.22s ease;
}

.lead-capture__label {
    transition: color 0.2s ease, transform 0.2s ease;
}

.lead-capture__input,
.lead-capture__select {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.lead-capture__field:focus-within {
    transform: translateX(4px);
}

.lead-capture__field:focus-within .lead-capture__label {
    color: var(--orange);
    transform: translateX(2px);
}

.lead-capture__input:focus,
.lead-capture__select:focus {
    background: rgba(12, 12, 12, 0.96);
}

.lead-capture__status {
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s var(--ease);
}

.lead-capture__status:not([hidden]) {
    opacity: 1;
    transform: none;
}

.lead-capture__form.is-submitting [type="submit"] {
    box-shadow: 0 18px 38px rgba(255, 138, 0, 0.22);
}

.lead-capture__form.is-submitting [type="submit"]::before {
    transform: translateX(120%);
}

.ask-form-wrap .lead-capture__form {
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.012));
    transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s var(--ease);
}

.ask-form-wrap .lead-capture__form:focus-within {
    border-color: rgba(255, 138, 0, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
    transform: translateY(-2px);
}

.kb-featured,
.resource-card {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0);
}

.kb-read-time,
.kb-read-time-badge {
    transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s var(--ease);
}

@media (hover: hover) {
    .button:hover,
    .nav-cta:hover,
    .sticky-whatsapp:hover {
        transform: translateY(-2px);
    }

    .button:hover::before,
    .nav-cta:hover::before,
    .sticky-whatsapp:hover::before {
        transform: translateX(120%);
    }

    .button:hover::after,
    .nav-cta:hover::after,
    .sticky-whatsapp:hover::after {
        opacity: 1;
        border-color: rgba(255, 255, 255, 0.22);
    }

    .resource-card:hover,
    .kb-featured:hover,
    .who-card:hover,
    .treat-card:hover,
    .diff-item:hover,
    .hub-card:hover,
    .philosophy-item:hover,
    .faq-item:hover,
    .ask-qa-block:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
    }

    .resource-card:hover::before,
    .kb-featured:hover::before,
    .who-card:hover::before,
    .treat-card:hover::before,
    .diff-item:hover::before,
    .hub-card:hover::before,
    .philosophy-item:hover::before,
    .faq-item:hover::before,
    .ask-qa-block:hover::before {
        opacity: 1;
    }

    .resource-card:hover .resource-card-arrow,
    .kb-featured:hover .resource-card-arrow {
        transform: translateX(8px);
        opacity: 1;
    }

    .kb-featured:hover .kb-read-time,
    .resource-card:hover .kb-read-time-badge {
        background: var(--orange);
        color: #0a0a0a;
        box-shadow: 0 8px 18px rgba(255, 138, 0, 0.18);
        transform: translateY(-1px);
    }

    .resource-card:hover .kb-related-title {
        color: #ffb15c;
    }
}

@media (prefers-reduced-motion: reduce) {
    .button,
    .nav-cta,
    .sticky-whatsapp,
    .resource-card,
    .kb-featured,
    .who-card,
    .treat-card,
    .diff-item,
    .hub-card,
    .philosophy-item,
    .faq-item,
    .ask-qa-block,
    .trust-chip,
    .lead-capture__field,
    .lead-capture__input,
    .lead-capture__select,
    .lead-capture__status,
    .nav,
    .nav-dropdown,
    .nav-dropdown a,
    .resource-card-arrow,
    .kb-read-time,
    .kb-read-time-badge {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        filter: none !important;
    }
}

/* ============================================================
   Sprint 2 — Hero Cinematic Polish
   ============================================================ */

.hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: clamp(28px, 4vw, 56px);
    padding-top: clamp(148px, 14vw, 178px);
    padding-bottom: clamp(64px, 9vh, 104px);
}

.hero::before {
    background:
        radial-gradient(780px 520px at 12% 28%, rgba(255, 138, 0, 0.12), transparent 62%),
        radial-gradient(480px 300px at 82% 22%, rgba(255, 255, 255, 0.04), transparent 72%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.58) 0%, rgba(10, 10, 10, 0.30) 34%, rgba(10, 10, 10, 0.94) 88%),
        linear-gradient(88deg, rgba(10, 10, 10, 0.92) 0%, rgba(14, 42, 71, 0.62) 47%, rgba(10, 10, 10, 0.26) 100%);
}

.hero::after {
    filter: brightness(0.66) saturate(0.84) contrast(1.12);
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: -36px;
    left: -36px;
    width: clamp(160px, 18vw, 260px);
    height: clamp(160px, 18vw, 260px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 138, 0, 0.14) 0%, rgba(255, 138, 0, 0) 70%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

.hero-copy > .eyebrow {
    margin-bottom: clamp(18px, 2vw, 24px);
}

.hero-copy > h1 {
    margin-bottom: clamp(24px, 3vw, 36px);
}

.hero-text {
    max-width: 42ch;
    font-size: clamp(17px, 1.8vw, 21px);
    color: rgba(245, 245, 245, 0.86);
}

.hero-credential {
    max-width: 38ch;
}

.hero-actions {
    gap: 16px;
}

.hero-rail {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin-top: clamp(22px, 3vw, 30px);
    border: 1px solid rgba(245, 245, 245, 0.12);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    width: fit-content;
}

.hero-rail span {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.82);
}

.hero-rail span + span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: rgba(245, 245, 245, 0.10);
}

.hero-rail span:last-child {
    color: var(--orange);
}

.hero-photo {
    min-height: 540px;
    border-left: 1px solid rgba(245, 245, 245, 0.08);
}

.hero-photo img {
    transform: scale(1.02);
}

.hero-photo::before {
    background:
        linear-gradient(to right, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.18) 34%, transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero-photo::after {
    width: 62%;
    height: 62%;
}

.hero-scroll-cue {
    position: absolute;
    left: var(--pad-x);
    bottom: clamp(18px, 3.5vw, 34px);
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    z-index: 3;
    color: rgba(245, 245, 245, 0.78);
}

.hero-scroll-copy {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-scroll-line {
    position: relative;
    width: 1px;
    height: 58px;
    background: rgba(245, 245, 245, 0.16);
    overflow: hidden;
}

.hero-scroll-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255, 138, 0, 0), rgba(255, 138, 0, 0.92), rgba(255, 255, 255, 0.88));
}

.hero.has-scrolled .hero-scroll-cue {
    animation: none;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.hero .button-primary {
    box-shadow: 0 14px 34px rgba(255, 138, 0, 0.18);
}

.hero .button-secondary {
    background: rgba(255, 255, 255, 0.02);
}

.trust-strip {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0)),
        var(--surface);
}

.trust-chip strong {
    transition: transform 0.35s var(--ease), color 0.35s ease, text-shadow 0.35s ease;
}

.trust-chip.is-live strong {
    transform: translateY(-2px);
    color: #fff6ea;
    text-shadow: 0 0 20px rgba(255, 138, 0, 0.14);
}

.trust-chip.is-live span {
    color: rgba(245, 245, 245, 0.78);
}

.trust-strip.is-visible .trust-chip {
    opacity: 1;
    transform: none;
}

.trust-strip.is-visible .trust-chip:nth-child(1) { transition-delay: 0ms; }
.trust-strip.is-visible .trust-chip:nth-child(2) { transition-delay: 80ms; }
.trust-strip.is-visible .trust-chip:nth-child(3) { transition-delay: 160ms; }
.trust-strip.is-visible .trust-chip:nth-child(4) { transition-delay: 240ms; }

#want-back {
    position: relative;
}

#want-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--pad-x);
    right: var(--pad-x);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.18), transparent);
    opacity: 0.8;
}

@media (prefers-reduced-motion: no-preference) {
    .hero::before {
        animation: hero-glow-shift 11s ease-in-out infinite alternate;
    }

    .hero-copy .hero-reveal:nth-child(1) {
        animation-duration: 0.7s;
        animation-delay: 0.06s;
    }

    .hero-copy .hero-reveal:nth-child(3) {
        animation-duration: 0.86s;
        animation-delay: 0.52s;
    }

    .hero-copy .hero-reveal:nth-child(4) {
        animation-duration: 0.82s;
        animation-delay: 0.70s;
    }

    .hero-copy .hero-reveal:nth-child(5) {
        animation-duration: 0.84s;
        animation-delay: 0.88s;
    }

    .hero-copy .hero-reveal:nth-child(6) {
        animation-duration: 0.8s;
        animation-delay: 1.02s;
    }

    .h1-line {
        transform: translateY(28px);
        clip-path: inset(0 0 100% 0);
        animation: headline-cinematic 0.88s var(--ease) forwards;
    }

    .h1-line:nth-child(1) { animation-delay: 0.12s; }
    .h1-line:nth-child(2) { animation-delay: 0.28s; }
    .h1-line:nth-child(3) { animation-delay: 0.46s; }

    .hero-photo.reveal {
        --reveal-y: 18px;
        --reveal-duration: 1s;
        --reveal-delay: 0.34s;
    }

    .hero-scroll-cue {
        transition: opacity 0.3s ease, transform 0.3s var(--ease);
    }

    .hero-scroll-line::after {
        animation: scroll-line-pulse 1.8s var(--ease-fast) infinite;
    }

    .trust-chip {
        opacity: 0;
        transform: translateY(16px);
    }
}

@keyframes hero-glow-shift {
    0% {
        filter: saturate(0.96);
        transform: translate3d(0, 0, 0);
    }
    100% {
        filter: saturate(1.06);
        transform: translate3d(0, -6px, 0);
    }
}

@keyframes headline-cinematic {
    0% {
        opacity: 0;
        transform: translateY(28px);
        clip-path: inset(0 0 100% 0);
    }
    100% {
        opacity: 1;
        transform: none;
        clip-path: inset(0 0 0% 0);
    }
}

@keyframes scroll-line-pulse {
    0% {
        transform: translateY(-24px);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    78% {
        opacity: 1;
    }
    100% {
        transform: translateY(58px);
        opacity: 0;
    }
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
        gap: clamp(22px, 5vw, 30px);
        padding-top: clamp(114px, 16vw, 136px);
        padding-bottom: clamp(40px, 8vw, 64px);
    }

    .hero-copy::before {
        top: -18px;
        left: -16px;
        width: 180px;
        height: 180px;
    }

    .hero-photo {
        min-height: 0;
        border-left: none;
    }

    .hero-rail {
        width: 100%;
        justify-content: space-between;
    }

    .hero-rail span {
        flex: 1;
        justify-content: center;
        padding: 0 10px;
    }

    .hero-scroll-cue {
        position: static;
        margin-top: 22px;
        align-items: flex-start;
    }

    .hero-scroll-line {
        height: 44px;
    }
}

@media (max-width: 640px) {
    .hero-text {
        max-width: none;
    }

    .hero-rail {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-rail span {
        min-height: 40px;
        font-size: 9px;
        letter-spacing: 0.14em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-scroll-line::after,
    .hero-scroll-cue,
    .trust-chip,
    .trust-chip strong,
    .hero-rail span,
    .h1-line {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
