:root {
    --green-900: #193b20;
    --green-800: #24512a;
    --green-700: #315b2f;
    --green-100: #eef6e8;
    --cream: #fff8ea;
    --sand: #f4dfbd;
    --gold: #d79234;
    --brown: #6f3f23;
    --red: #a71e21;
    --text: #281e17;
    --muted: #6f6256;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(33, 24, 16, 0.16);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    background: linear-gradient(180deg, var(--cream), #fff 48%, var(--green-100));
}

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

a {
    color: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    z-index: 99;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--green-900);
    color: var(--white);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 248, 234, 0.88);
    border-bottom: 1px solid rgba(111, 63, 35, 0.12);
    backdrop-filter: blur(16px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: radial-gradient(circle at 30% 30%, #82b13f, var(--green-800));
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 10px 30px rgba(36, 81, 42, 0.24);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.2;
}

.brand small {
    color: var(--muted);
}

.nav nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 700;
}

.nav nav a {
    text-decoration: none;
}

.nav-button {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--white);
    background: var(--green-800);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 9vw, 112px) 0 70px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 38vw;
    height: 38vw;
    min-width: 320px;
    min-height: 320px;
    right: -10vw;
    top: -12vw;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(215, 146, 52, 0.28), rgba(215, 146, 52, 0));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(30px, 6vw, 78px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-size: 0.83rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--green-900);
    font-size: clamp(2.65rem, 8vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: -0.07em;
}

h2 {
    color: var(--green-900);
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.04;
    letter-spacing: -0.045em;
}

h3 {
    color: var(--green-900);
    font-size: 1.25rem;
    line-height: 1.2;
}

.lead {
    max-width: 630px;
    color: var(--brown);
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero-actions,
.cta-card {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    box-shadow: 0 14px 34px rgba(25, 59, 32, 0.24);
}

.button-secondary {
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 81, 42, 0.18);
}

.button-light {
    color: var(--green-900);
    background: var(--white);
}

.facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.facts span {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--green-900);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(36, 81, 42, 0.16);
    font-size: 0.93rem;
    font-weight: 800;
}

.hero-card {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    background: var(--white);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.section {
    padding: clamp(64px, 9vw, 110px) 0;
}

.split,
.product-grid,
.gallery-grid,
.footer-grid {
    display: grid;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

.split,
.product-grid,
.gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intro p:not(.eyebrow),
.product-content p,
.gallery-panel p {
    color: var(--muted);
    font-size: 1.08rem;
}

.quote-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, #fff, var(--sand));
    box-shadow: var(--shadow);
}

.quote-card img {
    position: absolute;
    width: min(76%, 470px);
    right: -18px;
    top: 8px;
    opacity: 0.92;
}

.quote-card p {
    position: relative;
    max-width: 430px;
    margin: 0;
    color: var(--green-900);
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 1.15;
}

.product {
    background: rgba(255, 255, 255, 0.62);
}

.product-image {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.product-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 26px 0 30px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--brown);
    font-weight: 750;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-800);
    font-size: 0.85rem;
}

.section-head {
    max-width: 740px;
    margin-bottom: 32px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card {
    min-height: 250px;
    padding: 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 81, 42, 0.12);
    box-shadow: 0 16px 42px rgba(33, 24, 16, 0.08);
}

.card span {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--green-900);
    background: var(--sand);
    font-weight: 900;
}

.card p {
    color: var(--muted);
}

.gallery {
    padding-top: 20px;
}

.gallery-grid > img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.gallery-panel {
    padding: clamp(28px, 5vw, 52px);
    border-radius: var(--radius-xl);
    color: var(--white);
    background: linear-gradient(145deg, var(--green-900), var(--green-700));
    box-shadow: var(--shadow);
}

.gallery-panel h2,
.gallery-panel p {
    color: var(--white);
}

.genussland-logo {
    width: min(100%, 280px);
    margin-top: 28px;
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--white);
}

.cta {
    padding: 34px 0 86px;
}

.cta-card {
    justify-content: space-between;
    padding: clamp(28px, 5vw, 54px);
    border-radius: var(--radius-xl);
    color: var(--white);
    background: linear-gradient(135deg, var(--red), #c06b2b);
    box-shadow: var(--shadow);
}

.cta h2,
.cta .eyebrow {
    color: var(--white);
}

.cta h2 {
    max-width: 760px;
    margin: 0;
}

.site-footer {
    padding: 36px 0;
    color: rgba(255, 255, 255, 0.82);
    background: var(--green-900);
}

.footer-grid {
    grid-template-columns: 1fr auto;
}

.site-footer p {
    margin: 0;
}

.footer-note {
    max-width: 480px;
    text-align: right;
}

@media (max-width: 900px) {
    .nav {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav nav {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 3px;
    }

    .hero-grid,
    .split,
    .product-grid,
    .gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 42px;
    }

    .hero-card {
        transform: none;
    }

    .product-image {
        order: 2;
    }

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

    .footer-note {
        text-align: left;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(var(--container), calc(100% - 26px));
    }

    .nav nav a:not(.nav-button) {
        display: none;
    }

    .nav-button,
    .button {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
    }

    .facts span {
        width: 100%;
        text-align: center;
    }

    .hero-card img,
    .product-image img,
    .gallery-grid > img {
        aspect-ratio: 1 / 1;
    }

    .quote-card {
        min-height: 300px;
        padding: 22px;
    }

    .card {
        min-height: auto;
    }
}
