/* ================================================
   BRAND PAGE — mini-home dedicado a una marca.
   Compartido por marca-cocodinus.html, marca-dubtech.html,
   marca-viajante.html. Toda la paleta viene de --bb-accent
   (tokens.css → body[data-brand="..."]).
   ================================================ */

/* ================================================
   HERO BRAND — full bleed, imagen + manifiesto
   ================================================ */
.brand-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 15, 15, 0) 0%,
        rgba(15, 15, 15, 0.15) 40%,
        rgba(15, 15, 15, 0.85) 100%
    );
    z-index: 1;
}
.brand-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
}
.brand-hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.95;
    color: #ffffff;
    margin: 0;
    letter-spacing: var(--ls-tight);
    font-weight: 500;
}
.brand-hero-name em { font-style: italic; color: var(--bb-accent); }
.brand-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--bb-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.brand-hero-eyebrow::before {
    content: '';
    width: 50px;
    height: 1px;
    background: var(--bb-accent);
}
.brand-hero-tagline {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 540px;
    margin: 1.5rem 0 0;
}

/* ================================================
   MANIFIESTO — bloque editorial principal
   ================================================ */
.manifesto {
    background: var(--bb-bg);
    padding: var(--section-y) 0;
}
.manifesto-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 991.98px) {
    .manifesto-row { grid-template-columns: 1fr; gap: 2.5rem; }
}
.manifesto-eyebrow .eyebrow { color: var(--bb-accent-dark); }
.manifesto-eyebrow .eyebrow::before { background: var(--bb-accent); }
.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    line-height: 1.4;
    font-weight: 400;
    color: var(--bb-ink);
    letter-spacing: -0.005em;
    margin: 0;
}
.manifesto-text em {
    font-style: italic;
    color: var(--bb-accent);
}
.manifesto-sign {
    margin-top: 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--bb-ink-muted);
    font-weight: 600;
}

/* ================================================
   PROCESO — 3 imágenes + texto, alternado
   ================================================ */
.process-section {
    background: var(--bb-bg-soft);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
@media (max-width: 991.98px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
    display: flex;
    flex-direction: column;
}
.process-step-img {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid var(--bb-line);
    margin-bottom: 1.25rem;
    background: var(--bb-bg-warm);
}
.process-step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--bb-ease);
}
.process-step:hover .process-step-img img { transform: scale(1.03); }
.process-num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--bb-accent);
    margin-bottom: 0.4rem;
}
.process-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bb-ink);
    margin: 0 0 0.5rem;
    font-weight: 500;
}
.process-desc {
    color: var(--bb-ink-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   COLECCIÓN — grid de productos de la marca
   ================================================ */
.brand-products-section {
    background: var(--bb-bg);
}

/* ================================================
   FOOTER CTA — banner final hacia catálogo
   ================================================ */
.brand-footer-cta {
    background: var(--bb-bg-dark);
    color: #fff;
    padding: var(--section-y) 0;
    text-align: center;
}
.brand-footer-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin: 0 auto 1.25rem;
    max-width: 720px;
    color: #fff;
}
.brand-footer-cta h2 em { font-style: italic; color: var(--bb-accent); }
.brand-footer-cta p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2rem;
}
.brand-footer-cta .btn-bb-primary {
    background: var(--bb-accent);
}
.brand-footer-cta .btn-bb-primary::before { background: #fff; }
.brand-footer-cta .btn-bb-primary:hover { color: var(--bb-ink); }
