:root {
    --ink: #14201a;
    --ink-soft: #3d4f45;
    --mist: #f3f7f4;
    --leaf: #2f6b4f;
    --leaf-soft: #5a8f72;
    --leaf-faint: rgba(47, 107, 79, 0.08);
    --leaf-line: rgba(47, 107, 79, 0.18);
    --cream-green: #e8f0ea;
    --white: #fbfdfb;
    --display: "Fraunces", Georgia, serif;
    --sans: "Outfit", "Segoe UI", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(90, 143, 114, 0.16), transparent 55%),
        radial-gradient(900px 500px at -10% 30%, rgba(47, 107, 79, 0.07), transparent 50%),
        linear-gradient(180deg, var(--cream-green) 0%, var(--mist) 38%, var(--white) 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--leaf);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
    color: var(--ink);
}

.invocation {
    text-align: center;
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    letter-spacing: 0.04em;
    color: var(--leaf-soft);
    padding: 1.1rem 1.5rem 0.4rem;
    animation: rise 0.9s ease both;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem clamp(1.25rem, 4vw, 3.5rem) 0.5rem;
    animation: rise 1s ease 0.1s both;
}

.brand {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.nav a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
}

.nav a:hover {
    color: var(--leaf);
}

.hero {
    min-height: calc(100vh - 7rem);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: clamp(2rem, 6vh, 4rem) clamp(1.25rem, 4vw, 3.5rem) clamp(3rem, 8vh, 5rem);
    position: relative;
}

.hero-copy {
    max-width: 36rem;
    animation: rise 1.1s ease 0.2s both;
    position: relative;
    z-index: 1;
}

.brand-hero {
    font-family: var(--display);
    font-size: clamp(3.4rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 1.25rem;
}

.hero-line {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--ink);
    max-width: 28rem;
    margin-bottom: 0.85rem;
}

.hero-support {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 30rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn-primary {
    background: var(--leaf);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-quiet {
    background: transparent;
    color: var(--leaf);
    border: 1px solid var(--leaf-line);
}

.btn-quiet:hover {
    background: var(--leaf-faint);
    color: var(--ink);
}

.hero-visual {
    position: relative;
    min-height: min(58vh, 420px);
    animation: fade-in 1.4s ease 0.35s both;
}

.field {
    position: absolute;
    inset: 8% 6% 12% 10%;
    background:
        linear-gradient(145deg, rgba(47, 107, 79, 0.22), rgba(232, 240, 234, 0.4) 45%, rgba(90, 143, 114, 0.18)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232f6b4f' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    border-radius: 0 40% 0 30% / 0 35% 0 40%;
}

.orbit,
.orbit-2 {
    position: absolute;
    border: 1px solid var(--leaf-line);
    border-radius: 50%;
    animation: drift 14s ease-in-out infinite;
}

.orbit {
    width: 72%;
    height: 72%;
    top: 4%;
    right: 2%;
}

.orbit-2 {
    width: 48%;
    height: 48%;
    bottom: 8%;
    left: 8%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.section {
    padding: clamp(3.5rem, 9vh, 6rem) clamp(1.25rem, 4vw, 3.5rem);
    max-width: 72rem;
    margin: 0 auto;
}

.eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--leaf-soft);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.section h2 {
    font-family: var(--display);
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 18ch;
    margin-bottom: 1.75rem;
    color: var(--ink);
}

.changed {
    border-top: 1px solid var(--leaf-line);
}

.changed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.changed-grid article h3 {
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--leaf);
}

.changed-grid article p {
    color: var(--ink-soft);
    font-weight: 300;
    font-size: 1.02rem;
}

.opportunity {
    background: var(--leaf-faint);
    max-width: none;
    padding-left: clamp(1.25rem, 8vw, 8rem);
    padding-right: clamp(1.25rem, 8vw, 8rem);
    border-top: 1px solid var(--leaf-line);
    border-bottom: 1px solid var(--leaf-line);
}

.opportunity h2,
.opportunity .eyebrow {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}

.opportunity .lead {
    max-width: 40rem;
    margin: 0 auto 1.1rem;
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--ink-soft);
}

.opportunity .lead.accent {
    color: var(--ink);
    font-weight: 500;
    font-size: 1.2rem;
}

.connect h2 {
    max-width: 22ch;
}

.paths {
    list-style: none;
    display: grid;
    gap: 0;
    margin-bottom: 2rem;
    border-top: 1px solid var(--leaf-line);
}

.paths li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--leaf-line);
}

.path-label {
    color: var(--ink-soft);
    font-weight: 300;
}

.paths a {
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--leaf);
}

.paths a:hover {
    color: var(--ink);
}

.email-note {
    max-width: 38rem;
}

.email-note p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--ink-soft);
}

.site-footer {
    text-align: center;
    padding: 3rem 1.5rem 3.5rem;
    color: var(--ink-soft);
    font-weight: 300;
    border-top: 1px solid var(--leaf-line);
}

.site-footer p:first-child {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--leaf-soft);
}

.year {
    margin-top: 0.4rem;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, 10px); }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-visual {
        order: -1;
        min-height: 220px;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .changed-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 0.85rem;
    }
}

@media (max-width: 560px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .paths li {
        flex-direction: column;
        align-items: flex-start;
    }
}

.will-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.will-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .will-reveal {
        opacity: 1;
        transform: none;
    }
}
