/* Love Guide — Main Site Stylesheet */
/* Modern redesign, 2026 */

@import url('https://fonts.googleapis.com/css2?family=Vend+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary:      #B2465A;
    --primary-dark: #8e3147;
    --secondary:    #D6796A;
    --accent:       #F2B38F;
    --accent-dark:  #e49c74;
    --text:         #2d2728;
    --text-light:   #6d6263;
    --bg:           #fcfaf8;
    --bg-alt:       #f5f0ec;
    --bg-dark:      #34202a;
    --border:       #eaded7;
    --shadow:       0 6px 18px rgba(87, 44, 58, 0.08);
    --shadow-lg:    0 16px 38px rgba(87, 44, 58, 0.16);
    --radius:       8px;
    --radius-lg:    16px;
    --max-w:        920px;
    --max-w-wide:   1100px;
    --font-sans:    'IBM Plex Serif', Georgia, 'Times New Roman', Times, serif;
    --font-serif:   'Vend Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    --transition:   0.25s ease;
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    margin: 0;
    padding: 0;
}

img { max-width: 100%; height: auto; display: block; border: none; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.25;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
}

p { margin: 0 0 1rem 0; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }

/* ===== Utility ===== */
.container, .container--wide { margin: 0 auto; padding: 0 1.5rem; }
.container { max-width: var(--max-w); }
.container--wide { max-width: var(--max-w-wide); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== Site Header / Nav ===== */
.site-header {
    background: rgba(252, 250, 248, 0.94);
    padding: 1rem 0;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.site-header__logo:hover { text-decoration: none; opacity: 0.9; }
.site-header__logo span { color: var(--accent); }

.site-header__nav { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.site-header__nav a {
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}
.site-header__nav a:hover { background: #f2e9e4; color: var(--text); text-decoration: none; }
.site-header__nav a.nav-cta {
    background: var(--primary);
    color: #fff;
    font-weight: 700;
}
.site-header__nav a.nav-cta:hover { background: var(--primary-dark); }
.site-header__nav a.nav-cta-secondary {
    background: #fff;
    color: var(--primary);
    border: 1px solid #e6c7cd;
    font-weight: 600;
}
.site-header__nav a.nav-cta-secondary:hover {
    background: #fbf2f4;
    color: var(--primary-dark);
}

/* ===== Site Footer ===== */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0 1.5rem;
    font-size: 0.875rem;
    margin-top: 0;
}
.site-footer a { color: var(--accent); }
.site-footer a:hover { color: #fff; }
.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.site-footer__brand { max-width: 320px; }
.site-footer__brand h3 { color: #fff; font-size: 1.1rem; margin-bottom: 0.5rem; }
.site-footer__links h4 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.site-footer__links ul { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 0.4rem; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ===== CTA Buttons ===== */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--primary {
    background: var(--primary);
    color: #fff;
}
.btn--primary:hover { background: var(--primary-dark); }

.btn--secondary {
    background: #fff;
    color: var(--primary);
    border: 1px solid #e6c7cd;
}
.btn--secondary:hover { background: #fbf2f4; }

.btn--large { font-size: 1.15rem; padding: 1rem 2.5rem; }
.btn--xl { font-size: 1.3rem; padding: 1.15rem 3rem; border-radius: var(--radius-lg); }
.btn--full { display: block; width: 100%; text-align: center; }

/* ===== Hero Section ===== */
.hero {
    background: var(--bg);
    color: var(--text);
    padding: 4.5rem 0 3.75rem;
    text-align: left;
    position: relative;
    overflow: hidden;
}
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
}
.hero::before {
    width: 380px;
    height: 380px;
    right: -140px;
    top: -140px;
    background: radial-gradient(circle at 35% 35%, rgba(226, 151, 132, 0.24), rgba(226, 151, 132, 0) 72%);
}
.hero::after {
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: -110px;
    background: radial-gradient(circle at 50% 50%, rgba(178, 70, 90, 0.14), rgba(178, 70, 90, 0) 74%);
}
.hero .container {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 3rem;
    max-width: var(--max-w-wide);
    position: relative;
    z-index: 1;
}

.hero__content { max-width: 680px; }

.hero__media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.hero__book-wrap {
    background: linear-gradient(180deg, #fff 0%, #fdf4ef 100%);
    border: 1px solid #f0d3c8;
    border-radius: 24px;
    padding: 1.1rem;
    box-shadow: 0 20px 48px rgba(82, 36, 50, 0.2);
    transform: translateY(-3px);
}

.hero__book-image {
    width: min(100%, 410px);
    border-radius: 14px;
}

.hero__badge {
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: #f9ece8;
    border: 1px solid #efccc2;
    border-radius: 100px;
    padding: 0.45rem 0.9rem;
}

.hero__kicker {
    margin: 0 0 0.75rem;
    font-family: var(--font-serif);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b565f;
}

.hero__eyebrow {
    display: inline-block;
    background: #f9ebe7;
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    border: 1px solid #efcbc1;
}
.hero h1 {
    color: var(--text);
    font-size: clamp(2rem, 5.1vw, 3.35rem);
    letter-spacing: -0.022em;
    max-width: 700px;
    margin: 0 0 1rem;
    line-height: 1.12;
}
.hero__sub {
    font-size: clamp(1.03rem, 2.5vw, 1.28rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 0 1.55rem;
    line-height: 1.6;
}
.hero__cta-group { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: flex-start; margin-bottom: 1.2rem; }
.hero__trust {
    font-size: 0.86rem;
    color: var(--text-light);
    margin: 0 0 0.5rem;
}
.hero__social-proof {
    margin: 0;
    color: #876d72;
    font-size: 0.86rem;
}
.hero__price-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #f8ece7;
    border: 1px solid #efcbc1;
    border-radius: 100px;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.hero__price-tag .price-new { font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.hero__price-tag .price-old { text-decoration: line-through; color: #a89395; }

.hero .btn--primary,
.hero .btn--secondary {
    border-radius: 999px;
}

.hero .btn--secondary {
    border-color: #dcb4bc;
    background: #fffaf8;
}

/* ===== Section Basics ===== */
.section { padding: 4rem 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.82); }

.section__label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.section__heading { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.section__sub { font-size: 1.05rem; color: var(--text-light); max-width: 640px; margin-bottom: 2rem; }

.text-center { text-align: center; }
.text-center .section__sub { margin-left: auto; margin-right: auto; }

/* ===== Benefits Grid ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.benefit-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.benefit-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.92rem; color: var(--text-light); margin: 0; }

/* ===== Feature List ===== */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
    color: var(--text);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Topics Preview ===== */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.topic-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow);
}
.topic-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.3rem; }
.topic-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.25;
    position: absolute;
    top: 0.25rem;
    left: 1rem;
    line-height: 1;
    font-family: var(--font-serif);
}
.testimonial-card blockquote { margin: 0; padding: 0 0 0 0.5rem; font-size: 0.95rem; font-style: italic; color: var(--text); line-height: 1.7; }
.testimonial-card cite { display: block; margin-top: 0.75rem; font-size: 0.82rem; font-style: normal; font-weight: 700; color: var(--primary); }

/* ===== Offer / Pricing Box ===== */
.offer-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 660px;
    margin: 0 auto;
}
.offer-box h2 { color: #fff; font-size: 1.8rem; margin-bottom: 0.5rem; }
.offer-box__price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 1.5rem 0;
}
.offer-box__price .price-main { font-size: 4rem; font-weight: 900; font-family: var(--font-serif); color: var(--accent); line-height: 1; }
.offer-box__price .price-detail { text-align: left; }
.offer-box__price .was { font-size: 1rem; color: rgba(255,255,255,0.55); text-decoration: line-through; }
.offer-box__price .save { font-size: 0.9rem; color: var(--accent); font-weight: 700; }
.offer-box__includes { list-style: none; padding: 0; margin: 1.5rem 0 2rem; text-align: left; display: inline-block; }
.offer-box__includes li { padding: 0.35rem 0 0.35rem 1.75rem; position: relative; font-size: 0.95rem; color: rgba(255,255,255,0.88); }
.offer-box__includes li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.offer-box__guarantee { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 1rem; }

/* ===== Stats Bar ===== */
.stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    padding: 2.5rem 0;
    background: #f6efeb;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; color: var(--text); }
.stat-item__number { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--primary); line-height: 1; display: block; }
.stat-item__label { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== Pull Quote ===== */
.pull-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding: 1.25rem 2rem;
    background: var(--bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    max-width: 680px;
    margin: 2rem auto;
    box-shadow: var(--shadow);
}

/* ===== In-line CTA Banner ===== */
.cta-banner {
    background: linear-gradient(135deg, #f7ddd3 0%, #f4c5af 100%);
    color: #4b2834;
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.cta-banner h2 { color: #4b2834; font-size: 1.5rem; margin-bottom: 0.5rem; }
.cta-banner p { color: #6f4b55; opacity: 1; margin-bottom: 1.25rem; font-size: 0.95rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; }
.faq-item p { font-size: 0.95rem; color: var(--text-light); margin: 0; }

/* ===== Banner gallery (affiliates) ===== */
.banner-gallery { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.banner-gallery img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ===== Sub-page hero ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1rem; margin: 0; }

/* ===== Prose content ===== */
.prose { max-width: 720px; }
.prose h2 { font-size: 1.6rem; color: var(--primary); margin: 2rem 0 0.75rem; padding-bottom: 0.35rem; border-bottom: 2px solid var(--secondary); }
.prose h3 { font-size: 1.15rem; color: var(--secondary); margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { color: var(--text-light); font-size: 1rem; line-height: 1.75; }

/* ===== Two-column layout ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.two-col--60-40 { grid-template-columns: 3fr 2fr; }

/* ===== Contact Form ===== */
.contact-form { max-width: 580px; }
.contact-form label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.35rem; margin-top: 1rem; }
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(214,121,106,0.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button[type=submit] {
    margin-top: 1.25rem;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
}
.contact-form button:hover { background: var(--primary-dark); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .site-header__inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .two-col, .two-col--60-40 { grid-template-columns: 1fr; }
    .offer-box { padding: 2rem 1.25rem; }
    .offer-box__price .price-main { font-size: 3rem; }
    .hero { padding: 3rem 0 2.75rem; }
    .hero .container { grid-template-columns: 1fr; }
    .hero__media { order: -1; margin-bottom: 0.25rem; }
    .hero__book-wrap { padding: 0.8rem; }
    .hero__book-image { width: min(100%, 330px); }
}

@media (max-width: 480px) {
    .stats-bar { flex-direction: column; gap: 1rem; }
    .hero__cta-group { flex-direction: column; align-items: stretch; }
    .hero .btn--primary,
    .hero .btn--secondary {
        width: 100%;
    }
    .btn--xl { font-size: 1.1rem; padding: 1rem 1.75rem; }
}

/* ===== Print ===== */
@media print {
    .site-header, .site-footer, .cta-banner, .offer-box, .hero { display: none; }
}

/* ===== Dark mode ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --primary:      #d47fa0;
        --secondary:    #7fc4e8;
        --accent:       #f0b840;
        --text:         #e0e0e0;
        --text-light:   #aaa;
        --bg:           #1a1a1a;
        --bg-alt:       #232020;
        --bg-dark:      #0d0808;
        --border:       #3a3030;
    }
    .benefit-card, .testimonial-card, .topic-card { background: #252020; }
    .site-header { background: linear-gradient(135deg, #3a1030 0%, #1a0818 60%, #100a20 100%); }
    .hero { background: linear-gradient(160deg, #3a1030 0%, #1a0818 55%, #100a20 100%); }
}

