/* ============================================================
   THE TRUTH PARFUM — Complete Luxury Design System
   Inspired by: Tom Ford, Le Labo, Byredo editorial aesthetics
   ============================================================ */

/* === TOKENS === */
:root {
    --gold: #C9A96E;
    --gold-bright: #D4B87A;
    --gold-muted: rgba(201,169,110,0.4);
    --gold-subtle: rgba(201,169,110,0.12);
    --gold-ghost: rgba(201,169,110,0.06);

    --bg: #08060D;
    --bg-elevated: #0D0A14;
    --bg-card: #100D18;
    --bg-overlay: rgba(8,6,13,0.92);

    --cream: #EDE8E0;
    --cream-soft: #C5BFB5;
    --cream-muted: #7A736B;
    --cream-ghost: #3D3833;

    --serif: 'Cinzel', 'Georgia', serif;
    --sans: 'Montserrat', 'Helvetica Neue', sans-serif;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);

    --radius: 2px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
}

/* === RESET === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    background: var(--bg);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 72px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cream-ghost); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--cream-muted); }

/* === TYPOGRAPHY === */
.t-display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: 0.12em;
    line-height: 1.15;
}
.t-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 500;
}
.t-body { font-size: 0.9rem; line-height: 1.85; font-weight: 300; }
.t-small { font-size: 0.78rem; font-weight: 300; line-height: 1.7; }

/* === UTILITY === */
.obj-cover { object-fit: cover; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-main {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1.1rem 0;
    background: rgba(8,6,13,0.6);
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    transition: all 0.5s var(--ease);
}
.navbar-main.scrolled {
    padding: 0.7rem 0;
    background: rgba(8,6,13,0.95);
    border-bottom-color: rgba(255,255,255,0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none !important;
    flex-shrink: 0;
}
.nav-brand-icon {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}
.nav-brand-text {
    font-family: var(--serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.35em;
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
}
.nav-link-item a {
    display: block;
    padding: 0.5rem 1.3rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 400;
    color: var(--cream-soft);
    position: relative;
    transition: color 0.3s;
}
.nav-link-item a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.4s var(--ease);
    transform: translateX(-50%);
}
.nav-link-item a:hover,
.nav-link-item a.active {
    color: var(--cream);
}
.nav-link-item a:hover::after,
.nav-link-item a.active::after {
    width: 40%;
}
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--cream);
    transition: all 0.3s;
    font-family: var(--sans);
    margin-left: 0.8rem;
}
.nav-cta:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.nav-cta svg { opacity: 0.7; }

.nav-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--cream);
    font-family: var(--sans);
    transition: all 0.3s;
    text-decoration: none;
}
.nav-lang:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px 4px;
    cursor: pointer;
    background: none;
    border: none;
}
.nav-toggle span {
    display: block;
    width: 20px; height: 1px;
    background: var(--cream);
    transition: all 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.nav-mobile {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,6,13,0.98);
    backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
    font-family: var(--serif);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    color: var(--cream-soft);
    padding: 1rem 2rem;
    transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-lang {
    font-family: var(--sans) !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
    display: inline-block;
    margin-top: 1rem;
}
.nav-mobile-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    font-size: 1.5rem;
    color: var(--cream-soft);
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .nav-links { display: none !important; }
    .nav-cta { display: none !important; }
    .nav-toggle { display: flex; }
    body { padding-top: 62px; }
    .navbar-main { padding: 0.9rem 0; }
    .navbar-main.scrolled { padding: 0.6rem 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
    padding-bottom: 5rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 45%, rgba(201,169,110,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 25% 70%, rgba(80,50,100,0.04) 0%, transparent 60%),
        radial-gradient(ellipse 35% 35% at 80% 25%, rgba(150,120,60,0.03) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 1.5rem;
    padding-bottom: 6rem;
}
.hero-content .hero-actions {
    margin-top: 0;
}
.hero-rule {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 2rem;
    opacity: 0.5;
}
.hero-eyebrow {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: var(--cream-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.hero-heading {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 1.8rem;
}
.hero-body {
    font-size: 0.95rem;
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.9;
    max-width: 460px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: var(--cream-muted);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 400;
}
.hero-scroll-line {
    width: 1px; height: 35px;
    background: linear-gradient(to bottom, var(--gold-muted), transparent);
}
@media (max-width: 767.98px) {
    .hero { min-height: 100svh; }
    .hero-scroll { display: none; }
    .hero-heading { letter-spacing: 0.04em; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 500;
    font-family: var(--sans);
    background: transparent;
    transition: all 0.4s var(--ease);
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--bg);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--cream-soft);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 400;
    font-family: var(--sans);
    background: transparent;
    transition: all 0.3s;
}
.btn-secondary:hover {
    border-color: rgba(255,255,255,0.25);
    color: var(--cream);
}
.btn-sm {
    padding: 0.4rem 0.9rem;
    font-size: 0.52rem;
    letter-spacing: 0.18em;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--gold-subtle);
    color: var(--cream);
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s;
    font-family: var(--sans);
}
.btn-whatsapp:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--space-xl) 0; }
.section-lg { padding: var(--space-2xl) 0; }
.section-sm { padding: var(--space-lg) 0; }
.section-alt {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-overline {
    display: block;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}
.section-title {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
}
.section-rule {
    width: 40px; height: 1px;
    background: var(--gold);
    opacity: 0.3;
    border: none;
    margin: 1.5rem auto;
}
.section-desc {
    color: var(--cream-soft);
    font-size: 0.85rem;
    font-weight: 300;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding: 1.1rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}
.marquee-item {
    font-family: var(--serif);
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cream-ghost);
    white-space: nowrap;
    padding: 0 1.5rem;
    font-weight: 400;
}
.marquee-dot {
    color: var(--gold-subtle);
    font-size: 0.35rem;
    padding: 0 0.2rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   STATS
   ============================================================ */
.stat { text-align: center; padding: 1.2rem 0.5rem; }
.stat-num {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--cream-muted);
    font-weight: 400;
    line-height: 1.6;
}
.stat-rule {
    width: 16px; height: 1px;
    background: var(--gold-subtle);
    margin: 0.7rem auto 0;
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
    border-color: rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.card-img {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}
.card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.card:hover .card-img img {
    transform: scale(1.04);
}
.card-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(8,6,13,0.88) 0%, rgba(8,6,13,0.25) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
/* Badge */
.card-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    z-index: 5;
    font-size: 0.42rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    background: rgba(8,6,13,0.55);
    backdrop-filter: blur(6px);
    border: 1px solid var(--gold-subtle);
    color: var(--gold);
    font-family: var(--sans);
}
/* Always visible bottom info */
.card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 1rem 1.1rem 1rem;
}
.card-brand {
    font-size: 0.48rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.15rem;
}
.card-name {
    font-family: var(--serif);
    font-size: 0.88rem;
    color: var(--cream);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.card-price {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--cream);
    letter-spacing: 0.03em;
    font-weight: 400;
}
.card-conc {
    font-size: 0.48rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cream-muted);
    font-weight: 400;
}
/* Hover CTA panel — slides up from bottom */
.card-cta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 3;
    padding: 0.65rem 1.1rem;
    background: rgba(8,6,13,0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.05);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}
.card:hover .card-cta {
    transform: translateY(0);
}
.card-notes {
    font-size: 0.68rem;
    color: var(--cream-soft);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   FEATURED HERO — Large editorial card
   ============================================================ */
.featured {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.5s var(--ease);
}
.featured:hover {
    border-color: rgba(255,255,255,0.08);
}
.featured-img {
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}
.featured-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.featured:hover .featured-img img {
    transform: scale(1.03);
}
.featured-body {
    border-left: 1px solid rgba(255,255,255,0.04);
    position: relative;
}
.featured-mark {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-family: var(--serif);
    font-size: 6rem;
    color: var(--gold-ghost);
    line-height: 0.8;
    pointer-events: none;
}
.featured-brand {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.featured-name {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.25;
    color: var(--cream);
    margin-bottom: 0.4rem;
}
.featured-conc {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream-muted);
    font-weight: 400;
    margin-bottom: 1.2rem;
}
.featured-notes {
    font-size: 0.85rem;
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.9;
    font-style: italic;
    max-width: 380px;
    margin-bottom: 1.5rem;
}
.featured-price {
    font-family: var(--serif);
    font-size: 1.6rem;
    color: var(--cream);
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
.featured-price span {
    font-size: 0.65rem;
    color: var(--cream-muted);
    margin-left: 6px;
    letter-spacing: 0.1em;
}
@media (max-width: 991.98px) {
    .featured-img { min-height: 340px; }
    .featured-body { border-left: none; border-top: 1px solid rgba(255,255,255,0.04); }
    .featured-mark { font-size: 4rem; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillar {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s var(--ease);
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.5s var(--ease);
    transform: translateX(-50%);
}
.pillar:hover::before { width: 60%; }
.pillar:hover { border-color: rgba(255,255,255,0.06); }
.pillar-icon {
    color: var(--cream-muted);
    margin-bottom: 1.2rem;
    transition: color 0.4s;
}
.pillar:hover .pillar-icon { color: var(--gold); }
.pillar-num {
    font-family: var(--serif);
    font-size: 1.5rem;
    color: var(--cream-ghost);
    letter-spacing: 0.1em;
    font-weight: 400;
    margin-bottom: 0.5rem;
}
.pillar-title {
    font-family: var(--serif);
    font-size: 0.9rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 1rem;
}
.pillar-text {
    font-size: 0.82rem;
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.85;
}

/* ============================================================
   FILTERS
   ============================================================ */
.filter-btn {
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--cream-muted);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 400;
    border-radius: 50px;
    background: transparent;
    font-family: var(--sans);
    transition: all 0.3s var(--ease);
    cursor: pointer;
}
.filter-btn:hover {
    border-color: rgba(255,255,255,0.12);
    color: var(--cream);
}
.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
}
.filter-count {
    font-size: 0.62rem;
    color: var(--cream-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-form { max-width: 440px; }
.newsletter-input {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-right: none !important;
    color: var(--cream) !important;
    font-family: var(--sans) !important;
    font-size: 0.8rem !important;
    font-weight: 300 !important;
    padding: 0.8rem 1.2rem !important;
    transition: border-color 0.3s !important;
}
.newsletter-input:focus {
    border-color: rgba(255,255,255,0.15) !important;
    box-shadow: none !important;
}
.newsletter-input::placeholder { color: var(--cream-ghost) !important; }
.newsletter-submit {
    padding: 0.8rem 1.6rem;
    background: var(--cream);
    border: 1px solid var(--cream);
    color: var(--bg);
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    font-family: var(--sans);
    transition: all 0.3s;
    white-space: nowrap;
    cursor: pointer;
}
.newsletter-submit:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ============================================================
   ABOUT — La Maison
   ============================================================ */
.manifesto { padding: 2rem 0; }
.manifesto-mark {
    font-family: var(--serif);
    font-size: 6rem;
    color: var(--gold-ghost);
    line-height: 0.5;
    margin-bottom: 0.8rem;
    user-select: none;
}
.manifesto-text {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0 0 1.5rem;
}
.manifesto-text strong { color: var(--gold-bright); font-weight: 500; }
.manifesto-author {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--cream-muted);
    font-weight: 400;
}
.story-num {
    font-family: var(--serif);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;
    color: var(--gold-ghost);
    line-height: 0.85;
    letter-spacing: -0.02em;
    user-select: none;
}
.story-vline {
    width: 1px; height: 160px;
    background: linear-gradient(to bottom, transparent, var(--cream-ghost), transparent);
    margin: 0 2rem;
}
.story-content p {
    color: var(--cream-soft);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 1rem;
}
.story-content strong { color: var(--cream); font-weight: 500; }
.story-content em { color: var(--cream); font-style: italic; }
.story-heading {
    font-family: var(--serif);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--cream);
}
@media (min-width: 992px) { .story-content { padding-left: 1.5rem; } }
@media (max-width: 991.98px) {
    .story-num { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
    .story-vline { width: 40px; height: 1px; margin: 1rem auto; }
    .story-content { text-align: center; padding-left: 0 !important; }
    .manifesto-mark { font-size: 4rem; }
}

/* ============================================================
   CÓMO FUNCIONA
   ============================================================ */
.how-step {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: border-color 0.5s var(--ease);
}
.how-step:hover { border-color: rgba(255,255,255,0.08); }
.how-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--gold-ghost);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 1rem;
}
.how-icon {
    color: var(--cream-muted);
    margin-bottom: 1.2rem;
    transition: color 0.4s;
}
.how-step:hover .how-icon { color: var(--gold); }
.how-title {
    font-family: var(--serif);
    font-size: 0.95rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.how-text {
    font-size: 0.82rem;
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.85;
}
@media (max-width: 767.98px) {
    .how-step { display: flex; flex-direction: row; align-items: center; text-align: left; gap: 1.2rem; padding: 1.5rem; }
    .how-num { font-size: 2rem; margin-bottom: 0; min-width: 2rem; }
    .how-icon { margin-bottom: 0; }
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: border-color 0.5s var(--ease);
}
.testimonial-card:hover { border-color: rgba(255,255,255,0.08); }
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.85rem;
    color: var(--cream-soft);
    font-weight: 300;
    line-height: 1.85;
    flex: 1;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
}
.testimonial-author strong {
    display: block;
    font-size: 0.75rem;
    color: var(--cream);
    font-weight: 500;
}
.testimonial-author span {
    display: block;
    font-size: 0.65rem;
    color: var(--cream-muted);
    margin-top: 2px;
}
@media (max-width: 767.98px) {
    .testimonial-card { padding: 1.5rem; }
}

/* ============================================================
   NEWSLETTER MESSAGE
   ============================================================ */
.newsletter-msg {
    font-size: 0.75rem;
    margin-top: 0.8rem;
    font-weight: 300;
    min-height: 1.2em;
}
.newsletter-msg.success { color: var(--gold); }
.newsletter-msg.error { color: #c0392b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--bg-elevated);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: var(--space-lg) 0 var(--space-md);
}
.footer-brand {
    font-family: var(--serif);
    font-size: 1rem;
    letter-spacing: 0.35em;
    color: var(--cream);
    font-weight: 600;
}
.footer-tagline {
    color: var(--cream-muted);
    font-size: 0.8rem;
    font-weight: 300;
    margin-top: 0.7rem;
    line-height: 1.8;
    max-width: 280px;
}
.footer-heading {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--cream-muted);
    margin-bottom: 1.2rem;
    font-weight: 500;
}
.footer-nav { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: 0.55rem; }
.footer-nav a {
    font-size: 0.78rem;
    color: var(--cream-ghost);
    font-weight: 300;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-muted);
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--cream-soft);
    color: var(--cream);
}
.footer-rule {
    height: 1px;
    background: rgba(255,255,255,0.04);
    border: none;
    margin: 2rem 0;
}
.footer-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--cream-muted);
    line-height: 1.9;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
    font-weight: 400;
}
.footer-copy {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.15em;
    text-align: center;
    margin-top: 1.5rem;
    text-transform: uppercase;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 1.8rem; right: 1.8rem;
    width: 50px; height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}
.wa-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
    .section { padding: var(--space-lg) 0; }
    .section-lg { padding: var(--space-xl) 0; }
    .section-header { margin-bottom: var(--space-md); }
    .newsletter-form { flex-direction: column; gap: 0; }
    .newsletter-input { border-right: 1px solid rgba(255,255,255,0.06) !important; border-bottom: none !important; }
    .card:hover .card-cta { transform: translateY(0); }
    .card:hover .card-img img { transform: none; }
}
@media (max-width: 575.98px) {
    .nav-brand-text { font-size: 0.75rem; letter-spacing: 0.25em; }
    .hero-heading { font-size: 2rem; letter-spacing: 0.04em; }
    .featured-name { font-size: 1.3rem; }
    .featured-price { font-size: 1.3rem; }
    .pillar { padding: 2rem 1.5rem; }
    .manifesto-text { font-size: 1.2rem; }
    .card-name { font-size: 0.78rem; }
}