:root {
    --negro: #090909;
    --negro-soft: #111111;
    --negro-panel: rgba(255, 255, 255, 0.04);
    --grafito: #17181b;
    --dorado: #c89a49;
    --dorado-soft: #ebc982;
    --verde-origen: #4d7c56;
    --verde-soft: #8db596;
    --petroleo: #17313b;
    --petroleo-soft: #264d59;
    --coral-b2b: #d67d52;
    --crema: #f3ebdc;
    --crema-soft: #d9ccb4;
    --crema-muted: #aa9677;
    --blanco: #ffffff;
    --font-display: "Sora", sans-serif;
    --font-body: "Manrope", sans-serif;
    --nav-h: 76px;
    --max-w: 1240px;
    --gap: clamp(2.5rem, 6vw, 5rem);
    --radius: 28px;
    --radius-sm: 18px;
    --border-soft: 1px solid rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 20px 70px rgba(0, 0, 0, 0.28);
}

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

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

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top right, rgba(200, 154, 73, 0.12), transparent 26%),
        radial-gradient(circle at bottom left, rgba(23, 49, 59, 0.38), transparent 30%),
        linear-gradient(180deg, #070707 0%, #0b0c0d 38%, #0f1012 100%);
    color: var(--crema);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

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

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin-top: 0;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(200, 154, 73, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(14px);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dorado-soft);
}

.section-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.6vw, 4.5rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.05em;
    color: var(--crema);
}

.section-title em {
    font-style: normal;
    color: var(--dorado-soft);
}

.mt-12 {
    margin-top: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--dorado) 0%, var(--dorado-soft) 100%);
    color: #101010;
    box-shadow: 0 12px 30px rgba(200, 154, 73, 0.24);
}

.btn-outline {
    border-color: rgba(243, 235, 220, 0.16);
    color: var(--crema);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: rgba(200, 154, 73, 0.4);
    color: var(--dorado-soft);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.2);
}

.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-tasara {
    height: 28px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.nav-links a {
    position: relative;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(243, 235, 220, 0.78);
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dorado), var(--verde-soft));
    transition: width 0.28s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 0.6rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--petroleo) 0%, var(--petroleo-soft) 100%);
    color: var(--crema);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: 1rem;
    padding: 0.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.lang-switch--mobile {
    display: none;
    margin: 0 0 0.75rem;
    width: fit-content;
}

.lang-btn {
    border: 0;
    background: transparent;
    color: rgba(243, 235, 220, 0.82);
    min-width: 62px;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.lang-btn:hover {
    color: var(--crema);
    transform: translateY(-1px);
}

.lang-btn.is-active {
    background: linear-gradient(135deg, rgba(200, 154, 73, 0.22), rgba(255, 255, 255, 0.08));
    color: var(--crema);
    box-shadow: inset 0 0 0 1px rgba(200, 154, 73, 0.18);
}

.lang-flag {
    font-size: 0.95rem;
    line-height: 1;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--crema);
    border-radius: 999px;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.15rem;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(9, 9, 9, 0.98);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile a {
    padding: 0.95rem 0.25rem;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(243, 235, 220, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    padding-top: var(--nav-h);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% auto auto 50%;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 154, 73, 0.16) 0%, rgba(77, 124, 86, 0.12) 40%, transparent 70%);
    filter: blur(18px);
    transform: translateX(-10%);
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 35%, rgba(200, 154, 73, 0.12), transparent 24%),
        radial-gradient(circle at 20% 100%, rgba(23, 49, 59, 0.45), transparent 30%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: clamp(2rem, 5vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 5vw, 4rem) clamp(1.25rem, 6vw, 5.5rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.45rem;
    padding: 0.58rem 1rem;
    border: 1px solid rgba(200, 154, 73, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--dorado-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(14px);
}

.hero-title {
    margin: 0 0 1.15rem;
    max-width: 11ch;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6.2vw, 6.25rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.06em;
    color: var(--crema);
}

.hero-title em {
    display: block;
    margin-top: 0.35rem;
    font-style: normal;
    color: var(--dorado-soft);
}

.hero-subtitle {
    max-width: 600px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--crema-soft);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    padding: 1.1rem 1.25rem;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--dorado-soft);
}

.stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crema-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.hero-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(2rem, 4vw, 3rem);
}

.hero-logo-wrap::before {
    content: "";
    position: absolute;
    width: min(80%, 420px);
    aspect-ratio: 1;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at top left, rgba(200, 154, 73, 0.18), transparent 48%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    transform: rotate(-8deg);
}

.hero-logo-img {
    position: relative;
    width: min(360px, 76%);
    filter: drop-shadow(0 0 55px rgba(200, 154, 73, 0.16));
}

.hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
}

.hero-scroll-hint span {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--crema-muted);
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--dorado), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.18);
    }
}

.pilares {
    padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.pilares .section-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.pilar,
.producto-card,
.contacto-card,
.marca-specs,
.marca-img-wrap,
.tl-card {
    border: var(--border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
    box-shadow: var(--shadow-soft);
}

.pilar {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    overflow: hidden;
}

.pilar-trigger {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    width: auto;
    max-width: 100%;
    margin-bottom: 1.2rem;
    padding: 0.35rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.pilar-icon-wrap {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pilar::before {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 154, 73, 0.12), transparent 70%);
    pointer-events: none;
}

.pilar:nth-child(2)::before {
    background: radial-gradient(circle, rgba(77, 124, 86, 0.16), transparent 70%);
}

.pilar:nth-child(3)::before {
    background: radial-gradient(circle, rgba(214, 125, 82, 0.14), transparent 70%);
}

.pilar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 154, 73, 0.12);
    color: var(--dorado-soft);
    font-size: 0.92rem;
    box-shadow: inset 0 0 0 1px rgba(200, 154, 73, 0.18);
}

.pilar:nth-child(2) .pilar-icon {
    background: rgba(77, 124, 86, 0.16);
    color: var(--verde-soft);
    box-shadow: inset 0 0 0 1px rgba(77, 124, 86, 0.25);
}

.pilar:nth-child(3) .pilar-icon {
    background: rgba(23, 49, 59, 0.34);
    color: #7eb6cb;
    box-shadow: inset 0 0 0 1px rgba(126, 182, 203, 0.2);
}

.pilar h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.pilar p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--crema-soft);
}

.pilar-trigger-copy {
    display: inline-grid;
    gap: 0.2rem;
    min-width: 0;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
}

.pilar.is-active .pilar-trigger {
    padding-right: 1.1rem;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.pilar.is-active .pilar-trigger-copy {
    max-width: 320px;
    opacity: 1;
}

.pilar-trigger-title {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--crema);
}

.pilar-trigger-text {
    display: block;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--crema-muted);
}

.marca,
.productos,
.contacto {
    padding: calc(var(--gap) * 1.35) 0;
}

.marca-inner,
.origen-inner,
.impacto-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.marca-texto p,
.origen-label p,
.impacto-content p,
.productos-sub,
.contacto-card p {
    color: var(--crema-soft);
}

.marca-specs {
    margin: 2rem 0;
    padding: 1.25rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-radius: 24px;
}

.spec-label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--crema-muted);
}

.spec-val {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dorado-soft);
}

.marca-img-wrap {
    position: relative;
    padding: 2.2rem;
    border-radius: 32px;
    overflow: hidden;
}

.marca-img-wrap::before {
    content: "";
    position: absolute;
    inset: auto auto -15% -10%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 124, 86, 0.16), transparent 72%);
}

.marca-img {
    position: relative;
    width: min(280px, 82%);
    margin: 0 auto;
}

.marca-note {
    margin-top: 1.25rem;
    text-align: center;
}

.marca-note p {
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--crema-muted);
}

.notas-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.nota {
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(200, 154, 73, 0.22);
    border-radius: 999px;
    color: var(--dorado-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.02);
}

.origen {
    padding: calc(var(--gap) * 1.35) 0;
    background: linear-gradient(180deg, rgba(23, 49, 59, 0.24), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.origen-timeline {
    position: relative;
}

.tl-line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--dorado), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1.4rem;
}

.tl-dot {
    position: absolute;
    left: 4px;
    top: 1.1rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #0f0f0f;
    border: 1px solid rgba(200, 154, 73, 0.35);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.timeline-item.active .tl-dot,
.timeline-item:hover .tl-dot {
    background: var(--dorado);
    border-color: var(--dorado);
    box-shadow: 0 0 16px rgba(200, 154, 73, 0.35);
}

.tl-card {
    padding: 1.25rem 1.3rem;
    border-radius: 24px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tl-card:hover,
.timeline-item.active .tl-card {
    transform: translateY(-2px);
    border-color: rgba(200, 154, 73, 0.34);
    background: linear-gradient(180deg, rgba(200, 154, 73, 0.08), rgba(255, 255, 255, 0.03));
}

.tl-lote {
    display: inline-block;
    margin-bottom: 0.45rem;
    padding: 0.38rem 0.62rem;
    border-radius: 999px;
    background: rgba(23, 49, 59, 0.35);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8dc6dc;
}

.tl-card h4 {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.tl-card p {
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    color: var(--crema-soft);
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tl-tags span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(77, 124, 86, 0.16);
    color: var(--verde-soft);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.productos-header,
.contacto-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.productos-grid,
.contacto-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    gap: 1.4rem;
}

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

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

.producto-card,
.contacto-card {
    border-radius: 28px;
    overflow: hidden;
}

.producto-card {
    position: relative;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
    transform-origin: center bottom;
}

.producto-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.producto-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 154, 73, 0.26);
}

.producto-card.featured {
    border-color: rgba(77, 124, 86, 0.3);
}

.producto-img-wrap {
    position: relative;
}

.producto-img {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.4rem;
}

.producto-icon {
    display: inline-flex;
    transform-origin: center;
    width: min(132px, 58%);
    height: auto;
    object-fit: contain;
}

.producto-img--grano {
    background: radial-gradient(circle at center, rgba(214, 125, 82, 0.22) 0%, #101214 100%);
}

.producto-img--molido {
    background: radial-gradient(circle at center, rgba(23, 49, 59, 0.36) 0%, #0d0e12 100%);
}

.producto-img--pocket {
    background: radial-gradient(circle at center, rgba(77, 124, 86, 0.28) 0%, #0c0f0d 100%);
}

.producto-badge {
    position: absolute;
    top: 0.95rem;
    right: 0.95rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--dorado), var(--dorado-soft));
    color: #111;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.producto-card.featured .producto-badge {
    background: linear-gradient(135deg, var(--verde-origen), var(--verde-soft));
    color: #07110a;
}

.producto-info {
    position: relative;
    padding: 1.45rem;
}

.producto-tipo {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.34rem 0.58rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dorado-soft);
}

.producto-info h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.48rem;
    line-height: 1.18;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.producto-notas {
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
    color: var(--crema-soft);
}

.producto-precio {
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--dorado-soft);
}

.productos-nota {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 0 1.25rem;
    text-align: center;
    color: var(--crema-muted);
    font-size: 0.9rem;
}

.impacto {
    position: relative;
    padding: calc(var(--gap) * 1.35) 0;
    background:
        radial-gradient(circle at right center, rgba(214, 125, 82, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(19, 32, 38, 0.96), rgba(13, 18, 21, 0.98));
}

.impacto-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.impacto-pilar {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impacto-pilar:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ip-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(200, 154, 73, 0.36);
    min-width: 2.6rem;
}

.impacto-pilar h4 {
    margin: 0 0 0.3rem;
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.impacto-pilar p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(243, 235, 220, 0.72);
}

.contacto-card {
    padding: 1.7rem;
}

.contacto-card:nth-child(2) {
    border-color: rgba(214, 125, 82, 0.25);
}

.contacto-card h3 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.contacto-micro {
    margin-top: 0.75rem;
    margin-bottom: 0;
    font-size: 0.76rem !important;
    color: rgba(170, 150, 119, 0.72) !important;
}

.datos-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.3rem;
}

.datos-list li {
    display: flex;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--crema-soft);
}

.datos-list li span {
    min-width: 82px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dorado-soft);
}

.redes {
    display: flex;
    gap: 0.7rem;
}

.redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    padding: 0.55rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(243, 235, 220, 0.12);
    color: var(--crema-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.redes a:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 154, 73, 0.35);
    color: var(--dorado-soft);
}

.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    height: 24px;
    margin-bottom: 1rem;
}

.footer-brand p,
.footer-legal p,
.footer-links a {
    color: rgba(170, 150, 119, 0.76);
    font-size: 0.82rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--dorado-soft);
}

.footer-legal a {
    color: rgba(170, 150, 119, 0.76);
}

.subpage-hero {
    padding: calc(var(--nav-h) + 4rem) 0 2rem;
}

.subpage-hero .section-inner {
    max-width: 980px;
}

.subpage-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.2);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.4rem;
}

.subpage-card {
    border: var(--border-soft);
    border-radius: 28px;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
}

.subpage-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.subpage-card p,
.subpage-card li {
    color: var(--crema-soft);
}

.subpage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}

.asset-code {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: var(--dorado-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.leonor-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3.5rem) 0 2.5rem;
}

.leonor-hero .section-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.5rem;
    align-items: center;
}

.leonor-shell,
.leonor-media-card,
.leonor-story-card,
.leonor-spec-card,
.leonor-cta-band,
.leonor-gallery-card,
.leonor-video-card,
.leonor-highlight,
.leonor-grid-card {
    border: var(--border-soft);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
}

.leonor-shell {
    position: relative;
    padding: 1.8rem;
    border-radius: 32px;
    overflow: hidden;
}

.leonor-shell::before {
    content: "";
    position: absolute;
    inset: auto -10% -25% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 154, 73, 0.18), transparent 70%);
    pointer-events: none;
}

.leonor-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    color: var(--dorado-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leonor-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.leonor-title em {
    display: block;
    font-style: normal;
    color: var(--dorado-soft);
}

.leonor-shell p {
    color: var(--crema-soft);
}

.leonor-signature {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--crema-muted);
    font-size: 0.82rem;
}

.leonor-media-stack {
    display: grid;
    gap: 1rem;
}

.leonor-media-card {
    padding: 1rem;
    border-radius: 28px;
}

.media-placeholder {
    position: relative;
    min-height: 260px;
    border-radius: 24px;
    border: 1px dashed rgba(235, 201, 130, 0.25);
    background:
        linear-gradient(135deg, rgba(23, 49, 59, 0.55), rgba(9, 9, 9, 0.85)),
        repeating-linear-gradient(
            -45deg,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0.02) 12px,
            transparent 12px,
            transparent 24px
        );
    overflow: hidden;
}

.media-placeholder::before {
    content: attr(data-file);
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
    background: rgba(0,0,0,0.38);
    color: var(--crema-soft);
    font-size: 0.8rem;
    line-height: 1.45;
}

.media-placeholder::after {
    content: attr(data-label);
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.42rem 0.68rem;
    border-radius: 999px;
    background: rgba(200, 154, 73, 0.16);
    color: var(--dorado-soft);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.media-placeholder.tall {
    min-height: 420px;
}

.media-placeholder.square {
    min-height: 340px;
}

.leonor-duo {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
}

.leonor-story-card,
.leonor-spec-card,
.leonor-gallery-card,
.leonor-video-card,
.leonor-highlight,
.leonor-grid-card {
    padding: 1.45rem;
    border-radius: 28px;
}

.leonor-story-card h3,
.leonor-spec-card h3,
.leonor-gallery-card h3,
.leonor-video-card h3,
.leonor-highlight h3,
.leonor-grid-card h3 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.leonor-story-card p,
.leonor-spec-card p,
.leonor-gallery-card p,
.leonor-video-card p,
.leonor-highlight p,
.leonor-grid-card p,
.leonor-grid-card li {
    color: var(--crema-soft);
}

.leonor-bullet-list {
    display: grid;
    gap: 0.75rem;
}

.leonor-bullet {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    align-items: start;
}

.leonor-bullet-mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.5rem;
    background: linear-gradient(135deg, var(--dorado), var(--dorado-soft));
    box-shadow: 0 0 16px rgba(200, 154, 73, 0.25);
}

.leonor-cta-band {
    max-width: var(--max-w);
    margin: 0 auto calc(var(--gap) * 1.05);
    padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.leonor-cta-band p {
    margin: 0;
    color: var(--crema-soft);
}

.leonor-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.15);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.spec-item {
    padding: 0.95rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}

.spec-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--dorado-soft);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-stack {
    display: grid;
    gap: 1rem;
}

.mini-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.mini-placeholder-grid .media-placeholder {
    min-height: 220px;
}

.video-placeholder {
    min-height: 220px;
}

.leonor-note {
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(23, 49, 59, 0.34);
    color: var(--crema-soft);
    font-size: 0.9rem;
}

.leonor-divider-title {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) 1.2rem;
}

.leonor-page {
    background:
        radial-gradient(circle at top right, rgba(23, 49, 59, 0.34), transparent 26%),
        radial-gradient(circle at bottom left, rgba(200, 154, 73, 0.08), transparent 24%),
        linear-gradient(180deg, #060606 0%, #081116 100%);
}

.leonor-showcase {
    position: relative;
    min-height: 560px;
}

.leonor-showcase-main,
.leonor-showcase-side,
.leonor-brand-card,
.leonor-moment-card,
.leonor-frame {
    border: var(--border-soft);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
}

.leonor-showcase-main,
.leonor-showcase-side {
    position: absolute;
    overflow: hidden;
    border-radius: 30px;
}

.leonor-showcase-main {
    inset: 4% 16% 3% 16%;
    z-index: 3;
}

.leonor-showcase-side {
    width: 34%;
    z-index: 2;
}

.leonor-showcase-side.showcase-left {
    inset: 12% auto auto 0;
    transform: rotate(-8deg);
}

.leonor-showcase-side.showcase-right {
    inset: auto 0 10% auto;
    transform: rotate(8deg);
}

.leonor-showcase img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leonor-showcase figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.72rem 0.9rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.46);
    color: #fff1d4;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.leonor-brand-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.2rem;
    align-items: center;
    padding: 1.4rem;
    border-radius: 28px;
}

.leonor-brand-mark {
    display: grid;
    place-items: center;
    min-height: 240px;
    border-radius: 24px;
    background:
        radial-gradient(circle at center, rgba(200, 154, 73, 0.14), transparent 58%),
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.05);
}

.leonor-brand-mark img {
    width: min(160px, 70%);
    height: auto;
}

.leonor-brand-copy h3 {
    margin: 0 0 0.7rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: -0.03em;
}

.leonor-brand-copy p {
    margin: 0;
    color: var(--crema-soft);
}

.leonor-moments {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.leonor-moment-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 520px;
}

.leonor-moment-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leonor-moment-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.72));
}

.leonor-moment-copy {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
}

.leonor-moment-copy span {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.45rem 0.72rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--dorado-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.leonor-moment-copy h3 {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    color: #fff7ea;
}

.leonor-moment-copy p {
    margin: 0;
    color: rgba(255, 247, 234, 0.84);
}

.leonor-stack-wrap {
    margin-top: 1.1rem;
    padding: 1rem;
    min-height: 440px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(200,154,73,0.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
    border: 1px solid rgba(255,255,255,0.05);
}

.leonor-stack {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.leonor-frame {
    position: absolute;
    inset: 0;
    width: 62%;
    margin: auto;
    border-radius: 26px;
    overflow: hidden;
}

.leonor-frame.frame-a {
    transform: translateX(-18%) rotate(-8deg);
}

.leonor-frame.frame-b {
    transform: translateX(0) rotate(2deg);
    z-index: 2;
}

.leonor-frame.frame-c {
    transform: translateX(18%) rotate(8deg);
}

.leonor-frame img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.leonor-frame figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    background: rgba(0,0,0,0.48);
    color: #fff1d4;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.leonor-inline-media {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.32);
}

.leonor-inline-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leonor-inline-media--tall img {
    min-height: 420px;
}

.tienda-media {
    display: grid;
    place-items: center;
    min-height: 280px;
    padding: 1rem;
}

.tienda-media img {
    width: auto;
    max-width: 52%;
    max-height: 240px;
    object-fit: contain;
}

.tienda-media--small img {
    max-width: 46%;
    max-height: 220px;
}

.tienda-media--medium-up img {
    max-width: 58%;
    max-height: 285px;
}

.tienda-media--tiny img {
    max-width: 36%;
    max-height: 180px;
}

.leonor-scene-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.leonor-scene-card {
    overflow: hidden;
    border-radius: 28px;
    border: var(--border-soft);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
}

.leonor-scene-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.leonor-scene-copy {
    padding: 1.2rem 1.2rem 1.35rem;
}

.leonor-scene-copy h3 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.leonor-scene-copy p {
    margin: 0;
    color: var(--crema-soft);
}

.origin-page {
    background:
        radial-gradient(circle at top right, rgba(23, 49, 59, 0.42), transparent 28%),
        linear-gradient(180deg, #060606 0%, #081116 100%);
}

.origin-hero {
    position: relative;
    padding: calc(var(--nav-h) + 3.5rem) 0 2rem;
}

.origin-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    align-items: center;
}

.origin-hero-copy {
    padding-right: 1rem;
}

.origin-hero-copy p {
    color: var(--crema-soft);
}

.origin-hero-montage {
    position: relative;
    min-height: 540px;
}

.origin-hero-card {
    position: absolute;
    width: 46%;
    border-radius: 28px;
    overflow: hidden;
    border: var(--border-soft);
    background: rgba(8, 8, 8, 0.9);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.38);
}

.origin-hero-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-hero-card figcaption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 0.72rem 0.9rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.45);
    color: #f4ebd9;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.origin-hero-card.card-a {
    inset: 2% auto auto 0;
    height: 320px;
    transform: rotate(-6deg);
}

.origin-hero-card.card-b {
    inset: 14% 4% auto auto;
    height: 360px;
    transform: rotate(6deg);
}

.origin-hero-card.card-c {
    inset: auto 12% 2% auto;
    height: 300px;
    transform: rotate(-4deg);
}

.origin-band {
    padding: 0 0 2rem;
}

.origin-band-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.2rem clamp(1.25rem, 4vw, 3rem);
    border: var(--border-soft);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.origin-band p {
    margin: 0;
    color: var(--crema-soft);
}

.origin-storyline {
    position: relative;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem clamp(1.25rem, 4vw, 3rem) calc(var(--gap) * 1.15);
}

.origin-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(clamp(1.25rem, 4vw, 3rem) + 102px);
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.origin-line-progress {
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: top center;
    background: linear-gradient(180deg, rgba(200, 154, 73, 0.3), rgba(200, 154, 73, 1));
}

.origin-entry {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.origin-entry:last-child {
    margin-bottom: 0;
}

.origin-entry::before {
    content: "";
    position: absolute;
    left: 95px;
    top: 1rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--dorado-soft), var(--dorado));
    box-shadow: 0 0 0 8px rgba(200, 154, 73, 0.08), 0 0 22px rgba(200, 154, 73, 0.25);
}

.origin-rail {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    padding-top: 0.5rem;
}

.origin-rail-year,
.origin-rail-range {
    display: block;
}

.origin-rail-year {
    margin-bottom: 0.35rem;
    color: var(--dorado-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.origin-rail-range {
    color: rgba(232, 224, 207, 0.72);
    font-size: 0.94rem;
    line-height: 1.5;
}

.origin-card {
    padding: 1.45rem;
    border-radius: 30px;
    border: var(--border-soft);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    box-shadow: var(--shadow-soft);
}

.origin-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.origin-card-top h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.origin-card-top h2 em {
    display: block;
    margin-top: 0.3rem;
    color: var(--dorado-soft);
    font-style: normal;
    font-size: 0.75em;
}

.origin-lot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-end;
}

.origin-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    background: rgba(23, 49, 59, 0.42);
    color: #f4ebd9;
    border: 1px solid rgba(200, 154, 73, 0.18);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.origin-body-copy {
    margin: 0 0 1.2rem;
    color: var(--crema-soft);
    max-width: 66ch;
}

.origin-collage {
    position: relative;
    min-height: 520px;
    margin-top: 1.2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(200, 154, 73, 0.08), transparent 30%),
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.origin-shot {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--w);
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
    transform: rotate(var(--r));
    transform-origin: center center;
    cursor: pointer;
}

.origin-shot img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.origin-shot figcaption {
    position: absolute;
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.52);
    color: #fff3db;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.origin-shot:hover {
    z-index: 8;
}

.origin-shot:hover img,
.origin-shot.is-active img {
    transform: scale(1.05);
}

.origin-band--closing {
    padding-bottom: calc(var(--gap) * 1.05);
}

.js.gsap-ready [data-pilar],
.js.gsap-ready [data-reveal],
.js.gsap-ready [data-reveal-right],
.js.gsap-ready [data-product],
.js.gsap-ready [data-leonor-reveal],
.js.gsap-ready [data-leonor-showcase-card],
.js.gsap-ready [data-leonor-moment],
.js.gsap-ready [data-leonor-frame],
.js.gsap-ready .contacto-card,
.js.gsap-ready [data-origin-entry],
.js.gsap-ready [data-origin-hero-card],
.js.gsap-ready [data-origin-band] {
    opacity: 0;
}

.js.gsap-ready .pilar-trigger-copy {
    opacity: 0;
    max-width: 0;
}

@media (max-width: 980px) {
    .nav-links,
    .nav-cta,
    .lang-switch:not(.lang-switch--mobile) {
        display: none;
    }

    .lang-switch--mobile {
        display: inline-flex;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 4rem;
    }

    .hero-content {
        order: 2;
        padding: 2rem 1.25rem 0;
    }

    .hero-title,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo-wrap {
        order: 1;
        padding: 4rem 1.25rem 0.5rem;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .pilares .section-inner,
    .productos-grid,
    .contacto-grid,
    .marca-inner,
    .origen-inner,
    .impacto-inner,
    .footer-inner,
    .subpage-grid,
    .leonor-hero .section-inner,
    .leonor-duo,
    .leonor-grid,
    .leonor-scene-grid,
    .leonor-moments,
    .origin-hero-grid,
    .origin-entry {
        grid-template-columns: 1fr;
    }

    .leonor-cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .origin-hero-montage {
        min-height: 420px;
    }

    .origin-hero-card {
        width: 54%;
    }

    .origin-line {
        display: none;
    }

    .origin-entry::before {
        display: none;
    }

    .origin-rail {
        position: static;
        padding-top: 0;
    }

    .origin-card-top,
    .origin-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .origin-lot-tags {
        justify-content: flex-start;
    }

    .origin-collage {
        min-height: auto;
        display: grid;
        gap: 1rem;
        padding: 1rem;
    }

    .origin-shot {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
    }

    .origin-shot img {
        min-height: 240px;
    }

    .leonor-showcase {
        min-height: 460px;
    }

    .leonor-brand-card {
        grid-template-columns: 1fr;
    }

    .leonor-stack-wrap {
        min-height: auto;
    }

    .leonor-stack {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .leonor-frame {
        position: relative;
        inset: auto;
        width: 100%;
        transform: none !important;
    }

    .leonor-frame img {
        min-height: 260px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(2.55rem, 11vw, 4.3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .stat-divider {
        width: 38px;
        height: 1px;
    }

    .marca-specs {
        grid-template-columns: 1fr;
    }

    .producto-info h3 {
        font-size: 1.35rem;
    }

    .footer {
        padding-bottom: 5rem;
    }

    .pilar-trigger {
        width: 100%;
    }

    .pilar.is-active .pilar-trigger-copy {
        max-width: 180px;
    }

    .spec-grid,
    .mini-placeholder-grid {
        grid-template-columns: 1fr;
    }

    .origin-hero-card {
        width: 70%;
    }

    .origin-hero-card.card-a {
        inset: 0 auto auto 0;
        height: 220px;
    }

    .origin-hero-card.card-b {
        inset: 18% 0 auto auto;
        height: 240px;
    }

    .origin-hero-card.card-c {
        inset: auto 4% 0 auto;
        height: 200px;
    }

    .leonor-showcase-main {
        inset: 10% 10% 8% 10%;
    }

    .leonor-showcase-side {
        width: 52%;
    }

    .leonor-showcase-side.showcase-left {
        inset: 0 auto auto 0;
    }

    .leonor-showcase-side.showcase-right {
        inset: auto 0 0 auto;
    }

    .origin-shot figcaption,
    .origin-hero-card figcaption,
    .leonor-showcase figcaption,
    .leonor-frame figcaption {
        font-size: 0.68rem;
    }
}
