:root {
    --paper: #f6f2df;
    --paper-soft: #fbf8eb;
    --paper-deep: #e3dcc0;
    --leaf: #3c5f36;
    --leaf-light: #6f8b57;
    --earth: #6b513b;
    --ink: #263126;
    --muted: #596552;
    --line: rgba(60, 95, 54, 0.22);
    --shadow: rgba(38, 49, 38, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    background:
        linear-gradient(rgba(246, 242, 223, 0.72), rgba(246, 242, 223, 0.88)),
        url("bakgrund.png") center / cover fixed;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem clamp(1rem, 4vw, 3rem);
    background: rgba(251, 248, 235, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--leaf);
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
}

.brand-logo {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0.35rem 1rem var(--shadow);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.96rem;
}

.site-nav a {
    padding: 0.55rem 0.8rem;
    color: var(--muted);
    border-radius: 999px;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--paper-soft);
    background: var(--leaf);
}

main {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
    min-height: 72vh;
    padding: clamp(2rem, 6vw, 5rem) 0;
}

.hero-copy {
    max-width: 43rem;
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--leaf);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    max-width: 12ch;
    margin-bottom: 1.1rem;
    color: var(--leaf);
    font-size: 4.7rem;
    line-height: 0.96;
}

.hero-copy p:not(.eyebrow),
.page-intro p,
.text-block p,
.support-card p,
.policy-block p,
.feature-band p,
.faq-list p {
    color: var(--muted);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.04rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.75rem 1.1rem;
    border: 1px solid var(--leaf);
    border-radius: 999px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 750;
    text-decoration: none;
}

.button.primary {
    color: var(--paper-soft);
    background: var(--leaf);
}

.button.secondary {
    color: var(--leaf);
    background: rgba(251, 248, 235, 0.66);
}

.hero-panel,
.support-card,
.text-block,
.policy-block,
.faq-list details,
.feature-band article {
    background: rgba(251, 248, 235, 0.84);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 1rem 2.6rem var(--shadow);
}

.hero-panel {
    padding: clamp(1.2rem, 4vw, 2rem);
}

.sprout-mark {
    display: block;
    width: min(12rem, 72%);
    margin: 0 auto 1.2rem;
    mix-blend-mode: multiply;
}

.panel-kicker {
    margin-bottom: 1rem;
    color: var(--earth);
    font-weight: 700;
}

.garden-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.garden-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.garden-list span {
    width: 0.8rem;
    height: 0.8rem;
    flex: 0 0 auto;
    border: 2px solid var(--leaf-light);
    border-radius: 50%;
    background: var(--paper-soft);
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-bottom: clamp(2rem, 5vw, 4rem);
}

.feature-band article,
.support-card,
.text-block,
.policy-block {
    padding: 1.3rem;
}

.feature-band h2,
.support-card h2,
.text-block h2,
.policy-block h2 {
    margin-bottom: 0.6rem;
    color: var(--earth);
    font-size: 1.35rem;
}

.content-page {
    padding: clamp(2.5rem, 7vw, 5rem) 0;
}

.page-intro {
    max-width: 46rem;
    margin-bottom: 1.4rem;
}

.page-intro h1 {
    max-width: 13ch;
    font-size: 4rem;
}

.text-block,
.support-card,
.policy-block {
    max-width: 48rem;
    margin-bottom: 1rem;
}

.policy-block a {
    color: var(--leaf);
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 0.8rem;
    max-width: 52rem;
}

.faq-list details {
    padding: 1rem 1.1rem;
}

.faq-list summary {
    color: var(--leaf);
    cursor: pointer;
    font-size: 1.13rem;
    font-weight: 700;
}

.faq-list p {
    margin: 0.8rem 0 0;
}

.site-footer {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.5rem 0 2rem;
    color: var(--muted);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-top: 1px solid var(--line);
}

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

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .feature-band {
        grid-template-columns: 1fr;
    }

    h1,
    .page-intro h1 {
        max-width: 11ch;
        font-size: 2.7rem;
    }
}
