/* ─────────────────────────────────────────────────────────────────────────
   lm.css — shared styles for landing pages, download pages, and legal pages
   ───────────────────────────────────────────────────────────────────────── */

/* ── VARIABLES ── */
:root {
    --ink:       #0a0a0a;
    --ink-mid:   #121212;
    --ink-card:  #1a1a1a;
    --gold:      #c9a227;
    --gold-dark: #9a7a1a;
    --gold-lite: #e0c05a;
    --cream:     #f0ece4;
    --body-dim:  #8a8680;
    --light-bg:  #f4f1ec;
    --light-tx:  #2a2520;
    --border:    rgba(201,162,39,0.12);
}

/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--cream);
    overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; }
a:hover { opacity: 0.85; }
.gold { color: var(--gold); }

/* ── LAYOUT ── */
.container       { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.container-wide  { max-width: 960px; margin: 0 auto; padding: 0 2rem; }

/* ── LOGO BAR ── */
.logo-bar {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}
.logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
}
.logo-dot { color: var(--gold); }

/* ── TYPOGRAPHY UTILITIES ── */
.label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}
.label-dark { color: var(--gold-dark); }

/* ── FORM ── */
.form-wrap { max-width: 480px; margin: 0 auto; }
.form-row { display: flex; }
.email-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,162,39,0.3);
    border-right: none;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--body-dim); }
.email-input:focus { border-color: rgba(201,162,39,0.65); }
.submit-btn {
    padding: 1rem 1.6rem;
    background: var(--gold);
    border: none;
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.submit-btn:hover { background: var(--gold-lite); }
.submit-btn:disabled { opacity: 0.6; cursor: default; }
.form-note {
    margin-top: 0.85rem;
    font-size: 0.75rem;
    color: var(--body-dim);
    text-align: center;
}
.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(201,162,39,0.3);
    background: rgba(201,162,39,0.06);
}
.form-success-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.form-success-text { font-size: 0.95rem; color: var(--body-dim); line-height: 1.65; }
.form-error {
    display: none;
    text-align: center;
    font-size: 0.85rem;
    color: #e87070;
    margin-top: 0.75rem;
}

/* ── DIVIDER ── */
hr.divider { border: none; border-top: 1px solid rgba(201,162,39,0.1); }

/* ── BOOK MOCK ── */
.book-wrap {
    transform: perspective(900px) rotateY(-8deg);
    filter: drop-shadow(20px 25px 40px rgba(0,0,0,0.7));
}
.book-mock {
    width: 220px;
    height: 311px;
    position: relative;
    border-radius: 1px 2px 2px 1px;
}
.book-spine {
    position: absolute;
    left: -7px; top: 1px; bottom: 1px;
    width: 7px;
    background: #050505;
    border-radius: 1px 0 0 1px;
}
.bk-cover {
    position: absolute; inset: 0;
    background: #0a0a0a;
    display: flex; flex-direction: column;
    padding: 15px 16px 14px 18px;
    overflow: hidden;
}
.bk-top { display: flex; justify-content: space-between; align-items: flex-start; }
.bk-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 9px; letter-spacing: 0.12em;
    color: #f0ece4; text-transform: uppercase;
}
.bk-badge {
    font-size: 5.5px; color: #c9a227;
    border: 0.75px solid rgba(201,162,39,0.45);
    padding: 2px 4px; letter-spacing: 0.15em; text-transform: uppercase;
}
.bk-body {
    flex: 1; display: flex; flex-direction: column;
    justify-content: center; padding: 10px 0 8px;
}
.bk-tag     { font-size: 5px; letter-spacing: 0.25em; color: #8a8680; text-transform: uppercase; margin-bottom: 7px; }
.bk-h1      { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 24px; line-height: 1.0; text-transform: uppercase; color: #f0ece4; margin-bottom: 9px; }
.bk-gold    { color: #c9a227; }
.bk-rule    { width: 18px; height: 1.5px; background: #c9a227; margin-bottom: 9px; }
.bk-sub     { font-size: 7px; line-height: 1.55; color: rgba(240,236,228,0.5); max-width: 145px; }
.bk-footer  { display: flex; justify-content: space-between; align-items: flex-end; }
.bk-name    { font-family: 'Barlow Condensed', sans-serif; font-size: 8.5px; font-weight: 700; color: #f0ece4; letter-spacing: 0.05em; text-transform: uppercase; }
.bk-role    { font-size: 5px; color: #8a8680; letter-spacing: 0.08em; margin-top: 2px; }
.bk-url     { font-family: 'Barlow Condensed', sans-serif; font-size: 7px; color: #8a8680; letter-spacing: 0.1em; }
.bk-accent  { position: absolute; right: 0; bottom: 38px; width: 2.5px; height: 42px; background: #c9a227; }

/* ── WHAT'S INSIDE (light section) ── */
.inside {
    background: var(--light-bg);
    color: var(--light-tx);
    padding: 6rem 0;
}
.inside-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.inside-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--light-tx);
}

/* ── CONCEPTS GRID ── */
.concepts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(42,37,32,0.1);
    margin-bottom: 1.5px;
}
.concept {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
}
.concept-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: rgba(42,37,32,0.07);
    margin-bottom: 1rem;
}
.concept-tag {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}
.concept-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.55rem;
    text-transform: uppercase;
    color: var(--light-tx);
    line-height: 1.05;
    margin-bottom: 0.75rem;
}
.concept-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: #5a5248;
}
.bonus-row {
    background: var(--light-bg);
    padding: 1.75rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.bonus-icon {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: 1.4rem;
    color: var(--gold-dark); flex-shrink: 0; line-height: 1.3;
}
.bonus-text { font-size: 0.9rem; color: #5a5248; line-height: 1.6; }
.bonus-text strong { color: var(--light-tx); font-weight: 500; }

/* ── QUOTE STRIP ── */
.quote-strip {
    background: var(--gold);
    padding: 3.5rem 2rem;
    text-align: center;
}
.quote-strip-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    color: var(--ink);
    line-height: 1.45;
    max-width: 580px;
    margin: 0 auto;
}

/* ── AUTHOR ── */
.author { padding: 6rem 0; background: var(--ink-mid); }
.author-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 2rem;
}
.author-photo {
    width: 130px; height: 170px;
    object-fit: cover; object-position: top center;
    filter: grayscale(15%) contrast(1.08);
    flex-shrink: 0; display: block;
}
.author-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.author-h2    { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; text-transform: uppercase; line-height: 1.0; color: var(--cream); margin-bottom: 1.25rem; }
.author-text  { font-size: 0.9rem; line-height: 1.75; color: var(--body-dim); }
.author-text + .author-text { margin-top: 0.9rem; }

/* ── DOWNLOAD BUTTON ── */
.btn-download {
    display: inline-flex;
    align-items: center; gap: 0.55rem;
    background: var(--gold);
    color: var(--ink);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem; font-weight: 800;
    letter-spacing: 0.07em; text-transform: uppercase;
    padding: 0.85rem 1.75rem;
    border-radius: 3px;
    transition: opacity 0.15s;
    text-decoration: none;
}
.btn-download:hover { opacity: 0.88; }

/* ── CHECK ICON ── */
.check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(201,162,39,0.15);
    border: 1.5px solid rgba(201,162,39,0.4);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.check svg { color: var(--gold); }

/* ── HINT ── */
.hint { margin-top: 0.65rem; font-size: 0.75rem; color: rgba(138,134,128,0.45); }

/* ── FOOTER ── */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    text-align: center;
}
.footer-text, .footer-copy { font-size: 0.75rem; color: rgba(138,134,128,0.4); }

/* ── LEGAL PAGES ── */
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
}
.highlight {
    background: rgba(201,162,39,0.08);
    border-left: 2px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 0 4px 4px 0;
    margin: 1.5rem 0;
}

/* ── LANDING PAGE: HERO ── */
.hero { padding: 6rem 0 5rem; text-align: center; }
.hero-badge {
    display: inline-block;
    border: 1px solid rgba(201,162,39,0.4);
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    margin-bottom: 2.5rem;
}
.hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 1.75rem;
    overflow-wrap: break-word;
    word-break: break-word;
}
.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--body-dim);
    max-width: 520px;
    margin: 0 auto 2.5rem;
}

/* ── LANDING PAGE: BOTTOM CTA (light bg + book) ── */
.bottom-cta { background: var(--light-bg); color: var(--light-tx); padding: 7rem 0 6rem; }
.cta-inner {
    max-width: 980px; margin: 0 auto; padding: 0 3rem;
    display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center;
}
.bottom-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 0.75rem; }
.bottom-cta-h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase;
    line-height: 0.93; color: var(--light-tx); margin-bottom: 1.25rem;
}
.bottom-cta-h2 .gold { color: var(--gold-dark); }
.bottom-cta-sub { font-size: 1rem; color: #5a5248; margin-bottom: 2.5rem; }
.bottom-cta .form-wrap { margin: 0; }
.bottom-cta .email-input { background: #fff; border-color: rgba(42,37,32,0.18); color: var(--light-tx); }
.bottom-cta .email-input::placeholder { color: #a09890; }
.bottom-cta .email-input:focus { border-color: rgba(154,122,26,0.5); }
.bottom-cta .form-note { color: #8a8070; }
.bottom-cta .form-success { border-color: rgba(154,122,26,0.3); background: rgba(154,122,26,0.06); }
.bottom-cta .form-success-heading { color: var(--gold-dark); }
.bottom-cta .form-success-text { color: #5a5248; }
.bottom-cta .form-error { color: #c0392b; }
.cta-visual .book-wrap { filter: drop-shadow(12px 18px 30px rgba(0,0,0,0.22)); }

/* ── DOWNLOAD PAGES ── */
.dl-hero { padding: 5rem 0 4rem; text-align: center; }
.dl-hero-label { display: flex !important; align-items: center; justify-content: center; gap: 0.5rem; margin: 0 auto 1rem !important; }
.dl-hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900; font-size: clamp(3rem, 5.5vw, 5.5rem);
    line-height: 0.92; text-transform: uppercase; color: var(--cream); margin-bottom: 1.75rem;
}
.dl-hero-sub { font-size: 1.05rem; line-height: 1.75; color: var(--body-dim); max-width: 520px; margin: 0 auto 2.5rem; }

.video-section { max-width: 760px; margin: 0 auto 5rem; padding: 0 2rem; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; background: #111; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.dl-cta { background: var(--light-bg); color: var(--light-tx); padding: 7rem 0 6rem; }
.dl-cta-inner {
    max-width: 980px; margin: 0 auto; padding: 0 3rem;
    display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center;
}
.dl-cta-label { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); display: block; margin-bottom: 0.75rem; }
.dl-cta-h2 {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem); text-transform: uppercase;
    line-height: 0.93; color: var(--light-tx); margin-bottom: 1rem;
}
.dl-cta-h2 .gold { color: var(--gold-dark); }
.dl-cta-sub { font-size: 1rem; color: #5a5248; margin-bottom: 2.5rem; }
.dl-cta .book-wrap { filter: drop-shadow(12px 18px 30px rgba(0,0,0,0.22)); }
.dl-cta .hint { color: rgba(42,37,32,0.4); margin-top: 0.75rem; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .cta-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 2rem; text-align: center; }
    .bottom-cta .form-wrap { margin: 0 auto; }
    .cta-visual { display: flex; justify-content: center; order: -1; }
    .dl-cta-inner { grid-template-columns: 1fr; gap: 3rem; padding: 0 2rem; text-align: center; }
    .book-visual { display: flex; justify-content: center; order: -1; }
}
@media (max-width: 700px) {
    .concepts { grid-template-columns: 1fr; gap: 0; }
    .concept-tag { font-size: 0.75rem; }
    .concept-text { font-size: 1rem; }
}
@media (max-width: 580px) {
    .form-row { flex-direction: column; }
    .email-input { border-right: 1px solid rgba(201,162,39,0.3); border-bottom: none; }
    .bottom-cta .email-input { border-right: 1px solid rgba(42,37,32,0.18); border-bottom: none; }
    .author-inner { grid-template-columns: 1fr; gap: 2rem; }
    .author-photo { width: 100px; height: 130px; }
}
