/* =============================================
   Centro Maternidad Consciente — V3 Storytelling
   Nature Distilled + Organic Biophilic
   ============================================= */

:root {
    --terracotta: #C67B5C;
    --terracotta-dark: #A86242;
    --terracotta-glow: rgba(198, 123, 92, .12);
    --sand: #D4C4A8;
    --sand-light: #E4D8C4;
    --clay: #B5651D;
    --cream: #F5F0E1;
    --cream-dark: #EDE5D2;
    --cream-deep: #E2D8C4;
    --olive: #6B7B3C;
    --olive-light: #8A9B58;
    --olive-pale: rgba(107, 123, 60, .08);
    --text: #2E2A24;
    --text-mid: #5C554C;
    --text-soft: #8A8078;
    --white: #FDFBF7;
    --border: rgba(46, 42, 36, .08);

    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-hand: 'Caveat', cursive;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;
    --r-full: 9999px;

    --ease: cubic-bezier(.16, 1, .3, 1);
    --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scrollbar-gutter: stable both-edges;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

/* ===== SHARED CLASSES ===== */
.label {
    font-family: var(--font-body);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--terracotta);
    margin-bottom: 14px;
}

.handwritten {
    font-family: var(--font-hand);
    font-weight: 500;
    color: var(--terracotta);
}

.text-link {
    font-size: .92rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: color .3s;
    display: inline-block;
    margin-top: 12px;
}
.text-link:hover { color: var(--terracotta-dark); }

/* ===== BUTTONS ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: .88rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .4s var(--ease);
    text-decoration: none;
    letter-spacing: .02em;
}

.cta-btn--fill {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.cta-btn--fill:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(198, 123, 92, .3);
}

.cta-btn--line {
    background: transparent;
    border-color: var(--text);
    color: var(--text);
}
.cta-btn--line:hover {
    background: var(--text);
    color: var(--cream);
    transform: translateY(-2px);
}


/* ===== PROGRESS BAR ===== */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1100;
    background: transparent;
}
.progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--terracotta), var(--clay));
    transition: width .1s linear;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .5s var(--ease), box-shadow .5s var(--ease);
}

.nav.is-solid {
    background: rgba(245, 240, 225, .94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    letter-spacing: -.01em;
}

.nav__links {
    display: flex;
    gap: 32px;
}

.nav__links a {
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color .3s;
    letter-spacing: .02em;
    position: relative;
}
.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width .3s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--terracotta); }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }

.nav__cta {
    font-size: .8rem;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--r-full);
    transition: all .3s var(--ease);
}
.nav__cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}
.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .4s var(--ease);
    transform-origin: center;
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   BIRTH EXPERIENCE — organic, alive, evocative
   ============================================= */

/* Organic breathing blob — the heartbeat of the site */
.breath {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: radial-gradient(ellipse, var(--terracotta-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite;
    will-change: border-radius, transform;
}
.breath--hero {
    width: clamp(400px, 50vw, 700px);
    aspect-ratio: 1;
    top: 10%;
    right: -10%;
    opacity: .4;
    animation-duration: 10s;
}
.breath--mid {
    width: clamp(300px, 35vw, 500px);
    aspect-ratio: 1;
    opacity: .25;
    animation-duration: 12s;
    animation-delay: -4s;
}
.breath--small {
    width: clamp(150px, 20vw, 280px);
    aspect-ratio: 1;
    opacity: .2;
    animation-duration: 7s;
    animation-delay: -2s;
}

@keyframes breathe {
    0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1) rotate(0deg); }
    25%  { border-radius: 58% 42% 36% 64% / 55% 38% 62% 45%; }
    50%  { border-radius: 42% 58% 60% 40% / 40% 65% 35% 60%; transform: scale(1.05) rotate(3deg); }
    75%  { border-radius: 65% 35% 45% 55% / 50% 42% 58% 50%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: scale(1) rotate(0deg); }
}

/* Warm glow — light that grows with the journey */
.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.glow::before {
    content: '';
    position: absolute;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 123, 92, .08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Organic section divider — wave between sections */
.wave-divider {
    position: relative;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}
.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.wave-divider--cream svg { fill: var(--cream); }
.wave-divider--white svg { fill: var(--white); }

/* Enhanced reveal variants */
.sr-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.sr-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.sr-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.sr-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.sr-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.sr-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Bloom — elements that "open" like a flower */
.sr-bloom {
    opacity: 0;
    transform: scale(.85) translateY(20px);
    filter: blur(4px);
    transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease);
}
.sr-bloom.is-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
}

/* Stagger children reveals */
.stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.stagger.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(2) { transition-delay: .08s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(3) { transition-delay: .16s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(4) { transition-delay: .24s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(5) { transition-delay: .32s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(6) { transition-delay: .40s; opacity: 1; transform: translateY(0); }
.stagger.is-visible > *:nth-child(7) { transition-delay: .48s; opacity: 1; transform: translateY(0); }

/* Parallax layer — driven by JS --scroll-y */
[data-depth] {
    will-change: transform;
    transform: translateY(calc(var(--scroll-y, 0) * var(--depth, 0) * 1px));
}

/* Warm light progression — body background shifts as you scroll */
body {
    transition: background-color 1.5s ease;
}
body.warmth-1 { background-color: #F5F0E1; }
body.warmth-2 { background-color: #F3ECD8; }
body.warmth-3 { background-color: #F0E7CF; }

/* Pulse — subtle heartbeat on key elements */
.pulse {
    animation: heartbeat 3s ease-in-out infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%      { transform: scale(1.03); }
    28%      { transform: scale(1); }
    42%      { transform: scale(1.02); }
}

/* ===== CHAPTER — shared section spacing ===== */
.chapter {
    position: relative;
    z-index: 1;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 0 40px;
    gap: clamp(32px, 5vw, 64px);
    overflow: visible;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(20px, 5vw, 48px);
    padding-right: clamp(20px, 5vw, 48px);
}

.hero__grain {
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}
.hero__heading em {
    font-style: italic;
    color: var(--terracotta);
}

.hero__sub {
    font-size: clamp(.95rem, 1.2vw, 1.1rem);
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.8;
}

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

.hero__visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__photo {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero__badge {
    position: absolute;
    bottom: -16px;
    left: -20px;
    background: var(--white);
    padding: 14px 22px;
    border-radius: var(--r-lg);
    box-shadow: 0 8px 32px rgba(46, 42, 36, .1);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
}
.hero__badge-label { font-size: .72rem; color: var(--text-soft); font-weight: 500; }
.hero__badge-num { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: var(--terracotta); }

.hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}
.hero__scroll-hint .handwritten { font-size: 1rem; display: block; margin-bottom: 8px; }
.hero__scroll-line {
    width: 1px;
    height: 48px;
    margin: 0 auto;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -48px;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(to bottom, transparent, var(--terracotta-dark));
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0% { top: -48px; }
    100% { top: 48px; }
}

/* Hero load animations */
.anim-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.anim-up[data-d="1"] { transition-delay: .12s; }
.anim-up[data-d="2"] { transition-delay: .24s; }
.anim-up[data-d="3"] { transition-delay: .36s; }
.anim-up[data-d="4"] { transition-delay: .48s; }
.anim-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-reveal */
.sr {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.sr.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== EMPATHY ===== */
.empathy {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}

.empathy__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.empathy__hand {
    font-size: 1.6rem;
    margin-bottom: 16px;
    display: block;
}

.empathy__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}
.empathy__heading em {
    font-style: italic;
    color: var(--terracotta);
}

.empathy__text {
    font-size: 1.02rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 12px;
}
.empathy__text--bold {
    font-weight: 600;
    color: var(--text);
    font-size: 1.08rem;
    margin-top: 8px;
}

/* ===== JOANA ===== */
.joana {
    padding: clamp(80px, 12vw, 140px) 0;
}

.joana__layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.joana__photo-wrap {
    position: relative;
}

.joana__accent {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 65%;
    height: 65%;
    background: var(--terracotta-glow);
    border-radius: var(--r-lg);
    z-index: 0;
}

.joana__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.joana__bio {
    color: var(--text-mid);
    font-size: .98rem;
    margin-bottom: 14px;
    line-height: 1.8;
}

/* ===== SERVICES / JOURNEY ===== */
.services {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}

.services__intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(48px, 6vw, 72px);
}

.services__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}

.services__sub {
    font-size: 1rem;
    color: var(--text-mid);
}

/* Journey timeline */
.journey {
    position: relative;
    padding-left: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.journey__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 17px;
    width: 2px;
    background: linear-gradient(to bottom, var(--terracotta), var(--sand), var(--olive));
    border-radius: 2px;
}

.journey__step {
    position: relative;
    margin-bottom: clamp(48px, 6vw, 72px);
}
.journey__step:last-child { margin-bottom: 0; }

.journey__dot {
    position: absolute;
    left: -48px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--cream);
    border: 3px solid var(--terracotta);
    z-index: 2;
    transform: translateX(11px);
}

[data-phase="posparto"] .journey__dot { border-color: var(--sand); }
[data-phase="crianza"] .journey__dot { border-color: var(--olive); }

.journey__phase {
    display: inline-block;
    font-family: var(--font-hand);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 18px;
}
[data-phase="embarazo"] .journey__phase { color: var(--terracotta); }
[data-phase="posparto"] .journey__phase { color: var(--clay); }
[data-phase="crianza"] .journey__phase { color: var(--olive); }

.journey__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.jcard {
    display: block;
    padding: 28px 24px;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px solid transparent;
    transition: all .4s var(--ease);
    text-decoration: none;
}
.jcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(46, 42, 36, .08);
    border-color: var(--sand-light);
}
[data-phase="embarazo"] .jcard:hover { border-color: rgba(198, 123, 92, .25); }
[data-phase="posparto"] .jcard:hover { border-color: rgba(181, 101, 29, .2); }
[data-phase="crianza"] .jcard:hover { border-color: rgba(107, 123, 60, .25); }

.jcard__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    transition: color .3s;
}
.jcard:hover .jcard__title { color: var(--terracotta); }
[data-phase="crianza"] .jcard:hover .jcard__title { color: var(--olive); }

.jcard__desc {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ===== VOICES / TESTIMONIALS ===== */
.voices {
    padding: clamp(80px, 10vw, 120px) 0;
    overflow: hidden;
}

.voices__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: clamp(40px, 5vw, 60px);
    color: var(--text);
}

/* Ticker (marquee) */
.ticker {
    position: relative;
    width: 100%;
}
.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }

.ticker__track {
    display: flex;
    gap: 20px;
    animation: ticker 50s linear infinite;
    width: max-content;
}
.ticker__track:hover { animation-play-state: paused; }

@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tcard {
    flex-shrink: 0;
    width: 360px;
    background: var(--white);
    border-radius: var(--r-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.tcard:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(46, 42, 36, .07);
}
.tcard p {
    font-family: var(--font-heading);
    font-size: .96rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}
.tcard footer {
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SPACE ===== */
.space {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--white);
}

.space__text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(40px, 5vw, 60px);
}
.space__text .handwritten { font-size: 1.5rem; display: block; margin-bottom: 12px; }

.space__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
}
.space__heading em { font-style: italic; color: var(--terracotta); }

.space__sub {
    font-size: 1rem;
    color: var(--text-mid);
}

.space__gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== CLIMAX CTA ===== */
.climax {
    padding: clamp(100px, 14vw, 180px) 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 50%, var(--clay) 100%);
    text-align: center;
    overflow: hidden;
}
.climax::before {
    content: '';
    position: absolute;
    width: clamp(300px, 40vw, 600px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    top: -30%;
    right: -10%;
}
.climax::after {
    content: '';
    position: absolute;
    width: clamp(200px, 25vw, 400px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    bottom: -20%;
    left: -5%;
}

.climax__inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.climax__hand {
    font-size: 1.5rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 12px;
    display: block;
}

.climax__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.climax__sub {
    color: rgba(255,255,255,.8);
    font-size: 1.02rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.climax .cta-btn--fill {
    background: var(--white);
    color: var(--terracotta-dark);
    border-color: var(--white);
}
.climax .cta-btn--fill:hover {
    background: var(--cream);
    border-color: var(--cream);
    box-shadow: 0 8px 32px rgba(255,255,255,.25);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,.6);
    padding: 56px 0 0;
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
}

.footer__brand p {
    font-size: .84rem;
    line-height: 1.7;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer__nav h3 {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}
.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__nav a {
    font-size: .84rem;
    transition: color .3s;
}
.footer__nav a:hover { color: var(--white); }

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

/* ===== PLACEHOLDER IMAGES ===== */
.placeholder-img {
    background: var(--cream-dark);
    border-radius: var(--r-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(46, 42, 36, .12);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.placeholder-img span {
    font-size: .85rem;
    color: var(--text-soft);
    font-style: italic;
}
.placeholder-img--portrait { aspect-ratio: 3/4; }
.placeholder-img--wide { aspect-ratio: 16/9; }


/* ===== MOBILE STICKY CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 12px 16px calc(env(safe-area-inset-bottom, 8px) + 12px);
    background: rgba(245, 240, 225, .95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform .5s var(--ease);
}
.sticky-cta.is-visible {
    transform: translateY(0);
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: .92rem;
    font-weight: 600;
    transition: background .3s;
}
.sticky-cta a:active { background: var(--terracotta-dark); }

/* =============================================
   CONTACT PAGE — pg-* prefix
   ============================================= */

/* Page hero (shorter than home hero) */
.pg-hero {
    padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 8vw, 100px);
    text-align: center;
}

.pg-hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 18px;
}
.pg-hero__heading em { font-style: italic; color: var(--terracotta); }

.pg-hero__sub {
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.cta-wa {
    gap: 10px;
}
.cta-wa svg { flex-shrink: 0; }

/* WhatsApp form section */
.pg-form {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.pg-form__intro {
    text-align: center;
    max-width: 580px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.pg-form__hand { font-size: 1.5rem; display: block; margin-bottom: 10px; }

.pg-form__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}

.pg-form__sub {
    font-size: .95rem;
    color: var(--text-mid);
}

/* Form */
.wa-form {
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.wa-form__group--full { grid-column: 1 / -1; }

.wa-form__label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: .02em;
}

.wa-form__optional {
    font-weight: 400;
    color: var(--text-soft);
}

.wa-form__input,
.wa-form__select,
.wa-form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: .92rem;
    color: var(--text);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color .3s, box-shadow .3s;
    appearance: none;
    -webkit-appearance: none;
}

.wa-form__input:focus,
.wa-form__select:focus,
.wa-form__textarea:focus {
    outline: none;
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px var(--terracotta-glow);
}

.wa-form__input::placeholder,
.wa-form__textarea::placeholder {
    color: var(--text-soft);
}

.wa-form__select {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C554C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.wa-form__textarea { resize: vertical; min-height: 100px; }

/* Message preview */
.wa-form__preview {
    background: var(--cream);
    border-radius: var(--r-md);
    padding: 18px 22px;
    border-left: 3px solid var(--terracotta);
}

.wa-form__preview-label {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.wa-form__preview-text {
    font-size: .9rem;
    color: var(--text-mid);
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Quick contact cards */
.pg-quick {
    padding: clamp(60px, 10vw, 100px) 0;
}

.pg-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.qcard {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    text-decoration: none;
}
.qcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(46, 42, 36, .08);
    border-color: var(--sand-light);
}

.qcard__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--terracotta-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--terracotta);
    transition: transform .4s var(--ease);
}
.qcard:hover .qcard__icon { transform: scale(1.08); }

.qcard__icon--sand { background: rgba(212, 196, 168, .2); color: var(--clay); }
.qcard__icon--olive { background: var(--olive-pale); color: var(--olive); }

.qcard__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.qcard__desc {
    font-size: .84rem;
    color: var(--text-soft);
    line-height: 1.5;
}

/* Location */
.pg-location {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}

.pg-location__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.pg-location__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 28px;
    color: var(--text);
}

.pg-location__address {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 20px;
}

.pg-location__row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.pg-location__row svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--terracotta);
    margin-top: 2px;
}
.pg-location__row strong {
    display: block;
    font-size: .85rem;
    margin-bottom: 4px;
}
.pg-location__row p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.pg-location__map {
    border-radius: var(--r-lg);
    overflow: hidden;
    min-height: 380px;
    background: var(--cream-dark);
}
.pg-location__map iframe { display: block; }

/* FAQ */
.pg-faq {
    padding: clamp(60px, 10vw, 100px) 0;
}

.pg-faq__intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto clamp(36px, 5vw, 56px);
}

.pg-faq__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq {
    border-bottom: 1px solid var(--border);
}
.faq:first-child { border-top: 1px solid var(--border); }

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    transition: color .3s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { display: none; content: ''; }
.faq__q:hover { color: var(--terracotta); }

.faq__chevron {
    flex-shrink: 0;
    color: var(--text-soft);
    transition: transform .3s var(--ease), color .3s;
}
.faq[open] .faq__chevron {
    transform: rotate(180deg);
    color: var(--terracotta);
}

.faq__a {
    padding: 0 0 22px;
}
.faq__a p {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 620px;
}

/* Final CTA (reuses climax pattern) */
.pg-final-cta {
    padding: clamp(80px, 12vw, 140px) 0;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 50%, var(--clay) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pg-final-cta::before {
    content: '';
    position: absolute;
    width: clamp(300px, 40vw, 600px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    top: -30%;
    right: -10%;
}
.pg-final-cta::after {
    content: '';
    position: absolute;
    width: clamp(200px, 25vw, 400px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    bottom: -20%;
    left: -5%;
}

.pg-final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.pg-final-cta__hand {
    font-size: 1.5rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 10px;
    display: block;
}

.pg-final-cta__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 14px;
}

.pg-final-cta__sub {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.pg-final-cta .cta-btn--fill {
    background: var(--white);
    color: var(--terracotta-dark);
    border-color: var(--white);
}
.pg-final-cta .cta-btn--fill:hover {
    background: var(--cream);
    border-color: var(--cream);
    box-shadow: 0 8px 32px rgba(255,255,255,.25);
}

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

/* =============================================
   ABOUT PAGE — sobre-* prefix
   ============================================= */

.sobre-intro {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}
.sobre-intro__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.sobre-intro__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}
.sobre-intro__heading em { font-style: italic; color: var(--terracotta); }
.sobre-intro__text {
    font-size: .98rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.sobre-values {
    padding: clamp(60px, 10vw, 100px) 0;
}
.sobre-values__heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(40px, 5vw, 60px);
    color: var(--text);
}
.sobre-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}
.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}
.value-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--terracotta-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
}
.value-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.value-card__desc {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* =============================================
   SERVICES HUB — hub-* prefix
   ============================================= */

.hub-grid {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}
.hub-grid__intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto clamp(40px, 5vw, 60px);
}
.hub-grid__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}
.hub-grid__sub {
    font-size: .95rem;
    color: var(--text-mid);
}
.hub-grid__cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.hub-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px solid transparent;
    transition: all .4s var(--ease);
    text-decoration: none;
}
.hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(46, 42, 36, .08);
    border-color: var(--sand-light);
}
.hub-card__phase {
    font-family: var(--font-hand);
    font-size: 1.1rem;
    color: var(--terracotta);
    margin-bottom: 8px;
}
.hub-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    transition: color .3s;
}
.hub-card:hover .hub-card__title { color: var(--terracotta); }
.hub-card__desc {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.hub-card__link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--terracotta);
}

/* =============================================
   SERVICE DETAIL — svc-* prefix
   ============================================= */

.svc-intro {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}
.svc-intro__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.svc-intro__heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}
.svc-intro__heading em { font-style: italic; color: var(--terracotta); }
.svc-intro__text {
    font-size: .98rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.svc-fit {
    padding: clamp(60px, 10vw, 100px) 0;
}
.svc-fit__heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(36px, 5vw, 56px);
    color: var(--text);
}
.svc-fit__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.svc-fit__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}
.svc-fit__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--terracotta-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    font-size: .9rem;
    font-weight: 700;
}
.svc-fit__text {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.svc-fit__text strong {
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.svc-program {
    padding: clamp(60px, 10vw, 100px) 0;
    background: var(--white);
}
.svc-program__heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(36px, 5vw, 56px);
    color: var(--text);
}
.svc-program__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.svc-program__card {
    padding: 28px 24px;
    background: var(--cream);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}
.svc-program__card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.svc-program__card-desc {
    font-size: .88rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }
    .hero__visual { display: none; }
    .hero__scroll-hint { display: none; }

    .joana__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .joana__photo-wrap {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /* Mobile nav overlay */
    .nav__links {
        position: fixed;
        inset: 0;
        background: rgba(245, 240, 225, .98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .5s var(--ease);
        z-index: 999;
    }
    .nav__links.is-open {
        opacity: 1;
        visibility: visible;
    }
    .nav__links a {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 500;
        display: block;
        padding: 14px 0;
        color: var(--text);
    }
    .nav__links a::after { display: none; }

    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .sticky-cta { display: block; }

    .hero {
        min-height: calc(100dvh - 60px);
        padding: 100px 20px 80px;
        align-items: center;
    }
    .hero__heading { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .cta-btn { width: 100%; }

    .empathy__heading { font-size: clamp(1.5rem, 6vw, 2rem); }

    .journey {
        padding-left: 36px;
    }
    .journey__line { left: 12px; }
    .journey__dot { left: -36px; transform: translateX(6px); width: 12px; height: 12px; }
    .journey__cards { grid-template-columns: 1fr; }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer__nav { grid-template-columns: 1fr 1fr; }
    .footer { padding-bottom: 80px; }

    .tcard { width: 290px; }

    /* Contact page mobile */
    .wa-form { grid-template-columns: 1fr; }
    .pg-quick__grid { grid-template-columns: 1fr; }
    .pg-location__grid { grid-template-columns: 1fr; }
    .pg-location__map { min-height: 260px; }

    /* About page mobile */
    .sobre-intro__layout { grid-template-columns: 1fr; }
    .sobre-values__grid { grid-template-columns: 1fr; }

    /* Service detail mobile */
    .svc-intro__layout { grid-template-columns: 1fr; }
    .svc-program__grid { grid-template-columns: 1fr; }

    /* Hub mobile */
    .hub-grid__cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .footer__nav { grid-template-columns: 1fr; }
    .journey { padding-left: 28px; }
    .journey__line { left: 8px; }
    .journey__dot { left: -28px; transform: translateX(2px); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .anim-up, .sr {
        opacity: 1;
        transform: none;
    }
    .ticker__track { animation: none; }
}
