:root {
    --bg: #f2f1e3;
    --bg-deep: #dbe4cd;
    --surface: rgba(251, 252, 245, 0.76);
    --surface-strong: rgba(248, 249, 239, 0.94);
    --surface-border: rgba(93, 113, 84, 0.18);
    --text-main: #2d3528;
    --text-soft: #55624f;
    --accent: #789466;
    --accent-deep: #567147;
    --accent-faint: rgba(120, 148, 102, 0.16);
    --sun: #d7bb76;
    --sun-soft: rgba(215, 187, 118, 0.2);
    --shadow-soft: 0 20px 60px rgba(69, 83, 53, 0.12);
    --shadow-panel: 0 14px 32px rgba(78, 95, 61, 0.11);
    --radius-large: 34px;
    --radius-medium: 24px;
    --radius-small: 18px;
    --space-1: 0.5rem;
    --space-2: 0.875rem;
    --space-3: 1.25rem;
    --space-4: 1.75rem;
    --space-5: 2.5rem;
    --space-6: 3.5rem;
    --space-7: 5rem;
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(246, 233, 181, 0.75), transparent 30%),
        radial-gradient(circle at 78% 18%, rgba(178, 204, 161, 0.28), transparent 24%),
        linear-gradient(180deg, #f7f4e8 0%, var(--bg) 48%, var(--bg-deep) 100%);
    color: var(--text-main);
    font-family: "Aptos", "Trebuchet MS", "Gill Sans", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.page-shell {
    position: relative;
    overflow: clip;
}

.background-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.glow-sun {
    top: -8rem;
    right: -5rem;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(232, 202, 128, 0.34) 0%, rgba(232, 202, 128, 0.08) 55%, transparent 72%);
}

.glow-leaf {
    top: 22rem;
    left: -9rem;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle, rgba(129, 171, 119, 0.26) 0%, rgba(129, 171, 119, 0.08) 58%, transparent 72%);
}

.grain {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        radial-gradient(rgba(78, 91, 63, 0.1) 0.7px, transparent 0.7px),
        radial-gradient(rgba(255, 255, 255, 0.6) 0.7px, transparent 0.7px);
    background-position: 0 0, 14px 14px;
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9));
}

main {
    position: relative;
    width: min(calc(100% - 2.5rem), var(--max-width));
    margin: 0 auto;
    padding: 0 0 var(--space-7);
}

.section {
    position: relative;
    z-index: 1;
}

.hero > h1 {
    grid-column: 1 / -1;
    margin: 0 0 var(--space-3);
    text-align: center;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: var(--space-5);
    align-items: center;
    min-height: 100vh;
    padding: var(--space-6) 0 var(--space-5);
    align-content: center;
}

.eyebrow,
.section-kicker,
.panel-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    color: var(--accent-deep);
}

.hero-copy {
    justify-self: start;
    max-width: 38rem;
}

.hero > h1,
.hero-copy h2,
.section-heading h2,
.selling-card h3 {
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.hero-copy h2 {
    margin: var(--space-2) 0 var(--space-3);
    font-size: clamp(3rem, 6vw, 5.8rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-intro {
    margin: 0 0 var(--space-4);
    max-width: 32rem;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--text-soft);
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #d9e6bc 0%, #b8cd8f 100%);
    color: #2f3a24;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 16px 28px rgba(99, 132, 68, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(99, 132, 68, 0.26);
    filter: saturate(1.03);
}

.primary-cta:focus-visible {
    outline: 2px solid rgba(58, 45, 31, 0.45);
    outline-offset: 4px;
}

.hero-panel {
    position: relative;
    min-height: 34rem;
    border-radius: 44px;
    padding: var(--space-5);
    background:
        linear-gradient(180deg, rgba(249, 251, 241, 0.88), rgba(239, 243, 231, 0.72)),
        radial-gradient(circle at 70% 25%, var(--sun-soft), transparent 34%),
        radial-gradient(circle at 28% 76%, rgba(140, 172, 124, 0.16), transparent 32%);
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    border-radius: 48% 52% 58% 42% / 42% 43% 57% 58%;
}

.hero-panel::before {
    inset: 12% 10% auto auto;
    width: 12rem;
    height: 12rem;
    background: rgba(240, 232, 189, 0.7);
}

.hero-panel::after {
    inset: auto auto 11% 12%;
    width: 10rem;
    height: 7rem;
    background: rgba(124, 164, 111, 0.16);
}

.sun-disc {
    position: absolute;
    top: 4.4rem;
    right: 4.5rem;
    width: 8.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f5ecc5, var(--sun) 58%, #bfa660 100%);
    box-shadow: 0 0 0 18px rgba(215, 187, 118, 0.12);
}

.panel-card {
    position: absolute;
    max-width: 16rem;
    padding: 1.15rem 1.2rem;
    border: 1px solid rgba(88, 105, 74, 0.14);
    border-radius: var(--radius-medium);
    background: var(--surface-strong);
    box-shadow: var(--shadow-panel);
}

.panel-card-top {
    top: 9.5rem;
    left: 2.5rem;
}

.panel-card-bottom {
    right: 2rem;
    bottom: 2.6rem;
}

.panel-value {
    margin: 0.45rem 0 0;
    font-size: 1.04rem;
    color: var(--text-main);
}

.philosophy,
.selling-points {
    padding-bottom: var(--space-6);
}

.section-heading {
    display: grid;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    max-width: 48rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.philosophy-panel {
    position: relative;
    max-width: 58rem;
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: var(--radius-large);
    background: linear-gradient(180deg, rgba(251, 252, 246, 0.78), rgba(239, 244, 233, 0.94));
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-panel);
}

.philosophy-panel::before {
    content: "";
    position: absolute;
    inset: auto 1.2rem -1.2rem auto;
    width: 8rem;
    height: 8rem;
    border-radius: 38% 62% 55% 45% / 46% 40% 60% 54%;
    background: rgba(129, 171, 119, 0.14);
}

.philosophy-panel p {
    position: relative;
    margin: 0;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    line-height: 1.75;
    color: var(--text-main);
    max-width: 50rem;
    text-wrap: pretty;
}

.selling-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.selling-card {
    padding: 1.6rem;
    border-radius: var(--radius-medium);
    background:
        linear-gradient(180deg, rgba(250, 252, 244, 0.9), rgba(236, 242, 228, 0.94)),
        linear-gradient(135deg, transparent, var(--accent-faint));
    border: 1px solid rgba(92, 113, 79, 0.14);
    box-shadow: var(--shadow-panel);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.selling-card:hover,
.selling-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(111, 133, 96, 0.25);
    background:
        linear-gradient(180deg, rgba(252, 253, 247, 0.96), rgba(237, 244, 228, 0.95)),
        linear-gradient(135deg, transparent, rgba(126, 161, 108, 0.2));
}

.selling-card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.55rem;
    line-height: 1.1;
}

.selling-card p {
    margin: 0;
    color: var(--text-soft);
}

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

.js-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .js-ready .reveal,
    .js-ready .reveal.is-visible {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 920px) {
    main {
        width: min(calc(100% - 2rem), var(--max-width));
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: var(--space-6);
    }

    .hero-panel {
        min-height: 27rem;
    }

    .sun-disc {
        top: 3rem;
        right: 3rem;
        width: 7rem;
    }

    .panel-card-top {
        top: 8rem;
        left: 1.8rem;
    }

    .panel-card-bottom {
        right: 1.8rem;
        bottom: 2rem;
    }

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

@media (max-width: 640px) {
    :root {
        --space-5: 2rem;
        --space-6: 2.8rem;
        --space-7: 4rem;
    }

    body {
        font-size: 0.98rem;
    }

    main {
        width: min(calc(100% - 1.25rem), var(--max-width));
        padding-top: var(--space-1);
    }

    .hero {
        gap: var(--space-4);
    }

    .hero > h1 {
        font-size: clamp(2rem, 11vw, 3.2rem);
    }

    .hero-copy h2 {
        font-size: clamp(2.7rem, 15vw, 4rem);
    }

    .hero-panel {
        min-height: auto;
        padding: 7rem 1.1rem 1.1rem;
    }

    .sun-disc {
        top: 1.4rem;
        right: 1.4rem;
        width: 5.5rem;
        box-shadow: 0 0 0 12px rgba(216, 169, 109, 0.12);
    }

    .panel-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        max-width: none;
    }

    .panel-card + .panel-card {
        margin-top: 0.9rem;
    }

    .section-heading h2 {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    .philosophy-panel p {
        font-size: 1.08rem;
        line-height: 1.65;
    }

    .selling-card {
        padding: 1.35rem;
    }
}