:root {
    --cream: #F5F0E6;
    --cream-2: #EFE5D4;
    --ivory: #FFFDF8;
    --rose: #C97861;
    --rose-dark: #A95F49;
    --clay: #B16A44;
    --olive: #667246;
    --sage: #AAB08D;
    --ink: #28231F;
    --muted: #6F6258;
    --soft: #9A8C82;
    --line: rgba(40, 35, 31, .1);
    --line-strong: rgba(40, 35, 31, .16);
    --glow: rgba(201, 120, 97, .16);

    --font-title: 'Lora', Georgia, serif;
    --font-body: 'Raleway', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Caveat', cursive;

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 38px;
    --radius-xl: 52px;
    --radius-full: 999px;

    --shadow-soft: 0 24px 70px rgba(40, 35, 31, .11);
    --shadow-card: 0 16px 44px rgba(40, 35, 31, .08);

    --ease: cubic-bezier(.16, 1, .3, 1);
}

/* RESET */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(201, 120, 97, .12), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(102, 114, 70, .10), transparent 30rem),
        var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

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

button {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

/* PROGRESS */

.site-progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 3000;
}

.site-progress__bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--clay), var(--olive));
}

/* EXPERIENCE RAIL DESKTOP */

.experience-rail {
    position: fixed;
    top: 50%;
    right: 28px;
    z-index: 900;
    transform: translateY(-50%);
    display: grid;
    gap: 18px;
}

.experience-rail::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: 1px;
    background: rgba(40, 35, 31, .12);
}

.experience-rail__item {
    position: relative;
    display: grid;
    grid-template-columns: 18px auto;
    gap: 10px;
    align-items: center;
    opacity: .32;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.experience-rail__item span {
    position: relative;
    z-index: 2;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(255, 253, 248, .86);
    border: 1px solid rgba(201, 120, 97, .28);
}

.experience-rail__item strong {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rose-dark);
    transform: translateX(4px);
}

.experience-rail__item.is-active {
    opacity: 1;
    transform: translateX(-6px);
}

.experience-rail__item.is-active span {
    background: var(--rose);
    border-color: var(--rose);
    box-shadow:
        0 0 0 9px rgba(201, 120, 97, .14),
        0 12px 24px rgba(201, 120, 97, .2);
}

.experience-rail__item.is-active strong {
    color: var(--rose-dark);
}

/* MOBILE PHASE INDICATOR - created from main.js */

.mobile-phase {
    display: none;
}

/* HEADER */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2000;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}

.site-header.is-solid,
.site-header.is-open {
    background: rgba(245, 240, 230, .92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 1px 0 var(--line);
}

.site-header__inner {
    width: min(1120px, calc(100% - 40px));
    height: 82px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    position: relative;
    z-index: 2002;
    display: flex;
    align-items: center;
}

.brand__logo {
    width: auto;
    height: 54px;
    max-width: 230px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
}

.main-nav a {
    position: relative;
    font-size: .84rem;
    font-weight: 500;
    color: var(--muted);
    transition: color .25s var(--ease);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--rose);
    transition: transform .3s var(--ease);
}

.main-nav a:hover,
.main-nav a.is-active {
    color: var(--rose);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 12px 24px;
    border-radius: var(--radius-full);
    background: var(--rose);
    color: var(--ivory);
    font-size: .84rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(201, 120, 97, .22);
    transition: transform .25s var(--ease), background .25s var(--ease);
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--rose-dark);
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 2002;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .3s var(--ease);
}

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

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

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

/* SHARED */

.eyebrow {
    font-size: .72rem;
    font-weight: 700;
    color: var(--rose);
    letter-spacing: .24em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.script {
    font-family: var(--font-script);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    color: var(--rose);
    margin-bottom: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--primary {
    background: var(--rose);
    color: var(--ivory);
    box-shadow: 0 16px 34px rgba(201, 120, 97, .24);
}

.btn--primary:hover {
    background: var(--rose-dark);
}

.btn--secondary {
    border-color: rgba(40, 35, 31, .85);
    color: var(--ink);
}

.btn--secondary:hover {
    background: var(--ink);
    color: var(--ivory);
}

.btn--light {
    background: var(--ivory);
    color: var(--rose-dark);
}

.btn--light-outline {
    border-color: rgba(255, 255, 255, .62);
    color: var(--ivory);
}

.btn--light-outline:hover {
    background: rgba(255, 255, 255, .12);
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--rose);
    font-weight: 700;
    font-size: .94rem;
}

.section-head {
    width: min(760px, 100%);
    margin-inline: auto;
    margin-bottom: clamp(42px, 6vw, 72px);
    text-align: center;
}

.section-head h2,
.split__content h2,
.space__copy h2,
.final h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.035em;
}

.section-head p:not(.script),
.space__copy p,
.final p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 0 76px;
    overflow: hidden;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    min-height: calc(100dvh - 194px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(46px, 7vw, 88px);
    align-items: center;
}

.hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.75rem, 6.2vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.055em;
    max-width: 880px;
}

.hero__text {
    width: min(610px, 100%);
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
    width: min(700px, 100%);
}

.hero__facts div {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, .58);
    border: 1px solid var(--line);
}

.hero__facts strong {
    display: block;
    font-size: .76rem;
    color: var(--rose);
    margin-bottom: 4px;
}

.hero__facts span {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.4;
}

.hero__media {
    position: relative;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.hero-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-2);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(40, 35, 31, .36));
}

.hero-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.08rem;
}

.breath-shape {
    position: absolute;
    right: 3vw;
    bottom: 4vh;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    opacity: .42;
    pointer-events: none;
}

.breath-shape span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 120, 97, .22);
    border-radius: 52% 48% 55% 45%;
    animation: breathe 9s ease-in-out infinite, orbit 34s linear infinite;
}

.breath-shape span:nth-child(2) {
    inset: 10%;
    border-color: rgba(102, 114, 70, .18);
    animation-delay: -2s;
    animation-duration: 10s, 39s;
}

.breath-shape span:nth-child(3) {
    inset: 20%;
    border-color: rgba(177, 106, 68, .18);
    animation-delay: -4s;
    animation-duration: 11s, 44s;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(.94);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes orbit {
    to {
        rotate: 360deg;
    }
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 3;
    transform: translateX(-50%);
    text-align: center;
    color: var(--rose);
}

.scroll-cue span {
    display: block;
    font-family: var(--font-script);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.scroll-cue i {
    display: block;
    width: 1px;
    height: 46px;
    margin-inline: auto;
    background: linear-gradient(to bottom, var(--rose), transparent);
}

/* SUPPORT */

.support {
    position: relative;
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.support__layout {
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    gap: clamp(42px, 7vw, 96px);
    align-items: start;
}

.support-panel {
    position: sticky;
    top: 118px;
    min-height: 560px;
    padding: 38px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 50% 36%, rgba(201, 120, 97, .14), transparent 10rem),
        linear-gradient(145deg, rgba(255, 253, 248, .94), rgba(245, 240, 230, .84));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.support-panel__shape {
    position: relative;
    width: 210px;
    aspect-ratio: 1;
    margin: 0 auto 34px;
}

.support-panel__shape span {
    position: absolute;
    inset: 0;
    border-radius: 52% 48% 55% 45%;
    border: 1px solid rgba(201, 120, 97, .34);
    animation: breathe 8s ease-in-out infinite, orbit 38s linear infinite;
}

.support-panel__shape span:nth-child(2) {
    inset: 16%;
    border-color: rgba(102, 114, 70, .24);
    animation-delay: -2s;
}

.support-panel__label {
    color: var(--rose);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.support-panel h3 {
    font-family: var(--font-title);
    font-size: clamp(1.85rem, 3.4vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.support-panel > p:last-of-type {
    color: var(--muted);
    line-height: 1.85;
    min-height: 112px;
}

.support-panel__link {
    display: inline-flex;
    margin-top: 26px;
    color: var(--rose-dark);
    font-weight: 800;
    font-size: .92rem;
}

.support-steps {
    display: grid;
    gap: 26px;
}

.support-step {
    min-height: 52vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 5vw, 54px);
    border-radius: var(--radius-xl);
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
    opacity: .42;
    transform: scale(.97);
    transition: opacity .45s var(--ease), transform .45s var(--ease), box-shadow .45s var(--ease);
}

.support-step.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow-card);
}

.support-step span {
    color: var(--rose);
    font-family: var(--font-title);
    font-size: 1.12rem;
    margin-bottom: 30px;
}

.support-step h3 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.8vw, 3.65rem);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -.05em;
    margin-bottom: 20px;
}

.support-step p {
    color: var(--muted);
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.85;
    max-width: 650px;
}

/* JOANA */

.joana {
    padding: clamp(90px, 12vw, 150px) 0;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.split__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

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

.split__content h2 {
    margin-bottom: 22px;
}

.split__content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.split__content .lead {
    font-size: 1.08rem;
    color: var(--ink);
}

.quote {
    margin: 28px 0;
    padding: 28px 30px;
    border-radius: 30px;
    background: var(--ivory);
    border: 1px solid var(--line);
    color: var(--rose-dark);
    font-family: var(--font-title);
    font-size: clamp(1.22rem, 2.4vw, 1.72rem);
    font-style: italic;
    line-height: 1.38;
}

.signature {
    margin-top: 28px;
    padding-left: 20px;
    border-left: 2px solid var(--rose);
}

.signature span {
    display: block;
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--rose);
}

.signature small {
    display: block;
    color: var(--muted);
}

/* SERVICES */

.services {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 30px 32px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 253, 248, .88), rgba(245, 240, 230, .88));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
    transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(201, 120, 97, .22);
}

.service-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--rose);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2.3vw, 1.85rem);
    font-weight: 500;
    line-height: 1.18;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 760px;
}

.service-card > a {
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: var(--radius-full);
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--rose-dark);
    font-size: .86rem;
    font-weight: 800;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.service-card > a:hover {
    background: var(--rose);
    color: var(--ivory);
    transform: translateY(-2px);
}

/* SPACE */

.space {
    padding: clamp(90px, 12vw, 150px) 0;
}

.space__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.space__copy p {
    margin-bottom: 30px;
}

.gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.gallery figure {
    overflow: hidden;
    border-radius: 30px;
    background: var(--cream-2);
    min-height: 220px;
    box-shadow: 0 12px 36px rgba(40, 35, 31, .08);
}

.gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__large {
    grid-row: span 2;
}

/* TESTIMONIALS */

.voices {
    padding: clamp(90px, 12vw, 140px) 0;
    background: var(--ivory);
    overflow: hidden;
}

.testimonials {
    position: relative;
}

.testimonials::before,
.testimonials::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testimonials::before {
    left: 0;
    background: linear-gradient(to right, var(--ivory), transparent);
}

.testimonials::after {
    right: 0;
    background: linear-gradient(to left, var(--ivory), transparent);
}

.testimonials__track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: testimonials 55s linear infinite;
}

.testimonials__track:hover {
    animation-play-state: paused;
}

.testimonials blockquote {
    width: 380px;
    padding: 32px 30px;
    border-radius: 32px;
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
}

.testimonials p {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--muted);
    line-height: 1.75;
}

.testimonials footer {
    margin-top: 18px;
    color: var(--rose);
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

@keyframes testimonials {
    to {
        transform: translateX(-50%);
    }
}

/* FINAL CTA */

.final {
    position: relative;
    padding: clamp(110px, 15vw, 190px) 20px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .18), transparent 18rem),
        linear-gradient(135deg, var(--rose), var(--rose-dark) 58%, var(--clay));
    text-align: center;
    overflow: hidden;
}

.final__light {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(80vw, 820px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 62%);
    animation: final-light 7s ease-in-out infinite;
}

@keyframes final-light {
    0%, 100% {
        scale: .92;
        opacity: .68;
    }

    50% {
        scale: 1.08;
        opacity: 1;
    }
}

.final__inner {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    margin-inline: auto;
}

.final .script {
    color: rgba(255, 255, 255, .74);
}

.final h2 {
    color: var(--ivory);
}

.final p {
    color: rgba(255, 255, 255, .84);
}

.final__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* FOOTER */

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .64);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .9fr;
    gap: 54px;
    padding-bottom: 46px;
}

.footer__logo {
    width: auto;
    height: 54px;
    max-width: 230px;
    object-fit: contain;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 18px;
    background: var(--ivory);
}

.footer p {
    font-size: .88rem;
    line-height: 1.75;
}

.footer h3 {
    color: var(--ivory);
    font-family: var(--font-title);
    font-size: 1rem;
    margin-bottom: 14px;
}

.footer nav {
    display: flex;
    flex-direction: column;
}

.footer a {
    display: inline-flex;
    font-size: .86rem;
    margin-bottom: 10px;
    transition: color .25s var(--ease);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 20px 0;
    text-align: center;
    font-size: .78rem;
}

/* MOBILE CTA */

.mobile-cta {
    display: none;
    position: fixed;
    z-index: 1600;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 240, 230, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
}

.mobile-cta.is-visible {
    transform: translateY(0);
}

.mobile-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    border-radius: var(--radius-full);
    background: var(--rose);
    color: var(--ivory);
    font-weight: 800;
}

/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
}

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

/* RESPONSIVE */

@media (max-width: 1180px) {
    .experience-rail {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero__inner,
    .split,
    .space__layout,
    .support__layout {
        grid-template-columns: 1fr;
    }

    .hero__inner {
        padding-top: 30px;
    }

    .hero__media {
        width: min(460px, 100%);
    }

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

    .support-panel {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .support-step {
        min-height: auto;
    }

    .gallery {
        max-width: 720px;
    }

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

@media (max-width: 860px) {
    .experience-rail {
        display: none !important;
    }

    .main-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 2001;
        flex-direction: column;
        justify-content: center;
        gap: 0;
        background: rgba(245, 240, 230, .98);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .35s var(--ease), visibility .35s var(--ease);
    }

    .main-nav.is-open {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        font-family: var(--font-title);
        font-size: 2rem;
        color: var(--ink);
        padding: 12px;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-phase {
        position: fixed;
        top: 88px;
        left: 14px;
        right: 14px;
        z-index: 1650;
        display: block;
        padding: 12px 14px 13px;
        border-radius: 22px;
        background: rgba(255, 253, 248, .84);
        border: 1px solid rgba(40, 35, 31, .08);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 16px 38px rgba(40, 35, 31, .09);
        opacity: 0;
        transform: translateY(-120%);
        transition: opacity .36s var(--ease), transform .36s var(--ease);
        pointer-events: none;
    }

    body.is-scrolled .mobile-phase {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-phase__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 9px;
    }

    .mobile-phase__top span {
        font-size: .68rem;
        font-weight: 800;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--soft);
    }

    .mobile-phase__top strong {
        font-size: .82rem;
        font-weight: 800;
        color: var(--rose-dark);
    }

    .mobile-phase__track {
        position: relative;
        width: 100%;
        height: 3px;
        overflow: hidden;
        border-radius: 99px;
        background: rgba(201, 120, 97, .14);
    }

    .mobile-phase__track i {
        display: block;
        width: 0%;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--rose), var(--clay));
        transition: width .12s linear;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 80px;
    }

    .hero__inner {
        min-height: auto;
        gap: 34px;
    }

    .hero__title {
        font-size: clamp(2.35rem, 11.6vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.052em;
    }

    .hero__text {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.82;
    }

    .hero__actions,
    .final__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero__facts {
        margin-top: 30px;
    }

    .hero__facts div {
        background: rgba(255, 253, 248, .72);
    }

    .hero__media {
        width: 100%;
        margin-top: 6px;
    }

    .hero-photo {
        aspect-ratio: 4 / 4.7;
        border-radius: 34px;
    }

    .hero-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
    }

    .scroll-cue {
        display: none;
    }

    .support {
        padding-top: 78px;
    }

    .support__layout {
        display: block;
    }

    .support-panel {
        position: sticky !important;
        top: 148px !important;
        z-index: 5;
        min-height: auto;
        padding: 22px 20px;
        margin-bottom: 22px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 18% 16%, rgba(201, 120, 97, .16), transparent 9rem),
            rgba(255, 253, 248, .9);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    .support-panel__shape {
        display: none;
    }

    .support-panel__label {
        margin-bottom: 8px;
        font-size: .68rem;
    }

    .support-panel h3 {
        font-size: 1.35rem;
        line-height: 1.18;
        margin-bottom: 8px;
        letter-spacing: -.03em;
    }

    .support-panel > p:last-of-type {
        min-height: auto;
        font-size: .88rem;
        line-height: 1.62;
    }

    .support-panel__link {
        display: none;
    }

    .support-steps {
        gap: 18px;
    }

    .support-step {
        min-height: 62vh;
        padding: 30px 22px;
        border-radius: 30px;
        opacity: .5;
        transform: scale(.985);
    }

    .support-step.is-active {
        opacity: 1;
        transform: scale(1);
    }

    .support-step span {
        margin-bottom: 24px;
    }

    .support-step h3 {
        font-size: clamp(1.95rem, 10vw, 3.2rem);
        line-height: 1.02;
    }

    .support-step p {
        font-size: .98rem;
        line-height: 1.78;
    }

    .service-card {
        grid-template-columns: 1fr;
        padding: 26px 22px;
        border-radius: 28px;
    }

    .service-card > a {
        width: 100%;
        justify-content: center;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__large {
        grid-row: auto;
    }

    .testimonials blockquote {
        width: 300px;
    }

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

    .mobile-cta {
        display: block;
        background: rgba(255, 253, 248, .9);
        box-shadow: 0 -12px 32px rgba(40, 35, 31, .08);
    }

    .footer {
        padding-bottom: 80px;
    }
}

@media (max-width: 520px) {
    .container,
    .hero__inner,
    .site-header__inner {
        width: min(100% - 28px, 1120px);
    }

    .mobile-phase {
        top: 80px;
        left: 10px;
        right: 10px;
    }

    .support-panel {
        top: 136px !important;
    }

    .brand__logo {
        height: 42px;
        max-width: 178px;
    }

    .site-header__inner {
        height: 74px;
    }

    .hero-photo,
    .split__media {
        border-radius: 34px;
    }

    .support-panel,
    .support-step,
    .service-card,
    .testimonials blockquote {
        border-radius: 26px;
    }

    .support-panel {
        padding: 28px 22px;
    }

    .support-panel__shape {
        width: 170px;
    }
}

/* REDUCED MOTION */

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

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

/* =========================================================
   CONTACTO — continuación visual de la home
   ========================================================= */

.page-contacto .site-header {
    background: rgba(245, 240, 230, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 0 76px;
    overflow: hidden;
}

.contact-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    min-height: calc(100dvh - 194px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(46px, 7vw, 88px);
    align-items: center;
}

.contact-hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.75rem, 6.2vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.055em;
    max-width: 880px;
}

.contact-hero__text {
    width: min(630px, 100%);
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.contact-hero__media {
    position: relative;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.contact-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-2);
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(40, 35, 31, .36));
}

.contact-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.08rem;
}

.contact-hero__shape {
    position: absolute;
    right: 3vw;
    bottom: 4vh;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    opacity: .42;
    pointer-events: none;
}

.contact-hero__shape span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 120, 97, .22);
    border-radius: 52% 48% 55% 45%;
    animation: breathe 9s ease-in-out infinite, orbit 34s linear infinite;
}

.contact-hero__shape span:nth-child(2) {
    inset: 10%;
    border-color: rgba(102, 114, 70, .18);
    animation-delay: -2s;
    animation-duration: 10s, 39s;
}

.contact-hero__shape span:nth-child(3) {
    inset: 20%;
    border-color: rgba(177, 106, 68, .18);
    animation-delay: -4s;
    animation-duration: 11s, 44s;
}

/* Form section */

.contact-form-section {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.contact-form-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 22px;
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 120, 97, .12), transparent 12rem),
        linear-gradient(145deg, rgba(255, 253, 248, .95), rgba(245, 240, 230, .86));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: var(--shadow-card);
}

.contact-field {
    display: grid;
    gap: 8px;
}

.contact-field--full {
    grid-column: 1 / -1;
}

.contact-field label {
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose-dark);
}

.contact-field label span {
    color: var(--soft);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid rgba(40, 35, 31, .11);
    border-radius: 20px;
    background: rgba(255, 253, 248, .8);
    color: var(--ink);
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(201, 120, 97, .65);
    box-shadow: 0 0 0 5px rgba(201, 120, 97, .12);
    background: var(--ivory);
}

.message-preview {
    padding: 22px 24px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
}

.message-preview p {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 10px;
}

.message-preview div {
    white-space: pre-line;
    color: var(--muted);
    line-height: 1.75;
}

.contact-submit {
    grid-column: 1 / -1;
    width: fit-content;
}

.contact-aside {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 12px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 253, 248, .76);
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 12px 34px rgba(40, 35, 31, .06);
}

.contact-aside__label {
    color: var(--rose);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.direct-card {
    display: grid;
    gap: 4px;
    padding: 20px;
    border-radius: 24px;
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
    transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}

.direct-card:hover {
    transform: translateY(-3px);
    background: var(--ivory);
    box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
}

.direct-card strong {
    font-family: var(--font-title);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--ink);
}

.direct-card span {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

/* Location */

.contact-location {
    padding: clamp(90px, 12vw, 150px) 0;
}

.contact-location__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.contact-location__content h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.035em;
    color: var(--ink);
}

.contact-location__content p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
}

.location-info {
    display: grid;
    gap: 20px;
    margin: 30px 0;
    font-style: normal;
}

.location-info div {
    display: grid;
    gap: 4px;
}

.location-info strong {
    color: var(--rose);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.location-info span {
    color: var(--muted);
    line-height: 1.72;
}

.contact-location__map {
    min-height: 440px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--cream-2);
    box-shadow: var(--shadow-soft);
}

.contact-location__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* FAQ */

.contact-faq {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.faq-list {
    width: min(860px, 100%);
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 26px;
    background: rgba(255, 253, 248, .72);
    border: 1px solid rgba(40, 35, 31, .07);
    overflow: hidden;
    transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.faq-item[open] {
    background: var(--ivory);
    box-shadow: 0 12px 34px rgba(40, 35, 31, .06);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    font-family: var(--font-title);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink);
}

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

.faq-item summary i {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.faq-item summary i::before,
.faq-item summary i::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--rose);
    transform: translate(-50%, -50%);
    transition: rotate .25s var(--ease);
}

.faq-item summary i::after {
    rotate: 90deg;
}

.faq-item[open] summary i::after {
    rotate: 0deg;
}

.faq-item div {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.75;
}

/* Contact responsive */

@media (max-width: 1024px) {
    .contact-hero__inner,
    .contact-form-shell,
    .contact-location__layout {
        grid-template-columns: 1fr;
    }

    .contact-hero__inner {
        padding-top: 30px;
    }

    .contact-hero__media {
        width: min(460px, 100%);
    }

    .contact-aside {
        position: relative;
        top: auto;
    }
}

@media (max-width: 860px) {
    .contact-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 80px;
    }

    .contact-hero__inner {
        min-height: auto;
        gap: 34px;
    }

    .contact-hero__title {
        font-size: clamp(2.35rem, 11.6vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.052em;
    }

    .contact-hero__text {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.82;
    }

    .contact-hero__actions {
        flex-direction: column;
    }

    .contact-hero__media {
        width: 100%;
        margin-top: 6px;
    }

    .contact-photo {
        aspect-ratio: 4 / 4.7;
        border-radius: 34px;
    }

    .contact-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
    }

    .contact-form {
        grid-template-columns: 1fr;
        border-radius: 30px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-location__map {
        min-height: 340px;
        border-radius: 34px;
    }
}

@media (max-width: 520px) {
    .contact-hero__inner {
        width: min(100% - 28px, 1120px);
    }

    .contact-photo,
    .contact-form,
    .contact-aside,
    .direct-card,
    .faq-item {
        border-radius: 26px;
    }

    .contact-form {
        padding: 22px 18px;
    }

    .contact-location__map {
        min-height: 300px;
    }
}

/* =========================================================
   SOBRE JOANA — continuación visual de la home
   ========================================================= */

.page-sobre .site-header {
    background: rgba(245, 240, 230, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hero */

.sobre-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 0 76px;
    overflow: hidden;
}

.sobre-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    min-height: calc(100dvh - 194px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(46px, 7vw, 88px);
    align-items: center;
}

.sobre-hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.75rem, 6.2vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.055em;
    max-width: 900px;
}

.sobre-hero__text {
    width: min(650px, 100%);
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.sobre-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.sobre-credentials span {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: var(--radius-full);
    background: rgba(255, 253, 248, .68);
    border: 1px solid rgba(40, 35, 31, .08);
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
}

.sobre-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.sobre-hero__media {
    position: relative;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.sobre-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-2);
}

.sobre-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 62%, rgba(40, 35, 31, .26));
}

.sobre-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.08rem;
}

.sobre-hero__shape {
    position: absolute;
    right: 3vw;
    bottom: 4vh;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    opacity: .42;
    pointer-events: none;
}

.sobre-hero__shape span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 120, 97, .22);
    border-radius: 52% 48% 55% 45%;
    animation: breathe 9s ease-in-out infinite, orbit 34s linear infinite;
}

.sobre-hero__shape span:nth-child(2) {
    inset: 10%;
    border-color: rgba(102, 114, 70, .18);
    animation-delay: -2s;
    animation-duration: 10s, 39s;
}

.sobre-hero__shape span:nth-child(3) {
    inset: 20%;
    border-color: rgba(177, 106, 68, .18);
    animation-delay: -4s;
    animation-duration: 11s, 44s;
}

/* Intro */

.sobre-intro {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

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

.sobre-principles article {
    padding: 30px 28px;
    border-radius: 34px;
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.sobre-principles span {
    display: block;
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.sobre-principles h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.sobre-principles p {
    color: var(--muted);
    line-height: 1.75;
}

/* Story */

.sobre-story {
    padding: clamp(90px, 12vw, 150px) 0;
}

.sobre-story__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.sobre-story__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.sobre-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-story__content h2,
.sobre-space__content h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.sobre-story__content p,
.sobre-space__content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.sobre-story__content .lead {
    font-size: 1.08rem;
    color: var(--ink);
}

/* Timeline */

.sobre-path {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.sobre-timeline {
    width: min(900px, 100%);
    margin-inline: auto;
    display: grid;
    gap: 16px;
}

.sobre-timeline__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    padding: 30px 32px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 253, 248, .9), rgba(245, 240, 230, .86));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.sobre-timeline__item > span {
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.35rem;
}

.sobre-timeline__item h3 {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2.3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 10px;
}

.sobre-timeline__item p {
    color: var(--muted);
    line-height: 1.75;
}

/* Centro */

.sobre-space {
    padding: clamp(90px, 12vw, 150px) 0;
}

.sobre-space__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.sobre-space__content .btn {
    margin-top: 16px;
}

.sobre-gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.sobre-gallery figure {
    overflow: hidden;
    border-radius: 30px;
    background: var(--cream-2);
    min-height: 220px;
    box-shadow: 0 12px 36px rgba(40, 35, 31, .08);
}

.sobre-gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sobre-gallery__large {
    grid-row: span 2;
}

/* Responsive */

@media (max-width: 1024px) {
    .sobre-hero__inner,
    .sobre-story__layout,
    .sobre-space__layout {
        grid-template-columns: 1fr;
    }

    .sobre-hero__inner {
        padding-top: 30px;
    }

    .sobre-hero__media {
        width: min(460px, 100%);
    }

    .sobre-principles {
        grid-template-columns: 1fr;
    }

    .sobre-gallery {
        max-width: 720px;
    }
}

@media (max-width: 860px) {
    .sobre-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 80px;
    }

    .sobre-hero__inner {
        min-height: auto;
        gap: 34px;
    }

    .sobre-hero__title {
        font-size: clamp(2.35rem, 11.6vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.052em;
    }

    .sobre-hero__text {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.82;
    }

    .sobre-hero__actions {
        flex-direction: column;
    }

    .sobre-hero__media {
        width: 100%;
        margin-top: 6px;
    }

    .sobre-photo {
        aspect-ratio: 4 / 4.7;
        border-radius: 34px;
    }

    .sobre-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
    }

    .sobre-credentials {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sobre-timeline__item {
        grid-template-columns: 1fr;
        border-radius: 28px;
        padding: 26px 22px;
    }

    .sobre-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .sobre-gallery__large {
        grid-row: auto;
    }
}

@media (max-width: 520px) {
    .sobre-hero__inner {
        width: min(100% - 28px, 1120px);
    }

    .sobre-photo,
    .sobre-story__media,
    .sobre-principles article,
    .sobre-timeline__item {
        border-radius: 26px;
    }
}
/* =========================================================
   SERVICIO — Preparación al parto
   ========================================================= */

.page-servicio .site-header {
    background: rgba(245, 240, 230, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hero servicio */

.service-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 0 76px;
    overflow: hidden;
}

.service-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    min-height: calc(100dvh - 194px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(46px, 7vw, 88px);
    align-items: center;
}

.service-hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.75rem, 6.2vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.055em;
    max-width: 920px;
}

.service-hero__text {
    width: min(640px, 100%);
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.service-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 44px;
    width: min(720px, 100%);
}

.service-hero__facts div {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 253, 248, .62);
    border: 1px solid rgba(40, 35, 31, .08);
}

.service-hero__facts strong {
    display: block;
    font-size: .76rem;
    color: var(--rose);
    margin-bottom: 4px;
}

.service-hero__facts span {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.45;
}

.service-hero__media {
    position: relative;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.service-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-2);
}

.service-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(40, 35, 31, .34));
}

.service-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.08rem;
}

.service-hero__shape {
    position: absolute;
    right: 3vw;
    bottom: 4vh;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    opacity: .42;
    pointer-events: none;
}

.service-hero__shape span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 120, 97, .22);
    border-radius: 52% 48% 55% 45%;
    animation: breathe 9s ease-in-out infinite, orbit 34s linear infinite;
}

.service-hero__shape span:nth-child(2) {
    inset: 10%;
    border-color: rgba(102, 114, 70, .18);
    animation-delay: -2s;
    animation-duration: 10s, 39s;
}

.service-hero__shape span:nth-child(3) {
    inset: 20%;
    border-color: rgba(177, 106, 68, .18);
    animation-delay: -4s;
    animation-duration: 11s, 44s;
}

/* Para quién */

.service-fit {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

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

.service-fit__grid article {
    padding: 30px 28px;
    border-radius: 34px;
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.service-fit__grid span {
    display: block;
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.service-fit__grid h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.service-fit__grid p {
    color: var(--muted);
    line-height: 1.75;
}

/* Programa */

.service-program {
    padding: clamp(90px, 12vw, 150px) 0;
}

.service-program__layout {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: start;
}

.service-program__intro {
    position: sticky;
    top: 112px;
    padding: 34px;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 18% 12%, rgba(201, 120, 97, .12), transparent 12rem),
        linear-gradient(145deg, rgba(255, 253, 248, .9), rgba(245, 240, 230, .86));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: var(--shadow-card);
}

.service-program__intro h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: -.035em;
}

.service-program__intro p {
    margin: 18px 0 28px;
    color: var(--muted);
    line-height: 1.85;
}

.service-program__items {
    display: grid;
    gap: 16px;
}

.program-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 30px 32px;
    border-radius: 34px;
    background: var(--ivory);
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.program-card > span {
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.3rem;
}

.program-card h3 {
    font-family: var(--font-title);
    font-size: clamp(1.25rem, 2.3vw, 1.72rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
}

.program-card p {
    color: var(--muted);
    line-height: 1.75;
}

/* Joana service */

.service-joana {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.service-joana__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.service-joana__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.service-joana__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-joana__content h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.service-joana__content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-joana__content .lead {
    font-size: 1.08rem;
    color: var(--ink);
}

/* Process */

.service-process {
    padding: clamp(90px, 12vw, 150px) 0;
}

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

.service-process__grid article {
    padding: 30px 28px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 253, 248, .88), rgba(245, 240, 230, .88));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.service-process__grid span {
    display: block;
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.service-process__grid h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.service-process__grid p {
    color: var(--muted);
    line-height: 1.75;
}

/* FAQ servicio */

.service-faq {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.service-faq__list {
    width: min(860px, 100%);
    margin-inline: auto;
    display: grid;
    gap: 12px;
}

.service-faq__item {
    border-radius: 26px;
    background: rgba(255, 253, 248, .72);
    border: 1px solid rgba(40, 35, 31, .07);
    overflow: hidden;
    transition: box-shadow .25s var(--ease), background .25s var(--ease);
}

.service-faq__item[open] {
    background: var(--ivory);
    box-shadow: 0 12px 34px rgba(40, 35, 31, .06);
}

.service-faq__item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    font-family: var(--font-title);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink);
}

.service-faq__item summary::-webkit-details-marker {
    display: none;
}

.service-faq__item summary i {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.service-faq__item summary i::before,
.service-faq__item summary i::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: var(--rose);
    transform: translate(-50%, -50%);
    transition: rotate .25s var(--ease);
}

.service-faq__item summary i::after {
    rotate: 90deg;
}

.service-faq__item[open] summary i::after {
    rotate: 0deg;
}

.service-faq__item div {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.75;
}

/* Responsive servicio */

@media (max-width: 1024px) {
    .service-hero__inner,
    .service-program__layout,
    .service-joana__layout {
        grid-template-columns: 1fr;
    }

    .service-hero__inner {
        padding-top: 30px;
    }

    .service-hero__media {
        width: min(460px, 100%);
    }

    .service-hero__facts,
    .service-fit__grid,
    .service-process__grid {
        grid-template-columns: 1fr;
    }

    .service-program__intro {
        position: relative;
        top: auto;
    }
}

@media (max-width: 860px) {
    .service-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 80px;
    }

    .service-hero__inner {
        min-height: auto;
        gap: 34px;
    }

    .service-hero__title {
        font-size: clamp(2.35rem, 11.6vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.052em;
    }

    .service-hero__text {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.82;
    }

    .service-hero__actions {
        flex-direction: column;
    }

    .service-hero__media {
        width: 100%;
        margin-top: 6px;
    }

    .service-photo {
        aspect-ratio: 4 / 4.7;
        border-radius: 34px;
    }

    .service-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
    }

    .program-card {
        grid-template-columns: 1fr;
        border-radius: 28px;
        padding: 26px 22px;
    }
}

@media (max-width: 520px) {
    .service-hero__inner {
        width: min(100% - 28px, 1120px);
    }

    .service-photo,
    .service-joana__media,
    .service-fit__grid article,
    .service-process__grid article,
    .program-card,
    .service-program__intro,
    .service-faq__item {
        border-radius: 26px;
    }

    .service-program__intro {
        padding: 26px 22px;
    }
}
/* =========================================================
   SERVICIOS — Página índice
   ========================================================= */

.page-servicios .site-header {
    background: rgba(245, 240, 230, .88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hero */

.services-hub-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 118px 0 76px;
    overflow: hidden;
}

.services-hub-hero__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    min-height: calc(100dvh - 194px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(46px, 7vw, 88px);
    align-items: center;
}

.services-hub-hero__title {
    font-family: var(--font-title);
    font-size: clamp(2.75rem, 6.2vw, 5.1rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.055em;
    max-width: 920px;
}

.services-hub-hero__text {
    width: min(650px, 100%);
    margin-top: 26px;
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.9;
}

.services-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.services-hub-hero__media {
    position: relative;
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.services-hub-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--cream-2);
}

.services-hub-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hub-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(40, 35, 31, .34));
}

.services-hub-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 253, 248, .84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--ink);
    font-family: var(--font-title);
    font-size: 1.08rem;
}

.services-hub-hero__shape {
    position: absolute;
    right: 3vw;
    bottom: 4vh;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    opacity: .42;
    pointer-events: none;
}

.services-hub-hero__shape span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 120, 97, .22);
    border-radius: 52% 48% 55% 45%;
    animation: breathe 9s ease-in-out infinite, orbit 34s linear infinite;
}

.services-hub-hero__shape span:nth-child(2) {
    inset: 10%;
    border-color: rgba(102, 114, 70, .18);
    animation-delay: -2s;
    animation-duration: 10s, 39s;
}

.services-hub-hero__shape span:nth-child(3) {
    inset: 20%;
    border-color: rgba(177, 106, 68, .18);
    animation-delay: -4s;
    animation-duration: 11s, 44s;
}

/* Grid de servicios */

.services-hub-list {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.services-hub-card {
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 30px;
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 253, 248, .9), rgba(245, 240, 230, .88));
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.services-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: rgba(201, 120, 97, .24);
}

.services-hub-card--featured {
    min-height: 380px;
    background:
        radial-gradient(circle at 20% 15%, rgba(201, 120, 97, .13), transparent 12rem),
        linear-gradient(145deg, rgba(255, 253, 248, .94), rgba(245, 240, 230, .88));
}

.services-hub-card--soft {
    background:
        radial-gradient(circle at 20% 15%, rgba(102, 114, 70, .12), transparent 12rem),
        linear-gradient(145deg, rgba(255, 253, 248, .94), rgba(245, 240, 230, .88));
}

.services-hub-card span {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--rose);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.services-hub-card h3 {
    font-family: var(--font-title);
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -.035em;
    margin-bottom: 14px;
}

.services-hub-card p {
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 28px;
}

.services-hub-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 18px;
    border-radius: var(--radius-full);
    background: var(--cream);
    border: 1px solid rgba(40, 35, 31, .08);
    color: var(--rose-dark);
    font-size: .86rem;
    font-weight: 800;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.services-hub-card a:hover {
    background: var(--rose);
    color: var(--ivory);
    transform: translateY(-2px);
}

/* Método */

.services-hub-method {
    padding: clamp(90px, 12vw, 150px) 0;
}

.services-hub-method__layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.services-hub-method__content h2,
.services-hub-joana__content h2 {
    font-family: var(--font-title);
    font-size: clamp(2rem, 4.6vw, 3.15rem);
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -.035em;
    margin-bottom: 22px;
}

.services-hub-method__content p,
.services-hub-joana__content p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 16px;
}

.services-hub-method__content .btn {
    margin-top: 16px;
}

.services-hub-method__steps {
    display: grid;
    gap: 16px;
}

.services-hub-method__steps article {
    padding: 28px 30px;
    border-radius: 30px;
    background: var(--ivory);
    border: 1px solid rgba(40, 35, 31, .07);
    box-shadow: 0 10px 28px rgba(40, 35, 31, .04);
}

.services-hub-method__steps span {
    display: block;
    font-family: var(--font-title);
    color: var(--rose);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.services-hub-method__steps h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.services-hub-method__steps p {
    color: var(--muted);
    line-height: 1.75;
}

/* Joana */

.services-hub-joana {
    padding: clamp(90px, 12vw, 150px) 0;
    background: var(--ivory);
}

.services-hub-joana__layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(44px, 7vw, 96px);
}

.services-hub-joana__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transform: translateY(var(--parallax-y, 0px));
    transition: transform .08s linear;
}

.services-hub-joana__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hub-joana__content .lead {
    font-size: 1.08rem;
    color: var(--ink);
}

/* Responsive */

@media (max-width: 1024px) {
    .services-hub-hero__inner,
    .services-hub-method__layout,
    .services-hub-joana__layout {
        grid-template-columns: 1fr;
    }

    .services-hub-hero__inner {
        padding-top: 30px;
    }

    .services-hub-hero__media {
        width: min(460px, 100%);
    }

    .services-hub-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .services-hub-hero {
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 80px;
    }

    .services-hub-hero__inner {
        min-height: auto;
        gap: 34px;
    }

    .services-hub-hero__title {
        font-size: clamp(2.35rem, 11.6vw, 3.85rem);
        line-height: 1.04;
        letter-spacing: -.052em;
    }

    .services-hub-hero__text {
        margin-top: 22px;
        font-size: 1rem;
        line-height: 1.82;
    }

    .services-hub-hero__actions {
        flex-direction: column;
    }

    .services-hub-hero__media {
        width: 100%;
        margin-top: 6px;
    }

    .services-hub-photo {
        aspect-ratio: 4 / 4.7;
        border-radius: 34px;
    }

    .services-hub-note {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(40, 35, 31, .07);
    }

    .services-hub-card,
    .services-hub-card--featured {
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .services-hub-hero__inner {
        width: min(100% - 28px, 1120px);
    }

    .services-hub-photo,
    .services-hub-card,
    .services-hub-method__steps article,
    .services-hub-joana__media {
        border-radius: 26px;
    }

    .services-hub-card {
        padding: 28px 22px;
    }
}