:root {
    --cream: #f3eee5;
    --cream-light: #faf7f1;
    --sand: #d9c8ad;
    --gold: #b69057;
    --gold-dark: #98723f;

    --brown: #4d3929;
    --brown-dark: #2d2119;

    --green: #28372f;

    --text: #2b2925;
    --muted: #736f68;

    --border: #ded7cd;

    --white: #ffffff;

    --radius: 18px;
}


* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}


body {
    background:
        linear-gradient(
            135deg,
            #e8dfd2,
            #f7f3ed
        );

    color: var(--text);

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
}


button,
input {
    font: inherit;
}


button {
    cursor: pointer;
}


.giveaway-app {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 28px 16px;
}


.giveaway-shell {

    width: 100%;

    max-width: 940px;

    background: var(--cream-light);

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 24px 80px rgba(45, 33, 25, .15);
}


/* ----------------------------------------
   PROGRESS
---------------------------------------- */

.progress-area {

    padding: 16px 28px;

    background: rgba(255,255,255,.9);

    border-bottom: 1px solid var(--border);
}


.progress-top {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .12em;

    margin-bottom: 9px;
}


.progress-track {

    height: 4px;

    border-radius: 100px;

    background: #e8e2d9;

    overflow: hidden;
}


.progress-fill {

    width: 20%;

    height: 100%;

    background: var(--gold);

    transition:
        width .3s ease;
}


/* ----------------------------------------
   HERO
---------------------------------------- */

.hero {

    position: relative;

    min-height: 680px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;
}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(31, 22, 17, .91) 3%,
            rgba(31, 22, 17, .64) 40%,
            rgba(31, 22, 17, .12) 82%
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 680px;

    padding:
        64px 54px;
}


.eyebrow {

    color: #e1c08e;

    text-transform: uppercase;

    letter-spacing: .18em;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 13px;
}


.eyebrow.dark {

    color: var(--gold-dark);
}


.hero h1 {

    margin: 0;

    color: #fff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight: 400;

    font-size: clamp(
        46px,
        8vw,
        78px
    );

    line-height: .96;
}


.hero h1 span {

    display: block;

    color: #e0c190;

    font-style: italic;
}


.hero-description {

    color: rgba(255,255,255,.91);

    max-width: 600px;

    font-size: 19px;

    line-height: 1.55;

    margin:
        24px 0;
}


.hero-prizes {

    display: flex;

    flex-wrap: wrap;

    gap:
        8px;

    margin-bottom: 30px;
}


.hero-prizes span {

    background:
        rgba(255,255,255,.12);

    color: white;

    border:
        1px solid rgba(255,255,255,.22);

    border-radius: 100px;

    padding:
        8px 13px;

    font-size: 13px;
}


.fine-print {

    color:
        rgba(255,255,255,.63);

    font-size: 12px;

    margin-top: 13px;
}


/* ----------------------------------------
   BUTTONS
---------------------------------------- */

.btn {

    appearance: none;

    border: 0;

    border-radius: 100px;

    padding:
        14px 24px;

    font-size: 15px;

    font-weight: 700;

    transition:
        transform .15s ease,
        opacity .15s ease,
        background .15s ease;
}


.btn:hover {

    transform:
        translateY(-1px);
}


.btn:disabled {

    cursor:
        not-allowed;

    opacity:
        .5;

    transform:
        none;
}


.btn-large {

    padding:
        16px 32px;

    font-size:
        17px;
}


.btn-gold {

    background:
        var(--gold);

    color:
        var(--brown-dark);
}


.btn-gold:hover {

    background:
        #c39b60;
}


.btn-dark {

    background:
        var(--brown-dark);

    color:
        white;
}


.btn-light {

    background:
        #ece7df;

    color:
        var(--text);
}


/* ----------------------------------------
   QUESTION SLIDES
---------------------------------------- */

.question-slide {

    padding:
        55px 46px 46px;

    min-height:
        650px;
}


.question-slide.narrow {

    max-width:
        700px;

    margin:
        auto;
}


.question-heading {

    max-width:
        680px;

    margin-bottom:
        30px;
}


.question-heading h2,
.success-slide h2 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-weight:
        400;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );

    line-height:
        1.08;

    margin:
        0 0 14px;

    color:
        var(--brown-dark);
}


.question-heading p {

    color:
        var(--muted);

    line-height:
        1.6;

    font-size:
        16px;

    max-width:
        620px;
}


/* ----------------------------------------
   INTENT CARDS
---------------------------------------- */

.choice-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        12px;
}


.choice-card {

    position:
        relative;

    text-align:
        left;

    min-height:
        145px;

    border:
        1px solid var(--border);

    border-radius:
        16px;

    background:
        white;

    padding:
        18px;

    transition:
        border-color .15s ease,
        background .15s ease,
        transform .15s ease;
}


.choice-card:hover {

    transform:
        translateY(-2px);

    border-color:
        #c3af92;
}


.choice-card.selected {

    border-color:
        var(--gold);

    background:
        #f2e7d5;
}


.choice-card.selected::after {

    content:
        "✓";

    position:
        absolute;

    top:
        12px;

    right:
        12px;

    width:
        25px;

    height:
        25px;

    display:
        grid;

    place-items:
        center;

    border-radius:
        50%;

    background:
        var(--gold);

    color:
        white;

    font-size:
        13px;

    font-weight:
        800;
}


.choice-icon {

    display:
        block;

    font-size:
        27px;

    margin-bottom:
        12px;
}


.choice-title {

    display:
        block;

    font-size:
        16px;

    font-weight:
        800;

    color:
        var(--brown-dark);

    margin-bottom:
        5px;
}


.choice-copy {

    display:
        block;

    color:
        var(--muted);

    font-size:
        12px;

    line-height:
        1.45;
}


/* ----------------------------------------
   INTEREST PILLS
---------------------------------------- */

.interest-pills {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        11px;

    margin:
        30px 0;
}


.interest-pill {

    border:
        1px solid var(--border);

    border-radius:
        100px;

    background:
        white;

    padding:
        13px 17px;

    color:
        var(--text);

    transition:
        .15s ease;
}


.interest-pill:hover {

    border-color:
        var(--gold);
}


.interest-pill.selected {

    background:
        var(--green);

    color:
        white;

    border-color:
        var(--green);
}


.experience-note {

    border-left:
        3px solid var(--gold);

    background:
        #f0e9dd;

    padding:
        17px 18px;

    margin:
        32px 0;
}


.experience-note strong {

    display:
        block;

    margin-bottom:
        4px;
}


.experience-note span {

    color:
        var(--muted);

    line-height:
        1.5;
}


/* ----------------------------------------
   FORM
---------------------------------------- */

.form-grid {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        18px;
}


.field-group.full {

    grid-column:
        1 / -1;
}


.field-group label {

    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--brown-dark);

    font-size:
        13px;

    font-weight:
        700;
}


.field-group label span {

    color:
        var(--muted);

    font-weight:
        400;
}


.field-group input {

    width:
        100%;

    min-height:
        50px;

    border:
        1px solid var(--border);

    border-radius:
        12px;

    background:
        white;

    padding:
        11px 14px;

    font-size:
        16px;

    outline:
        none;
}


.field-group input:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(182, 144, 87, .14);
}


/* ----------------------------------------
   CHECKS
---------------------------------------- */

.check-card {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        14px;

    padding:
        18px;

    background:
        white;

    border:
        1px solid var(--border);

    border-radius:
        14px;

    margin-bottom:
        12px;

    cursor:
        pointer;
}


.check-card.optional {

    background:
        #f5efe5;
}


.check-card input {

    margin-top:
        4px;

    width:
        19px;

    height:
        19px;

    accent-color:
        var(--gold-dark);
}


.check-card strong {

    display:
        block;

    margin-bottom:
        3px;

    color:
        var(--brown-dark);
}


.check-card span {

    color:
        var(--muted);

    line-height:
        1.45;

    font-size:
        14px;
}


.check-card a {

    color:
        var(--gold-dark);

    font-weight:
        700;
}


.consent-note {

    font-size:
        12px;

    color:
        var(--muted);
}


/* ----------------------------------------
   NAVIGATION
---------------------------------------- */

.navigation-row {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        14px;

    margin-top:
        36px;
}


/* ----------------------------------------
   MESSAGES
---------------------------------------- */

.form-message {

    margin-top:
        14px;

    border-radius:
        10px;

    font-size:
        14px;
}


.form-message.error {

    padding:
        12px 14px;

    background:
        #f9e4e0;

    color:
        #8c3025;
}


.form-message.success {

    padding:
        12px 14px;

    background:
        #e5f1e8;

    color:
        #285c36;
}


/* ----------------------------------------
   SUCCESS
---------------------------------------- */

.success-slide {

    padding:
        64px 46px;

    max-width:
        800px;

    margin:
        auto;
}


.success-icon {

    width:
        62px;

    height:
        62px;

    border-radius:
        50%;

    display:
        grid;

    place-items:
        center;

    background:
        var(--green);

    color:
        white;

    font-size:
        30px;

    margin-bottom:
        22px;
}


.success-intro {

    color:
        var(--muted);

    font-size:
        17px;

    line-height:
        1.6;
}


.selected-summary {

    background:
        #efe7da;

    padding:
        15px 18px;

    border-radius:
        12px;

    margin:
        25px 0;
}


.discovery-grid {

    display:
        grid;

    gap:
        13px;

    margin-top:
        28px;
}


.discovery-card {

    display:
        grid;

    grid-template-columns:
        auto 1fr auto;

    gap:
        17px;

    align-items:
        center;

    padding:
        22px;

    border:
        1px solid var(--border);

    border-radius:
        16px;

    background:
        white;

    color:
        inherit;

    text-decoration:
        none;

    transition:
        transform .15s ease,
        border-color .15s ease;
}


.discovery-card:hover {

    transform:
        translateY(-2px);

    border-color:
        var(--gold);
}


.discovery-card.featured {

    background:
        var(--green);

    color:
        white;

    border-color:
        var(--green);
}


.discovery-card strong {

    display:
        block;

    font-family:
        Georgia,
        serif;

    font-size:
        21px;

    margin-bottom:
        4px;
}


.discovery-card p {

    margin:
        0;

    font-size:
        13px;

    line-height:
        1.5;

    opacity:
        .72;
}


.discovery-icon {

    font-size:
        30px;
}


.arrow {

    font-size:
        25px;

    opacity:
        .65;
}


.success-footer {

    text-align:
        center;

    margin-top:
        48px;

    padding-top:
        28px;

    border-top:
        1px solid var(--border);
}


.success-footer span {

    font-family:
        Georgia,
        serif;

    font-size:
        22px;
}


.success-footer p {

    color:
        var(--muted);

    font-size:
        13px;
}


/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */

@media
(max-width: 760px) {

    .giveaway-app {

        padding:
            0;
    }


    .giveaway-shell {

        border-radius:
            0;

        min-height:
            100vh;
    }


    .hero {

        min-height:
            calc(100vh - 58px);
    }


    .hero-content {

        padding:
            48px 25px;
    }


    .hero h1 {

        font-size:
            48px;
    }


    .hero-description {

        font-size:
            16px;
    }


    .question-slide,
    .success-slide {

        padding:
            40px 20px;
    }


    .choice-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .form-grid {

        grid-template-columns:
            1fr;
    }


    .field-group.full {

        grid-column:
            auto;
    }

}


@media
(max-width: 470px) {

    .choice-grid {

        grid-template-columns:
            1fr;
    }


    .navigation-row {

        flex-direction:
            column-reverse;
    }


    .navigation-row .btn {

        width:
            100%;
    }


    .progress-area {

        padding:
            13px 18px;
    }

}