:root {
    --lg-ink: #28231f;
    --lg-muted: #675f57;
    --lg-cream: #f7f1e7;
    --lg-paper: #fffdf8;
    --lg-brown: #5f4935;
    --lg-orange: #b45309;
    --lg-orange-dark: #913f05;
    --lg-gold: #f1bd57;
}

* { box-sizing: border-box; }

body.lg-kinderen-landing {
    margin: 0;
    color: var(--lg-ink);
    background: var(--lg-cream);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.58;
    -webkit-font-smoothing: antialiased;
}

.lg-optin {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    padding: 64px 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(241, 189, 87, .25), transparent 32%),
        var(--lg-cream);
}

.lg-optin-wrap {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .65fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: center;
}

.lg-eyebrow {
    margin: 0 0 14px;
    color: var(--lg-orange);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.lg-optin h1,
.lg-optin h2 {
    margin: 0;
    color: var(--lg-ink);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.lg-optin h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 5vw, 4.75rem);
}

.lg-intro {
    max-width: 680px;
    margin: 24px 0 30px;
    color: var(--lg-muted);
    font-size: 1.15rem;
}

.lg-optin h2 {
    margin-top: 8px;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.lg-benefits {
    margin: 20px 0 32px;
    padding: 0;
    list-style: none;
}

.lg-benefits li {
    position: relative;
    margin: 12px 0;
    padding-left: 34px;
}

.lg-benefits li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--lg-orange);
    content: "✓";
    font-weight: 900;
}

.lg-button {
    display: inline-flex;
    justify-content: center;
    padding: 17px 25px;
    border-radius: 9px;
    color: #fff !important;
    background: var(--lg-orange);
    box-shadow: 0 12px 26px rgba(120, 52, 7, .22);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}

.lg-button:hover,
.lg-button:focus {
    color: #fff;
    background: var(--lg-orange-dark);
    transform: translateY(-2px);
}

.lg-safe {
    margin: 11px 0 0;
    color: var(--lg-muted);
    font-size: .78rem;
}

.lg-book {
    max-width: 360px;
    margin-left: auto;
    padding: 12px;
    border-radius: 7px;
    background: rgba(255,255,255,.6);
    box-shadow: 0 24px 60px rgba(72, 49, 29, .22);
    transform: rotate(1.5deg);
}

.lg-book img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.lg-footer {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: rgba(255,255,255,.72);
    background: var(--lg-brown);
    font-size: .76rem;
    text-align: center;
}

.lg-footer p { margin: 0; }

@media (max-width: 800px) {
    .lg-optin { padding: 45px 0; }
    .lg-optin-wrap { grid-template-columns: 1fr; }
    .lg-book { grid-row: 1; max-width: 285px; margin: 0 auto; }
    .lg-optin-copy { text-align: center; }
    .lg-benefits { display: inline-block; text-align: left; }
}

@media (max-width: 520px) {
    body.lg-kinderen-landing { font-size: 16px; }
    .lg-optin-wrap { width: min(100% - 28px, 1080px); }
    .lg-button { display: flex; width: 100%; }
    .lg-book { max-width: 235px; }
}

@media (prefers-reduced-motion: reduce) {
    .lg-button { transition: none; }
}

