* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flax-gold: #B38000;
    --flax-dark: #292714;
    --flax-green: #454D33;
    --cream: #F5F1E6;
    --light: #FFFDF7;
    --flax-gray: #9D927F;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    min-height: 100vh;
    color: var(--light);
    overflow-x: hidden;
}

/* =========================
    PAGE
========================= */

.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    background: linear-gradient(135deg, #1F2418 0%, #2B3120 52%, #343B28 100%);

    display: flex;
    flex-direction: column;
}


/* =========================
    BACKGROUND GLOW
========================= */

.page::before,
.page::after {
    content: "";
    position: absolute;

    z-index: 0;

    pointer-events: none;
}


/* Top-right glow */

.page::before {
    width: 700px;
    height: 700px;

    top: -350px;
    right: -250px;

    border-radius: 50%;

    background:
        linear-gradient(108.71deg,
            rgba(179, 128, 0, 0) 0%,
            rgba(179, 128, 0, 0.21) 50%,
            rgba(179, 128, 0, 0.35) 100%);

    filter: blur(35px);

    opacity: 0.9;
}


/* Bottom-left glow */

.page::after {
    width: 600px;
    height: 600px;

    left: -300px;
    bottom: -300px;

    border-radius: 50%;

    background:
        linear-gradient(108.71deg,
            rgba(179, 128, 0, 0) 0%,
            rgba(179, 128, 0, 0.21) 50%,
            rgba(179, 128, 0, 0.35) 100%);

    filter: blur(35px);

    opacity: 0.7;
}


/* =========================
    HEADER
========================= */

header {
    position: relative;
    z-index: 10;

    height: 90px;
    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(108.71deg,
            rgba(179, 128, 0, 0) 0%,
            rgba(179, 128, 0, 0.10) 50%,
            rgba(179, 128, 0, 0.18) 100%);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}


/* =========================
    BRAND
========================= */

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Logo container */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo img {
    width: 105px;
    height: auto;
    display: block;
}


/* Brand text */
.brand-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    /* Optical correction because the logo is visually taller */
    transform: translateY(10px);
}

.brand-main {
    display: block;

    font-size: 18px;
    font-weight: 700;

    color: #454D33;

    line-height: 1;
    letter-spacing: 1.5px;
}

.brand-flax {
    display: flex;
    align-items: center;

    margin-top: 7px;
}

.brand-line {
    width: 30px;
    height: 1px;

    background: var(--flax-gray);
}

.brand-flax-text {
    padding: 0 9px;

    font-size: 14px;
    font-weight: 700;

    color: var(--flax-gray);

    line-height: 1;
    letter-spacing: 5px;

    white-space: nowrap;
}


/* =========================
    MAIN
========================= */

main {
    position: relative;
    z-index: 5;

    flex: 1;

    min-height: calc(100vh - 90px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 7%;
}


.content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1000px;

    text-align: center;

    animation: fadeUp 1s ease forwards;
}


/* =========================
    EYEBROW
========================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--cream);
}


.eyebrow::before,
.eyebrow::after {
    content: "";

    width: 30px;
    height: 1px;

    background: rgba(255, 255, 255, 0.5);
}


/* =========================
    TITLE
========================= */

h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 9vw, 105px);

    line-height: 0.95;
    font-weight: 400;

    letter-spacing: -4px;

    margin-bottom: 28px;

    text-shadow:
        0 8px 30px rgba(0, 0, 0, 0.18);
}


h1 span {
    color: #F1D98B;
    font-style: italic;
}


/* =========================
    DESCRIPTION
========================= */

.description {
    max-width: 650px;

    margin: 0 auto;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}


/* =========================
    COUNTDOWN
========================= */

.countdown {
    display: flex;
    justify-content: center;

    gap: 18px;

    margin: 45px 0;
}


.time-box {
    min-width: 105px;

    padding: 18px 15px;

    background:
        linear-gradient(108.71deg,
            rgba(179, 128, 0, 0.05) 0%,
            rgba(179, 128, 0, 0.14) 50%,
            rgba(179, 128, 0, 0.22) 100%);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 14px;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.10);
}


.number {
    display: block;

    font-family: Georgia, serif;

    font-size: 34px;

    color: var(--cream);
}


.label {
    display: block;

    margin-top: 5px;

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.6;
}


/* =========================
    CTA
========================= */

.cta {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 15px 28px;

    border-radius: 50px;

    color: var(--flax-dark);

    background: var(--cream);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.cta:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.2);
}


.cta-arrow {
    font-size: 18px;

    transition:
        transform 0.3s ease;
}


.cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* =========================
    CONTACT POPUP
========================= */

.contact-popup-overlay {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 9999;

    align-items: center;
    justify-content: center;
}


.contact-popup {
    position: relative;

    width: 90%;
    max-width: 420px;

    padding: 35px 30px;

    background: #fff;

    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

    text-align: center;
}


.contact-popup h3 {
    margin: 0 0 8px;

    font-size: 24px;

    color: #454D33;
}


.contact-popup p {
    margin: 0 0 25px;

    color: #777;

    font-size: 14px;
}


/* Close button */

.contact-popup-close {
    position: absolute;

    top: 10px;
    right: 15px;

    border: none;

    background: none;

    font-size: 28px;

    cursor: pointer;

    color: #777;
}


/* Contact options */

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-top: 12px;

    border: 1px solid #ddd;
    border-radius: 8px;

    text-decoration: none;
    color: inherit;

    min-width: 0;
}

.contact-option span:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;

    min-width: 0;
}

.contact-option small {
    margin-top: 3px;
    color: #777;
    font-size: 12px;

    overflow-wrap: anywhere;
}


.contact-option:hover {
    border-color: #454D33;

    background: #f8f8f5;
}


.contact-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #454D33;

    color: white;

    font-size: 20px;
}


.contact-option span:last-child {
    display: flex;

    flex-direction: column;

    text-align: left;
}


.contact-option strong {
    font-size: 15px;

    color: #454D33;
}


.contact-option small {
    margin-top: 3px;

    color: #777;

    font-size: 12px;
}


/* =========================
    FOOTER
========================= */

footer {
    position: absolute;

    z-index: 10;

    bottom: 22px;

    left: 0;
    right: 0;

    text-align: center;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    opacity: 0.45;
}


/* =========================
    ANIMATION
========================= */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
    MOBILE
========================= */

@media (max-width: 650px) {

    header {
        height: 75px;
        padding: 0 5%;
    }


    .logo {
        width: 40px;
        height: 40px;
    }


    .logo img {
        width: 75px;
    }


    .brand-main {
        font-size: 16px;
    }


    .brand-flax-text {
        font-size: 12px;
        letter-spacing: 4px;
    }


    .brand-line {
        width: 20px;
    }


    main {
        min-height: calc(100vh - 75px);

        padding: 40px 6%;
    }


    h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }


    .description {
        font-size: 15px;

        line-height: 1.7;
    }


    .countdown {
        gap: 7px;

        margin: 35px 0;
    }


    .time-box {
        min-width: 70px;

        padding: 13px 7px;
    }


    .number {
        font-size: 25px;
    }


    .label {
        font-size: 7px;

        letter-spacing: 1px;
    }


    .cta {
        padding: 13px 23px;
    }
}