﻿/* ============================================================
   NatuLabs - HOME
   ============================================================ */

/* ============================================================================
   ATLÁNTICO LAYOUT FIX (solo en home)
   ============================================================================ */

/* Quitar offset del body en home */
body.template-home {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* main-content del home full width */
body.template-home .main-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Header en home: el sidebar-content + head-main se renderizan como header
   sticky transparente sobre hero y sólido cream al scrollear.
   Estilos en nl-header.css.tpl §HEADER HOME. */


   MAIN
   ============================================================================ */
.nl-main {
    display: block;
    width: 100%;
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    width: 100%;
}

.hero__topline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    border-bottom: 1px solid var(--ink-line);
    background: var(--cream-soft);
    font-family: var(--sans);
}
.hero__topline-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--leaf);
}

.hero__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(60px, 9vw, 120px) var(--gutter) clamp(40px, 6vw, 80px);
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero__lead { position: relative; z-index: 2; }
.hero__eyebrow {
    font-family: var(--serif) !important;
    font-style: italic;
    font-size: 16px;
    color: var(--leaf);
    margin: 0 0 24px;
    font-weight: 400;
}

.hero__title {
    font-family: var(--serif) !important;
    font-weight: 300 !important;
    font-size: clamp(48px, 7.5vw, 104px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
    margin: 0 0 32px !important;
}
.hero__title em {
    font-style: italic;
    font-weight: 400;
    color: var(--ink-soft);
}
.hero__title-accent {
    position: relative;
    color: var(--leaf) !important;
    font-weight: 500;
    font-style: italic;
    display: inline-block;
}
.hero__title-accent::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 6px;
    background: var(--leaf);
    opacity: 0.18;
    border-radius: 2px;
}

.hero__sub {
    font-family: var(--sans) !important;
    font-size: clamp(16px, 1.3vw, 18px) !important;
    line-height: 1.65 !important;
    color: var(--ink-soft) !important;
    max-width: 480px;
    margin: 0 0 40px !important;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 16px 28px !important;
    border-radius: 100px !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    letter-spacing: 0.02em !important;
    font-weight: 500 !important;
    transition: all .35s ease !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s ease; }
.btn--primary {
    background: var(--ink) !important;
    color: var(--cream) !important;
    border-color: var(--ink) !important;
}
.btn--primary:hover {
    background: var(--leaf) !important;
    border-color: var(--leaf) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(45, 74, 62, 0.5);
}
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
    color: var(--ink) !important;
    border: 1px solid var(--ink-line) !important;
    background: transparent !important;
}
.btn--ghost:hover {
    background: var(--cream-soft) !important;
    border-color: var(--ink) !important;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--ink-line);
    max-width: 480px;
}
.hero__stat { display: flex; flex-direction: column; gap: 6px; }
.hero__stat-num {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1;
}
.hero__stat-num i {
    font-style: normal;
    font-size: 0.55em;
    color: var(--ink-mute);
}
.hero__stat-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* Hero Visual */
.hero__visual {
    position: relative;
    height: clamp(440px, 60vh, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__circle {
    position: absolute;
    width: 75%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--cream-soft), var(--cream-deep) 70%);
    box-shadow: inset 0 0 80px rgba(31, 51, 40, 0.06);
    z-index: 1;
}
.hero__circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed var(--leaf);
    opacity: 0.3;
    animation: spin 80s linear infinite;
}

.hero__bottle {
    position: absolute;
    z-index: 2;
}
.hero__bottle--main {
    width: clamp(280px, 38vw, 420px);
    transform: rotate(-4deg);
    animation: float 25s ease-in-out infinite !important;
    z-index: 4;
    filter: drop-shadow(0 30px 30px rgba(31,51,40,.32));
}
.hero__bottle--side {
    width: clamp(180px, 22vw, 260px);
    z-index: 2;
    opacity: 0.92;
    right: 5%;
    bottom: 10%;
    transform: rotate(8deg);
    animation: float 28s ease-in-out infinite reverse !important;
    filter: drop-shadow(0 20px 25px rgba(31,51,40,.25));
}

.hero__leaf {
    position: absolute;
    pointer-events: none;
    opacity: 0.45;
    z-index: 1;
}
.hero__leaf--1 {
    width: 70px;
    top: 10%;
    left: 5%;
    transform: rotate(-30deg);
    animation: sway 22s ease-in-out infinite !important;
}
.hero__leaf--2 {
    width: 50px;
    bottom: 12%;
    right: 8%;
    transform: rotate(50deg);
    animation: sway 26s ease-in-out infinite reverse !important;
}

.hero__pin {
    position: absolute;
    z-index: 5;
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: 999px;
    padding: 10px 16px 10px 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 11px;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    box-shadow: 0 6px 16px -6px rgba(31,51,40,.18);
}
.hero__pin svg { color: var(--leaf); flex-shrink: 0; }
.hero__pin--top { top: 12%; right: 6%; }
.hero__pin--bottom { bottom: 14%; left: 4%; }

.hero__seal {
    position: absolute;
    width: clamp(280px, 35vw, 380px);
    aspect-ratio: 1;
    animation: spin 60s linear infinite;
    opacity: 0.45;
    z-index: 1;
}

/* Marquee */
.hero__marquee {
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
    padding: 28px 0;
    overflow: hidden;
    background: var(--cream-soft);
    position: relative;
}
.hero__marquee::before, .hero__marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.hero__marquee::before { left: 0; background: linear-gradient(90deg, var(--cream-soft), transparent); }
.hero__marquee::after { right: 0; background: linear-gradient(-90deg, var(--cream-soft), transparent); }

.marquee__track {
    display: flex;
    gap: 50px;
    align-items: center;
    width: max-content;
    animation: marquee 60s linear infinite !important;
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 300;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.marquee__track em {
    font-style: italic;
    color: var(--leaf);
    font-weight: 400;
}
.marquee__dot {
    color: var(--lime);
    font-style: normal;
    font-size: 0.4em;
}

/* Topline marquee del hero */
.hero__topline-track {
    display: flex;
    gap: 32px;
    align-items: center;
    width: max-content;
    animation: marquee 70s linear infinite !important;
    white-space: nowrap;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.hero__topline-track > span:nth-child(odd) { color: var(--lime); }
.hero__topline { padding: 12px 0; background: var(--ink); color: var(--cream); border-bottom: none; overflow: hidden; }
.hero__topline-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--leaf-bright); flex-shrink: 0; }

/* ============================================================================
   SECTIONS COMUNES
   ============================================================================ */
.section__eyebrow,
.nl-eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--leaf);
    margin: 0 0 24px;
    display: inline-block;
}
.section__title,
.nl-section-title {
    font-family: var(--serif) !important;
    font-weight: 300 !important;
    font-size: clamp(38px, 5.5vw, 76px) !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
    margin: 0 0 32px !important;
}
.section__title em,
.nl-section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--leaf);
}
.nl-section-title--center { text-align: center; }
.nl-eyebrow--center { display: block; text-align: center; }
.nl-eyebrow--light { color: var(--lime); }

/* ============================================================================
   PRODUCTOS
   ============================================================================ */
.products,
.nl-products {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream);
}
.products__header,
.nl-products__head {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: clamp(60px, 8vw, 100px);
}
.products__intro,
.nl-products__intro {
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-soft);
    padding-bottom: 12px;
}

.products__grid,
.nl-products__grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.nl-product {
    --pc: #5b3a8e;
    --ps: #e8def4;
    position: relative;
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-lg);
    transition: all .5s var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.nl-product__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 36px 30px 30px;
    text-decoration: none !important;
    color: inherit !important;
}
.nl-product::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ps);
    opacity: 0;
    transition: opacity .5s ease;
    z-index: -1;
}
.nl-product:hover {
    transform: translateY(-6px);
    border-color: var(--pc);
    box-shadow: 0 30px 60px -25px rgba(31,51,40,.18);
}
.nl-product:hover::before { opacity: 0.45; }
.nl-product:hover .nl-product__img { transform: translateY(-8px) scale(1.04) rotate(-3deg); }
.nl-product:hover .nl-product__halo { transform: scale(1.12); opacity: 0.7; }

.nl-product__index {
    position: absolute;
    top: 24px; right: 28px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--ink-mute);
    z-index: 2;
}
.nl-product__chip {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ps);
    color: var(--pc);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 24px;
    align-self: flex-start;
}
.nl-product__chip--soon { color: var(--ink-mute); background: var(--cream-deep); }

.nl-product__visual {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}
.nl-product__halo {
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--ps), transparent 65%);
    opacity: 0.5;
    transition: all .6s var(--ease);
}
.nl-product__img {
    position: relative;
    height: 260px;
    width: auto;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(31,51,40,.18));
    transition: transform .6s var(--ease);
}

.nl-product__name {
    font-family: var(--serif) !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    line-height: 1.1 !important;
    color: var(--ink) !important;
    margin: 0 0 6px !important;
}
.nl-product__purpose {
    font-family: var(--serif) !important;
    font-style: italic;
    font-size: 15px;
    color: var(--pc);
    margin: 0 0 24px !important;
}
.nl-product__specs {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 16px 0;
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
}
.nl-product__specs > div { display: flex; flex-direction: column; gap: 4px; }
.nl-product__specs span {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.nl-product__specs strong {
    font-family: var(--serif);
    font-style: italic;
    font-size: 17px;
    color: var(--ink);
    font-weight: 500;
}

.nl-product__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink);
    margin-top: auto;
    padding-top: 4px;
    transition: all .3s;
}
.nl-product__cta svg { transition: transform .35s var(--ease); width: 14px; height: 14px; }
.nl-product:hover .nl-product__cta { color: var(--pc); gap: 12px; }
.nl-product:hover .nl-product__cta svg { transform: translateX(4px); }
.nl-product__cta--soon { color: var(--ink-mute); }

.nl-product--soon {
    background: transparent;
    border-style: dashed;
    color: var(--ink-mute);
}
.nl-product--soon:hover { transform: translateY(-4px); border-color: var(--ink-mute); }
.nl-product__soon-icon {
    width: 80px; height: 80px;
    color: var(--ink-mute);
    animation: spin 120s linear infinite !important;
    opacity: 0.6;
}

/* ============================================================================
   PILLARS
   ============================================================================ */
.nl-pillars {
    padding: clamp(80px, 12vw, 160px) 0;
    background: var(--cream-soft);
    border-top: 1px solid var(--ink-line);
    border-bottom: 1px solid var(--ink-line);
}
.nl-pillars__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(50px, 7vw, 90px);
    padding: 0 var(--gutter);
}
.nl-pillars__sub {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-soft);
}
.nl-pillars__grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nl-pillar {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: 26px;
    padding: 40px 32px 36px;
    overflow: hidden;
    transition: all .5s var(--ease);
    color: var(--leaf);
}
.nl-pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--leaf), var(--lime));
    transition: width .6s var(--ease);
}
.nl-pillar:hover { transform: translateY(-4px); border-color: var(--leaf); box-shadow: var(--shadow-soft); }
.nl-pillar:hover::before { width: 100%; }
.nl-pillar:hover .nl-pillar__icon { opacity: 1; transform: rotate(8deg); }

.nl-pillar__num {
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--ink-mute);
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nl-pillar__num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--ink-line);
}

.nl-pillar__content h3 {
    font-family: var(--serif) !important;
    font-size: clamp(24px, 2.2vw, 30px) !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
    margin: 0 0 14px !important;
    line-height: 1.1 !important;
}
.nl-pillar__content h3 em { font-style: italic; color: var(--leaf); }
.nl-pillar__content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}
.nl-pillar__icon {
    position: absolute;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    opacity: 0.4;
    transition: all .6s var(--ease);
}

/* ============================================================================
   MANIFIESTO
   ============================================================================ */
.nl-manifesto {
    padding: clamp(80px, 12vw, 160px) var(--gutter);
    background: var(--cream-deep);
    position: relative;
    overflow: hidden;
}
.nl-manifesto::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lime-soft), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}
.nl-manifesto__inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.nl-manifesto__text {
    font-family: var(--serif) !important;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(28px, 4.4vw, 56px);
    line-height: 1.18;
    color: var(--ink);
    margin: 0 0 24px;
}
.nl-manifesto__quote {
    font-family: var(--serif);
    font-size: 1.6em;
    color: var(--leaf);
    opacity: 0.4;
    line-height: 0;
    margin-right: 0.05em;
}
.nl-manifesto__text em { color: var(--leaf); font-weight: 500; }
.nl-manifesto__attr {
    font-family: var(--sans);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
}

/* ============================================================================
   COMPARATIVA
   ============================================================================ */
.nl-compare {
    padding: clamp(80px, 12vw, 160px) var(--gutter);
    max-width: var(--container);
    margin: 0 auto;
}
.nl-compare__head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px;
}
.nl-compare__intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.nl-compare__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
}

.nl-compare__card {
    --cc: #5b3a8e;
    --ccs: #e8def4;
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: var(--radius-lg);
    padding: 44px 40px 36px;
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease);
    isolation: isolate;
}
.nl-compare__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ccs);
    opacity: 0;
    z-index: -1;
    transition: opacity .5s;
}
.nl-compare__card:hover { transform: translateY(-4px); border-color: var(--cc); box-shadow: var(--shadow-soft); }
.nl-compare__card:hover::before { opacity: 0.4; }

.nl-compare__card-head { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--ink-line); }
.nl-compare__chip {
    display: inline-block;
    padding: 6px 14px;
    background: var(--ccs);
    color: var(--cc);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 20px;
}
.nl-compare__card h3 {
    font-family: var(--serif) !important;
    font-size: clamp(28px, 2.6vw, 38px) !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
    margin: 0 0 6px !important;
    line-height: 1.05 !important;
}
.nl-compare__card-head p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--cc);
    margin: 0;
}

.nl-compare__list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.nl-compare__list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.nl-compare__list li strong { color: var(--ink); font-weight: 500; }
.nl-compare__list-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ccs);
    color: var(--cc);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.nl-compare__when {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--cream-soft);
    border-radius: 999px;
    border: 1px solid var(--ink-line);
}
.nl-compare__when-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
}
.nl-compare__when-time {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--cc);
}

.nl-compare__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 30px;
    color: var(--ink-mute);
    font-weight: 300;
    position: relative;
}
.nl-compare__vs span {
    background: var(--paper);
    border: 1px solid var(--ink-line);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.nl-compare__vs::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 60%;
    background: var(--ink-line);
}

.nl-compare__note {
    text-align: center;
    margin: 56px auto 0;
    max-width: 640px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
}
.nl-compare__note em {
    font-family: var(--serif);
    font-style: italic;
    color: var(--leaf);
}

/* ============================================================================
   RITUAL
   ============================================================================ */
.nl-ritual {
    padding: clamp(80px, 12vw, 160px) var(--gutter);
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.nl-ritual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 28%, rgba(74, 130, 104, 0.22), transparent 50%),
        radial-gradient(circle at 82% 72%, rgba(184, 85, 58, 0.14), transparent 50%);
    pointer-events: none;
}
.nl-ritual__inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.nl-ritual__title {
    font-family: var(--serif) !important;
    font-weight: 300 !important;
    font-size: clamp(40px, 6vw, 84px) !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
    color: var(--cream) !important;
    margin: 16px 0 clamp(60px, 8vw, 100px) !important;
}
.nl-ritual__title em { font-style: italic; color: var(--lime); }

.nl-ritual__timeline {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 30px;
    margin-bottom: 48px;
}
.nl-ritual__moment { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nl-ritual__sun { width: 80px; height: 80px; color: var(--cream); }
.nl-ritual__sun--am { animation: spin 120s linear infinite !important; }
.nl-ritual__sun--noon { color: var(--terracotta); }
.nl-ritual__sun--pm { color: var(--leaf-bright); }

.nl-ritual__time {
    font-family: var(--serif);
    font-style: italic;
    font-size: 32px;
    color: var(--lime);
    margin: 0;
}
.nl-ritual__moment h3 {
    font-family: var(--serif) !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: var(--cream) !important;
    margin: 0 !important;
}
.nl-ritual__moment p {
    font-size: 14px;
    color: rgba(245,240,228,.7);
    max-width: 240px;
    line-height: 1.5;
    margin: 0;
}
.nl-ritual__line {
    width: 60px; height: 1px;
    background: var(--leaf-bright);
    margin-top: 40px;
    opacity: 0.5;
    position: relative;
}
.nl-ritual__line::before, .nl-ritual__line::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--leaf-bright);
    transform: translateY(-50%);
}
.nl-ritual__line::before { left: 0; }
.nl-ritual__line::after { right: 0; }

.nl-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 16px 28px !important;
    border-radius: 100px !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all .35s var(--ease) !important;
    border: 1px solid transparent !important;
    cursor: pointer;
}
.nl-btn--lime {
    background: var(--lime) !important;
    color: var(--ink) !important;
    border-color: var(--lime) !important;
}
.nl-btn--lime:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(123, 193, 66, 0.55);
}

/* ============================================================================
   FAQ
   ============================================================================ */
.nl-faq {
    padding: clamp(80px, 12vw, 160px) var(--gutter);
    background: var(--cream);
}
.nl-faq__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(40px, 8vw, 100px);
    align-items: start;
}
.nl-faq__intro { position: sticky; top: 100px; }
.nl-faq__list { display: flex; flex-direction: column; }
.nl-faq__item {
    border-bottom: 1px solid var(--ink-line);
    padding: 4px 0;
}
.nl-faq__item:first-child { border-top: 1px solid var(--ink-line); }

.nl-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--serif);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    transition: color .3s;
}
.nl-faq__item summary::-webkit-details-marker { display: none; }
.nl-faq__item summary::marker { display: none; }
.nl-faq__item summary:hover { color: var(--leaf); }

.nl-faq__icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform .35s var(--ease);
}
.nl-faq__icon::before, .nl-faq__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 14px; height: 1.5px;
    background: var(--ink);
    transform: translate(-50%, -50%);
    transition: transform .35s var(--ease);
}
.nl-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.nl-faq__item[open] .nl-faq__icon::after { transform: translate(-50%, -50%) rotate(0); }
.nl-faq__item[open] .nl-faq__icon { transform: rotate(180deg); }

.nl-faq__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}
.nl-faq__item[open] .nl-faq__body { max-height: 500px; padding-bottom: 28px; }
.nl-faq__body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0;
    padding-right: 48px;
}
.nl-faq__body em { font-family: var(--serif); font-style: italic; color: var(--leaf); }

/* ============================================================================
   NEWSLETTER
   ============================================================================ */
.nl-newsletter {
    padding: clamp(80px, 12vw, 160px) var(--gutter);
    background: var(--cream-deep);
}
.nl-newsletter__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.nl-newsletter__title {
    font-family: var(--serif) !important;
    font-weight: 300 !important;
    font-size: clamp(40px, 6vw, 80px) !important;
    line-height: 1 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
    margin: 0 0 24px !important;
}
.nl-newsletter__title em { font-style: italic; color: var(--leaf); }
.nl-newsletter__sub {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 36px;
}
.nl-newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 480px;
    margin-bottom: 24px;
    padding: 8px;
    background: var(--paper);
    border-radius: 100px;
    border: 1px solid var(--ink-line);
}
.nl-newsletter__form input {
    flex: 1;
    padding: 14px 22px !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    font: inherit;
    font-size: 15px !important;
    color: var(--ink) !important;
    border-radius: 0 !important;
}
.nl-newsletter__form button {
    padding: 14px 28px !important;
    background: var(--ink) !important;
    color: var(--cream) !important;
    border-radius: 100px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1px solid var(--ink) !important;
    cursor: pointer;
    transition: all .35s !important;
}
.nl-newsletter__form button:hover { background: var(--leaf) !important; }
.nl-newsletter__legal {
    font-size: 12px;
    color: var(--ink-mute);
    font-family: var(--serif);
    font-style: italic;
}
.nl-newsletter__art svg {
    width: clamp(220px, 30vw, 320px);
    color: var(--leaf);
    animation: spin 60s linear infinite;
}

/* ============================================================================

/* ============================================================================
   ANIMATIONS
   ============================================================================ */
@keyframes float {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50%      { transform: rotate(-4deg) translateY(-3px); }
}
@keyframes sway {
    0%, 100% { transform: rotate(var(--rot, -30deg)); }
    50%      { transform: rotate(calc(var(--rot, -30deg) + 3deg)); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; gap: 80px; }
    .hero__visual { height: 480px; order: 2; }
    .hero__lead { order: 1; }

    .nl-products__head, .products__header { grid-template-columns: 1fr; gap: 24px; }
    .nl-products__grid, .products__grid { grid-template-columns: repeat(2, 1fr); }

    .nl-pillars__grid { grid-template-columns: 1fr; gap: 14px; }

    .nl-compare__grid { grid-template-columns: 1fr; gap: 24px; }
    .nl-compare__vs { transform: rotate(90deg); margin: 0 auto; }

    .nl-faq__inner { grid-template-columns: 1fr; gap: 50px; }
    .nl-faq__intro { position: static; }

    .nl-newsletter__inner { grid-template-columns: 1fr; gap: 40px; }
    .nl-newsletter__art { order: -1; }

    .nl-footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
    .hero__stats { grid-template-columns: 1fr 1fr; gap: 24px; }
    .hero__stat:last-child { grid-column: 1 / -1; }
    .nl-ritual__timeline { grid-template-columns: 1fr; }
    .nl-ritual__line { display: block; width: 1px; height: 40px; margin: 0 auto; }
    .nl-ritual__line::before, .nl-ritual__line::after {
        top: auto; left: 50%; transform: translateX(-50%);
    }
    .nl-ritual__line::before { top: 0; }
    .nl-ritual__line::after { bottom: 0; top: auto; }
    .nl-products__grid, .products__grid { grid-template-columns: 1fr; }
    .nl-footer__cols { grid-template-columns: 1fr; }
    .nl-newsletter__form { flex-direction: column; border-radius: 18px; }
    .nl-newsletter__form input,
    .nl-newsletter__form button { width: 100%; }
    .hero__pin { display: none; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 52px !important; }
    .nl-product__visual { height: 240px; }
    .nl-product__img { height: 220px; }
    .nl-footer__base { flex-direction: column; }
}

@media (hover: none) {
    .nl-product:hover, .nl-pillar:hover, .nl-compare__card:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================================