:root {
    --forest: #103b2c;
    --forest-dark: #09251d;
    --leaf: #2e864f;
    --gold: #f5c84b;
    --gold-soft: #ffe29b;
    --red: #d8553f;
    --cream: #fff7e5;
    --ink: #163629;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    margin: 0;
}

body {
    background: var(--forest-dark);
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
}

.page-shell {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 38%, rgba(46, 134, 79, 0.25), transparent 35rem),
        linear-gradient(145deg, var(--forest) 0%, #0d3025 52%, var(--forest-dark) 100%);
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 226, 155, 0.12);
    border-radius: 46% 54% 61% 39% / 43% 48% 52% 57%;
    transform: rotate(28deg);
    pointer-events: none;
}

.page-shell::before {
    top: -12rem;
    left: -11rem;
}

.page-shell::after {
    right: -12rem;
    bottom: -15rem;
    transform: rotate(-34deg);
}

.color-stripe {
    display: flex;
    height: 8px;
    width: 100%;
}

.stripe {
    flex: 1;
}

.stripe--red { background: var(--red); }
.stripe--gold { background: var(--gold); }
.stripe--green { background: var(--leaf); }

.hero {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 5rem 1.5rem 3.5rem;
    position: relative;
}

.hero-content {
    width: min(100%, 43rem);
    text-align: center;
    position: relative;
    z-index: 1;
}

.sun-disc {
    position: absolute;
    width: clamp(17rem, 45vw, 34rem);
    height: clamp(17rem, 45vw, 34rem);
    border-radius: 50%;
    border: 1px solid rgba(245, 200, 75, 0.14);
    box-shadow: 0 0 0 2.5rem rgba(245, 200, 75, 0.025), 0 0 0 5.5rem rgba(245, 200, 75, 0.018);
}

.eyebrow {
    align-items: center;
    color: var(--gold-soft);
    display: inline-flex;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin: 0 0 1.8rem;
    text-transform: uppercase;
}

.eyebrow-dot {
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(216, 85, 63, 0.16);
    display: inline-block;
    height: 7px;
    margin-right: 0.75rem;
    width: 7px;
}

.brand-mark {
    color: var(--cream);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-mark img {
    filter: drop-shadow(0 0.75rem 1rem rgba(0, 0, 0, 0.22));
    height: clamp(6rem, 16vw, 8.5rem);
    transition: transform 180ms ease;
    width: auto;
}

.brand-mark:hover img,
.brand-mark:focus-visible img {
    transform: translateY(-3px) rotate(-2deg);
}

.brand-name {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.06em;
}

.brand-name span {
    color: var(--gold);
}

.divider {
    align-items: center;
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin: 1.65rem auto 1.4rem;
    width: min(11rem, 55vw);
}

.divider span {
    background: rgba(255, 247, 229, 0.38);
    height: 1px;
    flex: 1;
}

.divider i {
    background: var(--gold);
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

h1 {
    color: var(--cream);
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.7rem, 8vw, 5.4rem);
    letter-spacing: -0.075em;
    line-height: 0.94;
    margin: 0;
}

h1 em {
    color: var(--gold);
    font-style: normal;
}

.intro {
    color: rgba(255, 247, 229, 0.75);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.7;
    margin: 1.8rem auto 0;
    max-width: 35rem;
}

.site-footer {
    align-items: center;
    border-top: 1px solid rgba(255, 247, 229, 0.1);
    color: rgba(255, 247, 229, 0.52);
    display: flex;
    font-size: 0.76rem;
    justify-content: space-between;
    letter-spacing: 0.04em;
    margin: 0 2rem;
    padding: 1.15rem 0 1.35rem;
}

.site-footer p {
    margin: 0;
}

.footer-note {
    color: rgba(245, 200, 75, 0.72);
}

@media (max-width: 520px) {
    .hero {
        padding-top: 3.6rem;
    }

    .intro {
        font-size: 0.98rem;
    }

    .site-footer {
        flex-direction: column;
        gap: 0.45rem;
        margin: 0 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-mark img {
        transition: none;
    }
}
