/* AURA — Sparkling Pressed Cider · cinematic video-hero landing */

:root {
    --primary-font: 'Outfit', sans-serif;
    --secondary-font: 'Plus Jakarta Sans', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--primary-font);
    background: #0a0a0c;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* The film */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Legibility scrim — darken top (nav) and bottom (copy), keep centre clear */
.scrim {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(8,8,12,0.55) 0%, rgba(8,8,12,0) 22%, rgba(8,8,12,0) 50%, rgba(8,8,12,0.85) 100%),
        radial-gradient(ellipse 120% 80% at 50% 50%, transparent 55%, rgba(8,8,12,0.35) 100%);
}

/* ---------- Header ---------- */
.header {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 56px;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 900; font-size: 23px; letter-spacing: 3px;
    color: #fff;
}
.logo-mark {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 13px;
}
.nav-pill {
    display: flex; gap: 36px;
    padding: 12px 28px;
    border-radius: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.nav-item {
    font-family: var(--secondary-font);
    font-size: 13.5px; font-weight: 600;
    text-decoration: none; color: rgba(255,255,255,0.7);
    transition: color 0.3s var(--ease);
}
.nav-item.active, .nav-item:hover { color: #fff; }
.store-btn {
    font-family: var(--secondary-font);
    font-size: 13px; font-weight: 700;
    text-decoration: none; color: #0a0a0c;
    background: #fff;
    padding: 12px 26px; border-radius: 40px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,0.18); }

/* ---------- Hero copy ---------- */
.hero-content {
    position: absolute;
    left: 56px;
    bottom: 132px;
    z-index: 3;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    animation: rise 1.1s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }

.eyebrow {
    font-family: var(--secondary-font);
    font-size: 12px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.hero-content h1 {
    font-size: clamp(3.4rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2.5px;
}
.hero-content h1 em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
}
.hero-content p {
    font-family: var(--secondary-font);
    font-size: 17px; line-height: 1.65;
    color: rgba(255,255,255,0.78);
    max-width: 440px;
}
.cta-row { display: flex; gap: 14px; align-items: center; margin-top: 4px; }
.btn-primary {
    font-family: var(--secondary-font);
    font-size: 14px; font-weight: 700;
    text-decoration: none; color: #0a0a0c;
    background: #fff;
    padding: 15px 30px; border-radius: 40px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: gap 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-primary:hover { gap: 16px; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,255,255,0.2); }
.btn-ghost {
    font-family: var(--secondary-font);
    font-size: 14px; font-weight: 600;
    text-decoration: none; color: #fff;
    padding: 15px 26px; border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex; align-items: center; gap: 9px;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

/* ---------- Flavour ticker ---------- */
.flavour-strip {
    position: absolute;
    right: 56px;
    bottom: 56px;
    z-index: 3;
    display: flex;
    gap: 26px;
    padding: 14px 26px;
    border-radius: 40px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: rise 1.1s 0.2s var(--ease) both;
}
.flavour-strip span {
    font-family: var(--secondary-font);
    font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.85);
    display: inline-flex; align-items: center; gap: 9px;
    white-space: nowrap;
}
.flavour-strip i { font-size: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .header { padding: 22px 28px; }
    .nav-pill { display: none; }
    .hero-content { left: 28px; right: 28px; bottom: 150px; }
    .flavour-strip { left: 28px; right: 28px; bottom: 30px; justify-content: center; flex-wrap: wrap; gap: 16px; }
}
@media (max-width: 560px) {
    .hero-content h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
    .hero-content p { font-size: 15px; }
    .cta-row { flex-wrap: wrap; }
}

/* ============================================================
   REEL MODE — vertical 9:16 for TikTok / Instagram (?reel=1).
   The film fills the phone screen; chrome stripped to a clean
   logo + tagline so the cinematic ad is the whole frame.
   ============================================================ */
body.reel-mode, body.reel-mode .hero { height: 100dvh; }
body.reel-mode .header, body.reel-mode .flavour-strip, body.reel-mode .cta-row { display: none !important; }
body.reel-mode .hero-content {
    left: 0; right: 0; bottom: 9vh;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}
body.reel-mode .hero-content h1 { font-size: clamp(3rem, 11vw, 5rem); }
body.reel-mode .hero-content p { font-size: clamp(15px, 4vw, 18px); margin: 0 auto; }
body.reel-mode .scrim {
    background: linear-gradient(to bottom, rgba(8,8,12,0.3) 0%, transparent 30%, transparent 55%, rgba(8,8,12,0.85) 100%);
}
