/* ============================================================
   SNACKIT — Promote with Snackit (page-only)
   Scoped under .page-promote — does not alter shared styles.
   ============================================================ */

.page-promote {
    --promo-ink: #0c0b09;
    --promo-stone: #c8bfae;
}

/* ---------- shared type ---------- */
.page-promote .promo-k {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.page-promote .promo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 5.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
}

.page-promote .promo-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--gold-bright);
}

.page-promote .promo-lead {
    margin-top: 1.25rem;
    max-width: 46ch;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.7;
    color: var(--muted);
}

/* ============================================================
   HERO
   ============================================================ */
.promo-hero {
    position: relative;
    min-height: 100svh;
    min-height: 100dvh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--promo-ink);
}

.promo-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.promo-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.promo-hero__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 35%, rgba(10, 10, 10, 0.75) 72%, rgba(10, 10, 10, 0.95) 100%),
        radial-gradient(80% 60% at 70% 20%, rgba(212, 175, 55, 0.12), transparent 55%);
    pointer-events: none;
}

.promo-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.promo-hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: clamp(5.5rem, 12vh, 7.5rem);
    max-width: 16rem;
}

@media (min-width: 720px) {
    .promo-hero__content {
        max-width: 38rem;
    }
}

.promo-hero__brand {
    margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.promo-hero__brand img {
    width: clamp(7.5rem, 14vw, 10rem);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.promo-hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.5rem, 7vw, 5.2rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.promo-hero__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--gold-bright);
}

.promo-hero__sub {
    margin-top: clamp(1.1rem, 2.5vw, 1.6rem);
    max-width: 38ch;
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    color: rgba(240, 236, 226, 0.82);
}

.promo-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.85rem;
}

.promo-hero__scroll {
    position: absolute;
    z-index: 2;
    left: var(--pad);
    bottom: clamp(1.4rem, 3vh, 2.2rem);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--promo-stone);
    transition: color 0.25s;
}

.promo-hero__scroll svg {
    width: 1rem;
    height: 1rem;
    animation: promo-scroll-bob 1.8s var(--ease) infinite;
}

.promo-hero__scroll:hover { color: var(--gold-bright); }

@keyframes promo-scroll-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

[data-promo-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

.promo-hero.is-ready [data-promo-reveal] {
    animation: promo-rise 1s var(--ease-expo) forwards;
}

.promo-hero.is-ready .promo-hero__brand { animation-delay: 0.08s; }
.promo-hero.is-ready .promo-hero__title { animation-delay: 0.22s; }
.promo-hero.is-ready .promo-hero__sub { animation-delay: 0.38s; }
.promo-hero.is-ready .promo-hero__actions { animation-delay: 0.5s; }
.promo-hero.is-ready .promo-hero__scroll { animation-delay: 0.7s; }

@keyframes promo-rise {
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FORMATS
   ============================================================ */
.promo-formats {
    position: relative;
    padding: clamp(4.5rem, 10vw, 7.5rem) 0;
    background:
        radial-gradient(90% 80% at 0% 0%, rgba(212, 175, 55, 0.1), transparent 50%),
        linear-gradient(180deg, #12110e 0%, var(--bg) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.promo-formats__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.promo-formats__lead {
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
    color: var(--muted);
    max-width: 38ch;
    padding-bottom: 0.35rem;
}

.promo-formats__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(212, 175, 55, 0.16);
    border: 1px solid rgba(212, 175, 55, 0.16);
}

.promo-formats__list li {
    display: grid;
    gap: 1.1rem;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    background: #12110e;
    transition: background 0.4s var(--ease);
}

.promo-formats__list li:hover { background: #1a1812; }

.promo-formats__num {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--gold);
}

.promo-formats__list h3 {
    font-family: var(--font-display);
    font-weight: 650;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: var(--white);
    margin-bottom: 0.45rem;
}

.promo-formats__list p {
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ============================================================
   PLACES
   ============================================================ */
.promo-places {
    padding: clamp(4rem, 9vw, 6.5rem) 0;
    background: linear-gradient(180deg, #16140f 0%, #0f0e0c 100%);
    border-block: 1px solid rgba(212, 175, 55, 0.1);
}

.promo-places__head {
    max-width: 36rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.promo-places__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 22vw);
    gap: 1rem;
    overflow-x: auto;
    padding: 0 var(--pad) 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.promo-places__rail::-webkit-scrollbar { display: none; }

.promo-place {
    position: relative;
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    isolation: isolate;
}

.promo-place img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.promo-place::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(8, 7, 5, 0.88) 100%);
    z-index: 1;
}

.promo-place__meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.4rem 1.3rem;
}

.promo-place__meta h3 {
    font-family: var(--font-display);
    font-weight: 650;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.promo-place__meta p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(240, 236, 226, 0.72);
}

.promo-place:hover img {
    transform: scale(1.06);
}

.promo-places__points {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    margin-top: clamp(1.8rem, 4vw, 2.6rem);
    max-width: 48ch;
}

.promo-places__points li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.promo-places__points li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0.05em;
    color: var(--gold);
}

/* ============================================================
   STEPS
   ============================================================ */
.promo-steps {
    padding: clamp(4.5rem, 10vw, 7rem) 0;
    background:
        radial-gradient(70% 80% at 100% 0%, rgba(212, 175, 55, 0.08), transparent 55%),
        var(--bg);
}

.promo-steps__head {
    max-width: 28rem;
    margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}

.promo-steps__list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
}

.promo-steps__list li {
    position: relative;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.promo-steps__n {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
}

.promo-steps__list h3 {
    font-family: var(--font-display);
    font-weight: 650;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    color: var(--white);
    margin-bottom: 0.65rem;
}

.promo-steps__list p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 32ch;
}

/* ============================================================
   CTA
   ============================================================ */
.promo-cta {
    position: relative;
    overflow: hidden;
    min-height: clamp(22rem, 55vh, 32rem);
    display: grid;
    align-items: center;
}

.promo-cta__bg {
    position: absolute;
    inset: 0;
}

.promo-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-cta__veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.72) 48%, rgba(8, 7, 5, 0.55) 100%),
        radial-gradient(60% 80% at 80% 50%, rgba(212, 175, 55, 0.18), transparent 60%);
}

.promo-cta__inner {
    position: relative;
    z-index: 1;
    padding-block: clamp(4rem, 10vw, 6.5rem);
    max-width: 36rem;
}

.promo-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
}

.promo-cta__title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: var(--gold-bright);
}

.promo-cta__sub {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(240, 236, 226, 0.78);
    max-width: 36ch;
}

.promo-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.85rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .promo-formats__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .promo-formats__list {
        grid-template-columns: 1fr;
    }

    .promo-places__rail {
        grid-auto-columns: minmax(240px, 70vw);
    }

    .promo-steps__list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .promo-hero__content {
        padding-bottom: clamp(6rem, 18vh, 7.5rem);
    }

    .promo-hero__title {
        font-size: clamp(2.3rem, 11vw, 3.1rem);
    }

    .promo-hero__actions .btn,
    .promo-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .promo-hero__scroll svg,
    .promo-place img,
    [data-promo-reveal] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
