:root {
    --ivory: #FAF8F4;
    --linen: #F2EDE4;
    --linen2: #E8E0D4;
    --smoke: #A09890;
    --stone: #6B6260;
    --ink: #1E1B18;
    --gold: #B89A6A;
    --gold-lt: #D4B98A;
    --rose: #C4A89A;
    --night: #0F1A24;
    --sf: 'Cormorant Garamond', Georgia, serif;
    --ss: 'Jost', system-ui, sans-serif;
    --ease: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    --sh1: 0 8px 40px rgba(30, 27, 24, .07), 0 2px 12px rgba(30, 27, 24, .04);
    --sh2: 0 24px 80px rgba(30, 27, 24, .12), 0 8px 32px rgba(184, 154, 106, .10);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--ss);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

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

/* ── Reveal animation ── */
.r {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1)
}

.r.on {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .12s
}

.d2 {
    transition-delay: .24s
}

.d3 {
    transition-delay: .36s
}

.d4 {
    transition-delay: .48s
}

.d5 {
    transition-delay: .60s
}

/* ── Layout ── */
.wrap {
    width: min(92%, 1160px);
    margin-inline: auto
}

.divider {
    width: 48px;
    height: 1.5px;
    background: var(--gold);
    margin: 0 auto 2.4rem
}

.eyebrow {
    font-family: var(--ss);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1.1rem
}

.serif {
    font-family: var(--sf)
}

/* ── Floating CTA Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: var(--ss);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: var(--ease);
    white-space: nowrap
}

.btn-dark {
    background: var(--ink);
    color: var(--ivory);
    padding: 1.05rem 2.6rem;
    box-shadow: var(--sh1)
}

.btn-dark:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translateY(-3px);
    box-shadow: var(--sh2)
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 1.05rem 2.4rem;
    border: 1.5px solid var(--linen2)
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px)
}

.btn-gold {
    background: var(--gold);
    color: var(--ivory);
    padding: 1.15rem 3rem;
    box-shadow: 0 12px 48px rgba(184, 154, 106, .28)
}

.btn-gold:hover {
    background: var(--gold-lt);
    color: var(--ink);
    transform: translateY(-4px);
    box-shadow: 0 24px 72px rgba(184, 154, 106, .38)
}

/* ── 1. NAV ── */
.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    padding: 1.5rem 0;
    transition: var(--ease)
}

.nav.solid {
    background: rgba(250, 248, 244, .95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--linen2);
    padding: 1rem 0
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    font-family: var(--sf);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: .06em;
    color: var(--ink);
    text-decoration: none
}

.logo em {
    font-style: italic;
    color: var(--gold)
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.4rem
}

.nav-links a {
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    transition: var(--ease)
}

.nav-links a:hover {
    color: var(--gold)
}

.nav-cta {
    padding: .75rem 1.8rem;
    font-size: .68rem
}

/* ── 2. HERO ── */
.hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 0 5rem;
    position: relative;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 5vw;
    width: 100%
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 70% 40%, rgba(184, 154, 106, .07) 0%, transparent 65%), radial-gradient(ellipse 50% 80% at 5% 100%, rgba(196, 168, 154, .05) 0%, transparent 55%);
    pointer-events: none
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.4rem
}

.hero-eyebrow span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold)
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold)
}

.hero-h1 {
    font-family: var(--sf);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -.01em;
    color: var(--ink);
    margin-bottom: 1.5rem
}

.hero-h1 em {
    font-style: italic;
    color: var(--gold)
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--stone);
    max-width: 44ch;
    line-height: 1.85;
    margin-bottom: 2.5rem;
    letter-spacing: .02em
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center
}

.hero-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--linen2);
    width: 100%
}

.hs-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--linen2);
    border-radius: 50%;
    color: var(--stone);
    transition: var(--ease)
}

.hs-link svg {
    width: 16px;
    height: 16px
}

.hs-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px)
}

.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap
}

.h-feat {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--stone);
    letter-spacing: .02em
}

.h-feat svg {
    color: var(--gold);
    flex-shrink: 0;
    width: 22px;
    height: 22px
}

.portrait-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: 4px 4px 80px 4px;
    overflow: hidden;
    box-shadow: var(--sh2)
}

.portrait-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--linen) 0%, var(--linen2) 55%, #d4cdc2 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 3rem
}

.portrait-initials {
    font-family: var(--sf);
    font-size: 7rem;
    font-weight: 300;
    color: rgba(184, 154, 106, .25);
    letter-spacing: -.05em;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.portrait-badge {
    position: absolute;
    bottom: 2rem;
    right: -1.5rem;
    background: var(--ivory);
    border-radius: 8px;
    padding: 1rem 1.4rem;
    box-shadow: var(--sh2);
    text-align: center
}

.badge-num {
    font-family: var(--sf);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1
}

.badge-lbl {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: .2rem
}

.dot-accent {
    position: absolute;
    top: 10%;
    left: -2rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 154, 106, .14) 0%, transparent 70%)
}

/* ── 3. ESTRATEGIA ── */
.estrategia {
    padding: 10rem 0;
    background: var(--linen)
}

.strat-header {
    text-align: center;
    margin-bottom: 6rem
}

.strat-h2 {
    font-family: var(--sf);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -.02em
}

.strat-v-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: flex-start;
    margin-bottom: 7rem
}

.strat-quote {
    background: var(--ivory);
    padding: 3.5rem;
    border-radius: 4px;
    border-left: 4px solid var(--gold);
    box-shadow: var(--sh1)
}

.strat-quote p {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink);
    font-style: italic
}

.strat-col-right {
    padding-top: 2rem
}

.strat-body-large {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--stone);
    font-weight: 300
}

.strat-body-large strong {
    color: var(--ink);
    font-weight: 500
}

.strat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.strat-card {
    background: var(--ivory);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(184, 154, 106, .08);
    transition: var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 140px
}

.strat-card:hover {
    border-color: var(--gold-lt);
    transform: translateY(-5px);
    box-shadow: var(--sh1)
}

.strat-txt {
    font-family: var(--sf);
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -.01em
}

/* ── 4. TRABAJO ── */
.trabajo {
    padding: 12rem 0;
    background: #3E3836;
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    position: relative;
    margin-top: 5rem;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.roadmap-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(184, 154, 106, 0) 0%,
            rgba(184, 154, 106, 0.3) 15%,
            rgba(184, 154, 106, 0.3) 85%,
            rgba(184, 154, 106, 0) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.phase {
    display: grid;
    grid-template-rows: 180px 100px 180px;
    align-items: center;
    text-align: center;
}

.phase-n-wrapper {
    grid-row: 2;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #3E3836;
    margin: 0 auto;
}

.phase-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(184, 154, 106, .2),
        0 0 0 10px rgba(184, 154, 106, .08),
        0 0 24px 4px rgba(184, 154, 106, .6);
    z-index: 3;
}

.phase-n {
    font-family: var(--sf);
    font-size: 7rem;
    font-weight: 300;
    color: rgba(184, 154, 106, 0.3);
    line-height: 1;
    user-select: none;
    position: relative;
    z-index: 2;
}

.phase-content {
    padding: 0 0.5rem;
}

.phase:nth-child(odd) .phase-content {
    grid-row: 3;
}

.phase:nth-child(even) .phase-content {
    grid-row: 1;
}

.phase-title {
    font-family: var(--sf);
    font-size: 2.1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0.8rem;
}

.phase-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    font-weight: 300;
}

/* ── 5. SERVICIOS ── */
.servicios {
    padding: 12rem 0;
    background: var(--night);
    position: relative;
    overflow: hidden
}

.servicios::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 154, 106, .06) 0%, transparent 70%)
}

.serv-header {
    text-align: center;
    max-width: 65ch;
    margin: 0 auto 6rem
}

.serv-h2 {
    font-family: var(--sf);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em
}

.serv-h2 em {
    font-style: italic;
    color: var(--gold)
}

.serv-sub {
    font-size: 1.15rem;
    color: var(--smoke);
    line-height: 1.7;
    font-weight: 300
}

.serv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch
}

.serv-card {
    border: 1px solid rgba(184, 154, 106, .12);
    border-radius: 8px;
    padding: 0;
    background: rgba(255, 255, 255, .02);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%
}

.serv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 154, 106, .3);
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4)
}

.serv-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: var(--night)
}

.serv-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .8;
    transition: transform 1.2s var(--ease)
}

.serv-card:hover .serv-img-box img {
    transform: scale(1.05);
    opacity: 1
}

.serv-content {
    padding: 3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.serv-chip {
    display: inline-flex;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--gold);
    padding: .4rem 1rem;
    background: rgba(184, 154, 106, .1);
    border-radius: 100px;
    margin-bottom: 1.8rem;
    width: fit-content
}

.serv-title {
    font-family: var(--sf);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 1rem;
    line-height: 1.2
}

.serv-title em {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--smoke);
    display: block;
    margin-top: .4rem;
    font-family: var(--sf)
}

.serv-body {
    font-size: 1rem;
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300
}

.serv-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.serv-includes li {
    font-size: .9rem;
    color: var(--smoke);
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    opacity: .85
}

.serv-includes li::before {
    content: "•";
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0
}

.serv-result {
    font-size: .95rem;
    margin-top: auto;
    color: var(--ivory);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.serv-result strong {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .1em;
    margin-right: .6rem;
    display: block;
    margin-bottom: .4rem
}

.serv-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 154, 106, .2), transparent);
    margin: 3rem 0;
    position: relative;
    text-align: center
}

.serv-divider::after {
    content: '×';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--night);
    padding: 0 2rem;
    color: var(--gold-lt);
    font-size: 1.8rem;
    opacity: .6;
    font-weight: 300
}

/* ── 6. TRANSFORMACIONES ── */
.transformaciones {
    background: var(--ivory);
    padding: 11rem 0;
}

.trans-h2 {
    font-family: var(--sf);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -.02em
}

.trans-sub {
    font-size: 1.15rem;
    color: var(--stone);
    line-height: 1.7;
    font-weight: 300;
    max-width: 60ch;
    margin: 0 auto;
}

.trans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    align-items: start;
}

.trans-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--linen2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(30, 27, 24, 0.04);
    transition: var(--ease);
}

.trans-card:nth-child(even) {
    margin-top: 0;
}

.trans-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(30, 27, 24, 0.08);
    border-color: var(--gold-lt);
}

.trans-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.2rem;
}

.trans-name {
    font-family: var(--sf);
    font-size: 1.8rem;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.trans-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.trans-sep {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.trans-block {
    margin-bottom: 1.2rem;
    padding-left: 1rem;
    border-left: 1px solid var(--linen2);
}

.trans-block.prob {
    background: rgba(184, 154, 106, 0.04);
    padding: 1.2rem;
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
}

.trans-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1rem;
}

.trans-txt {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
    font-weight: 300;
}

.trans-result {
    margin-top: auto;
    border-top: 1px solid var(--linen2);
    padding-top: 1.5rem;
}

.res-val {
    display: block;
    font-family: var(--sf);
    font-size: 1.6rem;
    line-height: 1.3;
    color: var(--ink);
    font-style: italic;
}

.res-val em {
    color: var(--gold);
    font-weight: 600;
    font-style: normal;
}

/* ── STATS STRIP ── */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid var(--linen2)
}

.stat-big {
    text-align: center
}

.stat-n {
    font-family: var(--sf);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1
}

.stat-l {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: .4rem
}

/* ── 7. BLOG ── */
.blog {
    padding: 11rem 0;
    background: var(--ivory)
}

.blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
    flex-wrap: wrap
}

.blog-h2 {
    font-family: var(--sf);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--ink)
}

.blog-h2 em {
    font-style: italic;
    color: var(--gold)
}

.posts {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.8rem
}

.post {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--sh1);
    border: 1px solid transparent;
    transition: var(--ease);
    display: flex;
    flex-direction: column
}

.post:hover {
    transform: translateY(-5px);
    border-color: var(--gold-lt);
    box-shadow: var(--sh2)
}

.post-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--linen) 0%, var(--linen2) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.post.featured .post-thumb {
    aspect-ratio: 4/3
}

.post-thumb-icon {
    font-family: var(--sf);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184, 154, 106, .25)
}

.post-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ivory);
    background: var(--gold);
    padding: .28rem .75rem;
    border-radius: 2px
}

.post-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.post-date {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-bottom: .6rem
}

.post-title {
    font-family: var(--sf);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.38;
    margin-bottom: .7rem
}

.post.featured .post-title {
    font-size: 1.45rem
}

.post-excerpt {
    font-size: .82rem;
    color: var(--stone);
    line-height: 1.75;
    margin-bottom: 1.4rem;
    flex: 1
}

.post-link {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    transition: var(--ease)
}

.post-link:hover {
    letter-spacing: .22em;
    color: var(--ink)
}

/* ── NEWSLETTER ── */
.newsletter {
    margin-top: 5rem;
    background: var(--linen);
    border-radius: 12px;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.nl-h3 {
    font-family: var(--sf);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.25;
    margin-bottom: .6rem
}

.nl-h3 em {
    font-style: italic;
    color: var(--gold)
}

.nl-sub {
    font-size: .86rem;
    color: var(--stone)
}

.nl-form {
    display: flex;
    gap: 0;
    box-shadow: var(--sh1);
    border-radius: 4px;
    overflow: hidden
}

.nl-input {
    flex: 1;
    padding: .95rem 1.2rem;
    border: 1.5px solid var(--linen2);
    border-right: none;
    background: var(--ivory);
    font-family: var(--ss);
    font-size: .88rem;
    font-weight: 300;
    color: var(--ink);
    outline: none;
    border-radius: 4px 0 0 4px;
    transition: var(--ease)
}

.nl-input:focus {
    border-color: var(--gold);
    background: #fff
}

.nl-btn {
    border: none;
    background: var(--ink);
    color: var(--ivory);
    padding: .95rem 1.8rem;
    font-family: var(--ss);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: var(--ease);
    white-space: nowrap
}

.nl-btn:hover {
    background: var(--gold);
    color: var(--ink)
}

/* ── 8. FOOTER AGENDA ── */
.footer-agenda {
    padding: 9rem 0 0;
    background: var(--night);
    position: relative;
    overflow: hidden
}

.footer-agenda::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(184, 154, 106, .07) 0%, transparent 65%)
}

.agenda-inner {
    text-align: center;
    max-width: 64ch;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.agenda-h2 {
    font-family: var(--sf);
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ivory);
    margin-bottom: 1.4rem
}

.agenda-h2 em {
    font-style: italic;
    color: var(--gold)
}

.agenda-sub {
    font-size: .95rem;
    color: var(--smoke);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 48ch;
    margin-inline: auto
}

.agenda-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.8rem
}

.agenda-disclaimer {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--stone)
}

.gold-rule {
    width: 100%;
    max-width: 360px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
    margin: 5rem auto 0
}

.footer-bottom {
    padding: 3rem 0;
    background: var(--night);
    border-top: 1px solid rgba(184, 154, 106, .1)
}

.footer-bottom-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem
}

.footer-logo {
    font-family: var(--sf);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--smoke);
    text-decoration: none;
    letter-spacing: .06em
}

.footer-logo em {
    font-style: italic;
    color: var(--gold)
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.footer-links a {
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--stone);
    text-decoration: none;
    transition: var(--ease)
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-copy {
    font-size: .65rem;
    color: var(--stone);
    letter-spacing: .08em
}

/* ── WhatsApp Bubble ── */
.wa-bubble {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .15);
    transition: all .35s cubic-bezier(.22, .61, .36, 1);
    text-decoration: none
}

.wa-bubble:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 16px 48px rgba(37, 211, 102, .5)
}

.wa-bubble svg {
    width: 32px;
    height: 32px;
    fill: #fff
}

.wa-bubble .wa-tip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #1E1B18;
    color: #FAF8F4;
    font-family: var(--ss);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .08em;
    white-space: nowrap;
    padding: .45rem .9rem;
    border-radius: 4px;
    opacity: 0;
    transition: all .35s ease;
    pointer-events: none
}

.wa-bubble:hover .wa-tip {
    opacity: 1
}

.wa-bubble .wa-tip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1E1B18
}

/* ── NAV HAMBURGER ── */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--ease)
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s ease, opacity .35s ease
}

.nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.nav-burger.open span:nth-child(2) {
    opacity: 0
}

.nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

.nav-mobile-panel {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(250, 248, 244, .98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem 3rem;
    text-align: center
}

.nav-mobile-panel.open {
    display: flex
}

.nav-mobile-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    width: 100%
}

.nav-mobile-links a {
    font-family: var(--ss);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    display: block;
    padding: .75rem 0;
    border-bottom: 1px solid var(--linen2);
    transition: color .2s
}

.nav-mobile-links a:hover {
    color: var(--gold)
}

.nav-mobile-cta {
    margin-top: .5rem;
    width: 100%
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .roadmap-container {
        min-height: auto;
        display: block;
        padding-left: 2rem;
    }

    /* Grid de 5 cols → columna vertical en mobile */
    .roadmap-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    .roadmap-line {
        left: 65px;
        top: 0;
        bottom: 0;
        width: 1px;
        height: 100%;
        transform: none;
    }

    .phase {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
        text-align: left;
    }

    .phase-n-wrapper {
        flex-shrink: 0;
        margin: 0;
    }

    .phase-content {
        padding: 0.5rem 0 0 0;
    }
}

@media(max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem
    }

    .hero-sub,
    .hero-btns,
    .hero-features,
    .hero-proof {
        margin-inline: auto;
        justify-content: center
    }

    .hero-visual {
        order: -1
    }

    .portrait-badge {
        right: 1rem
    }

    .strat-v-row {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .strat-grid {
        grid-template-columns: 1fr 1fr
    }

    .serv-grid {
        grid-template-columns: 1fr
    }

    .trans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trans-card:nth-child(even) {
        margin-top: 0;
    }

    .posts {
        grid-template-columns: 1fr
    }

    .newsletter {
        grid-template-columns: 1fr
    }

    /* Mostrar hamburguesa, ocultar links y botón nav */
    .nav-links,
    .nav-cta {
        display: none
    }

    .nav-burger {
        display: flex
    }

    /* Reducir paddings de secciones grandes */
    .estrategia,
    .servicios-redesign,
    .transformaciones,
    .blog {
        padding: 6rem 0
    }

    .trabajo {
        padding: 7rem 0
    }

    .footer-agenda {
        padding: 6rem 0 0
    }
}

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

    .stats-strip {
        grid-template-columns: 1fr 1fr
    }

    .footer-bottom-in {
        flex-direction: column;
        text-align: center
    }

    /* Trans-grid a 1 columna en mobile pequeño */
    .trans-grid {
        grid-template-columns: 1fr
    }

    /* Newsletter en columna */
    .newsletter {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem
    }

    /* Reducir paddings aún más en mobile pequeño */
    .estrategia,
    .servicios-redesign,
    .transformaciones,
    .blog {
        padding: 4.5rem 0
    }

    .trabajo {
        padding: 5rem 0
    }

    .footer-agenda {
        padding: 4.5rem 0 0
    }

    /* Hero más compacto */
    .hero {
        padding: 5rem 0 3rem
    }

    /* Botones hero en columna */
    .hero-btns {
        flex-direction: column;
        align-items: center
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center
    }
}