/* =========================================================
   Creme of Nature — House of Unstoppable
   Pop-up event landing page
   ========================================================= */

:root {
    /* Brand palette */
    --espresso: #1c0f12;      /* deep plum-black */
    --espresso-2: #2a171c;
    --cream: #f6efe6;
    --cream-2: #efe4d4;
    --gold: #c9a14a;
    --gold-light: #e3c27e;
    --orange: #ff6b35;        /* Creme of Nature orange */
    --terracotta: #e2622e;
    --berry: #b3204a;
    --ink: #20151a;
    --muted: #8a7a76;
    --line: rgba(28, 15, 18, 0.12);
    --line-light: rgba(246, 239, 230, 0.16);

    --ok: #2e9e6b;
    --warn: #d98324;
    --err: #c0392b;

    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --shadow: 0 18px 50px -22px rgba(28, 15, 18, 0.45);
    --shadow-soft: 0 10px 30px -18px rgba(28, 15, 18, 0.35);

    --font-display: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --maxw: 1160px;
    --ease: cubic-bezier(0.4, 0, 0.1, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--espresso); }

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 760px); }
.section { padding: clamp(56px, 9vw, 120px) 0; }

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.74rem;
    color: var(--terracotta);
    margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }

.h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 4.4vw, 3.1rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--espresso);
}
.h2--center { text-align: center; max-width: 18ch; margin-inline: auto; }

.lead { font-size: 1.12rem; color: #4a3a3a; }
.muted { color: var(--muted); font-size: 0.92em; }

/* ---------- Buttons ---------- */
.btn {
    --bg: var(--gold);
    --fg: var(--espresso);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    padding: 14px 26px;
    border: none;
    border-radius: 999px;
    background: var(--bg);
    color: var(--fg);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(201, 161, 74, 0.7); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }

.btn--gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--espresso); }
.btn--dark { background: var(--espresso); color: var(--cream); }
.btn--dark:hover { box-shadow: 0 16px 30px -16px rgba(28, 15, 18, 0.7); }
.btn--ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--line-light); }
.btn--ghost:hover { background: rgba(246, 239, 230, 0.1); box-shadow: none; }
.btn--ghost-dark { background: transparent; color: var(--espresso); border: 1.5px solid var(--line); }
.btn--ghost-dark:hover { background: rgba(28, 15, 18, 0.04); box-shadow: none; }
.btn--add { margin-top: 6px; }

/* ---------- Nav ---------- */
.nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px clamp(20px, 4vw, 44px);
    transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-scrolled {
    background: rgba(28, 15, 18, 0.92);
    backdrop-filter: blur(12px);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 1px 0 var(--line-light);
}
.nav__logo { height: 34px; width: auto; }
.nav__brand-text { font-family: var(--font-display); color: var(--cream); font-size: 1.2rem; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
    color: var(--cream);
    font-weight: 600;
    font-size: 0.92rem;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav__links a:hover { opacity: 1; }
.nav__cta { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 120px clamp(20px, 6vw, 90px) 90px;
    color: var(--cream);
    overflow: hidden;
}
/* Gradient fallback (shown behind video / if video unsupported) */
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(120% 80% at 80% 10%, rgba(255, 107, 53, 0.35), transparent 55%),
        radial-gradient(90% 90% at 15% 90%, rgba(179, 32, 74, 0.4), transparent 55%),
        linear-gradient(160deg, #2a171c 0%, #1c0f12 55%, #140a0d 100%);
    background-size: cover;
    background-position: center;
}
/* Campaign main edit — muted autoplay loop */
.hero__video {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(20, 10, 13, 0.6) 0%, rgba(20, 10, 13, 0.28) 38%, rgba(20, 10, 13, 0.82) 100%),
        linear-gradient(90deg, rgba(20, 10, 13, 0.55) 0%, transparent 60%);
}
.hero__inner { position: relative; z-index: 3; max-width: 760px; }
.hero__eyebrow {
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-size: 0.78rem;
    color: var(--gold-light);
    margin-bottom: 18px;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 11vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__lede {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    max-width: 56ch;
    color: rgba(246, 239, 230, 0.92);
    margin-bottom: 26px;
}
.hero__lede strong { color: var(--orange); font-weight: 800; }
.hero__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--cream);
}
.hero__meta i { color: var(--gold-light); margin-right: 6px; }
.hero__dot { opacity: 0.5; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scarcity { margin-top: 22px; font-size: 0.9rem; color: rgba(246, 239, 230, 0.75); }
.hero__scarcity i { color: var(--orange); }
.hero__scroll {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--cream);
    opacity: 0.7;
    animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(30px, 6vw, 80px);
    align-items: center;
}
.about__copy .lead { margin: 16px 0; }
.about__copy p { margin-bottom: 16px; color: #4a3a3a; }
.about__copy .btn { margin-top: 10px; }

.about__cardstack { position: relative; height: 440px; }
.about__card {
    position: absolute;
    width: 62%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
/* Coloured brand-gradient cards sitting behind the main image */
.about__card--1 { top: 0; left: 0; background: linear-gradient(150deg, #fdb913, #e09a12); transform: rotate(-6deg); }
.about__card--2 { top: 54px; right: 0; background: linear-gradient(150deg, #bf311a, #8a1f12); transform: rotate(5deg); }
/* Single main image card in front */
.about__card--main {
    bottom: 0;
    left: 19%;
    width: 66%;
    background-image: url("./assets/kv-portrait.jpg");
    background-size: cover;
    background-position: center top;
    transform: rotate(-2deg);
    z-index: 3;
}

/* ---------- Expect (Creme of Nature brand texture) ---------- */
.expect {
    position: relative;
    color: var(--cream);
    background-color: #c2451a;
    background-image: url("./assets/con-sm-bk-horizontal.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.expect > .container { position: relative; z-index: 1; }
.expect .eyebrow { color: #5a1e0c; }
.expect .h2 { color: #fff; }
.expect__grid {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    padding: 30px 26px;
    backdrop-filter: blur(2px);
    transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.5); }
.feature__icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--cream);
    color: var(--terracotta);
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px -10px rgba(28, 15, 18, 0.5);
}
.feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 8px; color: #fff; }
.feature p { color: rgba(255, 255, 255, 0.9); font-size: 0.96rem; }

/* ---------- Details ---------- */
.details { background: var(--cream-2); }
.details__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.detail {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--line);
}
.detail i { font-size: 1.4rem; color: var(--terracotta); margin-bottom: 14px; display: block; }
.detail h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-bottom: 6px; color: var(--espresso); }
.detail p { color: #4a3a3a; font-size: 0.96rem; }

/* ---------- Registration ---------- */
.register { background: var(--cream); }
.register__sub { text-align: center; max-width: 56ch; margin: 16px auto 0; color: #4a3a3a; }
.register-closed {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(28, 15, 18, 0.04), rgba(191, 49, 26, 0.06));
    border: 1px solid rgba(28, 15, 18, 0.08);
    box-shadow: var(--shadow);
}
.register-closed__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--espresso);
    color: var(--gold-light);
    font-size: 1.75rem;
}
.register-closed__note {
    margin: 20px 0 0;
    color: var(--muted);
    font-weight: 600;
}
.register-closed__note i { color: var(--terracotta); margin-right: 6px; }

.booking-check {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(28, 15, 18, 0.1);
    text-align: left;
}
.booking-check__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--espresso);
    margin-bottom: 8px;
    text-align: center;
}
.booking-check__hint {
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
}
.booking-check__form {
    display: grid;
    gap: 14px;
    max-width: 28rem;
    margin: 0 auto;
}
.booking-check__field { margin: 0; }
.booking-check__alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 22px;
    font-size: 0.94rem;
    line-height: 1.55;
}
.booking-check__alert[hidden] { display: none !important; }
.booking-check__alert i { font-size: 1.25rem; margin-top: 2px; flex-shrink: 0; }
.booking-check__alert p { margin: 6px 0 0; color: #4a3a3a; }
.booking-check__alert--invalid {
    background: rgba(191, 49, 26, 0.1);
    border: 1px solid rgba(191, 49, 26, 0.25);
    color: var(--espresso);
}
.booking-check__alert--invalid i { color: var(--terracotta); }
.booking-check__alert--valid {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.22);
    color: var(--espresso);
}
.booking-check__alert--valid i { color: #2e7d32; }
.booking-check__alert--muted {
    background: rgba(74, 58, 58, 0.06);
    border: 1px solid rgba(74, 58, 58, 0.14);
    color: var(--espresso);
}
.booking-check__alert--muted i { color: #6b5b5b; }
.booking-check__result {
    max-width: 28rem;
    margin: 18px auto 0;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    font-size: 0.94rem;
    line-height: 1.55;
}
.booking-check__result--invalid {
    background: rgba(191, 49, 26, 0.1);
    border: 1px solid rgba(191, 49, 26, 0.25);
    color: var(--espresso);
}
.booking-check__result--valid {
    background: rgba(46, 125, 50, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.22);
    color: var(--espresso);
}
.booking-check__result--muted {
    background: rgba(28, 15, 18, 0.04);
    border: 1px solid rgba(28, 15, 18, 0.08);
    color: #4a3a3a;
}

/* Stepper */
.stepper {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 4px;
    margin: 38px auto 30px;
    counter-reset: step;
}
.stepper__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.86rem;
    transition: color 0.3s, background 0.3s;
}
.stepper__num {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--muted);
    font-size: 0.82rem;
    transition: background 0.3s, color 0.3s;
}
.stepper__item.is-active { color: var(--espresso); }
.stepper__item.is-active .stepper__num { background: var(--gold); color: var(--espresso); }
.stepper__item.is-done .stepper__num { background: var(--ok); color: #fff; }
.stepper__item.is-done { color: var(--espresso); }

/* Form */
.form {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(22px, 4vw, 44px);
    box-shadow: var(--shadow-soft);
}
.step { border: none; display: none; animation: fade 0.4s var(--ease); }
.step.is-active { display: block; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.step__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.7rem;
    color: var(--espresso);
    margin-bottom: 6px;
}
.step__hint { color: var(--muted); margin-bottom: 22px; font-size: 0.96rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: block; margin-bottom: 16px; }
.field__label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.field__label i { color: var(--berry); font-style: normal; }
.field input,
.field select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 13px 15px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.18);
}
.field input.is-invalid { border-color: var(--err); box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.12); }

.step__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

/* Day tabs */
.daytabs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.daytab {
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 18px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
    font-family: var(--font-body);
}
.daytab:hover { transform: translateY(-2px); }
.daytab.is-active { border-color: var(--gold); background: linear-gradient(135deg, rgba(227, 194, 126, 0.18), rgba(201, 161, 74, 0.08)); }
.daytab__day { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--espresso); }
.daytab__date { display: block; color: var(--muted); font-weight: 600; font-size: 0.9rem; }

/* Slots */
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(172px, 1fr)); gap: 12px; }
.slot {
    border: 1.5px solid var(--line);
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 15px 14px;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, background 0.2s, transform 0.18s;
    font-family: var(--font-body);
}
.slot:hover:not(.is-full) { transform: translateY(-2px); border-color: var(--gold); }
.slot__time { display: block; font-weight: 800; font-size: 0.98rem; line-height: 1.35; color: var(--espresso); }
.slot__status { display: block; font-size: 0.8rem; font-weight: 600; margin-top: 4px; }
.slot__status--open { color: var(--ok); }
.slot__status--low { color: var(--warn); }
.slot__status--full { color: var(--err); }
.slot.is-selected { border-color: var(--gold); background: linear-gradient(135deg, rgba(227, 194, 126, 0.25), rgba(201, 161, 74, 0.12)); box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.18); }
.slot.is-full { opacity: 0.55; cursor: not-allowed; background: var(--cream-2); }
.slots__selected { margin-top: 18px; font-weight: 700; color: var(--espresso); }
.slots__selected i { color: var(--ok); margin-right: 6px; }
.slots__loading { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 20px; }

/* Besties & songs (repeatable rows) */
.besties, .songs { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.repeat-row {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 18px 6px;
    background: #fff;
    animation: fade 0.3s var(--ease);
}
.repeat-row__head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px;
}
.repeat-row__title { font-weight: 700; color: var(--espresso); font-size: 0.95rem; }
.repeat-row__remove {
    border: none; background: transparent; color: var(--muted);
    cursor: pointer; font-size: 1rem; padding: 4px 8px; border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.repeat-row__remove:hover { color: var(--err); background: rgba(192, 57, 43, 0.08); }
.besties__empty, .songs__empty { color: var(--muted); font-size: 0.95rem; padding: 6px 0; }

/* Product quiz */
.quiz { display: block; }
.quiz__progress {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 14px;
}
.quiz__question {
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 20px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.quiz__question.is-active { display: block; }
.quiz__question.is-invalid {
    border-color: var(--err);
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
.quiz__qtext {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 18px;
    line-height: 1.55;
}
.quiz__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.quiz__option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.quiz__option:hover { border-color: var(--gold); }
.quiz__option.is-selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(227, 194, 126, 0.22), rgba(201, 161, 74, 0.1));
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.14);
}
.quiz__input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    pointer-events: none;
}
.quiz__radio {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 2px solid var(--line);
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.quiz__radio::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: var(--gold);
    transform: scale(0);
    transition: transform 0.2s var(--ease);
}
.quiz__option.is-selected .quiz__radio {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.16);
}
.quiz__option.is-selected .quiz__radio::after { transform: scale(1); }
.quiz__option-text {
    display: block;
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}
.quiz__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}
.quiz__nav .btn--ghost-dark { margin-right: auto; }
.quiz__result {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--cream-2);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.45;
}
.quiz__result i { margin-right: 8px; color: var(--terracotta); }
.quiz__result--won {
    background: linear-gradient(135deg, rgba(227, 194, 126, 0.35), rgba(201, 161, 74, 0.18));
    border: 1px solid rgba(201, 161, 74, 0.45);
}
.quiz__result--won i { color: var(--gold); }

/* Review */
.review {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 22px;
}
.review__block {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px 20px;
    background: #fff;
}
.review__block h4 {
    display: flex; align-items: center; justify-content: space-between;
    font-family: var(--font-body); font-weight: 800; font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: var(--terracotta);
    margin-bottom: 10px;
}
.review__block h4 a { font-size: 0.75rem; color: var(--muted); text-transform: none; letter-spacing: 0; font-weight: 700; }
.review__row { display: flex; justify-content: space-between; gap: 16px; padding: 4px 0; font-size: 0.96rem; }
.review__row span:first-child { color: var(--muted); }
.review__row span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.review__list { margin: 4px 0 0; padding-left: 18px; color: var(--ink); }
.review__list li { padding: 2px 0; }

/* Checkboxes */
.check {
    display: flex; gap: 12px; align-items: flex-start;
    margin-bottom: 14px; font-size: 0.94rem; color: #4a3a3a; cursor: pointer;
}
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.check a { color: var(--terracotta); font-weight: 700; }
.check i { color: var(--berry); font-style: normal; }

/* Success */
.success { text-align: center; animation: fade 0.5s var(--ease); }
.success__icon {
    width: 76px; height: 76px; margin: 0 auto 22px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--espresso); font-size: 2rem;
    box-shadow: 0 14px 34px -14px rgba(201, 161, 74, 0.7);
}
.success__sub { color: #4a3a3a; margin: 14px auto 26px; max-width: 46ch; }
.success__card {
    text-align: left;
    max-width: 440px; margin: 0 auto 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.success__card-head {
    background: var(--espresso); color: var(--cream);
    padding: 18px 22px;
}
.success__card-head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; }
.success__card-body { padding: 18px 22px; background: #fff; }
.success__card-body .review__row { border-bottom: 1px dashed var(--line); }
.success__card-body .review__row:last-of-type { border-bottom: none; }
.success__prize {
    margin: 14px 0 4px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(227, 194, 126, 0.35), rgba(201, 161, 74, 0.18));
    border: 1px solid rgba(201, 161, 74, 0.45);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--espresso);
    line-height: 1.45;
}
.success__prize i { color: var(--gold); margin-right: 8px; }
.success__venue {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 2px 0 12px;
    padding: 10px 0 12px;
    border-bottom: 1px dashed var(--line);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
}
.success__venue i {
    color: var(--terracotta);
    margin-top: 3px;
    flex-shrink: 0;
}
.success__ref {
    margin-top: 14px; padding-top: 14px;
    text-align: center; border-top: 1px dashed var(--line);
}
.success__ref small { display: block; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; }
.success__ref strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta); letter-spacing: 0.04em; }
.success__note { color: var(--muted); font-size: 0.9rem; max-width: 44ch; margin: 0 auto 24px; }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-2); }
.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.acc {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 4px 22px;
    transition: box-shadow 0.25s;
}
.acc[open] { box-shadow: var(--shadow-soft); }
.acc summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-weight: 700;
    color: var(--espresso);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
    content: "\2b"; font-family: "Font Awesome 6 Free"; font-weight: 900;
    color: var(--terracotta); transition: transform 0.25s; font-size: 0.85rem;
}
.acc[open] summary::after { content: "\f068"; }
.acc p,
.acc__list { padding: 0 0 18px; color: #4a3a3a; }
.acc__list { margin: 0 0 0 18px; }
.acc__list li { padding: 4px 0; line-height: 1.5; }

/* ---------- Argan Oil banner ---------- */
.argan-banner { display: block; line-height: 0; }
.argan-banner img {
    width: 100%;
    height: clamp(600px, 80vw, 900px);
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ---------- Products ---------- */
.products { background: var(--cream); }
/* ---------- Benefits carousel ---------- */
.benefits-carousel {
    position: relative;
    margin-top: 18px;
}
.benefits-carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.benefits-carousel__track {
    display: flex;
    transition: transform 0.45s var(--ease);
}
.benefits-carousel__slide {
    flex: 0 0 100%;
    margin: 0;
    line-height: 0;
}
.benefits-carousel__slide img,
.benefits-carousel__slide video {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--espresso);
}
.benefits-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(28, 15, 18, 0.72);
    color: var(--cream);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.15s var(--ease);
    -webkit-tap-highlight-color: transparent;
}
.benefits-carousel__btn:hover { background: rgba(28, 15, 18, 0.9); }
.benefits-carousel__btn:active { transform: translateY(-50%) scale(0.97); }
.benefits-carousel__btn--prev { left: 14px; }
.benefits-carousel__btn--next { right: 14px; }
.benefits-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.benefits-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--line);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.benefits-carousel__dot.is-active {
    background: var(--terracotta);
    transform: scale(1.2);
}
.products__sub { text-align: center; max-width: 56ch; margin: 16px auto 0; color: #4a3a3a; }

.products__feature {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: clamp(20px, 4vw, 48px);
    background-color: #c2451a;
    background-image: url("./assets/con-sm-bk-horizontal.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.products__feature img { width: 100%; height: 100%; object-fit: contain; min-height: 280px; padding: clamp(22px, 4vw, 44px); }
.products__feature-copy { padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 52px) clamp(24px, 4vw, 48px) 0; color: var(--cream); }
.products__feature-copy h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.products__feature-copy p { color: rgba(246, 239, 230, 0.82); margin-bottom: 22px; }

.products__grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.product {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product__img { aspect-ratio: 1 / 1; overflow: hidden; background: radial-gradient(120% 100% at 50% 0%, #ffffff, var(--cream-2)); }
.product__img img { width: 100%; height: 100%; object-fit: contain; padding: 26px; transition: transform 0.5s var(--ease); }
.product:hover .product__img img { transform: scale(1.04); }
.product h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; color: var(--espresso); margin: 18px 22px 6px; }
.product p { color: #4a3a3a; font-size: 0.94rem; margin: 0 22px 22px; }

/* ---------- Footer ---------- */
.footer { background: var(--espresso); color: var(--cream); padding: 56px 0 30px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer__logo { height: 38px; }
.footer__brand p { color: rgba(246, 239, 230, 0.7); font-size: 0.92rem; margin-top: 10px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--gold-light); font-weight: 600; font-size: 0.92rem; }
.footer__copy { color: rgba(246, 239, 230, 0.5); font-size: 0.82rem; margin-top: 8px; }

/* ---------- Floating CTA (mobile) ---------- */
.floatcta {
    position: fixed;
    bottom: 18px; left: 50%; transform: translateX(-50%) translateY(120px);
    z-index: 70;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--espresso);
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 999px;
    box-shadow: 0 14px 30px -10px rgba(28, 15, 18, 0.6);
    transition: transform 0.35s var(--ease);
    white-space: nowrap;
}
.floatcta.is-visible { transform: translateX(-50%) translateY(0); }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    top: 84px; left: 50%; transform: translateX(-50%) translateY(-20px);
    z-index: 90;
    background: var(--espresso); color: var(--cream);
    padding: 13px 22px; border-radius: 999px;
    font-weight: 600; font-size: 0.92rem;
    box-shadow: var(--shadow);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    display: flex; align-items: center; gap: 10px;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--err { background: var(--err); }
.toast i { color: var(--gold-light); }
.toast--err i { color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
    .section { padding: clamp(40px, 7vw, 72px) 0; }
    .nav__links { display: none; }
    .about__grid {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }
    .about__copy { order: 2; }
    .about__cardstack {
        order: 1;
        height: 460px;
        max-width: 440px;
        margin: 0 auto;
    }
    /* Nested reveal leaves an invisible cardstack reserving height below the CTA */
    .about.is-in .about__copy.reveal,
    .about.is-in .about__cardstack.reveal {
        opacity: 1;
        transform: none;
    }
    .about__card { width: 62%; }
    .about__card--main { width: 68%; }
    .expect__grid { grid-template-columns: repeat(2, 1fr); margin-top: 32px; gap: 14px; }
    .details__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products__feature {
        margin-top: 32px;
        grid-template-columns: 1fr;
        background-image: url("./assets/con-sm-bk-1x1.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .products__feature-copy { padding: 0 24px 28px; }
    .products__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
    .section { padding: 36px 0; }
    .container { width: min(100% - 32px, var(--maxw)); }
    .container--narrow { width: min(100% - 32px, 760px); }
    .nav__cta { display: none; }
    .nav { padding: 14px 20px; }
    .nav__logo { height: 22px; }
    .hero {
        min-height: auto;
        padding: 96px 22px 56px;
    }
    .hero__title { margin-bottom: 16px; }
    .hero__lede { margin-bottom: 20px; }
    .hero__meta { margin-bottom: 22px; }
    .hero__scarcity { margin-top: 16px; }
    .about__grid { gap: 20px; }
    .about__cardstack { height: clamp(380px, 112vw, 460px); }
    .about__card { width: 64%; }
    .about__card--main { width: 72%; }
    .expect {
        background-image: url("./assets/con-sm-bk-1x1-2.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    .expect__grid { grid-template-columns: 1fr; margin-top: 22px; gap: 12px; }
    .feature { padding: 22px 20px; }
    .feature__icon { width: 46px; height: 46px; margin-bottom: 12px; }
    .details__grid { grid-template-columns: 1fr; gap: 12px; }
    .detail { padding: 22px 20px; }
    .products__feature { margin-top: 24px; }
    .products__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }
    .benefits-carousel { margin-top: 12px; }
    .benefits-carousel__dots { margin-top: 12px; }
    .benefits-carousel__btn { width: 38px; height: 38px; }
    .benefits-carousel__btn--prev { left: 10px; }
    .benefits-carousel__btn--next { right: 10px; }
    .accordion { margin-top: 24px; gap: 10px; }
    .footer { padding: 40px 0 24px; }
    .register__sub { margin-top: 10px; }
    .stepper { margin: 24px auto 20px; }
    .grid-2 { grid-template-columns: 1fr; }
    .daytabs { grid-template-columns: 1fr; }
    .stepper__label { display: none; }
    .stepper__item { padding: 8px; }
    .step__nav { flex-direction: column-reverse; }
    .step__nav .btn { width: 100%; }
    .floatcta { display: block; }
}
@media (min-width: 601px) { .floatcta { display: none; } }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .benefits-carousel__track { transition: none; }
    /* Don't autoplay motion — fall back to the poster still */
    .hero__video { display: none; }
    .benefits-carousel__slide video { display: none; }
    .hero__media {
        background-image: url("./assets/hero-poster.jpg");
        background-size: cover;
        background-position: center 30%;
    }
}
