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

/* THEME */
:root[data-theme="light"] {
    --bg: #f9f6ef;
    --bg-soft: #f4eee2;
    --text: #2e261c;
    --subtext: #7a6a55;
    --border-soft: #e3d7c3;
    --accent-gold: #c6ab7d;
    --accent-gold-soft: #e3d3af;
}

/* BASE PAGE */
body {
    min-height: 100vh;
    background: radial-gradient(circle at top, var(--bg-soft) 0, var(--bg) 60%);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 32px 20px;
}

/* LAYOUT */
.page {
    width: 100%;
    max-width: 1040px;
    display: flex;
    justify-content: center;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    width: 100%;
    align-items: center;
}

/* LEFT COLUMN */
.hero-left {
    max-width: 560px;
    animation: fadeIn 0.7s ease-out forwards;
    opacity: 0;
}

/* RIGHT COLUMN (BRAND PANEL) */
.hero-right {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FAINT WHEAT / BRAND MARK PANEL */
.wheat-mark {
    width: 80%;
    max-width: 320px;
    aspect-ratio: 1 / 2;

    /* Oval shape */
    border-radius: 999px;
    border: 1px solid rgba(198, 171, 125, 0.35);
    background-color: rgba(249, 246, 239, 0.3);

    /* Logo inside the oval */
    background-image: url("images/wheat-blade.png");
    background-size: 70% auto; /* tweak 60–80% for size */
    background-position: center;
    background-repeat: no-repeat;

    /* Soft minimalist styling */
    opacity: 0.55;
    filter: grayscale(10%) blur(0.15px);

    /* Optional subtle glow (looks very good) */
    box-shadow: 0 0 40px rgba(198, 171, 125, 0.18);
}



/* ANIMATION */
@keyframes fadeIn {
    to { opacity: 1; }
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--subtext);
    margin-bottom: 18px;
}

/* HEADLINE / TAGLINE / VISION */
.headline {
    font-size: 3.1rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: var(--subtext);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.vision {
    font-size: 1rem;
    color: var(--subtext);
    opacity: 0.95;
    margin-bottom: 28px;
    max-width: 30rem;
}

/* BUTTON GROUP */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

/* BUTTONS — SOFT MINIMALIST */
.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 11px 18px;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition:
        background-color 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease,
        border-color 0.18s ease;
}

.play-btn:hover {
    background-color: rgba(230, 219, 199, 0.4);
    border-color: var(--accent-gold);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.play-btn img {
    height: 26px;
    width: auto;
    display: block;
}

/* SMALL TEXT ELEMENTS */
.coming-soon {
    font-size: 0.9rem;
    color: var(--subtext);
    margin-bottom: 26px;
}

/* CONTACT */
.contact {
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--subtext);
    margin-bottom: 4px;
}

.contact a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    padding-bottom: 1px;
}

.contact a:hover {
    opacity: 0.7;
}

/* FOOTER */
.footer {
    font-size: 0.82rem;
    color: var(--subtext);
    opacity: 0.9;
}

/* RESPONSIVE — MOBILE: ONE COLUMN, CENTERED */
@media (max-width: 768px) {
    body {
        padding: 24px 16px;
        align-items: center;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-left {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .headline {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.08rem;
    }

    .vision {
        margin-left: auto;
        margin-right: auto;
    }

    .buttons {
        align-items: center;
    }

    .play-btn {
        justify-content: center;
        width: 100%;
        max-width: 360px;
    }

    .hero-right {
        order: -1;
    }

    .wheat-mark {
        max-width: 220px;
        opacity: 0.35;
    }
}