:root {
    --bg-color: #F6F1EB;
    --text-charcoal: #1E1E1E;
    --text-soft: #5A5A5A;
    --divider-color: #D1CEC9;

    --font-headline: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Botanical Illustration */
.botanical-bg {
    position: fixed;
    top: 0;
    right: -10vw;
    /* Partially cropped */
    width: 70vmin;
    height: 100vh;
    background-image: url('Content/Botanical-Illustration.png');
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.25;
    /* 25% for better visibility */
    z-index: 0;
    pointer-events: none;
    /* Soft vignette fade at edges */
    mask-image: radial-gradient(circle at right center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at right center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 70%);
}

@media (max-width: 768px) {
    .botanical-bg {
        top: 30vh;
        right: -15vw;
        width: 120vw;
        opacity: 0.18;
        /* Shifts below/fades further */
        mask-image: radial-gradient(circle at right center, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 60%);
        -webkit-mask-image: radial-gradient(circle at right center, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 60%);
    }
}

/* Bee Container */
#bee-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    /* Never interfere with reading */
    overflow: hidden;
}

.bee-wrapper {
    position: absolute;
    width: 64px;
    height: 64px;
    /* Opacity and transition controlled via JS */
}

.bee {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    /* Muted tones, soft amber/warm grey */
    filter: sepia(0.35) contrast(0.85) opacity(0.8);
    animation: oscillate 7s ease-in-out infinite alternate;
}

@keyframes oscillate {
    0% {
        transform: scaleX(var(--bee-scale-x, 1)) scale(var(--bee-scale, 1)) translateY(-8px) rotate(-4deg);
    }

    100% {
        transform: scaleX(var(--bee-scale-x, 1)) scale(var(--bee-scale, 1)) translateY(8px) rotate(4deg);
    }
}

/* Main Layout */
.container {
    position: relative;
    z-index: 2;
    /* Content stays above background and bees */
    max-width: 840px;
    margin: 0 auto;
    padding: 6vh 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 1. Brand Marker */
.brand-marker {
    width: 80px;
    /* increased size to 80px */
    height: auto;
    margin-bottom: 5vh;
    opacity: 0.9;
    filter: brightness(0);
    /* Make the white logo black */
}

/* 2. Hero Statement */
.hero-statement {
    font-family: var(--font-headline);
    font-size: clamp(40px, 6vw, 76px);
    /* Very large, editorial */
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-charcoal);
    margin-bottom: 4vh;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
}

.hero-statement span {
    display: block;
}

/* 3. Product Descriptor */
.product-descriptor {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    color: var(--text-charcoal);
    margin-bottom: 1.5vh;
}

/* 4. Supporting Line */
.supporting-line {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.8vw, 17px);
    color: var(--text-soft);
    /* Softer contrast */
    margin-bottom: 6vh;
}

/* 5. Divider */
.divider {
    width: 50px;
    height: 1px;
    background-color: var(--divider-color);
    border: none;
    margin: 0 auto 6vh auto;
}

/* 6. Partnership Callout */
.partnership-callout {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-soft);
    margin-bottom: 3vh;
}

/* 7. Primary CTA */
.primary-cta {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #000000;
    padding: 18px 48px;
    border: 1px solid #000000;
    border-radius: 2px;
    /* Very subtle radius */
    margin-bottom: 6vh;
    transition: all 0.2s ease-in-out;
    /* Smooth transition */
}

.primary-cta:hover {
    background-color: #FFFFFF;
    color: #000000;
}

/* 8. Contact Details */
.contact-details {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    font-style: normal;
}

.contact-details a {
    color: var(--text-charcoal);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-details a:hover {
    opacity: 0.5;
}

@media (max-height: 800px) {
    .container {
        padding: 4vh 24px;
    }

    .brand-marker {
        margin-bottom: 4vh;
    }

    .hero-statement {
        margin-bottom: 3vh;
    }

    .supporting-line {
        margin-bottom: 4vh;
    }

    .divider {
        margin-bottom: 4vh;
    }

    .primary-cta {
        margin-bottom: 4vh;
    }
}