.lama-book-page-main {
    background: #f7f7f4;
    min-height: 70vh;
}

.lama-book-landing {
    --lama-gold: #b49355;
    --lama-gold-dark: #866b39;
    --lama-ink: #18231f;
    --lama-muted: #66716b;
    --lama-surface: #ffffff;
    --lama-soft: #f4f0e7;
    --lama-line: rgba(24, 35, 31, 0.12);
    color: var(--lama-ink);
    padding: clamp(34px, 6vw, 86px) 18px;
}

.lama-book-shell {
    max-width: 1160px;
    margin: 0 auto;
}

.lama-book-hero {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.34fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.lama-book-visual {
    display: flex;
    justify-content: center;
}

.lama-book-cover-image,
.lama-book-cover-placeholder {
    width: min(100%, 360px);
    aspect-ratio: 0.69;
    border-radius: 5px 16px 16px 5px;
    box-shadow: 0 26px 60px rgba(20, 28, 24, 0.18), -8px 0 0 rgba(0,0,0,0.04) inset;
}

.lama-book-cover-image {
    display: block;
    object-fit: cover;
}

.lama-book-cover-placeholder {
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 70% 22%, rgba(180,147,85,.20), transparent 31%),
        linear-gradient(145deg, #1a2621 0%, #23342c 58%, #101915 100%);
    color: #fff;
    padding: 34px 28px;
}

.lama-book-cover-placeholder::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(180,147,85,.42);
    border-radius: 50%;
    right: -70px;
    top: 95px;
}

.lama-book-cover-placeholder::after {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}

.lama-book-cover-brand,
.lama-book-cover-placeholder small {
    color: #d6ba82;
    letter-spacing: .12em;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.lama-book-cover-placeholder strong {
    position: relative;
    z-index: 1;
    max-width: 90%;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.04;
    font-weight: 500;
}

.lama-book-copy {
    max-width: 670px;
}

.lama-book-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--lama-gold-dark);
    background: var(--lama-soft);
    border: 1px solid rgba(180,147,85,.22);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
}

.lama-book-copy h1 {
    margin: 0;
    color: var(--lama-ink);
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 780;
}

.lama-book-subtitle {
    margin: 20px 0 0;
    color: var(--lama-muted);
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.55;
}

.lama-book-topics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lama-book-topics li {
    position: relative;
    padding-left: 23px;
    color: #3f4b45;
    font-size: 15px;
}

.lama-book-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--lama-gold-dark);
    font-weight: 800;
}

.lama-book-price-card {
    background: var(--lama-surface);
    border: 1px solid var(--lama-line);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px);
    box-shadow: 0 12px 32px rgba(20, 28, 24, 0.06);
    margin-top: 28px;
}

.lama-book-planned-price,
.lama-book-early-price {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
}

.lama-book-planned-price span,
.lama-book-early-price span {
    color: var(--lama-muted);
    font-size: 14px;
}

.lama-book-planned-price del {
    color: #777f7a;
    font-size: 21px;
    text-decoration-thickness: 2px;
}

.lama-book-early-price {
    margin-top: 8px;
}

.lama-book-early-price strong {
    color: var(--lama-ink);
    font-size: clamp(35px, 5vw, 48px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.lama-book-price-card p {
    margin: 16px 0 0;
    color: var(--lama-muted);
    line-height: 1.55;
    font-size: 14px;
}

.lama-book-form {
    margin-top: 22px;
}

.lama-book-email-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
}

.lama-book-email-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.lama-book-email-row input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    min-height: 54px;
    border: 1px solid #ccd1ce;
    border-radius: 12px;
    background: #fff;
    color: var(--lama-ink);
    padding: 0 16px;
    font-size: 16px;
    outline: none;
}

.lama-book-email-row input[type="email"]:focus {
    border-color: var(--lama-gold);
    box-shadow: 0 0 0 3px rgba(180,147,85,.15);
}

.lama-book-email-row button {
    min-height: 54px;
    border: 0;
    border-radius: 12px;
    padding: 0 22px;
    background: var(--lama-ink);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .15s ease, opacity .15s ease;
}

.lama-book-email-row button:hover {
    transform: translateY(-1px);
}

.lama-book-email-row button:disabled {
    cursor: wait;
    opacity: .66;
    transform: none;
}

.lama-book-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    color: #606a65;
    font-size: 12.5px;
    line-height: 1.45;
}

.lama-book-consent input {
    margin-top: 3px;
}

.lama-book-consent a {
    color: inherit;
    text-decoration: underline;
}

.lama-book-hp {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.lama-book-form-message {
    display: none;
    margin-top: 14px;
    border-radius: 12px;
    padding: 13px 15px;
    font-size: 14px;
    line-height: 1.5;
}

.lama-book-form-message.is-error {
    display: block;
    color: #8b2525;
    background: #fff0f0;
    border: 1px solid #f1cece;
}

.lama-book-form-message.is-success {
    display: block;
    color: #204f38;
    background: #edf8f1;
    border: 1px solid #cde7d6;
    font-weight: 600;
}

.lama-book-disclaimer {
    margin-top: 18px;
    padding: 14px 16px;
    color: #59635e;
    background: rgba(255,255,255,.62);
    border-left: 3px solid var(--lama-gold);
    border-radius: 0 10px 10px 0;
    font-size: 12.5px;
    line-height: 1.6;
}

@media (max-width: 820px) {
    .lama-book-landing {
        padding-top: 28px;
    }

    .lama-book-hero {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .lama-book-visual {
        order: 1;
    }

    .lama-book-copy {
        order: 2;
        max-width: none;
    }

    .lama-book-cover-image,
    .lama-book-cover-placeholder {
        width: min(76vw, 310px);
    }
}

@media (max-width: 560px) {
    .lama-book-landing {
        padding-left: 14px;
        padding-right: 14px;
    }

    .lama-book-topics {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .lama-book-price-card {
        border-radius: 16px;
    }

    .lama-book-planned-price,
    .lama-book-early-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .lama-book-email-row {
        grid-template-columns: 1fr;
    }

    .lama-book-email-row button {
        width: 100%;
    }
}


/* Related products — deliberately secondary to the book signup CTA. */
.lama-book-products {
    margin-top: clamp(54px, 8vw, 92px);
    padding-top: clamp(34px, 5vw, 54px);
    border-top: 1px solid var(--lama-line);
}

.lama-book-products-head {
    max-width: 700px;
    margin: 0 auto 28px;
    text-align: center;
}

.lama-book-products-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--lama-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .11em;
}

.lama-book-products-head h2 {
    margin: 0;
    color: var(--lama-ink);
    font-size: clamp(27px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -.025em;
}

.lama-book-products-head p {
    margin: 11px 0 0;
    color: var(--lama-muted);
    font-size: 15px;
    line-height: 1.55;
}

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

.lama-book-product-card {
    overflow: hidden;
    background: var(--lama-surface);
    border: 1px solid var(--lama-line);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(20, 28, 24, .045);
    transition: transform .18s ease, box-shadow .18s ease;
}

.lama-book-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20, 28, 24, .075);
}

.lama-book-product-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 18px;
    background: #fafaf7;
    text-decoration: none;
}

.lama-book-product-image {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: contain;
}

.lama-book-product-fallback {
    color: var(--lama-gold-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.lama-book-product-body {
    padding: 17px 18px 19px;
}

.lama-book-product-body h3 {
    margin: 0 0 11px;
    font-size: 17px;
    line-height: 1.3;
}

.lama-book-product-body h3 a {
    color: var(--lama-ink);
    text-decoration: none;
}

.lama-book-product-description {
    min-height: 44px;
    margin: 0 0 14px;
    color: var(--lama-muted);
    font-size: 14px;
    line-height: 1.55;
}

.lama-book-product-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--lama-gold-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.lama-book-products-all {
    margin-top: 26px;
    text-align: center;
}

.lama-book-all-products-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--lama-ink);
    border-radius: 12px;
    color: var(--lama-ink);
    background: transparent;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}

.lama-book-all-products-button:hover {
    background: var(--lama-ink);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 820px) {
    .lama-book-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lama-book-product-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 560px) {
    .lama-book-products {
        margin-top: 50px;
        padding-top: 32px;
    }

    .lama-book-product-grid {
        grid-template-columns: 1fr;
    }

    .lama-book-product-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .lama-book-product-image-wrap {
        min-height: 180px;
    }

    .lama-book-product-image {
        height: 175px;
    }
}
